-
-
-
- Logan Square-Benjamin Franklin Parkway-Park-Square\Plaza-
-
- 400 ppm: Max soil lead level safe for children's access. -
- -diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..7f03a9f --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,28 @@ +{ + "extends": ["eslint:recommended", "google"], + "parserOptions": { + "ecmaVersion": "latest", + "sourceType": "module" + }, + "env": { + "browser": true, + "es6": true + }, + "ignorePatterns": ["examples/**/*.js"], + "globals": { + "L": "readonly", + "d3": "readonly", + "topojson": "readonly" + }, + "rules": { + "indent": ["error", 2, { "VariableDeclarator": 1 }], + "max-len": "off", + "object-curly-spacing": "off", + "operator-linebreak": [ + "error", + "after", + { "overrides": { "?": "ignore", ":": "ignore" } } + ], + "require-jsdoc": "off" + } +} diff --git a/.gitignore b/.gitignore index c2658d7..2668440 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ node_modules/ +.DS_Store +.vscode/ \ No newline at end of file diff --git a/assets/volcano.svg b/assets/volcano.svg new file mode 100644 index 0000000..9585146 --- /dev/null +++ b/assets/volcano.svg @@ -0,0 +1,19 @@ + + \ No newline at end of file diff --git a/css/styles.css b/css/styles.css new file mode 100644 index 0000000..646400f --- /dev/null +++ b/css/styles.css @@ -0,0 +1,321 @@ +/* stylelint-disable color-function-notation */ +@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap|Roboto'); + +body { + margin: 0; + font-family: Roboto, sans-serif; + font-size: 0.7vw; +} + +main { + display: grid; + grid-template-columns: 44vw 18vw 18vw auto; + grid-template-rows: 8vh 22vh 34vh 32vh; + height: 100vh; + width:100vw; + box-sizing: border-box; + background-color: #e4e4e4; + +} + +p { + letter-spacing: 0.01vw; + margin: 0.7vw; +} + +img{ + grid-column: 4 / 5; + grid-row: 1 / 2; + width: 60px; + height: auto; + margin-left: 10px; +} + +.header-container { + grid-column: 1 / 5; + grid-row: 1 / 2; + background-color: rgb(30, 30, 32) ; + position: relative; + display:flex; +} + +h1 { + font-size: 2.7vw; + letter-spacing: 0.3vw; + font-family: 'Bebas Neue', cursive; + color:#fcfafa; + margin: 0; + padding-left: 10px; + padding-top: 10px; + position: relative; + z-index: 1; + white-space: nowrap; + overflow: hidden; +} + +h1 { + filter: drop-shadow(1px 1px 2px rgba(74, 72, 72, 50%)) + drop-shadow(0 -5px 1px hsl(0deg, 54%, 36%)); +} + +h1:hover { + animation: glitch .3s linear infinite; + cursor: pointer; +} + +@keyframes glitch { + 0% { + transform: translate(0); + } + + 20% { + transform: translate(-2px, 2px); + } + + 40% { + transform: translate(-2px, -2px); + } + + 60% { + transform: translate(2px, 2px); + } + + 80% { + transform: translate(2px, -2px); + } + + 100% { + transform: translate(0); + } +} + + +h3 { + font-size: 1.15vw; + font-family: Roboto, sans-serif; + letter-spacing: 0.01vw; + margin: 0; + padding-left: 0.8vw; + padding-top: 0.5vw; +} + +h4 { + font-size: 1vw; + font-family: Roboto, sans-serif; + letter-spacing: 0.01vw; + margin: 0; + padding-left: 1vw; + padding-top: 0.5vw; + padding-bottom: 0.5vw + +} + + +#tooltip { + position: absolute; + visibility: hidden; + background-color: white; + padding: 5px; + border: 1px solid #ccc; + border-radius: 2px; + font-family: Roboto, sans-serif; + font-size: 12px; + z-index: 10; +} + + +#globe-container { + grid-column: 1 / 2; + grid-row: 2 / 5; + position: relative; + height: 100%; + background-color: #f8f7f7; +} + +#globe { + width: 100%; + height: 100%; + background-color: #f8f7f7; +} + +#volcano-type { + position: absolute; + top: 0.7vw; + right: 1vw; + z-index: 1; + padding: 4px 2px; + font-size: 0.7vw; + background-color: grey; + color: white; + border: 1px solid #ccc; + border-radius: 5px; +} + + +#volcano-type:hover { + background-color: rgb(255, 171, 171); +} + +#note { + position: absolute; + font-size: 0.7vw; + top: 1.8vw; + padding-left: 0.6vw; +} + +.yellow-dot { + display: inline-block; + width: 8px; + height: 8px; + background-color: #16335D; + border-radius: 50%; + margin-right: 5px; +} + +.copyright { + text-align: left; + position: absolute; + font-size: 0.7vw; + color: #666; + z-index: 1; + padding-top: 79vh; + padding-left: 0.6vw; + +} + +.copyright p { + margin: 5px 0; /* Adjust this value to change the spacing */ +} + + +#donut1 { + grid-column: 2 / 3; + grid-row: 3 / 4; + margin-left: 5px; + margin-top: 1vw; + +} + +#donut2 { + grid-column: 3 / 4; + grid-row: 3 / 4; + margin-left: 2px; + margin-top: 1vw; + +} + + +#lollipop-container { + grid-column: 2 / 5; + grid-row: 4 / 5; + flex-direction: column; + padding: 0.8vw; + +} + + +#small-globe { + grid-column: 4 / 5; + grid-row: 3 / 4; + width: 100%; + height: 100%; + margin-top: 7px; + +} + +#selection { + grid-column: 4 / 5; + grid-row: 2 / 3; + display: flex; + flex-direction: column; +} + +.selection-group { + display: flex; + align-items: center; + padding-left: 1vw; + padding-bottom: 0.4vw; +} + + +.selection-group label { + margin-right: 6px; + font-size: 0.8vw; +} + +#country-select, #year-select { + padding: 1px, 2px; + font-size: 0.7vw; + background-color: #808080; + color: white; + border: 1px solid #ccc; + border-radius: 5px; +} + +#country-select:hover { + background-color: rgb(255, 171, 171); +} + +#year-select:hover { + background-color: rgb(255, 171, 171); +} + + + +#info-display { + line-height: 0.7; + padding-left: 0.42vw; + +} + +.eruption-info { + font-size: 0.75vw; + font-family: Roboto, sans-serif; + color: #070707; + margin:0; +} + +#description{ + font-size: 0.8vw; + letter-spacing: 0.01vw; + line-height: 20.5px; + grid-column: 2 / 4; + grid-row: 2 / 3; + margin-top: 0%; + padding: 0.6vw; +} + +#button-container { + display: flex; + gap: 20px; +} + +button { + background-color: grey; + border: none; + color: white; + padding: 1px 25px; + text-align: center; + text-decoration: none; + display: inline-block; + font-size: 0.7vw; + border-radius: 5px; + cursor: pointer; + height: 25px; + margin-top: 0.6vw; + transition: background-color 0.3s, transform 0.2s; +} + +button:hover { + background-color: rgb(255, 171, 171); + transform: translateY(-2px); +} + +button:active { + transform: translateY(1px); +} + +button:focus { + outline: none; +} + diff --git a/data/ByContinent.csv b/data/ByContinent.csv new file mode 100644 index 0000000..480ce43 --- /dev/null +++ b/data/ByContinent.csv @@ -0,0 +1,9 @@ +Type,count,pct +Africa,150,9.94 +Asia,479,31.74 +Antarctica,18,1.19 +Europe,51,3.38 +North America,274,18.16 +Oceania,50,3.31 +Sea,292,19.35 +South America,194,12.86 diff --git a/data/ByType.csv b/data/ByType.csv new file mode 100644 index 0000000..4ca4876 --- /dev/null +++ b/data/ByType.csv @@ -0,0 +1,7 @@ +Type,count,pct +Caldera & Complex,96,6.36 +Cone Types,125,8.28 +Explosive & Crater,73,4.84 +Other,243,16.1 +Shield & Strato,862,57.12 +Submarine & Glacial,110,7.29 diff --git a/data/countries-110m.json b/data/countries-110m.json new file mode 100644 index 0000000..7cd1246 --- /dev/null +++ b/data/countries-110m.json @@ -0,0 +1 @@ +{"type":"Topology","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]],[[54]],[[55]],[[56]],[[57]],[[-17,58]],[[59]]],"id":"840","properties":{"name":"United States of America"}},{"type":"Polygon","arcs":[[60,61,62,63,64,65]],"id":"398","properties":{"name":"Kazakhstan"}},{"type":"Polygon","arcs":[[-63,66,67,68,69]],"id":"860","properties":{"name":"Uzbekistan"}},{"type":"MultiPolygon","arcs":[[[70,71]],[[72]],[[73]],[[74]]],"id":"598","properties":{"name":"Papua New Guinea"}},{"type":"MultiPolygon","arcs":[[[-72,75]],[[76,77]],[[78]],[[79,80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]]],"id":"360","properties":{"name":"Indonesia"}},{"type":"MultiPolygon","arcs":[[[90,91]],[[92,93,94,95,96,97]]],"id":"032","properties":{"name":"Argentina"}},{"type":"MultiPolygon","arcs":[[[-92,98]],[[99,-95,100,101]]],"id":"152","properties":{"name":"Chile"}},{"type":"Polygon","arcs":[[-8,102,103,104,105,106,107,108,109,110,111]],"id":"180","properties":{"name":"Dem. Rep. Congo"}},{"type":"Polygon","arcs":[[112,113,114,115]],"id":"706","properties":{"name":"Somalia"}},{"type":"Polygon","arcs":[[-3,116,117,118,-113,119]],"id":"404","properties":{"name":"Kenya"}},{"type":"Polygon","arcs":[[120,121,122,123,124,125,126,127]],"id":"729","properties":{"name":"Sudan"}},{"type":"Polygon","arcs":[[-122,128,129,130,131]],"id":"148","properties":{"name":"Chad"}},{"type":"Polygon","arcs":[[132,133]],"id":"332","properties":{"name":"Haiti"}},{"type":"Polygon","arcs":[[-133,134]],"id":"214","properties":{"name":"Dominican Rep."}},{"type":"MultiPolygon","arcs":[[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141,142,143]],[[144]],[[145]],[[146,147,148,149,-66,150,151,152,153,154,155,156,157,158,159,160,161]],[[162]],[[163,164]]],"id":"643","properties":{"name":"Russia"}},{"type":"MultiPolygon","arcs":[[[165]],[[166]],[[167]]],"id":"044","properties":{"name":"Bahamas"}},{"type":"Polygon","arcs":[[168]],"id":"238","properties":{"name":"Falkland Is."}},{"type":"MultiPolygon","arcs":[[[169]],[[-161,170,171,172]],[[173]],[[174]]],"id":"578","properties":{"name":"Norway"}},{"type":"Polygon","arcs":[[175]],"id":"304","properties":{"name":"Greenland"}},{"type":"Polygon","arcs":[[176]],"id":"260","properties":{"name":"Fr. S. Antarctic Lands"}},{"type":"Polygon","arcs":[[177,-77]],"id":"626","properties":{"name":"Timor-Leste"}},{"type":"Polygon","arcs":[[178,179,180,181,182,183,184],[185]],"id":"710","properties":{"name":"South Africa"}},{"type":"Polygon","arcs":[[-186]],"id":"426","properties":{"name":"Lesotho"}},{"type":"Polygon","arcs":[[-50,186,187,188,189]],"id":"484","properties":{"name":"Mexico"}},{"type":"Polygon","arcs":[[190,191,-93]],"id":"858","properties":{"name":"Uruguay"}},{"type":"Polygon","arcs":[[-191,-98,192,193,194,195,196,197,198,199,200]],"id":"076","properties":{"name":"Brazil"}},{"type":"Polygon","arcs":[[-194,201,-96,-100,202]],"id":"068","properties":{"name":"Bolivia"}},{"type":"Polygon","arcs":[[-195,-203,-102,203,204,205]],"id":"604","properties":{"name":"Peru"}},{"type":"Polygon","arcs":[[-196,-206,206,207,208,209,210]],"id":"170","properties":{"name":"Colombia"}},{"type":"Polygon","arcs":[[-209,211,212,213]],"id":"591","properties":{"name":"Panama"}},{"type":"Polygon","arcs":[[-213,214,215,216]],"id":"188","properties":{"name":"Costa Rica"}},{"type":"Polygon","arcs":[[-216,217,218,219]],"id":"558","properties":{"name":"Nicaragua"}},{"type":"Polygon","arcs":[[-219,220,221,222,223]],"id":"340","properties":{"name":"Honduras"}},{"type":"Polygon","arcs":[[-222,224,225]],"id":"222","properties":{"name":"El Salvador"}},{"type":"Polygon","arcs":[[-189,226,227,-223,-226,228]],"id":"320","properties":{"name":"Guatemala"}},{"type":"Polygon","arcs":[[-188,229,-227]],"id":"084","properties":{"name":"Belize"}},{"type":"Polygon","arcs":[[-197,-211,230,231]],"id":"862","properties":{"name":"Venezuela"}},{"type":"Polygon","arcs":[[-198,-232,232,233]],"id":"328","properties":{"name":"Guyana"}},{"type":"Polygon","arcs":[[-199,-234,234,235]],"id":"740","properties":{"name":"Suriname"}},{"type":"MultiPolygon","arcs":[[[-200,-236,236]],[[237,238,239,240,241,242,243,244]],[[245]]],"id":"250","properties":{"name":"France"}},{"type":"Polygon","arcs":[[-205,246,-207]],"id":"218","properties":{"name":"Ecuador"}},{"type":"Polygon","arcs":[[247]],"id":"630","properties":{"name":"Puerto Rico"}},{"type":"Polygon","arcs":[[248]],"id":"388","properties":{"name":"Jamaica"}},{"type":"Polygon","arcs":[[249]],"id":"192","properties":{"name":"Cuba"}},{"type":"Polygon","arcs":[[-181,250,251,252]],"id":"716","properties":{"name":"Zimbabwe"}},{"type":"Polygon","arcs":[[-180,253,254,-251]],"id":"072","properties":{"name":"Botswana"}},{"type":"Polygon","arcs":[[-179,255,256,257,-254]],"id":"516","properties":{"name":"Namibia"}},{"type":"Polygon","arcs":[[258,259,260,261,262,263,264]],"id":"686","properties":{"name":"Senegal"}},{"type":"Polygon","arcs":[[-261,265,266,267,268,269,270]],"id":"466","properties":{"name":"Mali"}},{"type":"Polygon","arcs":[[-13,271,-266,-260,272]],"id":"478","properties":{"name":"Mauritania"}},{"type":"Polygon","arcs":[[273,274,275,276,277]],"id":"204","properties":{"name":"Benin"}},{"type":"Polygon","arcs":[[-131,278,279,-277,280,-268,281,282]],"id":"562","properties":{"name":"Niger"}},{"type":"Polygon","arcs":[[-278,-280,283,284]],"id":"566","properties":{"name":"Nigeria"}},{"type":"Polygon","arcs":[[-130,285,286,287,288,289,-284,-279]],"id":"120","properties":{"name":"Cameroon"}},{"type":"Polygon","arcs":[[-275,290,291,292]],"id":"768","properties":{"name":"Togo"}},{"type":"Polygon","arcs":[[-292,293,294,295]],"id":"288","properties":{"name":"Ghana"}},{"type":"Polygon","arcs":[[-270,296,-295,297,298,299]],"id":"384","properties":{"name":"Côte d'Ivoire"}},{"type":"Polygon","arcs":[[-262,-271,-300,300,301,302,303]],"id":"324","properties":{"name":"Guinea"}},{"type":"Polygon","arcs":[[-263,-304,304]],"id":"624","properties":{"name":"Guinea-Bissau"}},{"type":"Polygon","arcs":[[-299,305,306,-301]],"id":"430","properties":{"name":"Liberia"}},{"type":"Polygon","arcs":[[-302,-307,307]],"id":"694","properties":{"name":"Sierra Leone"}},{"type":"Polygon","arcs":[[-269,-281,-276,-293,-296,-297]],"id":"854","properties":{"name":"Burkina Faso"}},{"type":"Polygon","arcs":[[-108,308,-286,-129,-121,309]],"id":"140","properties":{"name":"Central African Rep."}},{"type":"Polygon","arcs":[[-107,310,311,312,-287,-309]],"id":"178","properties":{"name":"Congo"}},{"type":"Polygon","arcs":[[-288,-313,313,314]],"id":"266","properties":{"name":"Gabon"}},{"type":"Polygon","arcs":[[-289,-315,315]],"id":"226","properties":{"name":"Eq. Guinea"}},{"type":"Polygon","arcs":[[-7,316,317,-252,-255,-258,318,-103]],"id":"894","properties":{"name":"Zambia"}},{"type":"Polygon","arcs":[[-6,319,-317]],"id":"454","properties":{"name":"Malawi"}},{"type":"Polygon","arcs":[[-5,320,-184,321,-182,-253,-318,-320]],"id":"508","properties":{"name":"Mozambique"}},{"type":"Polygon","arcs":[[-183,-322]],"id":"748","properties":{"name":"eSwatini"}},{"type":"MultiPolygon","arcs":[[[-106,322,-311]],[[-104,-319,-257,323]]],"id":"024","properties":{"name":"Angola"}},{"type":"Polygon","arcs":[[-9,-112,324]],"id":"108","properties":{"name":"Burundi"}},{"type":"Polygon","arcs":[[325,326,327,328,329,330,331]],"id":"376","properties":{"name":"Israel"}},{"type":"Polygon","arcs":[[-331,332,333]],"id":"422","properties":{"name":"Lebanon"}},{"type":"Polygon","arcs":[[334]],"id":"450","properties":{"name":"Madagascar"}},{"type":"Polygon","arcs":[[-327,335]],"id":"275","properties":{"name":"Palestine"}},{"type":"Polygon","arcs":[[-265,336]],"id":"270","properties":{"name":"Gambia"}},{"type":"Polygon","arcs":[[337,338,339]],"id":"788","properties":{"name":"Tunisia"}},{"type":"Polygon","arcs":[[-12,340,341,-338,342,-282,-267,-272]],"id":"012","properties":{"name":"Algeria"}},{"type":"Polygon","arcs":[[-326,343,344,345,346,-328,-336]],"id":"400","properties":{"name":"Jordan"}},{"type":"Polygon","arcs":[[347,348,349,350,351]],"id":"784","properties":{"name":"United Arab Emirates"}},{"type":"Polygon","arcs":[[352,353]],"id":"634","properties":{"name":"Qatar"}},{"type":"Polygon","arcs":[[354,355,356]],"id":"414","properties":{"name":"Kuwait"}},{"type":"Polygon","arcs":[[-345,357,358,359,360,-357,361]],"id":"368","properties":{"name":"Iraq"}},{"type":"MultiPolygon","arcs":[[[-351,362,363,364]],[[-349,365]]],"id":"512","properties":{"name":"Oman"}},{"type":"MultiPolygon","arcs":[[[366]],[[367]]],"id":"548","properties":{"name":"Vanuatu"}},{"type":"Polygon","arcs":[[368,369,370,371]],"id":"116","properties":{"name":"Cambodia"}},{"type":"Polygon","arcs":[[-369,372,373,374,375,376]],"id":"764","properties":{"name":"Thailand"}},{"type":"Polygon","arcs":[[-370,-377,377,378,379]],"id":"418","properties":{"name":"Laos"}},{"type":"Polygon","arcs":[[-376,380,381,382,383,-378]],"id":"104","properties":{"name":"Myanmar"}},{"type":"Polygon","arcs":[[-371,-380,384,385]],"id":"704","properties":{"name":"Vietnam"}},{"type":"MultiPolygon","arcs":[[[386,386,386]],[[-147,387,388,389,390]]],"id":"408","properties":{"name":"North Korea"}},{"type":"Polygon","arcs":[[-389,391]],"id":"410","properties":{"name":"South Korea"}},{"type":"Polygon","arcs":[[-149,392]],"id":"496","properties":{"name":"Mongolia"}},{"type":"Polygon","arcs":[[-383,393,394,395,396,397,398,399,400]],"id":"356","properties":{"name":"India"}},{"type":"Polygon","arcs":[[-382,401,-394]],"id":"050","properties":{"name":"Bangladesh"}},{"type":"Polygon","arcs":[[-400,402]],"id":"064","properties":{"name":"Bhutan"}},{"type":"Polygon","arcs":[[-398,403]],"id":"524","properties":{"name":"Nepal"}},{"type":"Polygon","arcs":[[-396,404,405,406,407]],"id":"586","properties":{"name":"Pakistan"}},{"type":"Polygon","arcs":[[-69,408,409,-407,410,411]],"id":"004","properties":{"name":"Afghanistan"}},{"type":"Polygon","arcs":[[-68,412,413,-409]],"id":"762","properties":{"name":"Tajikistan"}},{"type":"Polygon","arcs":[[-62,414,-413,-67]],"id":"417","properties":{"name":"Kyrgyzstan"}},{"type":"Polygon","arcs":[[-64,-70,-412,415,416]],"id":"795","properties":{"name":"Turkmenistan"}},{"type":"Polygon","arcs":[[-360,417,418,419,420,421,-416,-411,-406,422]],"id":"364","properties":{"name":"Iran"}},{"type":"Polygon","arcs":[[-332,-334,423,424,-358,-344]],"id":"760","properties":{"name":"Syria"}},{"type":"Polygon","arcs":[[-420,425,426,427,428]],"id":"051","properties":{"name":"Armenia"}},{"type":"Polygon","arcs":[[-172,429,430]],"id":"752","properties":{"name":"Sweden"}},{"type":"Polygon","arcs":[[-156,431,432,433,434]],"id":"112","properties":{"name":"Belarus"}},{"type":"Polygon","arcs":[[-155,435,-164,436,437,438,439,440,441,442,-432]],"id":"804","properties":{"name":"Ukraine"}},{"type":"Polygon","arcs":[[-433,-443,443,444,445,446,-142,447]],"id":"616","properties":{"name":"Poland"}},{"type":"Polygon","arcs":[[448,449,450,451,452,453,454]],"id":"040","properties":{"name":"Austria"}},{"type":"Polygon","arcs":[[-441,455,456,457,458,-449,459]],"id":"348","properties":{"name":"Hungary"}},{"type":"Polygon","arcs":[[-439,460]],"id":"498","properties":{"name":"Moldova"}},{"type":"Polygon","arcs":[[-438,461,462,463,-456,-440,-461]],"id":"642","properties":{"name":"Romania"}},{"type":"Polygon","arcs":[[-434,-448,-144,464,465]],"id":"440","properties":{"name":"Lithuania"}},{"type":"Polygon","arcs":[[-157,-435,-466,466,467]],"id":"428","properties":{"name":"Latvia"}},{"type":"Polygon","arcs":[[-158,-468,468]],"id":"233","properties":{"name":"Estonia"}},{"type":"Polygon","arcs":[[-446,469,-453,470,-238,471,472,473,474,475,476]],"id":"276","properties":{"name":"Germany"}},{"type":"Polygon","arcs":[[-463,477,478,479,480,481]],"id":"100","properties":{"name":"Bulgaria"}},{"type":"MultiPolygon","arcs":[[[482]],[[-480,483,484,485,486]]],"id":"300","properties":{"name":"Greece"}},{"type":"MultiPolygon","arcs":[[[-359,-425,487,488,-427,-418]],[[-479,489,-484]]],"id":"792","properties":{"name":"Turkey"}},{"type":"Polygon","arcs":[[-486,490,491,492,493]],"id":"008","properties":{"name":"Albania"}},{"type":"Polygon","arcs":[[-458,494,495,496,497,498]],"id":"191","properties":{"name":"Croatia"}},{"type":"Polygon","arcs":[[-452,499,-239,-471]],"id":"756","properties":{"name":"Switzerland"}},{"type":"Polygon","arcs":[[-472,-245,500]],"id":"442","properties":{"name":"Luxembourg"}},{"type":"Polygon","arcs":[[-473,-501,-244,501,502]],"id":"056","properties":{"name":"Belgium"}},{"type":"Polygon","arcs":[[-474,-503,503]],"id":"528","properties":{"name":"Netherlands"}},{"type":"Polygon","arcs":[[504,505]],"id":"620","properties":{"name":"Portugal"}},{"type":"Polygon","arcs":[[-505,506,-242,507]],"id":"724","properties":{"name":"Spain"}},{"type":"Polygon","arcs":[[508,509]],"id":"372","properties":{"name":"Ireland"}},{"type":"Polygon","arcs":[[510]],"id":"540","properties":{"name":"New Caledonia"}},{"type":"MultiPolygon","arcs":[[[511]],[[512]],[[513]],[[514]],[[515]]],"id":"090","properties":{"name":"Solomon Is."}},{"type":"MultiPolygon","arcs":[[[516]],[[517]]],"id":"554","properties":{"name":"New Zealand"}},{"type":"MultiPolygon","arcs":[[[518]],[[519]]],"id":"036","properties":{"name":"Australia"}},{"type":"Polygon","arcs":[[520]],"id":"144","properties":{"name":"Sri Lanka"}},{"type":"MultiPolygon","arcs":[[[521]],[[-61,-150,-393,-148,-391,522,-385,-379,-384,-401,-403,-399,-404,-397,-408,-410,-414,-415]]],"id":"156","properties":{"name":"China"}},{"type":"Polygon","arcs":[[523]],"id":"158","properties":{"name":"Taiwan"}},{"type":"MultiPolygon","arcs":[[[-451,524,525,-240,-500]],[[526]],[[527]]],"id":"380","properties":{"name":"Italy"}},{"type":"MultiPolygon","arcs":[[[-476,528]],[[529]]],"id":"208","properties":{"name":"Denmark"}},{"type":"MultiPolygon","arcs":[[[-510,530]],[[531]]],"id":"826","properties":{"name":"United Kingdom"}},{"type":"Polygon","arcs":[[532]],"id":"352","properties":{"name":"Iceland"}},{"type":"MultiPolygon","arcs":[[[-152,533,-421,-429,534]],[[-419,-426]]],"id":"031","properties":{"name":"Azerbaijan"}},{"type":"Polygon","arcs":[[-153,-535,-428,-489,535]],"id":"268","properties":{"name":"Georgia"}},{"type":"MultiPolygon","arcs":[[[536]],[[537]],[[538]],[[539]],[[540]],[[541]],[[542]]],"id":"608","properties":{"name":"Philippines"}},{"type":"MultiPolygon","arcs":[[[-374,543]],[[-81,544,545,546]]],"id":"458","properties":{"name":"Malaysia"}},{"type":"Polygon","arcs":[[-546,547]],"id":"096","properties":{"name":"Brunei"}},{"type":"Polygon","arcs":[[-450,-459,-499,548,-525]],"id":"705","properties":{"name":"Slovenia"}},{"type":"Polygon","arcs":[[-160,549,-430,-171]],"id":"246","properties":{"name":"Finland"}},{"type":"Polygon","arcs":[[-442,-460,-455,550,-444]],"id":"703","properties":{"name":"Slovakia"}},{"type":"Polygon","arcs":[[-445,-551,-454,-470]],"id":"203","properties":{"name":"Czechia"}},{"type":"Polygon","arcs":[[-126,551,552,553]],"id":"232","properties":{"name":"Eritrea"}},{"type":"MultiPolygon","arcs":[[[554]],[[555]],[[556]]],"id":"392","properties":{"name":"Japan"}},{"type":"Polygon","arcs":[[-193,-97,-202]],"id":"600","properties":{"name":"Paraguay"}},{"type":"Polygon","arcs":[[-364,557,558]],"id":"887","properties":{"name":"Yemen"}},{"type":"Polygon","arcs":[[-346,-362,-356,559,-354,560,-352,-365,-559,561]],"id":"682","properties":{"name":"Saudi Arabia"}},{"type":"MultiPolygon","arcs":[[[562]],[[563]],[[564]],[[565]],[[566]],[[567]],[[568]],[[569]]],"id":"010","properties":{"name":"Antarctica"}},{"type":"Polygon","arcs":[[570,571]],"properties":{"name":"N. Cyprus"}},{"type":"Polygon","arcs":[[-572,572]],"id":"196","properties":{"name":"Cyprus"}},{"type":"Polygon","arcs":[[-341,-15,573]],"id":"504","properties":{"name":"Morocco"}},{"type":"Polygon","arcs":[[-124,574,575,-329,576]],"id":"818","properties":{"name":"Egypt"}},{"type":"Polygon","arcs":[[-123,-132,-283,-343,-340,577,-575]],"id":"434","properties":{"name":"Libya"}},{"type":"Polygon","arcs":[[-114,-119,578,-127,-554,579,580]],"id":"231","properties":{"name":"Ethiopia"}},{"type":"Polygon","arcs":[[-553,581,582,-580]],"id":"262","properties":{"name":"Djibouti"}},{"type":"Polygon","arcs":[[-115,-581,-583,583]],"properties":{"name":"Somaliland"}},{"type":"Polygon","arcs":[[-11,584,-110,585,-117]],"id":"800","properties":{"name":"Uganda"}},{"type":"Polygon","arcs":[[-10,-325,-111,-585]],"id":"646","properties":{"name":"Rwanda"}},{"type":"Polygon","arcs":[[-496,586,587]],"id":"070","properties":{"name":"Bosnia and Herz."}},{"type":"Polygon","arcs":[[-481,-487,-494,588,589]],"id":"807","properties":{"name":"Macedonia"}},{"type":"Polygon","arcs":[[-457,-464,-482,-590,590,591,-587,-495]],"id":"688","properties":{"name":"Serbia"}},{"type":"Polygon","arcs":[[-492,592,-497,-588,-592,593]],"id":"499","properties":{"name":"Montenegro"}},{"type":"Polygon","arcs":[[-493,-594,-591,-589]],"properties":{"name":"Kosovo"}},{"type":"Polygon","arcs":[[594]],"id":"780","properties":{"name":"Trinidad and Tobago"}},{"type":"Polygon","arcs":[[-109,-310,-128,-579,-118,-586]],"id":"728","properties":{"name":"S. Sudan"}}]},"land":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","arcs":[[[0]],[[1]],[[3,320,184,255,323,104,322,311,313,315,289,284,273,290,293,297,305,307,302,304,263,336,258,272,13,573,341,338,577,575,329,332,423,487,535,153,435,164,436,461,477,489,484,490,592,497,548,525,240,507,505,506,242,501,503,474,528,476,446,142,464,466,468,158,549,430,172,161,387,391,389,522,385,371,372,543,374,380,401,394,404,422,360,354,559,352,560,347,365,349,362,557,561,346,576,124,551,581,583,115,119],[421,416,64,150,533]],[[17,48,186,229,227,223,219,216,213,209,230,232,234,236,200,191,93,100,203,246,207,211,214,217,220,224,228,189,50,15,58]],[[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]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[59]],[[70,75]],[[72]],[[73]],[[74]],[[77,177]],[[78]],[[546,79,544,547]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90,98]],[[133,134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[144]],[[145]],[[162]],[[165]],[[166]],[[167]],[[168]],[[169]],[[173]],[[174]],[[175]],[[176]],[[245]],[[247]],[[248]],[[249]],[[334]],[[366]],[[367]],[[482]],[[508,530]],[[510]],[[511]],[[512]],[[513]],[[514]],[[515]],[[516]],[[517]],[[518]],[[519]],[[520]],[[521]],[[523]],[[526]],[[527]],[[529]],[[531]],[[532]],[[536]],[[537]],[[538]],[[539]],[[540]],[[541]],[[542]],[[554]],[[555]],[[556]],[[562]],[[563]],[[564]],[[565]],[[566]],[[567]],[[568]],[[569]],[[570,572]],[[594]]]}]}},"arcs":[[[99478,40237],[69,98],[96,-171],[-46,-308],[-172,-81],[-153,73],[-27,260],[107,203],[126,-74]],[[0,41087],[57,27],[-34,-284],[-23,-32],[99822,-145],[-177,-124],[-36,220],[139,121],[88,33],[163,184],[-99999,0]],[[59417,50018],[47,-65],[1007,-1203],[19,-343],[399,-590]],[[60889,47817],[-128,-728],[16,-335],[178,-216],[8,-153],[-76,-357],[16,-180],[-18,-282],[97,-370],[115,-583],[101,-129]],[[61198,44484],[-221,-342],[-303,-230],[-167,10],[-99,-177],[-193,-16],[-73,-74],[-334,166],[-209,-48]],[[59599,43773],[-77,804],[-95,275],[-55,164],[-273,110]],[[59099,45126],[-157,177],[-177,100],[-111,99],[-116,150]],[[58538,45652],[-150,745],[-161,330],[-55,343],[27,307],[-50,544]],[[58149,47921],[115,28],[101,214],[108,308],[69,124],[-3,192],[-60,134],[-16,233]],[[58463,49154],[80,74],[16,348],[-110,333]],[[58449,49909],[98,71],[304,-7],[566,45]],[[47592,66920],[1,-40],[-6,-114]],[[47587,66766],[-1,-895],[-911,31],[9,-1512],[-261,-53],[-68,-304],[53,-853],[-1088,4],[-60,-197]],[[45260,62987],[12,249]],[[45272,63236],[5,-1],[625,48],[33,213],[114,265],[92,816],[386,637],[131,745],[86,44],[91,460],[234,63],[100,-76],[126,0],[90,134],[172,19],[-7,317],[42,0]],[[15878,79530],[-38,1],[-537,581],[-199,255],[-503,244],[-155,523],[40,363],[-356,252],[-48,476],[-336,429],[-6,304]],[[13740,82958],[154,285],[-7,373],[-473,376],[-284,674],[-173,424],[-255,266],[-187,242],[-147,306],[-279,-192],[-270,-330],[-247,388],[-194,259],[-271,164],[-273,17],[1,3364],[2,2193]],[[10837,91767],[518,-142],[438,-285],[289,-54],[244,247],[336,184],[413,-72],[416,259],[455,148],[191,-245],[207,138],[62,278],[192,-63],[470,-530],[369,401],[38,-449],[341,97],[105,173],[337,-34],[424,-248],[650,-217],[383,-100],[272,38],[374,-300],[-390,-293],[502,-127],[750,70],[236,103],[296,-354],[302,299],[-283,251],[179,202],[338,27],[223,59],[224,-141],[279,-321],[310,47],[491,-266],[431,94],[405,-14],[-32,367],[247,103],[431,-200],[-2,-559],[177,471],[223,-16],[126,594],[-298,364],[-324,239],[22,653],[329,429],[366,-95],[281,-261],[378,-666],[-247,-290],[517,-120],[-1,-604],[371,463],[332,-380],[-83,-438],[269,-399],[290,427],[202,510],[16,649],[394,-46],[411,-87],[373,-293],[17,-293],[-207,-315],[196,-316],[-36,-288],[-544,-413],[-386,-91],[-287,178],[-83,-297],[-268,-498],[-81,-259],[-322,-399],[-397,-39],[-220,-250],[-18,-384],[-323,-74],[-340,-479],[-301,-665],[-108,-466],[-16,-686],[409,-99],[125,-553],[130,-448],[388,117],[517,-256],[277,-225],[199,-279],[348,-163],[294,-248],[459,-34],[302,-58],[-45,-511],[86,-594],[201,-661],[414,-561],[214,192],[150,607],[-145,934],[-196,311],[445,276],[314,415],[154,411],[-23,395],[-188,502],[-338,445],[328,619],[-121,535],[-93,922],[194,137],[476,-161],[286,-57],[230,155],[258,-200],[342,-343],[85,-229],[495,-45],[-8,-496],[92,-747],[254,-92],[201,-348],[402,328],[266,652],[184,274],[216,-527],[362,-754],[307,-709],[-112,-371],[370,-333],[250,-338],[442,-152],[179,-189],[110,-500],[216,-78],[112,-223],[20,-664],[-202,-222],[-199,-207],[-458,-210],[-349,-486],[-470,-96],[-594,125],[-417,4],[-287,-41],[-233,-424],[-354,-262],[-401,-782],[-320,-545],[236,97],[446,776],[583,493],[415,58],[246,-289],[-262,-397],[88,-637],[91,-446],[361,-295],[459,86],[278,664],[19,-429],[180,-214],[-344,-387],[-615,-351],[-276,-239],[-310,-426],[-211,44],[-11,500],[483,488],[-445,-19],[-309,-72]],[[31350,77248],[-181,334],[0,805],[-123,171],[-187,-100],[-92,155],[-212,-446],[-84,-460],[-99,-269],[-118,-91],[-89,-30],[-28,-146],[-512,0],[-422,-4],[-125,-109],[-294,-425],[-34,-46],[-89,-231],[-255,1],[-273,-3],[-125,-93],[44,-116],[25,-181],[-5,-60],[-363,-293],[-286,-93],[-323,-316],[-70,0],[-94,93],[-31,85],[6,61],[61,207],[131,325],[81,349],[-56,514],[-59,536],[-290,277],[35,105],[-41,73],[-76,0],[-56,93],[-14,140],[-54,-61],[-75,18],[17,59],[-65,58],[-27,155],[-216,189],[-224,197],[-272,229],[-261,214],[-248,-167],[-91,-6],[-342,154],[-225,-77],[-269,183],[-284,94],[-194,36],[-86,100],[-49,325],[-94,-3],[-1,-227],[-575,0],[-951,0],[-944,0],[-833,0],[-834,0],[-819,0],[-847,0],[-273,0],[-824,0],[-789,0]],[[26668,87478],[207,273],[381,-6],[-6,-114],[-325,-326],[-196,13],[-61,160]],[[27840,93593],[-306,313],[12,213],[133,39],[636,-63],[479,-325],[25,-163],[-296,17],[-299,13],[-304,-80],[-80,36]],[[27690,87261],[107,177],[114,-13],[70,-121],[-108,-310],[-123,50],[-73,176],[13,41]],[[23996,94879],[-151,-229],[-403,44],[-337,155],[148,266],[399,159],[243,-208],[101,-187]],[[23933,96380],[-126,-17],[-521,38],[-74,165],[559,-9],[195,-109],[-33,-68]],[[23124,97116],[332,-205],[-76,-214],[-411,-122],[-226,138],[-119,221],[-22,245],[360,-24],[162,-39]],[[25514,94532],[-449,73],[-738,190],[-96,325],[-34,293],[-279,258],[-574,72],[-322,183],[104,242],[573,-37],[308,-190],[547,1],[240,-194],[-64,-222],[319,-134],[177,-140],[374,-26],[406,-50],[441,128],[566,51],[451,-42],[298,-223],[62,-244],[-174,-157],[-414,-127],[-355,72],[-797,-91],[-570,-11]],[[19093,96754],[392,-92],[-93,-177],[-518,-170],[-411,191],[224,188],[406,60]],[[19177,97139],[361,-120],[-339,-115],[-461,1],[5,84],[285,177],[149,-27]],[[34555,80899],[-148,-372],[-184,-517],[181,199],[187,-126],[-98,-206],[247,-162],[128,144],[277,-182],[-86,-433],[194,101],[36,-313],[86,-367],[-117,-520],[-125,-22],[-183,111],[60,484],[-77,75],[-322,-513],[-166,21],[196,277],[-267,144],[-298,-35],[-539,18],[-43,175],[173,208],[-121,160],[234,356],[287,941],[172,336],[241,204],[129,-26],[-54,-160]],[[26699,89048],[304,-203],[318,-184],[25,-281],[204,46],[199,-196],[-247,-186],[-432,142],[-156,266],[-275,-314],[-396,-306],[-95,346],[-377,-57],[242,292],[35,465],[95,542],[201,-49],[51,-259],[143,91],[161,-155]],[[28119,93327],[263,235],[616,-299],[383,-282],[36,-258],[515,134],[290,-376],[670,-234],[242,-238],[263,-553],[-510,-275],[654,-386],[441,-130],[400,-543],[437,-39],[-87,-414],[-487,-687],[-342,253],[-437,568],[-359,-74],[-35,-338],[292,-344],[377,-272],[114,-157],[181,-584],[-96,-425],[-350,160],[-697,473],[393,-509],[289,-357],[45,-206],[-753,236],[-596,343],[-337,287],[97,167],[-414,304],[-405,286],[5,-171],[-803,-94],[-235,203],[183,435],[522,10],[571,76],[-92,211],[96,294],[360,576],[-77,261],[-107,203],[-425,286],[-563,201],[178,150],[-294,367],[-245,34],[-219,201],[-149,-175],[-503,-76],[-1011,132],[-588,174],[-450,89],[-231,207],[290,270],[-394,2],[-88,599],[213,528],[286,241],[717,158],[-204,-382],[219,-369],[256,477],[704,242],[477,-611],[-42,-387],[550,172]],[[23749,94380],[579,-20],[530,-144],[-415,-526],[-331,-115],[-298,-442],[-317,22],[-173,519],[4,294],[145,251],[276,161]],[[15873,95551],[472,442],[570,383],[426,-9],[381,87],[-38,-454],[-214,-205],[-259,-29],[-517,-252],[-444,-91],[-377,128]],[[13136,82508],[267,47],[-84,-671],[242,-475],[-111,1],[-167,270],[-103,272],[-140,184],[-51,260],[16,188],[131,-76]],[[20696,97433],[546,-81],[751,-215],[212,-281],[108,-247],[-453,66],[-457,192],[-619,21],[268,176],[-335,142],[-21,227]],[[15692,79240],[-140,-82],[-456,269],[-84,209],[-248,207],[-50,168],[-286,107],[-107,321],[24,137],[291,-129],[171,-89],[261,-63],[94,-204],[138,-280],[277,-244],[115,-327]],[[16239,94566],[397,-123],[709,-33],[270,-171],[298,-249],[-349,-149],[-681,-415],[-344,-414],[0,-257],[-731,-285],[-147,259],[-641,312],[119,250],[192,432],[241,388],[-272,362],[939,93]],[[20050,95391],[247,99],[291,-26],[49,-289],[-169,-281],[-940,-91],[-701,-256],[-423,-14],[-35,193],[577,261],[-1255,-70],[-389,106],[379,577],[262,165],[782,-199],[493,-350],[485,-45],[-397,565],[255,215],[286,-68],[94,-282],[109,-210]],[[20410,93755],[311,-239],[175,-575],[86,-417],[466,-293],[502,-279],[-31,-260],[-456,-48],[178,-227],[-94,-217],[-503,93],[-478,160],[-322,-36],[-522,-201],[-704,-88],[-494,-56],[-151,279],[-379,161],[-246,-66],[-343,468],[185,62],[429,101],[392,-26],[362,103],[-537,138],[-594,-47],[-394,12],[-146,217],[644,237],[-428,-9],[-485,156],[233,443],[193,235],[744,359],[284,-114],[-139,-277],[618,179],[386,-298],[314,302],[254,-194],[227,-580],[140,244],[-197,606],[244,86],[276,-94]],[[22100,93536],[-306,386],[329,286],[331,-124],[496,75],[72,-172],[-259,-283],[420,-254],[-50,-532],[-455,-229],[-268,50],[-192,225],[-690,456],[5,189],[567,-73]],[[20389,94064],[372,24],[211,-130],[-244,-390],[-434,413],[95,83]],[[22639,95907],[212,-273],[9,-303],[-127,-440],[-458,-60],[-298,94],[5,345],[-455,-46],[-18,457],[299,-18],[419,201],[390,-34],[22,77]],[[23329,98201],[192,180],[285,42],[-122,135],[646,30],[355,-315],[468,-127],[455,-112],[220,-390],[334,-190],[-381,-176],[-513,-445],[-492,-42],[-575,76],[-299,240],[4,215],[220,157],[-508,-4],[-306,196],[-176,268],[193,262]],[[24559,98965],[413,112],[324,19],[545,96],[409,220],[344,-30],[300,-166],[211,319],[367,95],[498,65],[849,24],[148,-63],[802,100],[601,-38],[602,-37],[742,-47],[597,-75],[508,-161],[-12,-157],[-678,-257],[-672,-119],[-251,-133],[605,3],[-656,-358],[-452,-167],[-476,-483],[-573,-98],[-177,-120],[-841,-64],[383,-74],[-192,-105],[230,-292],[-264,-202],[-429,-167],[-132,-232],[-388,-176],[39,-134],[475,23],[6,-144],[-742,-355],[-726,163],[-816,-91],[-414,71],[-525,31],[-35,284],[514,133],[-137,427],[170,41],[742,-255],[-379,379],[-450,113],[225,229],[492,141],[79,206],[-392,231],[-118,304],[759,-26],[220,-64],[433,216],[-625,68],[-972,-38],[-491,201],[-232,239],[-324,173],[-61,202]],[[29106,90427],[-180,-174],[-312,-30],[-69,289],[118,331],[255,82],[217,-163],[3,-253],[-32,-82]],[[23262,91636],[169,-226],[-173,-207],[-374,179],[-226,-65],[-380,266],[245,183],[194,256],[295,-168],[166,-106],[84,-112]],[[32078,80046],[96,49],[365,-148],[284,-247],[8,-108],[-135,-11],[-360,186],[-258,279]],[[32218,78370],[97,-288],[202,-79],[257,16],[-137,-242],[-102,-38],[-353,250],[-69,198],[105,183]],[[31350,77248],[48,-194],[-296,-286],[-286,-204],[-293,-175],[-147,-351],[-47,-133],[-3,-313],[92,-313],[115,-15],[-29,216],[83,-131],[-22,-169],[-188,-96],[-133,11],[-205,-103],[-121,-29],[-162,-29],[-231,-171],[408,111],[82,-112],[-389,-177],[-177,-1],[8,72],[-84,-164],[82,-27],[-60,-424],[-203,-455],[-20,152],[-61,30],[-91,148],[57,-318],[69,-105],[5,-223],[-89,-230],[-157,-472],[-25,24],[86,402],[-142,225],[-33,491],[-53,-255],[59,-375],[-183,93],[191,-191],[12,-562],[79,-41],[29,-204],[39,-591],[-176,-439],[-288,-175],[-182,-346],[-139,-38],[-141,-217],[-39,-199],[-305,-383],[-157,-281],[-131,-351],[-43,-419],[50,-411],[92,-505],[124,-418],[1,-256],[132,-685],[-9,-398],[-12,-230],[-69,-361],[-83,-75],[-137,72],[-44,259],[-105,136],[-148,508],[-129,452],[-42,231],[57,393],[-77,325],[-217,494],[-108,90],[-281,-268],[-49,30],[-135,275],[-174,147],[-314,-75],[-247,66],[-212,-41],[-114,-92],[50,-157],[-5,-240],[59,-117],[-53,-77],[-103,87],[-104,-112],[-202,18],[-207,312],[-242,-73],[-202,137],[-173,-42],[-234,-138],[-253,-438],[-276,-255],[-152,-282],[-63,-266],[-3,-407],[14,-284],[52,-201]],[[23016,65864],[-108,-18],[-197,130],[-217,184],[-78,277],[-61,414],[-164,337],[-96,346],[-139,404],[-196,236],[-227,-11],[-175,-467],[-230,177],[-144,178],[-69,325],[-92,309],[-165,260],[-142,186],[-102,210],[-481,0],[0,-244],[-221,0],[-552,-4],[-634,416],[-419,287],[26,116],[-353,-64],[-316,-46]],[[17464,69802],[-46,302],[-180,340],[-130,71],[-30,169],[-156,30],[-100,159],[-258,59],[-71,95],[-33,324],[-270,594],[-231,821],[10,137],[-123,195],[-215,495],[-38,482],[-148,323],[61,489],[-10,507],[-89,453],[109,557],[34,536],[33,536],[-50,792],[-88,506],[-80,274],[33,115],[402,-200],[148,-558],[69,156],[-45,484],[-94,485]],[[6833,62443],[49,-51],[45,-79],[71,-207],[-7,-33],[-108,-126],[-89,-92],[-41,-99],[-69,84],[8,165],[-46,216],[14,65],[48,97],[-19,116],[16,55],[21,-11],[107,-100]],[[6668,62848],[-23,-71],[-94,-43],[-47,125],[-32,48],[-3,37],[27,50],[99,-56],[73,-90]],[[6456,63091],[-9,-63],[-149,17],[21,72],[137,-26]],[[6104,63411],[23,-38],[80,-196],[-15,-34],[-19,8],[-97,21],[-35,133],[-11,24],[74,82]],[[5732,63705],[5,-138],[-33,-58],[-93,107],[14,43],[43,58],[64,-12]],[[3759,86256],[220,-54],[27,-226],[-171,-92],[-182,110],[-168,161],[274,101]],[[7436,84829],[185,-40],[117,-183],[-240,-281],[-277,-225],[-142,152],[-43,277],[252,210],[148,90]],[[13740,82958],[-153,223],[-245,188],[-78,515],[-358,478],[-150,558],[-267,38],[-441,15],[-326,170],[-574,613],[-266,112],[-486,211],[-385,-51],[-546,272],[-330,252],[-309,-125],[58,-411],[-154,-38],[-321,-123],[-245,-199],[-308,-126],[-39,348],[125,580],[295,182],[-76,148],[-354,-329],[-190,-394],[-400,-420],[203,-287],[-262,-424],[-299,-248],[-278,-180],[-69,-261],[-434,-305],[-87,-278],[-325,-252],[-191,45],[-259,-165],[-282,-201],[-231,-197],[-477,-169],[-43,99],[304,276],[271,182],[296,324],[345,66],[137,243],[385,353],[62,119],[205,208],[48,448],[141,349],[-320,-179],[-90,102],[-150,-215],[-181,300],[-75,-212],[-104,294],[-278,-236],[-170,0],[-24,352],[50,216],[-179,211],[-361,-113],[-235,277],[-190,142],[-1,334],[-214,252],[108,340],[226,330],[99,303],[225,43],[191,-94],[224,285],[201,-51],[212,183],[-52,270],[-155,106],[205,228],[-170,-7],[-295,-128],[-85,-131],[-219,131],[-392,-67],[-407,142],[-117,238],[-351,343],[390,247],[620,289],[228,0],[-38,-296],[586,23],[-225,366],[-342,225],[-197,296],[-267,252],[-381,187],[155,309],[493,19],[350,270],[66,287],[284,281],[271,68],[526,262],[256,-40],[427,315],[421,-124],[201,-266],[123,114],[469,-35],[-16,-136],[425,-101],[283,59],[585,-186],[534,-56],[214,-77],[370,96],[421,-177],[302,-83]],[[2297,88264],[171,-113],[173,61],[225,-156],[276,-79],[-23,-64],[-211,-125],[-211,128],[-106,107],[-245,-34],[-66,52],[17,223]],[[74266,79657],[-212,-393],[-230,-56],[-13,-592],[-155,-267],[-551,194],[-200,-1058],[-143,-131],[-550,-236],[250,-1026],[-190,-154],[22,-337]],[[72294,75601],[-171,87],[-140,212],[-412,62],[-461,16],[-100,-65],[-396,248],[-158,-122],[-43,-349],[-457,204],[-183,-84],[-62,-259]],[[69711,75551],[-159,-109],[-367,-412],[-121,-422],[-104,-4],[-76,280],[-353,19],[-57,484],[-135,4],[21,593],[-333,431],[-476,-46],[-326,-86],[-265,533],[-227,223],[-431,423],[-52,51],[-715,-349],[11,-2178]],[[65546,74986],[-142,-29],[-195,463],[-188,166],[-315,-123],[-123,-197]],[[64583,75266],[-15,144],[68,246],[-53,206],[-322,202],[-125,530],[-154,150],[-9,192],[270,-56],[11,432],[236,96],[243,-88],[50,576],[-50,365],[-278,-28],[-236,144],[-321,-260],[-259,-124]],[[63639,77993],[-142,96],[29,304],[-177,395],[-207,-17],[-235,401],[160,448],[-81,120],[222,649],[285,-342],[35,431],[573,643],[434,15],[612,-409],[329,-239],[295,249],[440,12],[356,-306],[80,175],[391,-25],[69,280],[-450,406],[267,288],[-52,161],[266,153],[-200,405],[127,202],[1039,205],[136,146],[695,218],[250,245],[499,-127],[88,-612],[290,144],[356,-202],[-23,-322],[267,33],[696,558],[-102,-185],[355,-457],[620,-1500],[148,309],[383,-340],[399,151],[154,-106],[133,-341],[194,-115],[119,-251],[358,79],[147,-361]],[[69711,75551],[83,-58],[-234,-382],[205,-223],[198,147],[329,-311],[-355,-425],[-212,58]],[[69725,74357],[-114,-15],[-40,164],[58,274],[-371,-137],[-89,-380],[-132,-326],[-232,28],[-72,-261],[204,-140],[60,-440],[-156,-598]],[[68841,72526],[-210,124],[-154,4]],[[68477,72654],[7,362],[-369,253],[-291,289],[-181,278],[-317,408],[-137,609],[-93,108],[-301,-27],[-106,121],[-30,471],[-374,312],[-234,-343],[-237,-204],[45,-297],[-313,-8]],[[89166,49043],[482,-407],[513,-338],[192,-302],[154,-297],[43,-349],[462,-365],[68,-313],[-256,-64],[62,-393],[248,-388],[180,-627],[159,20],[-11,-262],[215,-100],[-84,-111],[295,-249],[-30,-171],[-184,-41],[-69,153],[-238,66],[-281,89],[-216,377],[-158,325],[-144,517],[-362,259],[-235,-169],[-170,-195],[35,-436],[-218,-203],[-155,99],[-288,25]],[[89175,45193],[-4,1925],[-5,1925]],[[92399,48417],[106,-189],[33,-307],[-87,-157],[-52,348],[-65,229],[-126,193],[-158,252],[-200,174],[77,143],[150,-166],[94,-130],[117,-142],[111,-248]],[[92027,47129],[-152,-144],[-142,-138],[-148,1],[-228,171],[-158,165],[23,183],[249,-86],[152,46],[42,283],[40,15],[27,-314],[158,45],[78,202],[155,211],[-30,348],[166,11],[56,-97],[-5,-327],[-93,-361],[-146,-48],[-44,-166]],[[92988,47425],[84,-134],[135,-375],[131,-200],[-39,-166],[-78,-59],[-120,227],[-122,375],[-59,450],[38,57],[30,-175]],[[89175,45193],[-247,485],[-282,118],[-69,-168],[-352,-18],[118,481],[175,164],[-72,642],[-134,496],[-538,500],[-229,50],[-417,546],[-82,-287],[-107,-52],[-63,216],[-1,257],[-212,290],[299,213],[198,-11],[-23,156],[-407,1],[-110,352],[-248,109],[-117,293],[374,143],[142,192],[446,-242],[44,-220],[78,-955],[287,-354],[232,627],[319,356],[247,1],[238,-206],[206,-212],[298,-113]],[[84713,45326],[28,-117],[5,-179]],[[84746,45030],[-181,-441],[-238,-130],[-33,71],[25,201],[119,360],[275,235]],[[87280,46506],[-27,445],[49,212],[58,200],[63,-173],[0,-282],[-143,-402]],[[82744,53024],[-158,-533],[204,-560],[-48,-272],[312,-546],[-329,-70],[-93,-403],[12,-535],[-267,-404],[-7,-589],[-107,-903],[-41,210],[-316,-266],[-110,361],[-198,34],[-139,189],[-330,-212],[-101,285],[-182,-32],[-229,68],[-43,793],[-138,164],[-134,505],[-38,517],[32,548],[165,392]],[[80461,51765],[47,-395],[190,-334],[179,121],[177,-43],[162,299],[133,52],[263,-166],[226,126],[143,822],[107,205],[96,672],[319,0],[241,-100]],[[85936,48924],[305,-172],[101,-452],[-234,244],[-232,49],[-157,-39],[-192,21],[65,325],[344,24]],[[85242,48340],[-192,108],[-54,254],[281,29],[69,-195],[-104,-196]],[[85536,51864],[20,-322],[164,-52],[26,-241],[-15,-517],[-143,58],[-42,-359],[114,-312],[-78,-71],[-112,374],[-82,755],[56,472],[92,215]],[[84146,51097],[319,25],[275,429],[48,-132],[-223,-587],[-209,-113],[-267,115],[-463,-29],[-243,-85],[-39,-447],[248,-526],[150,268],[518,201],[-22,-272],[-121,86],[-121,-347],[-245,-229],[263,-757],[-50,-203],[249,-682],[-2,-388],[-148,-173],[-109,207],[134,484],[-273,-229],[-69,164],[36,228],[-200,346],[21,576],[-186,-179],[24,-689],[11,-846],[-176,-85],[-119,173],[79,544],[-43,570],[-117,4],[-86,405],[115,387],[40,469],[139,891],[58,243],[237,439],[217,-174],[350,-82]],[[83414,44519],[-368,414],[259,116],[146,-180],[97,-180],[-17,-159],[-117,-11]],[[83705,45536],[185,45],[249,216],[-41,-328],[-417,-168],[-370,73],[0,216],[220,123],[174,-177]],[[82849,45639],[172,48],[69,-251],[-321,-119],[-193,-79],[-149,5],[95,340],[153,5],[74,209],[100,-158]],[[80134,46785],[38,-210],[533,-59],[61,244],[515,-284],[101,-383],[417,-108],[341,-351],[-317,-225],[-306,238],[-251,-16],[-288,44],[-260,106],[-322,225],[-204,59],[-116,-74],[-506,243],[-48,254],[-255,44],[191,564],[337,-35],[224,-231],[115,-45]],[[78991,49939],[47,-412],[97,-330],[204,-52],[135,-374],[-70,-735],[-11,-914],[-308,-12],[-234,494],[-356,482],[-119,358],[-210,481],[-138,443],[-212,827],[-244,493],[-81,508],[-103,461],[-250,372],[-145,506],[-209,330],[-290,652],[-24,300],[178,-24],[430,-114],[246,-577],[215,-401],[153,-246],[263,-635],[283,-9],[233,-405],[161,-495],[211,-270],[-111,-482],[159,-205],[100,-15]],[[30935,19481],[106,-274],[139,-443],[361,-355],[389,-147],[-125,-296],[-264,-29],[-141,208]],[[31400,18145],[-168,16],[-297,1],[0,1319]],[[33993,32727],[-70,-473],[-74,-607],[3,-588],[-61,-132],[-21,-382]],[[33770,30545],[-19,-308],[353,-506],[-38,-408],[173,-257],[-14,-289],[-267,-757],[-412,-317],[-557,-123],[-305,59],[59,-352],[-57,-442],[51,-298],[-167,-208],[-284,-82],[-267,216],[-108,-155],[39,-587],[188,-178],[152,186],[82,-307],[-255,-183],[-223,-367],[-41,-595],[-66,-316],[-262,-2],[-218,-302],[-80,-443],[273,-433],[266,-119],[-96,-531],[-328,-333],[-180,-692],[-254,-234],[-113,-276],[89,-614],[185,-342],[-117,30]],[[30952,19680],[-257,93],[-672,79],[-115,344],[6,443],[-185,-38],[-98,214],[-24,626],[213,260],[88,375],[-33,299],[148,504],[101,782],[-30,347],[122,112],[-30,223],[-129,118],[92,248],[-126,224],[-65,682],[112,120],[-47,720],[65,605],[75,527],[166,215],[-84,576],[-1,543],[210,386],[-7,494],[159,576],[1,544],[-72,108],[-128,1020],[171,607],[-27,572],[100,537],[182,555],[196,367],[-83,232],[58,190],[-9,985],[302,291],[96,614],[-34,148]],[[31359,37147],[231,534],[364,-144],[163,-427],[109,475],[316,-24],[45,-127]],[[32587,37434],[511,-964],[227,-89],[339,-437],[286,-231],[40,-261],[-273,-898],[280,-160],[312,-91],[220,95],[252,453],[45,521]],[[34826,35372],[138,114],[139,-341],[-6,-472],[-234,-326],[-186,-241],[-314,-573],[-370,-806]],[[31400,18145],[-92,-239],[-238,-183],[-137,19],[-164,48],[-202,177],[-291,86],[-350,330],[-283,317],[-383,662],[229,-124],[390,-395],[369,-212],[143,271],[90,405],[256,244],[198,-70]],[[30669,40193],[136,-402],[37,-426],[146,-250],[-88,-572],[150,-663],[109,-814],[200,81]],[[30952,19680],[-247,4],[-134,-145],[-250,-213],[-45,-552],[-118,-14],[-313,192],[-318,412],[-346,338],[-87,374],[79,346],[-140,393],[-36,1007],[119,568],[293,457],[-422,172],[265,522],[94,982],[309,-208],[145,1224],[-186,157],[-87,-738],[-175,83],[87,845],[95,1095],[127,404],[-80,576],[-22,666],[117,19],[170,954],[192,945],[118,881],[-64,885],[83,487],[-34,730],[163,721],[50,1143],[89,1227],[87,1321],[-20,967],[-58,832]],[[30452,39739],[143,151],[74,303]],[[58538,45652],[-109,60],[-373,-99],[-75,-71],[-79,-377],[62,-261],[-49,-699],[-34,-593],[75,-105],[194,-230],[76,107],[23,-637],[-212,5],[-114,325],[-103,252],[-213,82],[-62,310],[-170,-187],[-222,83],[-93,268],[-176,55],[-131,-15],[-15,184],[-96,15]],[[56642,44124],[-127,35],[-172,-89],[-121,15],[-68,-54],[15,703],[-93,219],[-21,363],[41,356],[-56,228],[-5,372],[-337,-5],[24,213],[-142,-2],[-15,-103],[-172,-23],[-69,-344],[-42,-148],[-154,83],[-91,-83],[-184,-47],[-106,309],[-64,191],[-80,354],[-68,440],[-820,8],[-98,-71],[-80,11],[-115,-79]],[[53422,46976],[-39,183]],[[53383,47159],[71,62],[9,258],[45,152],[101,124]],[[53609,47755],[73,-60],[95,226],[152,-6],[17,-167],[104,-105],[164,370],[161,289],[71,189],[-10,486],[121,574],[127,304],[183,285],[32,189],[7,216],[45,205],[-14,335],[34,524],[55,368],[83,316],[16,357]],[[55125,52650],[25,412],[108,300],[149,190],[229,-200],[177,-218],[203,-59],[207,-115],[83,357],[38,46],[127,-60],[309,295],[110,-125],[90,18],[41,143],[104,51],[209,-62],[178,-14],[91,63]],[[57603,53672],[169,-488],[124,-71],[75,99],[128,-39],[155,125],[66,-252],[244,-393]],[[58564,52653],[-16,-691],[111,-80],[-89,-210],[-107,-157],[-106,-308],[-59,-274],[-15,-475],[-65,-225],[-2,-446]],[[58216,49787],[-80,-165],[-10,-351],[-38,-46],[-26,-323]],[[58062,48902],[70,-268],[17,-713]],[[61551,49585],[-165,488],[-3,2152],[243,670]],[[61626,52895],[76,186],[178,11],[247,417],[362,26],[785,1773]],[[63274,55308],[194,493],[125,363],[0,308],[0,596],[1,244],[2,9]],[[63596,57321],[89,12],[128,88],[147,59],[132,202],[105,2],[6,-163],[-25,-344],[1,-310],[-59,-214],[-78,-639],[-134,-659],[-172,-755],[-238,-866],[-237,-661],[-327,-806],[-278,-479],[-415,-586],[-259,-450],[-304,-715],[-64,-312],[-63,-140]],[[59417,50018],[-3,627],[80,239],[137,391],[101,431],[-123,678],[-32,296],[-132,411]],[[59445,53091],[171,352],[188,390]],[[59804,53833],[145,-99],[0,-332],[95,-194],[193,0],[352,-502],[87,-6],[65,16],[62,-68],[185,-47],[82,247],[254,247],[112,-200],[190,0]],[[61551,49585],[-195,-236],[-68,-246],[-104,-44],[-40,-416],[-89,-238],[-54,-393],[-112,-195]],[[56824,55442],[-212,258],[-96,170],[-18,184],[45,246],[-1,241],[-160,369],[-31,253]],[[56351,57163],[3,143],[-102,174],[-3,343],[-58,228],[-98,-34],[28,217],[72,246],[-32,245],[92,181],[-58,138],[73,365],[127,435],[240,-41],[-14,2345]],[[56621,62148],[3,248],[320,2],[0,1180]],[[56944,63578],[1117,0],[1077,0],[1102,0]],[[60240,63578],[90,-580],[-61,-107],[40,-608],[102,-706],[106,-145],[152,-219]],[[60669,61213],[-141,-337],[-204,-97],[-88,-181],[-27,-393],[-120,-868],[30,-236]],[[60119,59101],[-45,-508],[-112,-582],[-168,-293],[-119,-451],[-28,-241],[-132,-166],[-82,-618],[4,-531]],[[59437,55711],[-3,460],[-39,12],[5,294],[-33,203],[-143,233],[-34,426],[34,436],[-129,41],[-19,-132],[-167,-30],[67,-173],[23,-355],[-152,-324],[-138,-426],[-144,-61],[-233,345],[-105,-122],[-29,-172],[-143,-112],[-9,-122],[-277,0],[-38,122],[-200,20],[-100,-101],[-77,51],[-143,344],[-48,163],[-200,-81],[-76,-274],[-72,-528],[-95,-111],[-85,-65],[189,-230]],[[56351,57163],[-176,-101],[-141,-239],[-201,-645],[-261,-273],[-269,36],[-78,-54],[28,-208],[-145,-207],[-118,-230],[-350,-226],[-69,134],[-46,11],[-52,-152],[-229,-44]],[[54244,54965],[43,160],[-87,407],[-39,245],[-121,100],[-164,345],[60,279],[127,-60],[78,42],[155,-6],[-151,537],[10,393],[-18,392],[-111,378]],[[54026,58177],[28,279],[-178,13],[0,380],[-115,219],[120,778],[354,557],[15,769],[107,1199],[60,254],[-116,203],[-4,188],[-104,153],[-68,919]],[[54125,64088],[280,323],[1108,-1132],[1108,-1131]],[[30080,62227],[24,-321],[-21,-228],[-68,-99],[71,-177],[-5,-161]],[[30081,61241],[-185,100],[-131,-41],[-169,43],[-130,-110],[-149,184],[24,190],[256,-82],[210,-47],[100,131],[-127,256],[2,226],[-175,92],[62,163],[170,-26],[241,-93]],[[30080,62227],[34,101],[217,-3],[165,-152],[73,15],[50,-209],[152,11],[-9,-176],[124,-21],[136,-217],[-103,-240],[-132,128],[-127,-25],[-92,28],[-50,-107],[-106,-37],[-43,144],[-92,-85],[-111,-405],[-71,94],[-14,170]],[[76049,98451],[600,133],[540,-297],[640,-572],[-69,-531],[-606,-73],[-773,170],[-462,226],[-213,423],[-379,117],[722,404]],[[78565,97421],[704,-336],[-82,-240],[-1566,-228],[507,776],[229,66],[208,-38]],[[88563,95563],[734,-26],[1004,-313],[-219,-439],[-1023,16],[-461,-139],[-550,384],[149,406],[366,111]],[[91172,95096],[697,-155],[-321,-234],[-444,53],[-516,233],[66,192],[518,-89]],[[88850,93928],[263,234],[348,54],[394,-226],[34,-155],[-421,-4],[-569,66],[-49,31]],[[62457,98194],[542,107],[422,8],[57,-160],[159,142],[262,97],[412,-129],[-107,-90],[-373,-78],[-250,-45],[-39,-97],[-324,-98],[-301,140],[158,185],[-618,18]],[[56314,82678],[-511,-9],[-342,67]],[[55461,82736],[63,260],[383,191]],[[55907,83187],[291,-103],[123,-94],[-30,-162],[23,-150]],[[64863,94153],[665,518],[-75,268],[621,312],[917,380],[925,110],[475,220],[541,76],[193,-233],[-187,-184],[-984,-293],[-848,-282],[-863,-562],[-414,-577],[-435,-568],[56,-491],[531,-484],[-164,-52],[-907,77],[-74,262],[-503,158],[-40,320],[284,126],[-10,323],[551,503],[-255,73]],[[89698,82309],[96,-569],[-7,-581],[114,-597],[280,-1046],[-411,195],[-171,-854],[271,-605],[-8,-413],[-211,356],[-182,-457],[-51,496],[31,575],[-32,638],[64,446],[13,790],[-163,581],[24,808],[257,271],[-110,274],[123,83],[73,-391]],[[86327,75524],[-39,104]],[[86288,75628],[-2,300],[142,16],[40,698],[-73,506],[238,208],[338,-104],[186,575],[96,647],[107,216],[146,532],[-459,-175],[-240,-233],[-423,1],[-112,555],[-329,420],[-483,189],[-103,579],[-97,363],[-104,254],[-172,596],[-244,217],[-415,176],[-369,-16],[-345,-106],[-229,-294],[152,-141],[4,-326],[-155,-189],[-251,-627],[3,-260],[-392,-373],[-333,223]],[[82410,80055],[-331,-49],[-146,198],[-166,63],[-407,-416],[-366,-98],[-255,-146],[-350,96],[-258,-6],[-168,302],[-272,284],[-279,78],[-351,-78],[-263,-109],[-394,248],[-53,443],[-327,152],[-252,69],[-311,244],[-288,-612],[113,-348],[-270,-411],[-402,148],[-277,22],[-186,276],[-289,8],[-242,182],[-423,-278],[-530,-509],[-292,-102]],[[74375,79706],[-109,-49]],[[63639,77993],[-127,-350],[-269,-97],[-276,-610],[252,-561],[-27,-398],[303,-696]],[[63495,75281],[-166,-238],[-48,-150],[-122,40],[-191,359],[-78,20]],[[62890,75312],[-175,137],[-85,242],[-259,124],[-169,-93],[-48,110],[-378,283],[-409,96],[-235,101],[-34,-70]],[[61098,76242],[-354,499],[-317,223],[-240,347],[202,95],[231,494],[-156,234],[410,241],[-8,129],[-249,-95]],[[60617,78409],[9,262],[143,165],[269,43],[44,197],[-62,326],[113,310],[-3,173],[-410,192],[-162,-6],[-172,277],[-213,-94],[-352,208],[6,116],[-99,256],[-222,29],[-23,183],[70,120],[-178,334],[-288,-57],[-84,30],[-70,-134],[-104,23]],[[58829,81362],[-68,379],[-66,196],[54,55],[224,-20],[108,129],[-80,157],[-187,104],[16,107],[-113,108],[-174,387],[60,159],[-27,277],[-272,141],[-146,-70],[-39,146],[-293,149]],[[57826,83766],[-89,348],[-24,287],[-134,136]],[[57579,84537],[120,187],[-83,551],[198,341],[-42,103]],[[57772,85719],[316,327],[-291,280]],[[57797,86326],[594,755],[258,341],[105,301],[-411,405],[113,385],[-250,440],[187,506],[-323,673],[256,445],[-425,394],[41,414]],[[57942,91385],[224,54],[473,237]],[[58639,91676],[286,206],[456,-358],[761,-140],[1050,-668],[213,-281],[18,-393],[-308,-311],[-454,-157],[-1240,449],[-204,-75],[453,-433],[18,-274],[18,-604],[358,-180],[217,-153],[36,286],[-168,254],[177,224],[672,-368],[233,144],[-186,433],[647,578],[256,-34],[260,-206],[161,406],[-231,352],[136,353],[-204,367],[777,-190],[158,-331],[-351,-73],[1,-328],[219,-203],[429,128],[68,377],[580,282],[970,507],[209,-29],[-273,-359],[344,-61],[199,202],[521,16],[412,245],[317,-356],[315,391],[-291,343],[145,195],[820,-179],[385,-185],[1006,-675],[186,309],[-282,313],[-8,125],[-335,58],[92,280],[-149,461],[-8,189],[512,535],[183,537],[206,116],[736,-156],[57,-328],[-263,-479],[173,-189],[89,-413],[-63,-809],[307,-362],[-120,-395],[-544,-839],[318,-87],[110,213],[306,151],[74,293],[240,281],[-162,336],[130,390],[-304,49],[-67,328],[222,593],[-361,482],[497,398],[-64,421],[139,13],[145,-328],[-109,-570],[297,-108],[-127,426],[465,233],[577,31],[513,-337],[-247,492],[-28,630],[483,119],[669,-26],[602,77],[-226,309],[321,388],[319,16],[540,293],[734,79],[93,162],[729,55],[227,-133],[624,314],[510,-10],[77,255],[265,252],[656,242],[476,-191],[-378,-146],[629,-90],[75,-292],[254,143],[812,-7],[626,-289],[223,-221],[-69,-307],[-307,-175],[-730,-328],[-209,-175],[345,-83],[410,-149],[251,112],[141,-379],[122,153],[444,93],[892,-97],[67,-276],[1162,-88],[15,451],[590,-104],[443,4],[449,-312],[128,-378],[-165,-247],[349,-465],[437,-240],[268,620],[446,-266],[473,159],[538,-182],[204,166],[455,-83],[-201,549],[367,256],[2509,-384],[236,-351],[727,-451],[1122,112],[553,-98],[231,-244],[-33,-432],[342,-168],[372,121],[492,15],[525,-116],[526,66],[484,-526],[344,189],[-224,378],[123,262],[886,-165],[578,36],[799,-282],[-99610,-258],[681,-451],[728,-588],[-24,-367],[187,-147],[-64,429],[754,-88],[544,-553],[-276,-257],[-455,-61],[-7,-578],[-111,-122],[-260,17],[-212,206],[-369,172],[-62,257],[-283,96],[-315,-76],[-151,207],[60,219],[-333,-140],[126,-278],[-158,-251],[99997,-3],[-357,-260],[-360,44],[250,-315],[166,-487],[128,-159],[32,-244],[-71,-157],[-518,129],[-777,-445],[-247,-69],[-425,-415],[-403,-362],[-102,-269],[-397,409],[-724,-464],[-126,219],[-268,-253],[-371,81],[-90,-388],[-333,-572],[10,-239],[316,-132],[-37,-860],[-258,-22],[-119,-494],[116,-255],[-486,-302],[-96,-674],[-415,-144],[-83,-600],[-400,-551],[-103,407],[-119,862],[-155,1313],[134,819],[234,353],[14,276],[432,132],[496,744],[479,608],[499,471],[223,833],[-337,-50],[-167,-487],[-705,-649],[-227,727],[-717,-201],[-696,-990],[230,-362],[-620,-154],[-430,-61],[20,427],[-431,90],[-344,-291],[-850,102],[-914,-175],[-899,-1153],[-1065,-1394],[438,-74],[136,-370],[270,-132],[178,295],[305,-38],[401,-650],[9,-503],[-217,-590],[-23,-705],[-126,-945],[-418,-855],[-94,-409],[-377,-688],[-374,-682],[-179,-349],[-370,-346],[-175,-8],[-175,287],[-373,-432],[-43,-197]],[[0,92833],[36,24],[235,-1],[402,-169],[-24,-81],[-286,-141],[-363,-36],[99694,-30],[-49,187],[-99645,247]],[[59287,77741],[73,146],[198,-127],[89,-23],[36,-117],[42,-18]],[[59725,77602],[2,-51],[136,-142],[284,35],[-55,-210],[-304,-103],[-377,-342],[-154,121],[61,277],[-304,173],[50,113],[265,197],[-42,71]],[[28061,66408],[130,47],[184,-18],[8,-153],[-303,-95],[-19,219]],[[28391,66555],[220,-265],[-48,-420],[-51,75],[4,309],[-124,234],[-1,67]],[[28280,65474],[84,-23],[97,-491],[1,-343],[-68,-29],[-70,340],[-104,171],[60,375]],[[33000,19946],[333,354],[236,-148],[167,237],[222,-266],[-83,-207],[-375,-177],[-125,207],[-236,-266],[-139,266]],[[54206,97653],[105,202],[408,20],[350,-206],[915,-440],[-699,-233],[-155,-435],[-243,-111],[-132,-490],[-335,-23],[-598,361],[252,210],[-416,170],[-541,499],[-216,463],[757,212],[152,-207],[396,8]],[[57942,91385],[117,414],[-356,235],[-431,-200],[-137,-433],[-265,-262],[-298,143],[-362,-29],[-309,312],[-167,-156]],[[55734,91409],[-172,-24],[-41,-389],[-523,95],[-74,-329],[-267,2],[-183,-421],[-278,-655],[-431,-831],[101,-202],[-97,-234],[-275,10],[-180,-554],[17,-784],[177,-300],[-92,-694],[-231,-405],[-122,-341]],[[53063,85353],[-187,363],[-548,-684],[-371,-138],[-384,301],[-99,635],[-88,1363],[256,381],[733,496],[549,609],[508,824],[668,1141],[465,444],[763,741],[610,259],[457,-31],[423,489],[506,-26],[499,118],[869,-433],[-358,-158],[305,-371]],[[57613,97879],[-412,-318],[-806,-70],[-819,98],[-50,163],[-398,11],[-304,271],[858,165],[403,-142],[281,177],[702,-148],[545,-207]],[[56867,96577],[-620,-241],[-490,137],[191,152],[-167,189],[575,119],[110,-222],[401,-134]],[[37010,99398],[932,353],[975,-27],[354,218],[982,57],[2219,-74],[1737,-469],[-513,-227],[-1062,-26],[-1496,-58],[140,-105],[984,65],[836,-204],[540,181],[231,-212],[-305,-344],[707,220],[1348,229],[833,-114],[156,-253],[-1132,-420],[-157,-136],[-888,-102],[643,-28],[-324,-431],[-224,-383],[9,-658],[333,-386],[-434,-24],[-457,-187],[513,-313],[65,-502],[-297,-55],[360,-508],[-617,-42],[322,-241],[-91,-208],[-391,-91],[-388,-2],[348,-400],[4,-263],[-549,244],[-143,-158],[375,-148],[364,-361],[105,-476],[-495,-114],[-214,228],[-344,340],[95,-401],[-322,-311],[732,-25],[383,-32],[-745,-515],[-755,-466],[-813,-204],[-306,-2],[-288,-228],[-386,-624],[-597,-414],[-192,-24],[-370,-145],[-399,-138],[-238,-365],[-4,-415],[-141,-388],[-453,-472],[112,-462],[-125,-488],[-142,-577],[-391,-36],[-410,482],[-556,3],[-269,324],[-186,577],[-481,735],[-141,385],[-38,530],[-384,546],[100,435],[-186,208],[275,691],[418,220],[110,247],[58,461],[-318,-209],[-151,-88],[-249,-84],[-341,193],[-19,401],[109,314],[258,9],[567,-157],[-478,375],[-249,202],[-276,-83],[-232,147],[310,550],[-169,220],[-220,409],[-335,626],[-353,230],[3,247],[-745,346],[-590,43],[-743,-24],[-677,-44],[-323,188],[-482,372],[729,186],[559,31],[-1188,154],[-627,241],[39,229],[1051,285],[1018,284],[107,214],[-750,213],[243,235],[961,413],[404,63],[-115,265],[658,156],[854,93],[853,5],[303,-184],[737,325],[663,-221],[390,-46],[577,-192],[-660,318],[38,253]],[[69148,21851],[179,-186],[263,-74],[9,-112],[-77,-269],[-427,-38],[-7,314],[41,244],[19,121]],[[84713,45326],[32,139],[239,133],[194,20],[87,74],[105,-74],[-102,-160],[-289,-258],[-233,-170]],[[54540,33696],[133,292],[109,-162],[47,-252],[125,-43],[175,-112],[149,43],[248,302],[0,2182]],[[55526,35946],[75,-88],[165,-562],[-26,-360],[62,-207],[199,60],[139,264],[132,177],[68,283],[135,137],[117,-71],[133,-166],[226,-29],[178,138],[28,184],[48,283],[152,47],[83,222],[93,393],[249,442],[393,435]],[[58175,37528],[113,-7],[134,-100],[94,71],[148,-59]],[[58664,37433],[133,-832],[72,-419],[-49,-659],[23,-212]],[[58843,35311],[-140,108],[-80,-42],[-26,-172],[-76,-222],[2,-204],[166,-320],[163,63],[56,263]],[[58908,34785],[211,-5]],[[59119,34780],[-70,-430],[-32,-491],[-72,-267],[-190,-298],[-54,-86],[-118,-300],[-77,-303],[-158,-424],[-314,-609],[-196,-355],[-210,-269],[-290,-229],[-141,-31],[-36,-164],[-169,88],[-138,-113],[-301,114],[-168,-72],[-115,31],[-286,-233],[-238,-94],[-171,-223],[-127,-14],[-117,210],[-94,11],[-120,264],[-13,-82],[-37,159],[2,346],[-90,396],[89,108],[-7,453],[-182,553],[-139,501],[-1,1],[-199,768]],[[58049,33472],[-121,182],[-130,-120],[-151,-232],[-148,-374],[209,-454],[99,59],[51,188],[155,93],[47,192],[85,288],[-96,178]],[[23016,65864],[-107,-518],[-49,-426],[-20,-791],[-27,-289],[48,-322],[86,-288],[56,-458],[184,-440],[65,-337],[109,-291],[295,-157],[114,-247],[244,165],[212,60],[208,106],[175,101],[176,241],[67,345],[22,496],[48,173],[188,155],[294,137],[246,-21],[169,50],[66,-125],[-9,-285],[-149,-351],[-66,-360],[51,-103],[-42,-255],[-69,-461],[-71,152],[-58,-10]],[[25472,61510],[-53,-8],[-99,-357],[-51,70],[-33,-27],[2,-87]],[[25238,61101],[-257,7],[-259,-1],[-1,-333],[-125,-1],[103,-198],[103,-136],[31,-128],[45,-36],[-7,-201],[-357,-2],[-133,-481],[39,-111],[-32,-138],[-7,-172]],[[24381,59170],[-314,636],[-144,191],[-226,155],[-156,-43],[-223,-223],[-140,-58],[-196,156],[-208,112],[-260,271],[-208,83],[-314,275],[-233,282],[-70,158],[-155,35],[-284,187],[-116,270],[-299,335],[-139,373],[-66,288],[93,57],[-29,169],[64,153],[1,204],[-93,266],[-25,235],[-94,298],[-244,587],[-280,462],[-135,368],[-238,241],[-51,145],[42,365],[-142,138],[-164,287],[-69,412],[-149,48],[-162,311],[-130,288],[-12,184],[-149,446],[-99,452],[5,227],[-201,234],[-93,-25],[-159,163],[-44,-240],[46,-284],[27,-444],[95,-243],[206,-407],[46,-139],[42,-42],[37,-203],[49,8],[56,-381],[85,-150],[59,-210],[174,-300],[92,-550],[83,-259],[77,-277],[15,-311],[134,-20],[112,-268],[100,-264],[-6,-106],[-117,-217],[-49,3],[-74,359],[-181,337],[-201,286],[-142,150],[9,432],[-42,320],[-132,183],[-191,264],[-37,-76],[-70,154],[-171,143],[-164,343],[20,44],[115,-33],[103,221],[10,266],[-214,422],[-163,163],[-102,369],[-103,388],[-129,472],[-113,531]],[[33993,32727],[180,63],[279,-457],[103,18],[286,-379],[218,-327],[160,-402],[-122,-280],[77,-334]],[[35174,30629],[-121,-372],[-313,-328],[-205,118],[-151,-63],[-256,253],[-189,-19],[-169,327]],[[34826,35372],[54,341],[38,350],[0,325],[-100,107],[-104,-96],[-103,26],[-33,228],[-26,541],[-52,177],[-187,160],[-114,-116],[-293,113],[18,802],[-82,329]],[[33842,38659],[87,122],[-27,337],[77,259],[49,465],[-66,367],[-151,166],[-30,233],[41,342],[-533,24],[-107,688],[81,10],[-3,255],[-55,172],[-12,342],[-161,175],[-175,-6],[-115,172],[-188,117],[-109,220],[-311,98],[-302,529],[23,396],[-34,227],[29,443],[-363,-100],[-147,-222],[-243,-239],[-62,-179],[-143,-13],[-206,50]],[[30686,44109],[-157,-102],[-126,68],[18,898],[-228,-348],[-245,15],[-105,315],[-184,34],[59,254],[-155,359],[-115,532],[73,108],[0,250],[168,171],[-28,319],[71,206],[20,275],[318,402],[227,114],[37,89],[251,-28]],[[30585,48040],[125,1620],[6,256],[-43,339],[-123,215],[1,430],[156,97],[56,-61],[9,226],[-162,61],[-4,370],[541,-13],[92,203],[77,-187],[55,-349],[52,73]],[[31423,51320],[153,-312],[216,38],[54,181],[206,138],[115,97],[32,250],[198,168],[-15,124],[-235,51],[-39,372],[12,396],[-125,153],[52,55],[206,-76],[221,-148],[80,140],[200,92],[310,221],[102,225],[-37,167]],[[33129,53652],[145,26],[64,-136],[-36,-259],[96,-90],[63,-274],[-77,-209],[-44,-502],[71,-299],[20,-274],[171,-277],[137,-29],[30,116],[88,25],[126,104],[90,157],[154,-50],[67,21]],[[34294,51702],[151,-48],[25,120],[-46,118],[28,171],[112,-53],[131,61],[159,-125]],[[34854,51946],[121,-122],[86,160],[62,-25],[38,-166],[133,42],[107,224],[85,436],[164,540]],[[35650,53035],[95,28],[69,-327],[155,-1033],[149,-97],[7,-408],[-208,-487],[86,-178],[491,-92],[10,-593],[211,388],[349,-212],[462,-361],[135,-346],[-45,-327],[323,182],[540,-313],[415,23],[411,-489],[355,-662],[214,-170],[237,-24],[101,-186],[94,-752],[46,-358],[-110,-977],[-142,-385],[-391,-822],[-177,-668],[-206,-513],[-69,-11],[-78,-435],[20,-1107],[-77,-910],[-30,-390],[-88,-233],[-49,-790],[-282,-771],[-47,-610],[-225,-256],[-65,-355],[-302,2],[-437,-227],[-195,-263],[-311,-173],[-327,-470],[-235,-586],[-41,-441],[46,-326],[-51,-597],[-63,-289],[-195,-325],[-308,-1040],[-244,-468],[-189,-277],[-127,-562],[-183,-337]],[[33842,38659],[-4,182],[-259,302],[-258,9],[-484,-172],[-133,-520],[-7,-318],[-110,-708]],[[30669,40193],[175,638],[-119,496],[63,199],[-49,219],[108,295],[6,503],[13,415],[60,200],[-240,951]],[[30452,39739],[-279,340],[-24,242],[-551,593],[-498,646],[-214,365],[-115,488],[46,170],[-236,775],[-274,1090],[-262,1177],[-114,269],[-87,435],[-216,386],[-198,239],[90,264],[-134,563],[86,414],[221,373]],[[27693,48568],[33,-246],[-79,-141],[8,-216],[114,47],[113,-64],[116,-298],[157,243],[53,398],[170,514],[334,233],[303,619],[86,384],[-38,449]],[[29063,50490],[74,56],[184,-280],[89,-279],[129,-152],[163,-620],[207,-74],[153,157],[101,-103],[166,51],[213,-276],[-179,-602],[83,-14],[139,-314]],[[29063,50490],[-119,140],[-137,195],[-79,-94],[-235,82],[-68,255],[-52,-10],[-278,338]],[[28095,51396],[-37,183],[103,44],[-12,296],[65,214],[138,40],[117,371],[106,310],[-102,141],[52,343],[-62,540],[59,155],[-44,500],[-112,315]],[[28366,54848],[36,287],[89,-43],[52,176],[-64,348],[34,86]],[[28513,55702],[143,-18],[209,412],[114,63],[3,195],[51,500],[159,274],[175,11],[22,123],[218,-49],[218,298],[109,132],[134,285],[98,-36],[73,-156],[-54,-199]],[[30185,57537],[-178,-99],[-71,-295],[-107,-169],[-81,-220],[-34,-422],[-77,-345],[144,-40],[35,-271],[62,-130],[21,-238],[-33,-219],[10,-123],[69,-49],[66,-207],[357,57],[161,-75],[196,-508],[112,63],[200,-32],[158,68],[99,-102],[-50,-318],[-62,-199],[-22,-423],[56,-393],[79,-175],[9,-133],[-140,-294],[100,-130],[74,-207],[85,-589]],[[28366,54848],[-93,170],[-59,319],[68,158],[-70,40],[-52,196],[-138,164],[-122,-38],[-56,-205],[-112,-149],[-61,-20],[-27,-123],[132,-321],[-75,-76],[-40,-87],[-130,-30],[-48,353],[-36,-101],[-92,35],[-56,238],[-114,39],[-72,69],[-119,-1],[-8,-128],[-32,89]],[[26954,55439],[14,117],[23,120],[-10,107],[41,70],[-58,88],[-1,238],[107,53]],[[27070,56232],[100,-212],[-6,-126],[111,-26],[26,48],[77,-145],[136,42],[119,150],[168,119],[95,176],[153,-34],[-10,-58],[155,-21],[124,-102],[90,-177],[105,-164]],[[26954,55439],[-151,131],[-56,124],[32,103],[-11,130],[-77,142],[-109,116],[-95,76],[-19,173],[-73,105],[18,-172],[-55,-141],[-64,164],[-89,58],[-38,120],[2,179],[36,187],[-78,83],[64,114]],[[26191,57131],[42,76],[183,-156],[63,77],[89,-50],[46,-121],[82,-40],[66,126]],[[26762,57043],[70,-321],[108,-238],[130,-252]],[[26191,57131],[-96,186],[-130,238],[-61,200],[-117,185],[-140,267],[31,91],[46,-88],[21,41]],[[25745,58251],[86,25],[35,135],[41,5],[-6,290],[65,14],[58,-4],[60,158],[82,-120],[29,74],[51,70],[97,163],[4,121],[27,-5],[36,141],[29,17],[47,-90],[56,-27],[61,76],[70,0],[97,77],[38,81],[95,-12]],[[26903,59440],[-24,-57],[-14,-132],[29,-216],[-64,-202],[-30,-237],[-9,-261],[15,-152],[7,-266],[-43,-58],[-26,-253],[19,-156],[-56,-151],[12,-159],[43,-97]],[[25745,58251],[-48,185],[-84,51]],[[25613,58487],[19,237],[-38,64],[-57,42],[-122,-70],[-10,79],[-84,95],[-60,118],[-82,50]],[[25179,59102],[58,150],[-22,116],[20,113],[131,166],[127,225]],[[25493,59872],[29,-23],[61,104],[79,8],[26,-48],[43,29],[129,-53],[128,15],[90,66],[32,66],[89,-31],[66,-40],[73,14],[55,51],[127,-82],[44,-13],[85,-110],[80,-132],[101,-91],[73,-162]],[[25613,58487],[-31,-139],[-161,9],[-100,57],[-115,117],[-154,37],[-79,127]],[[24973,58695],[9,86],[95,149],[52,66],[-15,69],[65,37]],[[25238,61101],[-2,-468],[-22,-667],[83,0]],[[25297,59966],[90,-107],[24,88],[82,-75]],[[24973,58695],[-142,103],[-174,11],[-127,117],[-149,244]],[[25472,61510],[1,-87],[53,-3],[-5,-160],[-45,-256],[24,-91],[-29,-212],[18,-56],[-32,-299],[-55,-156],[-50,-19],[-55,-205]],[[30185,57537],[-8,-139],[-163,-69],[91,-268],[-3,-309],[-123,-344],[105,-468],[120,38],[62,427],[-86,208],[-14,447],[346,241],[-38,278],[97,186],[100,-415],[195,-9],[180,-330],[11,-195],[249,-6],[297,61],[159,-264],[213,-74],[155,185],[4,149],[344,35],[333,9],[-236,-175],[95,-279],[222,-44],[210,-291],[45,-473],[144,13],[109,-139]],[[33400,55523],[-220,-347],[-24,-215],[95,-220],[-69,-110],[-171,-95],[5,-273],[-75,-163],[188,-448]],[[33400,55523],[183,-217],[171,-385],[8,-304],[105,-14],[149,-289],[109,-205]],[[34125,54109],[-44,-532],[-169,-154],[15,-139],[-51,-305],[123,-429],[89,-1],[37,-333],[169,-514]],[[34125,54109],[333,-119],[30,107],[225,43],[298,-159]],[[35011,53981],[-144,-508],[22,-404],[109,-351],[-49,-254],[-24,-270],[-71,-248]],[[35011,53981],[95,-65],[204,-140],[294,-499],[46,-242]],[[51718,79804],[131,-155],[400,-109],[-140,-404],[-35,-421]],[[52074,78715],[-77,-101],[-126,54],[9,-150],[-203,-332],[-5,-267],[133,92],[95,-259]],[[51900,77752],[-11,-167],[82,-222],[-97,-180],[72,-457],[151,-75],[-32,-256]],[[52065,76395],[-252,-334],[-548,160],[-404,-192],[-32,-355]],[[50829,75674],[-322,-77],[-313,267],[-101,-127],[-511,268],[-111,230]],[[49471,76235],[144,354],[53,1177],[-287,620],[-205,299],[-424,227],[-28,431],[360,129],[466,-152],[-88,669],[263,-254],[646,461],[84,484],[243,119]],[[50698,80799],[40,-207],[129,-10],[129,-237],[194,-279],[143,46],[243,-269]],[[51576,79843],[62,-52],[80,13]],[[52429,75765],[179,226],[47,-507],[-92,-456],[-126,120],[-64,398],[56,219]],[[27693,48568],[148,442],[-60,258],[-106,-275],[-166,259],[56,167],[-47,536],[97,89],[52,368],[105,381],[-20,241],[153,126],[190,236]],[[31588,61519],[142,-52],[50,-118],[-71,-149],[-209,4],[-163,-21],[-16,253],[40,86],[227,-3]],[[28453,61504],[187,-53],[147,-142],[46,-161],[-195,-11],[-84,-99],[-156,95],[-159,215],[34,135],[116,41],[64,-20]],[[27147,64280],[240,-42],[219,-7],[261,-201],[110,-216],[260,66],[98,-138],[235,-366],[173,-267],[92,8],[165,-120],[-20,-167],[205,-24],[210,-242],[-33,-138],[-185,-75],[-187,-29],[-191,46],[-398,-57],[186,329],[-113,154],[-179,39],[-96,171],[-66,336],[-157,-23],[-259,159],[-83,124],[-362,91],[-97,115],[104,148],[-273,30],[-199,-307],[-115,-8],[-40,-144],[-138,-65],[-118,56],[146,183],[60,213],[126,131],[142,116],[210,56],[67,65]],[[58175,37528],[-177,267],[-215,90],[-82,375],[0,208],[-119,64],[-315,649],[-87,342],[-56,105],[-107,473]],[[57017,40101],[311,-65],[90,-68],[94,13],[154,383],[241,486],[100,46],[33,205],[159,235],[210,81]],[[58409,41417],[18,-220],[232,12],[128,-125],[60,-146],[132,-43],[145,-190],[0,-748],[-54,-409],[-12,-442],[45,-175],[-31,-348],[-42,-53],[-74,-426],[-292,-671]],[[55526,35946],[0,1725],[274,20],[8,2105],[207,19],[428,207],[106,-243],[177,231],[85,2],[156,133]],[[56967,40145],[50,-44]],[[54540,33696],[-207,446],[-108,432],[-62,575],[-68,428],[-93,910],[-7,707],[-35,322],[-108,243],[-144,489],[-146,708],[-60,371],[-226,577],[-17,453]],[[53259,40357],[134,113],[166,100],[180,-17],[166,-267],[42,41],[1126,26],[192,-284],[673,-83],[510,241]],[[56448,40227],[228,134],[180,-34],[109,-133],[2,-49]],[[45357,58612],[-115,460],[-138,210],[122,112],[134,415],[66,304]],[[45426,60113],[96,189],[138,-51],[135,129],[155,6],[133,-173],[184,-157],[168,-435],[184,-405]],[[46619,59216],[13,-368],[54,-338],[104,-166],[24,-229],[-13,-184]],[[46801,57931],[-40,-33],[-151,47],[-21,-66],[-61,-13],[-200,144],[-134,6]],[[46194,58016],[-513,25],[-75,-67],[-92,19],[-147,-96]],[[45367,57897],[-46,453]],[[45321,58350],[253,-13],[67,83],[50,5],[103,136],[119,-124],[121,-11],[120,133],[-56,170],[-92,-99],[-86,3],[-110,145],[-88,-9],[-63,-140],[-302,-17]],[[46619,59216],[93,107],[47,348],[88,14],[194,-165],[157,117],[107,-39],[42,131],[1114,9],[62,414],[-48,73],[-134,2550],[-134,2550],[425,10]],[[48632,65335],[937,-1289],[937,-1289],[66,-277],[173,-169],[129,-96],[3,-376],[308,58]],[[51185,61897],[1,-1361],[-152,-394],[-24,-364],[-247,-94],[-379,-51],[-102,-210],[-178,-23]],[[50104,59400],[-178,-3],[-70,114],[-153,-84],[-259,-246],[-53,-184],[-216,-265],[-38,-152],[-116,-120],[-134,79],[-76,-144],[-41,-405],[-221,-490],[7,-200],[-76,-250],[18,-343]],[[48498,56707],[-114,-88],[-65,-74],[-43,253],[-80,-67],[-48,11],[-51,-172],[-215,5],[-77,89],[-36,-54]],[[47769,56610],[-85,170],[15,176],[-35,69],[-59,-58],[11,192],[57,152],[-114,248],[-33,163],[-62,130],[-55,15],[-67,-83],[-90,-79],[-76,-128],[-119,48],[-77,150],[-46,19],[-73,-78],[-44,-1],[-16,216]],[[47587,66766],[1045,-1431]],[[45426,60113],[-24,318],[78,291],[34,557],[-30,583],[-34,294],[28,295],[-72,281],[-146,255]],[[50747,54278],[-229,-69]],[[50518,54209],[-69,407],[13,1357],[-56,122],[-11,290],[-96,207],[-85,174],[35,311]],[[50249,57077],[96,67],[56,258],[136,56],[61,176]],[[50598,57634],[93,173],[100,2],[212,-340]],[[51003,57469],[-11,-197],[62,-350],[-54,-238],[29,-159],[-135,-366],[-86,-181],[-52,-372],[7,-376],[-16,-952]],[[54026,58177],[-78,-34],[-9,-188]],[[53939,57955],[-52,-13],[-188,647],[-65,24],[-217,-331],[-215,173],[-150,34],[-80,-83],[-163,18],[-164,-252],[-141,-14],[-337,305],[-131,-145],[-142,10],[-104,223],[-279,221],[-298,-70],[-72,-128],[-39,-340],[-80,-238],[-19,-527]],[[50598,57634],[6,405],[-320,134],[-9,286],[-156,386],[-37,269],[22,286]],[[51185,61897],[392,263],[804,1161],[952,1126]],[[53333,64447],[439,-255],[156,-324],[197,220]],[[53939,57955],[110,-235],[-31,-107],[-14,-196],[-234,-457],[-74,-377],[-39,-307],[-59,-132],[-56,-414],[-148,-243],[-43,-299],[-63,-238],[-26,-246],[-191,-199],[-156,243],[-105,-10],[-165,-345],[-81,-6],[-132,-570],[-71,-418]],[[52361,53399],[-289,-213],[-105,31],[-107,-132],[-222,13],[-149,370],[-91,427],[-197,389],[-209,-7],[-245,1]],[[54244,54965],[-140,-599],[-67,-107],[-21,-458],[28,-249],[-23,-176],[132,-309],[23,-212],[103,-305],[127,-190],[12,-269],[29,-172]],[[54447,51919],[-20,-319],[-220,140],[-225,156],[-350,23]],[[53632,51919],[-35,32],[-164,-76],[-169,79],[-132,-38]],[[53132,51916],[-452,13]],[[52680,51929],[40,466],[-108,391],[-127,100],[-56,265],[-72,85],[4,163]],[[50518,54209],[-224,-126]],[[50294,54083],[-62,207],[-74,375],[-22,294],[61,532],[-69,215],[-27,466],[1,429],[-116,305],[20,184]],[[50006,57090],[243,-13]],[[50294,54083],[-436,-346],[-154,-203],[-250,-171],[-248,168]],[[49206,53531],[13,233],[-121,509],[73,667],[117,496],[-74,841]],[[49214,56277],[-38,444],[7,336],[482,27],[123,-43],[90,96],[128,-47]],[[48498,56707],[125,-129],[49,-195],[125,-125],[97,149],[130,22],[190,-152]],[[49206,53531],[-126,-7],[-194,116],[-178,-7],[-329,-103],[-193,-170],[-275,-217],[-54,15]],[[47857,53158],[22,487],[26,74],[-8,233],[-118,247],[-88,40],[-81,162],[60,262],[-28,286],[13,172]],[[47655,55121],[44,0],[17,258],[-22,114],[27,82],[103,71],[-69,473],[-64,245],[23,200],[55,46]],[[47655,55121],[-78,15],[-57,-238],[-78,3],[-55,126],[19,237],[-116,362],[-73,-67],[-59,-13]],[[47158,55546],[-77,-34],[3,217],[-44,155],[9,171],[-60,249],[-78,211],[-222,1],[-65,-112],[-76,-13],[-48,-128],[-32,-163],[-148,-260]],[[46320,55840],[-122,349],[-108,232],[-71,76],[-69,118],[-32,261],[-41,130],[-80,97]],[[45797,57103],[123,288],[84,-11],[73,99],[61,1],[44,78],[-24,196],[31,62],[5,200]],[[45797,57103],[-149,247],[-117,39],[-63,166],[1,90],[-84,125],[-18,127]],[[47857,53158],[-73,-5],[-286,282],[-252,449],[-237,324],[-187,381]],[[46822,54589],[66,189],[15,172],[126,320],[129,276]],[[46822,54589],[-75,44],[-200,238],[-144,316],[-49,216],[-34,437]],[[55125,52650],[-178,33],[-188,99],[-166,-313],[-146,-550]],[[56824,55442],[152,-239],[2,-192],[187,-308],[116,-255],[70,-355],[208,-234],[44,-187]],[[53609,47755],[-104,203],[-84,-100],[-112,-255]],[[53309,47603],[-228,626]],[[53081,48229],[212,326],[-105,391],[95,148],[187,73],[23,261],[148,-283],[245,-25],[85,279],[36,393],[-31,461],[-131,350],[120,684],[-69,117],[-207,-48],[-78,305],[21,258]],[[53081,48229],[-285,596],[-184,488],[-169,610],[9,196],[61,189],[67,430],[56,438]],[[52636,51176],[94,35],[404,-6],[-2,711]],[[52636,51176],[-52,90],[96,663]],[[59099,45126],[131,-264],[71,-501],[-47,-160],[-56,-479],[53,-490],[-87,-205],[-85,-549],[147,-153]],[[59226,42325],[-843,-487],[26,-421]],[[56448,40227],[-181,369],[-188,483],[13,1880],[579,-7],[-24,203],[41,222],[-49,277],[32,286],[-29,184]],[[59599,43773],[-77,-449],[77,-768],[97,9],[100,-191],[116,-427],[24,-760],[-120,-124],[-85,-410],[-181,365],[-21,417],[59,274],[-16,237],[-110,149],[-77,-54],[-159,284]],[[61198,44484],[45,-265],[-11,-588],[34,-519],[11,-923],[49,-290],[-83,-422],[-108,-410],[-177,-366],[-254,-225],[-313,-287],[-313,-634],[-107,-108],[-194,-420],[-115,-136],[-23,-421],[132,-448],[54,-346],[4,-177],[49,29],[-8,-579],[-45,-275],[65,-101],[-41,-245],[-116,-211],[-229,-199],[-334,-320],[-122,-219],[24,-248],[71,-40],[-24,-311]],[[58908,34785],[-24,261],[-41,265]],[[53383,47159],[-74,444]],[[53259,40357],[-26,372],[38,519],[96,541],[15,254],[90,532],[66,243],[159,386],[90,263],[29,438],[-15,335],[-83,211],[-74,358],[-68,355],[15,122],[85,235],[-84,570],[-57,396],[-139,374],[26,115]],[[58062,48902],[169,-46],[85,336],[147,-38]],[[59922,69905],[-49,-186]],[[59873,69719],[-100,82],[-58,-394],[69,-66],[-71,-81],[-12,-156],[131,80]],[[59832,69184],[7,-230],[-139,-944]],[[59700,68010],[-27,153],[-155,862]],[[59518,69025],[80,194],[-19,34],[74,276],[56,446],[40,149],[8,6]],[[59757,70130],[93,-1],[25,104],[75,8]],[[59950,70241],[4,-242],[-38,-90],[6,-4]],[[59757,70130],[99,482],[138,416],[5,21]],[[59999,71049],[125,-31],[45,-231],[-151,-223],[-68,-323]],[[63761,43212],[74,-251],[69,-390],[45,-711],[72,-276],[-28,-284],[-49,-174],[-94,347],[-53,-175],[53,-438],[-24,-250],[-77,-137],[-18,-500],[-109,-689],[-137,-814],[-172,-1120],[-106,-821],[-125,-685],[-226,-140],[-243,-250],[-160,151],[-220,211],[-77,312],[-18,524],[-98,471],[-26,425],[50,426],[128,102],[1,197],[133,447],[25,377],[-65,280],[-52,372],[-23,544],[97,331],[38,375],[138,22],[155,121],[103,107],[122,7],[158,337],[229,364],[83,297],[-38,253],[118,-71],[153,410],[6,356],[92,264],[96,-254]],[[59873,69719],[0,-362],[-41,-173]],[[45321,58350],[36,262]],[[52633,68486],[-118,1061],[-171,238],[-3,143],[-227,352],[-24,445],[171,330],[65,487],[-44,563],[57,303]],[[52339,72408],[302,239],[195,-71],[-9,-299],[236,217],[20,-113],[-139,-290],[-2,-273],[96,-147],[-36,-511],[-183,-297],[53,-322],[143,-10],[70,-281],[106,-92]],[[53191,70158],[-16,-454],[-135,-170],[-86,-189],[-191,-228],[30,-244],[-24,-250],[-136,-137]],[[47592,66920],[-2,700],[449,436],[277,90],[227,159],[107,295],[324,234],[12,438],[161,51],[126,219],[363,99],[51,230],[-73,125],[-96,624],[-17,359],[-104,379]],[[49397,71358],[267,323],[300,102],[175,244],[268,180],[471,105],[459,48],[140,-87],[262,232],[297,5],[113,-137],[190,35]],[[52633,68486],[90,-522],[15,-274],[-49,-482],[21,-270],[-36,-323],[24,-371],[-110,-247],[164,-431],[11,-253],[99,-330],[130,109],[219,-275],[122,-370]],[[59922,69905],[309,-234],[544,630]],[[60775,70301],[112,-720]],[[60887,69581],[-53,-89],[-556,-296],[277,-591],[-92,-101],[-46,-197],[-212,-82],[-66,-213],[-120,-182],[-310,94]],[[59709,67924],[-9,86]],[[64327,64904],[49,29],[11,-162],[217,93],[230,-15],[168,-18],[190,400],[207,379],[176,364]],[[65575,65974],[52,-202]],[[65627,65772],[38,-466]],[[65665,65306],[-142,-3],[-23,-384],[50,-82],[-126,-117],[-1,-241],[-81,-245],[-7,-238]],[[65335,63996],[-56,-125],[-835,298],[-106,599],[-11,136]],[[64113,65205],[-18,430],[75,310],[76,64],[84,-185],[5,-346],[-61,-348]],[[64274,65130],[-77,-42],[-84,117]],[[63326,68290],[58,-261],[-25,-135],[89,-445]],[[63448,67449],[-196,-16],[-69,282],[-248,57]],[[62935,67772],[204,567],[187,-49]],[[60775,70301],[615,614],[105,715],[-26,431],[152,146],[142,369]],[[61763,72576],[119,92],[324,-77],[97,-150],[133,100]],[[62436,72541],[180,-705],[182,-177],[21,-345],[-139,-204],[-65,-461],[193,-562],[340,-324],[143,-449],[-46,-428],[89,0],[3,-314],[153,-311]],[[63490,68261],[-164,29]],[[62935,67772],[-516,47],[-784,1188],[-413,414],[-335,160]],[[65665,65306],[125,-404],[155,-214],[203,-78],[165,-107],[125,-339],[75,-196],[100,-75],[-1,-132],[-101,-352],[-44,-166],[-117,-189],[-104,-404],[-126,31],[-58,-141],[-44,-300],[34,-395],[-26,-72],[-128,2],[-174,-221],[-27,-288],[-63,-125],[-173,5],[-109,-149],[1,-238],[-134,-165],[-153,56],[-186,-199],[-128,-34]],[[64752,60417],[-91,413],[-217,975]],[[64444,61805],[833,591],[185,1182],[-127,418]],[[65575,65974],[80,201],[35,-51],[-26,-244],[-37,-108]],[[96448,41190],[175,-339],[-92,-78],[-93,259],[10,158]],[[96330,41322],[-39,163],[-6,453],[133,-182],[45,-476],[-75,74],[-58,-32]],[[78495,57780],[-66,713],[178,492],[359,112],[261,-84]],[[79227,59013],[229,-232],[126,407],[246,-217]],[[79828,58971],[64,-394],[-34,-708],[-467,-455],[122,-358],[-292,-43],[-240,-238]],[[78981,56775],[-233,87],[-112,307],[-141,611]],[[78495,57780],[-249,271],[-238,-11],[41,464],[-245,-3],[-22,-650],[-150,-863],[-90,-522],[19,-428],[181,-18],[113,-539],[50,-512],[155,-338],[168,-69],[144,-306]],[[78372,54256],[-91,-243],[-183,-71],[-22,304],[-227,258],[-48,-105]],[[77801,54399],[-110,227],[-47,292],[-148,334],[-135,280],[-45,-347],[-53,328],[30,369],[82,566]],[[77375,56448],[135,607],[152,551],[-108,539],[4,274],[-32,330],[-185,470],[-66,296],[96,109],[101,514],[-113,390],[-177,431],[-134,519],[117,107],[127,639],[196,26],[162,256],[159,137]],[[77809,62643],[120,-182],[16,-355],[188,-27],[-68,-623],[6,-530],[293,353],[83,-104],[163,17],[56,205],[210,-40],[211,-480],[18,-583],[224,-515],[-12,-500],[-90,-266]],[[77809,62643],[59,218],[237,384]],[[78105,63245],[25,-139],[148,-16],[-42,676],[144,86]],[[78380,63852],[162,-466],[125,-537],[342,-5],[108,-515],[-178,-155],[-80,-212],[333,-353],[231,-699],[175,-520],[210,-411],[70,-418],[-50,-590]],[[77375,56448],[-27,439],[86,452],[-94,350],[23,644],[-113,306],[-90,707],[-50,746],[-121,490],[-183,-297],[-315,-421],[-156,53],[-172,138],[96,732],[-58,554],[-218,681],[34,213],[-163,76],[-197,481]],[[75657,62792],[-18,476],[97,-90],[6,424]],[[75742,63602],[137,140],[-30,251],[63,201],[11,612],[217,-135],[124,487],[14,288],[153,496],[-8,338],[359,408],[199,-107],[-23,364],[97,108],[-20,224]],[[77035,67277],[162,44],[93,-348],[121,-141],[8,-452],[-11,-487],[-263,-493],[-33,-701],[293,98],[66,-544],[176,-115],[-81,-490],[206,-222],[121,-109],[203,172],[9,-244]],[[78380,63852],[149,145],[221,-3],[271,68],[236,315],[134,-222],[254,-108],[-44,-340],[132,-240],[280,-154]],[[80013,63313],[-371,-505],[-231,-558],[-61,-410],[212,-623],[260,-772],[252,-365],[169,-475],[127,-1093],[-37,-1039],[-232,-389],[-318,-381],[-227,-492],[-346,-550],[-101,378],[78,401],[-206,335]],[[86327,75524],[0,0]],[[86327,75524],[-106,36],[-120,-200],[-83,-202],[10,-424],[-143,-130],[-50,-105],[-104,-174],[-185,-97],[-121,-159],[-9,-256],[-32,-65],[111,-96],[157,-259]],[[85652,73393],[-40,-143],[-118,-39],[-197,-29],[-108,-266],[-124,21],[-17,-54]],[[85048,72883],[-135,112],[-34,-111],[-81,-49],[-10,112],[-72,54],[-75,94],[76,260],[66,69],[-25,108],[71,319],[-18,96],[-163,65],[-131,158]],[[84517,74170],[227,379],[306,318],[191,419],[131,-185],[241,-22],[-44,312],[429,254],[111,331],[179,-348]],[[85652,73393],[240,-697],[68,-383],[3,-681],[-105,-325],[-252,-113],[-222,-245],[-250,-51],[-31,322],[51,443],[-122,615],[206,99],[-190,506]],[[82410,80055],[-135,-446],[-197,-590],[72,-241],[157,74],[274,-92],[214,219],[223,-189],[251,-413],[-30,-210],[-219,66],[-404,-78],[-195,-168],[-204,-391],[-423,-229],[-277,-313],[-286,120],[-156,53],[-146,-381],[89,-227],[45,-195],[-194,-199],[-200,-316],[-324,-208],[-417,-22],[-448,-205],[-324,-318],[-123,184],[-336,-1],[-411,359],[-274,88],[-369,-82],[-574,133],[-306,-14],[-163,351],[-127,544],[-171,66],[-336,368],[-374,83],[-330,101],[-100,256],[107,690],[-192,476],[-396,222],[-233,313],[-73,413]],[[75742,63602],[-147,937],[-76,-2],[-46,-377],[-152,306],[86,336],[124,34],[128,500],[-160,101],[-257,-8],[-265,81],[-24,410],[-133,30],[-220,255],[-98,-401],[200,-313],[-173,-220],[-62,-215],[171,-159],[-47,-356],[96,-444],[43,-486]],[[74730,63611],[-39,-216],[-189,7],[-343,-122],[16,-445],[-148,-349],[-400,-398],[-311,-695],[-209,-373],[-276,-387],[-1,-271],[-138,-146],[-251,-212],[-129,-31],[-84,-450],[58,-769],[15,-490],[-118,-561],[-1,-1004],[-144,-29],[-126,-450],[84,-195],[-253,-168],[-93,-401],[-112,-170],[-263,552],[-128,827],[-107,596],[-97,279],[-148,568],[-69,739],[-48,369],[-253,811],[-115,1145],[-83,756],[1,716],[-54,553],[-404,-353],[-196,70],[-362,716],[133,214],[-82,232],[-326,501]],[[68937,64577],[185,395],[612,-2],[-56,507],[-156,300],[-31,455],[-182,265],[306,619],[323,-45],[290,620],[174,599],[270,593],[-4,421],[236,342],[-224,292],[-96,400],[-99,517],[137,255],[421,-144],[310,88],[268,496]],[[71621,71550],[298,-692],[-28,-482],[111,-303],[-9,-301],[-200,79],[78,-651],[273,-374],[386,-413]],[[72530,68413],[-176,-268],[-108,-553],[269,-224],[262,-289],[362,-332],[381,-76],[160,-301],[215,-56],[334,-138],[231,10],[32,234],[-36,375],[21,255]],[[74477,67050],[170,124],[23,-465]],[[74670,66709],[6,-119],[252,-224],[175,92],[234,-39],[227,17],[20,363],[-113,189]],[[75471,66988],[224,74],[252,439],[321,376],[233,-145],[198,249],[130,-367],[-94,-248],[300,-89]],[[75657,62792],[-79,308],[-16,301],[-53,285],[-116,344],[-256,23],[25,-243],[-87,-329],[-118,120],[-41,-108],[-78,65],[-108,53]],[[74670,66709],[184,439],[150,150],[198,-137],[147,-14],[122,-159]],[[72530,68413],[115,141],[223,-182],[280,-385],[157,-84],[93,-284],[216,-117],[225,-259],[314,-136],[324,-57]],[[68937,64577],[-203,150],[-83,424],[-215,450],[-512,-111],[-451,-11],[-391,-83]],[[67082,65396],[105,687],[400,305],[-23,272],[-133,96],[-7,520],[-266,260],[-112,357],[-137,310]],[[66909,68203],[465,-301],[278,88],[166,-75],[56,129],[194,-52],[361,246],[10,503],[154,334],[207,-1],[31,166],[212,77],[103,-55],[108,166],[-15,355],[118,356],[177,150],[-110,390],[265,-18],[76,213],[-12,227],[139,248],[-32,294],[-66,250],[163,258],[298,124],[319,68],[141,109],[162,67]],[[70877,72519],[205,-276],[82,-454],[457,-239]],[[68841,72526],[85,-72],[201,189],[93,-114],[90,271],[166,-12],[43,86],[29,239],[120,205],[150,-134],[-30,-181],[84,-28],[-26,-496],[110,-194],[97,125],[123,58],[173,265],[192,-44],[286,-1]],[[70827,72688],[50,-169]],[[66909,68203],[252,536],[-23,380],[-210,100],[-22,375],[-91,472],[119,323],[-121,87],[76,430],[113,736]],[[67002,71642],[284,-224],[209,79],[58,268],[219,89],[157,180],[55,472],[234,114],[44,211],[131,-158],[84,-19]],[[69725,74357],[-101,-182],[-303,98],[-26,-340],[301,46],[343,-192],[526,89]],[[70465,73876],[70,-546],[91,59],[169,-134],[-10,-230],[42,-337]],[[72294,75601],[-39,-134],[-438,-320],[-99,-234],[-356,-70],[-105,-378],[-294,80],[-192,-116],[-266,-279],[39,-138],[-79,-136]],[[67002,71642],[-24,498],[-207,21],[-318,523],[-221,65],[-308,299],[-197,55],[-122,-110],[-186,17],[-197,-338],[-244,-114]],[[64978,72558],[-52,417],[40,618],[-216,200],[71,405],[-184,34],[61,498],[262,-145],[244,189],[-202,355],[-80,338],[-224,-151],[-28,-433],[-87,383]],[[62436,72541],[-152,473],[55,183],[-87,678],[190,168]],[[62442,74043],[44,-223],[141,-273],[190,-78]],[[62817,73469],[101,17]],[[62918,73486],[327,436],[104,44],[82,-174],[-95,-292],[173,-309],[69,29]],[[63578,73220],[88,-436],[263,-123],[193,-296],[395,-102],[434,156],[27,139]],[[67082,65396],[-523,179],[-303,136],[-313,76],[-118,725],[-133,105],[-214,-106],[-280,-286],[-339,196],[-281,454],[-267,168],[-186,561],[-205,788],[-149,-96],[-177,196],[-104,-231]],[[59999,71049],[-26,452],[68,243]],[[60041,71744],[74,129],[75,130],[15,329],[91,-115],[306,165],[147,-112],[229,2],[320,222],[149,-10],[316,92]],[[62817,73469],[-113,342],[1,91],[-123,-2],[-82,159],[-58,-16]],[[62442,74043],[-109,172],[-207,147],[27,288],[-47,208]],[[62106,74858],[386,92]],[[62492,74950],[57,-155],[106,-103],[-56,-148],[148,-202],[-78,-189],[118,-160],[124,-97],[7,-410]],[[55734,91409],[371,-289],[433,-402],[8,-910],[93,-230]],[[56639,89578],[-478,-167],[-269,-413],[43,-361],[-441,-475],[-537,-509],[-202,-832],[198,-416],[265,-328],[-255,-666],[-289,-138],[-106,-992],[-157,-554],[-337,57],[-158,-468],[-321,-27],[-89,558],[-232,671],[-211,835]],[[58829,81362],[-239,-35],[-85,-129],[-18,-298],[-111,57],[-250,-28],[-73,138],[-104,-103],[-105,86],[-218,12],[-310,141],[-281,47],[-215,-14],[-152,-160],[-133,-23]],[[56535,81053],[-6,263],[-85,274],[166,121],[2,235],[-77,225],[-12,261]],[[56523,82432],[268,-4],[302,223],[64,333],[228,190],[-26,264]],[[57359,83438],[169,100],[298,228]],[[60617,78409],[-222,-48],[-185,-191],[-260,-31],[-239,-220],[14,-317]],[[59287,77741],[-38,64],[-432,149],[-19,221],[-257,-73],[-103,-325],[-215,-437]],[[58223,77340],[-126,101],[-131,-95],[-124,109]],[[57842,77455],[70,64],[49,203],[76,188],[-20,106],[58,47],[27,-81],[164,-18],[74,44],[-52,60],[19,88],[-97,150],[-40,247],[-101,97],[20,200],[-125,159],[-115,22],[-204,184],[-185,-58],[-66,-87]],[[57394,79070],[-118,0],[-69,-139],[-205,-56],[-95,-91],[-129,144],[-178,3],[-172,65],[-120,-127]],[[56308,78869],[-19,159],[-155,161]],[[56134,79189],[55,238],[77,154]],[[56266,79581],[60,-35],[-71,266],[252,491],[138,69],[29,166],[-139,515]],[[56266,79581],[-264,227],[-200,-84],[-131,61],[-165,-127],[-140,210],[-114,-81],[-16,36]],[[55236,79823],[-127,291],[-207,36],[-26,185],[-191,66],[-41,-153],[-151,122],[17,163],[-207,51],[-132,191]],[[54171,80775],[-114,377],[22,204],[-69,316],[-101,210],[77,158],[-64,300]],[[53922,82340],[189,174],[434,273],[350,200],[277,-100],[21,-144],[268,-7]],[[56314,82678],[142,-64],[67,-182]],[[54716,79012],[-21,-241],[-156,-2],[53,-128],[-92,-380]],[[54500,78261],[-53,-100],[-243,-14],[-140,-134],[-229,45]],[[53835,78058],[-398,153],[-62,205],[-274,-102],[-32,-113],[-169,84]],[[52900,78285],[-142,16],[-125,108],[42,145],[-10,104]],[[52665,78658],[83,33],[141,-164],[39,156],[245,-25],[199,106],[133,-18],[87,-121],[26,100],[-40,385],[100,75],[98,272]],[[53776,79457],[206,-190],[157,242],[98,44],[215,-180],[131,30],[128,-111]],[[54711,79292],[-23,-75],[28,-205]],[[56308,78869],[-170,-123],[-131,-401],[-168,-401],[-223,-111]],[[55616,77833],[-173,26],[-213,-155]],[[55230,77704],[-104,-89],[-229,114],[-208,253],[-88,73]],[[54601,78055],[-54,200],[-47,6]],[[54716,79012],[141,-151],[103,-65],[233,73],[22,118],[111,18],[135,92],[30,-38],[130,74],[66,139],[91,36],[297,-180],[59,61]],[[57842,77455],[-50,270],[30,252],[-9,259],[-160,352],[-89,249],[-86,175],[-84,58]],[[58223,77340],[6,-152],[-135,-128],[-84,56],[-78,-713]],[[57932,76403],[-163,62],[-202,215],[-327,-138],[-138,-150],[-408,31],[-213,92],[-108,-43],[-80,243]],[[56293,76715],[-51,103],[65,99],[-69,74],[-87,-133],[-162,172],[-22,244],[-169,139],[-31,188],[-151,232]],[[55907,83187],[-59,497]],[[55848,83684],[318,181],[466,-38],[273,59],[39,-123],[148,-38],[267,-287]],[[55848,83684],[10,445],[136,371],[262,202],[221,-442],[223,12],[53,453]],[[56753,84725],[237,105],[121,-73],[239,-219],[229,-1]],[[56753,84725],[32,349],[-102,-75],[-176,210],[-24,340],[351,164],[350,86],[301,-97],[287,17]],[[54171,80775],[-124,-62],[-73,68],[-70,-113],[-200,-114],[-103,-147],[-202,-129],[49,-176],[30,-249],[141,-142],[157,-254]],[[52665,78658],[-298,181],[-57,-128],[-236,4]],[[51718,79804],[16,259],[-56,133]],[[51678,80196],[32,400]],[[51710,80596],[-47,619],[167,0],[70,222],[69,541],[-51,200]],[[51918,82178],[54,125],[232,32],[52,-130],[188,291],[-63,222],[-13,335]],[[52368,83053],[210,-78],[178,90]],[[52756,83065],[4,-228],[281,-138],[-3,-210],[283,111],[156,162],[313,-233],[132,-189]],[[57932,76403],[-144,-245],[-101,-422],[89,-337]],[[57776,75399],[-239,79],[-283,-186]],[[57254,75292],[-3,-294],[-252,-56],[-196,206],[-222,-162],[-206,17]],[[56375,75003],[-20,391],[-139,189]],[[56216,75583],[46,84],[-30,70],[47,188],[105,185],[-135,255],[-24,216],[68,134]],[[57302,71436],[-35,-175],[-400,-50],[3,98],[-339,115],[52,251],[152,-199],[216,34],[207,-42],[-7,-103],[151,71]],[[57254,75292],[135,-157],[-86,-369],[-66,-67]],[[57237,74699],[-169,17],[-145,56],[-336,-154],[192,-332],[-141,-96],[-154,-1],[-147,305],[-52,-130],[62,-353],[139,-277],[-105,-129],[155,-273],[137,-171],[4,-334],[-257,157],[82,-302],[-176,-62],[105,-521],[-184,-8],[-228,257],[-104,473],[-49,393],[-108,272],[-143,337],[-18,168]],[[55597,73991],[129,287],[16,192],[91,85],[5,155]],[[55838,74710],[182,53],[106,129],[150,-12],[46,103],[53,20]],[[60041,71744],[-102,268],[105,222],[-169,-51],[-233,136],[-191,-340],[-421,-66],[-225,317],[-300,20],[-64,-245],[-192,-70],[-268,314],[-303,-11],[-165,588],[-203,328],[135,459],[-176,283],[308,565],[428,23],[117,449],[529,-78],[334,383],[324,167],[459,13],[485,-417],[399,-228],[323,91],[239,-53],[328,309]],[[61542,75120],[296,28],[268,-290]],[[57776,75399],[33,-228],[243,-190],[-51,-145],[-330,-33],[-118,-182],[-232,-319],[-87,276],[3,121]],[[55597,73991],[-48,41],[-5,130],[-154,199],[-24,281],[23,403],[38,184],[-47,93]],[[55380,75322],[-18,188],[120,291],[18,-111],[75,52]],[[55575,75742],[59,-159],[66,-60],[19,-214]],[[55719,75309],[-35,-201],[39,-254],[115,-144]],[[55230,77704],[67,-229],[89,-169],[-107,-222]],[[55279,77084],[-126,131],[-192,-8],[-239,98],[-130,-13],[-60,-123],[-99,136],[-59,-245],[136,-277],[61,-183],[127,-221],[106,-130],[105,-247],[246,-224]],[[55155,75778],[-31,-100]],[[55124,75678],[-261,218],[-161,213],[-254,176],[-233,434],[56,45],[-127,248],[-5,200],[-179,93],[-85,-255],[-82,198],[6,205],[10,9]],[[53809,77462],[194,-20],[51,100],[94,-97],[109,-11],[-1,165],[97,60],[27,239],[221,157]],[[52900,78285],[-22,-242],[-122,-100],[-206,75],[-60,-239],[-132,-19],[-48,94],[-156,-200],[-134,-28],[-120,126]],[[51576,79843],[30,331],[72,22]],[[50698,80799],[222,117]],[[50920,80916],[204,-47],[257,123],[176,-258],[153,-138]],[[50920,80916],[143,162],[244,869],[380,248],[231,-17]],[[47490,75324],[101,150],[113,86],[70,-289],[164,0],[47,75],[162,-21],[78,-296],[-129,-160],[-3,-461],[-45,-86],[-11,-280],[-120,-48],[111,-355],[-77,-388],[96,-175],[-38,-161],[-103,-222],[23,-195]],[[47929,72498],[-112,-153],[-146,83],[-143,-65],[42,462],[-26,363],[-124,55],[-67,224],[22,386],[111,215],[20,239],[58,355],[-6,250],[-56,212],[-12,200]],[[47490,75324],[14,420],[-114,257],[393,426],[340,-106],[373,3],[296,-101],[230,31],[449,-19]],[[50829,75674],[15,-344],[-263,-393],[-356,-125],[-25,-199],[-171,-327],[-107,-481],[108,-338],[-160,-263],[-60,-384],[-210,-118],[-197,-454],[-352,-9],[-265,11],[-174,-209],[-106,-223],[-136,49],[-103,199],[-79,340],[-259,92]],[[48278,82406],[46,-422],[-210,-528],[-493,-349],[-393,89],[225,617],[-145,601],[378,463],[210,276]],[[47896,83153],[57,-317],[-57,-317],[172,9],[210,-122]],[[96049,38125],[228,-366],[144,-272],[-105,-142],[-153,160],[-199,266],[-179,313],[-184,416],[-38,201],[119,-9],[156,-201],[122,-200],[89,-166]],[[95032,44386],[78,-203],[-194,4],[-106,363],[166,-142],[56,-22]],[[94910,44908],[-42,-109],[-206,512],[-57,353],[94,0],[100,-473],[111,-283]],[[94680,44747],[-108,-14],[-170,60],[-58,91],[17,235],[183,-93],[91,-124],[45,-155]],[[94344,45841],[65,-187],[12,-119],[-218,251],[-152,212],[-104,197],[41,60],[128,-142],[228,-272]],[[93649,46431],[111,-193],[-56,-33],[-121,134],[-114,243],[14,99],[166,-250]],[[99134,26908],[-105,-319],[-138,-404],[-214,-236],[-48,155],[-116,85],[160,486],[-91,326],[-299,236],[8,214],[201,206],[47,455],[-13,382],[-113,396],[8,104],[-133,244],[-218,523],[-117,418],[104,46],[151,-328],[216,-153],[78,-526],[202,-622],[5,403],[126,-161],[41,-447],[224,-192],[188,-48],[158,226],[141,-69],[-67,-524],[-85,-345],[-212,12],[-74,-179],[26,-254],[-41,-110]],[[97129,24846],[238,310],[167,306],[123,441],[106,149],[41,330],[195,273],[61,-251],[63,-244],[198,239],[80,-249],[0,-249],[-103,-274],[-182,-435],[-142,-238],[103,-284],[-214,-7],[-238,-223],[-75,-387],[-157,-597],[-219,-264],[-138,-169],[-256,13],[-180,194],[-302,42],[-46,217],[149,438],[349,583],[179,111],[200,225]],[[91024,26469],[166,-39],[20,-702],[-95,-203],[-29,-476],[-97,162],[-193,-412],[-57,32],[-171,19],[-171,505],[-38,390],[-160,515],[7,271],[181,-52],[269,-204],[151,81],[217,113]],[[85040,31546],[-294,-303],[-241,-137],[-53,-309],[-103,-240],[-236,-15],[-174,-52],[-246,107],[-199,-64],[-191,-27],[-165,-315],[-81,26],[-140,-167],[-133,-187],[-203,23],[-186,0],[-295,377],[-149,113],[6,338],[138,81],[47,134],[-10,212],[34,411],[-31,350],[-147,598],[-45,337],[12,336],[-111,385],[-7,174],[-123,235],[-35,463],[-158,467],[-39,252],[122,-255],[-93,548],[137,-171],[83,-229],[-5,303],[-138,465],[-26,186],[-65,177],[31,341],[56,146],[38,295],[-29,346],[114,425],[21,-450],[118,406],[225,198],[136,252],[212,217],[126,46],[77,-73],[219,220],[168,66],[42,129],[74,54],[153,-14],[292,173],[151,262],[71,316],[163,300],[13,236],[7,321],[194,502],[117,-510],[119,118],[-99,279],[87,287],[122,-128],[34,449],[152,291],[67,233],[140,101],[4,165],[122,-69],[5,148],[122,85],[134,80],[205,-271],[155,-350],[173,-4],[177,-56],[-59,325],[133,473],[126,155],[-44,147],[121,338],[168,208],[142,-70],[234,111],[-5,302],[-204,195],[148,86],[184,-147],[148,-242],[234,-151],[79,60],[172,-182],[162,169],[105,-51],[65,113],[127,-292],[-74,-316],[-105,-239],[-96,-20],[32,-236],[-81,-295],[-99,-291],[20,-166],[221,-327],[214,-189],[143,-204],[201,-350],[78,1],[145,-151],[43,-183],[265,-200],[183,202],[55,317],[56,262],[34,324],[85,470],[-39,286],[20,171],[-32,339],[37,445],[53,120],[-43,197],[67,313],[52,325],[7,168],[104,222],[78,-289],[19,-371],[70,-71],[11,-249],[101,-300],[21,-335],[-10,-214],[100,-464],[179,223],[92,-250],[133,-231],[-29,-262],[60,-506],[42,-295],[70,-72],[75,-505],[-27,-307],[90,-400],[301,-309],[197,-281],[186,-257],[-37,-143],[159,-371],[108,-639],[111,130],[113,-256],[68,91],[48,-626],[197,-363],[129,-226],[217,-478],[78,-475],[7,-337],[-19,-365],[132,-502],[-16,-523],[-48,-274],[-75,-527],[6,-339],[-55,-423],[-123,-538],[-205,-290],[-102,-458],[-93,-292],[-82,-510],[-107,-294],[-70,-442],[-36,-407],[14,-187],[-159,-205],[-311,-22],[-257,-242],[-127,-229],[-168,-254],[-230,262],[-170,104],[43,308],[-152,-112],[-243,-428],[-240,160],[-158,94],[-159,42],[-269,171],[-179,364],[-52,449],[-64,298],[-137,240],[-267,71],[91,287],[-67,438],[-136,-408],[-247,-109],[146,327],[42,341],[107,289],[-22,438],[-226,-504],[-174,-202],[-106,-470],[-217,243],[9,313],[-174,429],[-147,221],[52,137],[-356,358],[-195,17],[-267,287],[-498,-56],[-359,-211],[-317,-197],[-265,39]],[[72718,55024],[-42,-615],[-116,-168],[-242,-135],[-132,470],[-49,849],[126,959],[192,-328],[129,-416],[134,-616]],[[80409,61331],[-228,183],[-8,509],[137,267],[304,166],[159,-14],[62,-226],[-122,-260],[-64,-341],[-240,-284]],[[84517,74170],[-388,-171],[-204,-277],[-300,-161],[148,274],[-58,230],[220,397],[-147,310],[-242,-209],[-314,-411],[-171,-381],[-272,-29],[-142,-275],[147,-400],[227,-97],[9,-265],[220,-173],[311,422],[247,-230],[179,-15],[45,-310],[-393,-165],[-130,-319],[-270,-296],[-142,-414],[299,-325],[109,-581],[169,-541],[189,-454],[-5,-439],[-174,-161],[66,-315],[164,-184],[-43,-481],[-71,-468],[-155,-53],[-203,-640],[-225,-775],[-258,-705],[-382,-545],[-386,-498],[-313,-68],[-170,-262],[-96,192],[-157,-294],[-388,-296],[-294,-90],[-95,-624],[-154,-35],[-73,429],[66,228],[-373,189],[-131,-96]],[[83826,64992],[-167,-947],[-119,-485],[-146,499],[-32,438],[163,581],[223,447],[127,-176],[-49,-357]],[[53835,78058],[-31,-291],[67,-251]],[[53871,77516],[-221,86],[-226,-210],[15,-293],[-34,-168],[91,-301],[261,-298],[140,-488],[309,-476],[217,3],[68,-130],[-78,-118],[249,-214],[204,-178],[238,-308],[29,-111],[-52,-211],[-154,276],[-242,97],[-116,-382],[200,-219],[-33,-309],[-116,-35],[-148,-506],[-116,-46],[1,181],[57,317],[60,126],[-108,342],[-85,298],[-115,74],[-82,255],[-179,107],[-120,238],[-206,38],[-217,267],[-254,384],[-189,340],[-86,585],[-138,68],[-226,195],[-128,-80],[-161,-274],[-115,-43]],[[54100,73116],[211,51],[-100,-465],[41,-183],[-58,-303],[-213,222],[-141,64],[-387,300],[38,304],[325,-54],[284,64]],[[52419,74744],[139,183],[166,-419],[-39,-782],[-126,38],[-113,-197],[-105,156],[-11,713],[-64,338],[153,-30]],[[52368,83053],[-113,328],[-8,604],[46,159],[80,177],[244,37],[98,163],[223,167],[-9,-304],[-82,-192],[33,-166],[151,-89],[-68,-223],[-83,64],[-200,-425],[76,-288]],[[53436,83731],[88,-296],[-166,-478],[-291,333],[-39,246],[408,195]],[[47896,83153],[233,24],[298,-365],[-149,-406]],[[49140,82132],[1,0],[40,343],[-186,364],[-4,8],[-337,104],[-66,160],[101,264],[-92,163],[-149,-279],[-17,569],[-140,301],[101,611],[216,480],[222,-47],[335,49],[-297,-639],[283,81],[304,-3],[-72,-481],[-250,-530],[287,-38],[22,-62],[248,-697],[190,-95],[171,-673],[79,-233],[337,-113],[-34,-378],[-142,-173],[111,-305],[-250,-310],[-371,6],[-473,-163],[-130,116],[-183,-276],[-257,67],[-195,-226],[-148,118],[407,621],[249,127],[-2,1],[-434,98],[-79,235],[291,183],[-152,319],[52,387],[413,-54]],[[45969,89843],[-64,-382],[314,-403],[-361,-451],[-801,-405],[-240,-107],[-365,87],[-775,187],[273,261],[-605,289],[492,114],[-12,174],[-583,137],[188,385],[421,87],[433,-400],[422,321],[349,-167],[453,315],[461,-42]],[[63495,75281],[146,-311],[141,-419],[130,-28],[85,-159],[-228,-47],[-49,-459],[-48,-207],[-101,-138],[7,-293]],[[62492,74950],[68,96],[207,-169],[149,-36],[38,70],[-136,319],[72,82]],[[61542,75120],[42,252],[-70,403],[-160,218],[-154,68],[-102,181]],[[83564,58086],[-142,450],[238,-22],[97,-213],[-74,-510],[-119,295]],[[84051,56477],[70,165],[30,367],[153,35],[-44,-398],[205,570],[-26,-563],[-100,-195],[-87,-373],[-87,-175],[-171,409],[57,158]],[[85104,55551],[28,-392],[16,-332],[-94,-540],[-102,602],[-130,-300],[89,-435],[-79,-277],[-327,343],[-78,428],[84,280],[-176,280],[-87,-245],[-131,23],[-205,-330],[-46,173],[109,498],[175,166],[151,223],[98,-268],[212,162],[45,264],[196,15],[-16,457],[225,-280],[23,-297],[20,-218]],[[82917,56084],[-369,-561],[136,414],[200,364],[167,409],[146,587],[49,-482],[-183,-325],[-146,-406]],[[83982,61347],[-46,-245],[95,-423],[-73,-491],[-164,-196],[-43,-476],[62,-471],[147,-65],[123,70],[347,-328],[-27,-321],[91,-142],[-29,-272],[-216,290],[-103,310],[-71,-217],[-177,354],[-253,-87],[-138,130],[14,244],[87,151],[-83,136],[-36,-213],[-137,340],[-41,257],[-11,566],[112,-195],[29,925],[90,535],[169,-1],[171,-168],[85,153],[26,-150]],[[83899,57324],[-43,282],[166,-183],[177,1],[-5,-247],[-129,-251],[-176,-178],[-10,275],[20,301]],[[84861,57766],[78,-660],[-214,157],[5,-199],[68,-364],[-132,-133],[-11,416],[-84,31],[-43,357],[163,-47],[-4,224],[-169,451],[266,-13],[77,-220]],[[78372,54256],[64,-56],[164,-356],[116,-396],[16,-398],[-29,-269],[27,-203],[20,-349],[98,-163],[109,-523],[-5,-199],[-197,-40],[-263,438],[-329,469],[-32,301],[-161,395],[-38,489],[-100,322],[30,431],[-61,250]],[[80461,51765],[204,-202],[214,110],[56,500],[119,112],[333,128],[199,467],[137,374]],[[81723,53254],[126,-307],[58,202],[133,-19],[16,377],[13,291]],[[82069,53798],[214,411],[140,462],[112,2],[143,-299],[13,-257],[183,-165],[231,-177],[-20,-232],[-186,-29],[50,-289],[-205,-201]],[[81723,53254],[110,221],[236,323]],[[53809,77462],[62,54]],[[57797,86326],[-504,-47],[-489,-216],[-452,-125],[-161,323],[-269,193],[62,582],[-135,533],[133,345],[252,371],[635,640],[185,124],[-28,250],[-387,279]],[[54711,79292],[39,130],[123,-10],[95,61],[7,55],[54,28],[18,134],[64,26],[43,106],[82,1]],[[60669,61213],[161,-684],[77,-542],[152,-288],[379,-558],[154,-336],[151,-341],[87,-203],[136,-178]],[[61966,58083],[-83,-144],[-119,51]],[[61764,57990],[-95,191],[-114,346],[-124,190],[-71,204],[-242,237],[-191,7],[-67,124],[-163,-139],[-168,268],[-87,-441],[-323,124]],[[89411,73729],[-256,-595],[4,-610],[-104,-472],[48,-296],[-145,-416],[-355,-278],[-488,-36],[-396,-675],[-186,227],[-12,442],[-483,-130],[-329,-279],[-325,-11],[282,-435],[-186,-1004],[-179,-248],[-135,229],[69,533],[-176,172],[-113,405],[263,182],[145,371],[280,306],[203,403],[553,177],[297,-121],[291,1050],[185,-282],[408,591],[158,229],[174,723],[-47,664],[117,374],[295,108],[152,-819],[-9,-479]],[[90169,76553],[197,250],[62,-663],[-412,-162],[-244,-587],[-436,404],[-152,-646],[-308,-9],[-39,587],[138,455],[296,33],[81,817],[83,460],[326,-615],[213,-198],[195,-126]],[[86769,70351],[154,352],[158,-68],[114,248],[204,-127],[35,-203],[-156,-357],[-114,189],[-143,-137],[-73,-346],[-181,168],[2,281]],[[64752,60417],[-201,-158],[-54,-263],[-6,-201],[-277,-249],[-444,-276],[-249,-417],[-122,-33],[-83,35],[-163,-245],[-177,-114],[-233,-30],[-70,-34],[-61,-156],[-73,-43],[-43,-150],[-137,13],[-89,-80],[-192,30],[-72,345],[8,323],[-46,174],[-54,437],[-80,243],[56,29],[-29,270],[34,114],[-12,257]],[[61883,60238],[121,189],[-28,249],[74,290],[114,-153],[75,53],[321,14],[50,-59],[269,-60],[106,30],[70,-197],[130,99],[199,620],[259,266],[801,226]],[[63448,67449],[109,-510],[137,-135],[47,-207],[190,-249],[16,-243],[-27,-197],[35,-199],[80,-165],[37,-194],[41,-145]],[[64274,65130],[53,-226]],[[61883,60238],[-37,252],[-83,178],[-22,236],[-143,212],[-148,495],[-79,482],[-192,406],[-124,97],[-184,563],[-32,411],[12,350],[-159,655],[-130,231],[-150,122],[-92,339],[15,133],[-77,306],[-81,132],[-108,440],[-170,476],[-141,406],[-139,-3],[44,325],[12,206],[34,236]],[[36483,4468],[141,0],[414,127],[419,-127],[342,-255],[120,-359],[33,-254],[11,-301],[-430,-186],[-452,-150],[-522,-139],[-582,-116],[-658,35],[-365,197],[49,243],[593,162],[239,197],[174,254],[126,220],[168,209],[180,243]],[[31586,3163],[625,-23],[599,-58],[207,243],[147,208],[288,-243],[-82,-301],[-81,-266],[-582,81],[-621,-35],[-348,197],[0,23],[-152,174]],[[29468,8472],[190,70],[321,-23],[82,301],[16,219],[-6,475],[158,278],[256,93],[147,-220],[65,-220],[120,-267],[92,-254],[76,-267],[33,-266],[-49,-231],[-76,-220],[-326,-81],[-311,-116],[-364,11],[136,232],[-327,-81],[-310,-81],[-212,174],[-16,243],[305,231]],[[21575,8103],[174,104],[353,-81],[403,-46],[305,-81],[304,69],[163,-335],[-217,46],[-337,-23],[-343,23],[-376,-35],[-283,116],[-146,243]],[[15938,7061],[60,197],[332,-104],[359,-93],[332,104],[-158,-208],[-261,-151],[-386,47],[-278,208]],[[14643,7177],[202,127],[277,-139],[425,-231],[-164,23],[-359,58],[-381,162]],[[4524,4144],[169,220],[517,-93],[277,-185],[212,-209],[76,-266],[-533,-81],[-364,208],[-163,209],[-11,35],[-180,162]],[[0,529],[16,-5],[245,344],[501,-185],[32,21],[294,188],[38,-7],[32,-4],[402,-246],[352,246],[63,34],[816,104],[265,-138],[130,-71],[419,-196],[789,-151],[625,-185],[1072,-139],[800,162],[1181,-116],[669,-185],[734,174],[773,162],[60,278],[-1094,23],[-898,139],[-234,231],[-745,128],[49,266],[103,243],[104,220],[-55,243],[-462,162],[-212,209],[-430,185],[675,-35],[642,93],[402,-197],[495,173],[457,220],[223,197],[-98,243],[-359,162],[-408,174],[-571,35],[-500,81],[-539,58],[-180,220],[-359,185],[-217,208],[-87,672],[136,-58],[250,-185],[457,58],[441,81],[228,-255],[441,58],[370,127],[348,162],[315,197],[419,58],[-11,220],[-97,220],[81,208],[359,104],[163,-196],[425,115],[321,151],[397,12],[375,57],[376,139],[299,128],[337,127],[218,-35],[190,-46],[414,81],[370,-104],[381,11],[364,81],[375,-57],[414,-58],[386,23],[403,-12],[413,-11],[381,23],[283,174],[337,92],[349,-127],[331,104],[300,208],[179,-185],[98,-208],[180,-197],[288,174],[332,-220],[375,-70],[321,-162],[392,35],[354,104],[418,-23],[376,-81],[381,-104],[147,254],[-180,197],[-136,209],[-359,46],[-158,220],[-60,220],[-98,440],[213,-81],[364,-35],[359,35],[327,-93],[283,-174],[119,-208],[376,-35],[359,81],[381,116],[342,70],[283,-139],[370,46],[239,451],[224,-266],[321,-104],[348,58],[228,-232],[365,-23],[337,-69],[332,-128],[218,220],[108,209],[278,-232],[381,58],[283,-127],[190,-197],[370,58],[288,127],[283,151],[337,81],[392,69],[354,81],[272,127],[163,186],[65,254],[-32,244],[-87,231],[-98,232],[-87,231],[-71,209],[-16,231],[27,232],[130,220],[109,243],[44,231],[-55,255],[-32,232],[136,266],[152,173],[180,220],[190,186],[223,173],[109,255],[152,162],[174,151],[267,34],[174,186],[196,115],[228,70],[202,150],[157,186],[218,69],[163,-151],[-103,-196],[-283,-174],[-120,-127],[-206,92],[-229,-58],[-190,-139],[-202,-150],[-136,-174],[-38,-231],[17,-220],[130,-197],[-190,-139],[-261,-46],[-153,-197],[-163,-185],[-174,-255],[-44,-220],[98,-243],[147,-185],[229,-139],[212,-185],[114,-232],[60,-220],[82,-232],[130,-196],[82,-220],[38,-544],[81,-220],[22,-232],[87,-231],[-38,-313],[-152,-243],[-163,-197],[-370,-81],[-125,-208],[-169,-197],[-419,-220],[-370,-93],[-348,-127],[-376,-128],[-223,-243],[-446,-23],[-489,23],[-441,-46],[-468,0],[87,-232],[424,-104],[311,-162],[174,-208],[-310,-185],[-479,58],[-397,-151],[-17,-243],[-11,-232],[327,-196],[60,-220],[353,-220],[588,-93],[500,-162],[398,-185],[506,-186],[690,-92],[681,-162],[473,-174],[517,-197],[272,-278],[136,-220],[337,209],[457,173],[484,186],[577,150],[495,162],[691,12],[680,-81],[560,-139],[180,255],[386,173],[702,12],[550,127],[522,128],[577,81],[614,104],[430,150],[-196,209],[-119,208],[0,220],[-539,-23],[-571,-93],[-544,0],[-77,220],[39,440],[125,128],[397,138],[468,139],[337,174],[337,174],[251,231],[380,104],[376,81],[190,47],[430,23],[408,81],[343,116],[337,139],[305,139],[386,185],[245,197],[261,173],[82,232],[-294,139],[98,243],[185,185],[288,116],[305,139],[283,185],[217,232],[136,277],[202,163],[331,-35],[136,-197],[332,-23],[11,220],[142,231],[299,-58],[71,-220],[331,-34],[360,104],[348,69],[315,-34],[120,-243],[305,196],[283,105],[315,81],[310,81],[283,139],[310,92],[240,128],[168,208],[207,-151],[288,81],[202,-277],[157,-209],[316,116],[125,232],[283,162],[365,-35],[108,-220],[229,220],[299,69],[326,23],[294,-11],[310,-70],[300,-34],[130,-197],[180,-174],[304,104],[327,24],[315,0],[310,11],[278,81],[294,70],[245,162],[261,104],[283,58],[212,162],[152,324],[158,197],[288,-93],[109,-208],[239,-139],[289,46],[196,-208],[206,-151],[283,139],[98,255],[250,104],[289,197],[272,81],[326,116],[218,127],[228,139],[218,127],[261,-69],[250,208],[180,162],[261,-11],[229,139],[54,208],[234,162],[228,116],[278,93],[256,46],[244,-35],[262,-58],[223,-162],[27,-254],[245,-197],[168,-162],[332,-70],[185,-162],[229,-162],[266,-35],[223,116],[240,243],[261,-127],[272,-70],[261,-69],[272,-46],[277,0],[229,-614],[-11,-150],[-33,-267],[-266,-150],[-218,-220],[38,-232],[310,12],[-38,-232],[-141,-220],[-131,-243],[212,-185],[321,-58],[321,104],[153,232],[92,220],[153,185],[174,174],[70,208],[147,289],[174,58],[316,24],[277,69],[283,93],[136,231],[82,220],[190,220],[272,151],[234,115],[153,197],[157,104],[202,93],[277,-58],[250,58],[272,69],[305,-34],[201,162],[142,393],[103,-162],[131,-278],[234,-115],[266,-47],[267,70],[283,-46],[261,-12],[174,58],[234,-35],[212,-127],[250,81],[300,0],[255,81],[289,-81],[185,197],[141,196],[191,163],[348,439],[179,-81],[212,-162],[185,-208],[354,-359],[272,-12],[256,0],[299,70],[299,81],[229,162],[190,174],[310,23],[207,127],[218,-116],[141,-185],[196,-185],[305,23],[190,-150],[332,-151],[348,-58],[288,47],[218,185],[185,185],[250,46],[251,-81],[288,-58],[261,93],[250,0],[245,-58],[256,-58],[250,104],[299,93],[283,23],[316,0],[255,58],[251,46],[76,290],[11,243],[174,-162],[49,-266],[92,-244],[115,-196],[234,-105],[315,35],[365,12],[250,35],[364,0],[262,11],[364,-23],[310,-46],[196,-186],[-54,-220],[179,-173],[299,-139],[310,-151],[360,-104],[375,-92],[283,-93],[315,-12],[180,197],[245,-162],[212,-185],[245,-139],[337,-58],[321,-69],[136,-232],[316,-139],[212,-208],[310,-93],[321,12],[299,-35],[332,12],[332,-47],[310,-81],[288,-139],[289,-116],[195,-173],[-32,-232],[-147,-208],[-125,-266],[-98,-209],[-131,-243],[-364,-93],[-163,-208],[-360,-127],[-125,-232],[-190,-220],[-201,-185],[-115,-243],[-70,-220],[-28,-266],[6,-220],[158,-232],[60,-220],[130,-208],[517,-81],[109,-255],[-501,-93],[-424,-127],[-528,-23],[-234,-336],[-49,-278],[-119,-220],[-147,-220],[370,-196],[141,-244],[239,-219],[338,-197],[386,-186],[419,-185],[636,-185],[142,-289],[800,-128],[53,-45],[208,-175],[767,151],[636,-186],[479,-142],[-99999,0]],[[59092,71341],[19,3],[40,143],[200,-8],[253,176],[-188,-251],[21,-111]],[[59437,71293],[-30,21],[-53,-45],[-42,12],[-14,-22],[-5,59],[-20,37],[-54,6],[-75,-51],[-52,31]],[[59437,71293],[8,-48],[-285,-240],[-136,77],[-64,237],[132,22]],[[45272,63236],[13,274],[106,161],[91,308],[-18,200],[96,417],[155,376],[93,95],[74,344],[6,315],[100,365],[185,216],[177,603],[5,8],[139,227],[259,65],[218,404],[140,158],[232,493],[-70,735],[106,508],[37,312],[179,399],[278,270],[206,244],[186,612],[87,362],[205,-2],[167,-251],[264,41],[288,-131],[121,-6]],[[56944,63578],[0,2175],[0,2101],[-83,476],[71,365],[-43,253],[101,283]],[[56990,69231],[369,10],[268,-156],[275,-175],[129,-92],[214,188],[114,169],[245,49],[198,-75],[75,-293],[65,193],[222,-140],[217,-33],[137,149]],[[59700,68010],[-78,-238],[-60,-446],[-75,-308],[-65,-103],[-93,191],[-125,263],[-198,847],[-29,-53],[115,-624],[171,-594],[210,-920],[102,-321],[90,-334],[249,-654],[-55,-103],[9,-384],[323,-530],[49,-121]],[[53191,70158],[326,-204],[117,51],[232,-98],[368,-264],[130,-526],[250,-114],[391,-248],[296,-293],[136,153],[133,272],[-65,452],[87,288],[200,277],[192,80],[375,-121],[95,-264],[104,-2],[88,-101],[276,-70],[68,-195]],[[59804,53833],[-164,643],[-127,137],[-48,236],[-141,288],[-171,42],[95,337],[147,14],[42,181]],[[61764,57990],[-98,-261],[-94,-277],[22,-163],[4,-180],[155,-10],[67,42],[62,-106]],[[61882,57035],[-61,-209],[103,-325],[102,-285],[106,-210],[909,-702],[233,4]],[[61966,58083],[66,-183],[-9,-245],[-158,-142],[119,-161]],[[61984,57352],[-102,-317]],[[61984,57352],[91,-109],[54,-245],[125,-247],[138,-2],[262,151],[302,70],[245,184],[138,39],[99,108],[158,20]],[[58449,49909],[-166,-182],[-67,60]],[[58564,52653],[115,161],[176,-132],[224,138],[195,-1],[171,272]],[[55279,77084],[100,2],[-69,-260],[134,-227],[-41,-278],[-65,-27]],[[55338,76294],[-52,-53],[-90,-138],[-41,-325]],[[55719,75309],[35,-5],[13,121],[164,91],[62,23]],[[55993,75539],[95,35],[128,9]],[[55993,75539],[-9,44],[33,71],[31,144],[-39,-4],[-54,110],[-46,28],[-36,94],[-52,36],[-40,84],[-50,-33],[-38,-196],[-66,-43]],[[55627,75874],[22,51],[-106,123],[-91,63],[-40,82],[-74,101]],[[55380,75322],[-58,46],[-78,192],[-120,118]],[[55627,75874],[-52,-132]],[[32866,56937],[160,77],[58,-21],[-11,-440],[-232,-65],[-50,53],[81,163],[-6,233]]],"bbox":[-180,-85.60903777459771,180,83.64513000000001],"transform":{"scale":[0.0036000360003600037,0.0016925586033320105],"translate":[-180,-85.60903777459771]}} \ No newline at end of file diff --git a/data/land-50m.json b/data/land-50m.json new file mode 100644 index 0000000..b981594 --- /dev/null +++ b/data/land-50m.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"land":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","arcs":[[[0]],[[1]],[[2]],[[3]],[[4]],[[5]],[[6]],[[7]],[[8]],[[9]],[[10]],[[11]],[[12]],[[13]],[[14]],[[15]],[[16]],[[17]],[[18]],[[19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[59]],[[60,1383]],[[62]],[[63]],[[64]],[[65]],[[66]],[[67]],[[68]],[[69]],[[70]],[[71]],[[72]],[[73]],[[74]],[[75]],[[76]],[[77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[102]],[[103]],[[104]],[[105]],[[106]],[[107]],[[108]],[[109]],[[110]],[[111]],[[112]],[[113]],[[114]],[[115]],[[116]],[[117]],[[118]],[[119]],[[120]],[[121]],[[122]],[[123]],[[124]],[[125]],[[126]],[[127]],[[128]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138,1385],[1384]],[[140]],[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147]],[[148]],[[149]],[[150]],[[151]],[[152]],[[153]],[[154]],[[155]],[[156]],[[157]],[[158]],[[159]],[[160]],[[161]],[[162]],[[163]],[[164]],[[165]],[[166]],[[167]],[[168]],[[169]],[[170]],[[171]],[[172]],[[173]],[[174]],[[175]],[[176]],[[177]],[[178]],[[179]],[[180]],[[181]],[[182]],[[183]],[[184]],[[185]],[[186]],[[187]],[[188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]],[[201]],[[202]],[[203]],[[204]],[[205]],[[206]],[[207]],[[208]],[[209]],[[210]],[[211]],[[212]],[[213]],[[214]],[[215]],[[216]],[[217]],[[218]],[[219]],[[220]],[[221]],[[222]],[[223]],[[224]],[[225]],[[226]],[[227]],[[228]],[[229]],[[230]],[[231]],[[232]],[[233]],[[234]],[[235]],[[236]],[[237]],[[238]],[[239]],[[240]],[[241]],[[242]],[[243]],[[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]],[[1382],[1381]],[[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]]]}]}},"arcs":[[[99999,42529],[-42,-77],[-15,-39],[-13,-44],[-36,-47],[-15,-63],[1,-63],[36,66],[40,54],[12,11],[13,0],[-1,-19],[-6,-18],[-5,-48],[11,-45],[-30,5],[-29,-4],[-35,-25],[-34,-11],[-13,-1],[-13,9],[-8,13],[-6,29],[-6,5],[-28,-1],[-40,-59],[-14,-49],[-16,-3],[-18,11],[-23,-38],[-26,-14],[-12,32],[-7,40],[-10,29],[-29,7],[4,36],[8,15],[7,21],[5,24],[14,-16],[14,-9],[16,18],[17,1],[17,53],[26,33],[37,26],[37,19],[19,3],[18,11],[32,50],[21,25],[24,15],[22,9],[20,-8],[17,5],[42,35],[0,-9]],[[99231,41965],[-15,-9],[8,45],[8,15],[5,3],[9,3],[-4,-32],[-11,-25]],[[85380,52298],[-9,-18],[-9,6],[-6,24],[2,18],[8,11],[9,-8],[5,-33]],[[27407,66042],[-9,-12],[-4,4],[0,17],[-11,39],[0,10],[27,-38],[1,-10],[-4,-10]],[[27547,66130],[-5,0],[2,9],[11,16],[4,-6],[0,-9],[-12,-10]],[[27600,66188],[-7,-3],[11,25],[3,-2],[-7,-20]],[[89771,44956],[-7,-69],[-14,-55],[-1,-32],[3,-45],[22,-33],[18,-21],[10,-58],[31,-81],[-1,-56],[16,-69],[16,-137],[4,-121],[16,-80],[-10,-172],[11,-70],[15,-58],[18,-116],[13,-106],[19,-30],[38,-36],[41,40],[28,53],[31,13],[43,28],[31,-71],[17,-80],[74,-104],[42,-68],[32,-37],[30,-50],[-3,-50],[-7,-39],[7,-61],[4,-71],[-6,-86],[22,-130],[7,-103],[23,-101],[-2,-104],[-4,-40],[-3,-58],[18,-72],[17,-54],[24,-58],[33,-89],[23,-17],[20,-2],[-3,-90],[41,-179],[22,-147],[-15,-197],[-14,-114],[3,-56],[53,-137],[30,-25],[-6,-65],[-4,-101],[24,-78],[27,-58],[30,-35],[29,-28],[38,-28],[48,-12],[25,-44],[13,-35],[39,-12],[17,7],[22,14],[14,-24],[11,-31],[21,-86],[44,-85],[30,-14],[18,-43],[24,-11],[22,-6],[30,-33],[49,-75],[45,-13],[20,-21],[44,-83],[17,-44],[18,-66],[-22,-6],[-21,13],[-13,-64],[29,-90],[35,-63],[41,-67],[40,-94],[10,-72],[11,-29],[13,-101],[35,-59],[2,-108],[18,-149],[19,-135],[14,-40],[17,-65],[18,8],[14,21],[28,-64],[15,-28],[8,16],[-17,123],[11,72],[10,9],[16,2],[18,-58],[26,-62],[47,-55],[38,-52],[11,2],[-4,40],[1,59],[15,9],[14,-29],[25,-91],[5,-188],[0,-158],[17,-162],[24,-43],[16,-40],[28,-54],[18,-51],[23,-23],[74,-108],[20,-13],[32,-2],[40,-49],[19,-45],[43,-169],[20,-59],[43,-59],[19,-19],[29,-40],[10,-59],[3,-34],[17,-63],[25,-75],[38,-41],[34,-91],[2,-148],[18,-73],[12,-32],[27,-30],[11,-24],[-23,-195],[22,-391],[-12,-122],[22,-121],[52,-210],[12,-74],[7,-87],[34,-111],[-2,-169],[13,-80],[-3,-105],[-40,-112],[-31,-139],[-1,-118],[-20,-228],[-14,-62],[-10,-95],[-43,-230],[-2,-90],[6,-108],[-7,-103],[-11,-71],[-10,-130],[-44,-202],[-63,-150],[-4,-114],[-8,-50],[-13,-62],[-39,-69],[-23,-29],[-9,-40],[-22,0],[0,-13],[15,-12],[-7,-21],[-58,-36],[-40,-47],[-40,-113],[-17,-60],[-21,-57],[-13,-27],[-6,-28],[-8,-72],[-21,-13],[-18,-21],[8,-68],[-9,-78],[-3,-53],[-10,-34],[-11,12],[-10,-5],[-12,-19],[19,-5],[11,-9],[-39,-76],[-36,-78],[-10,-51],[-15,-65],[-14,-144],[-11,-83],[8,-58],[-2,-11],[-8,-4],[-5,7],[-17,-20],[-4,-20],[7,-25],[4,-8],[-2,-12],[-6,-13],[-16,0],[-19,-21],[-53,-213],[-23,-57],[-27,-87],[-10,-79],[-8,-86],[-10,-145],[-9,-103],[-21,-99],[-7,-71],[-3,-135],[10,-103],[-7,-54],[0,-52],[-8,-49],[-34,-11],[-28,-40],[-40,-65],[-23,-24],[-51,-18],[-99,8],[-189,-24],[-37,-15],[-70,-45],[-68,-70],[-66,-94],[-149,-256],[-117,-28],[-22,0],[-18,7],[-21,-16],[0,-32],[19,-33],[14,-31],[25,43],[11,-12],[4,-79],[1,-50],[-8,-27],[-15,-20],[-17,13],[-2,27],[-22,65],[-26,57],[-25,18],[-14,-19],[-23,-20],[-20,72],[-20,63],[-28,7],[-24,-1],[-19,27],[-39,43],[8,33],[10,35],[22,13],[-6,48],[-12,39],[-30,10],[-21,-7],[-12,-30],[-16,-54],[-64,-67],[-32,37],[-36,55],[18,-4],[36,2],[30,49],[13,31],[15,66],[-19,46],[-18,34],[-26,30],[-98,-102],[-21,-15],[-19,-20],[34,-17],[20,5],[21,-30],[-34,-42],[-26,-12],[-34,-25],[-63,-66],[-80,-136],[-35,-39],[-41,-32],[-56,37],[-31,8],[-40,56],[-67,38],[-63,74],[-44,38],[-31,8],[-43,-16],[-73,67],[-56,7],[-36,-67],[-29,5],[-18,9],[-59,110],[-56,55],[-107,28],[-66,76],[-49,146],[-94,168],[-25,61],[-12,60],[-1,47],[13,90],[17,89],[3,50],[-35,167],[-50,159],[-23,49],[-62,106],[-57,79],[-15,42],[-4,21],[27,-10],[12,32],[19,11],[14,-43],[17,-8],[0,72],[10,35],[-7,15],[-5,14],[-25,16],[-28,-24],[-21,-31],[-28,-26],[-11,-28],[-29,-1],[-12,-7],[-58,-53],[-36,-1],[-57,18],[18,73],[23,43],[19,50],[30,173],[-5,151],[-15,61],[-48,125],[-22,76],[-27,80],[-13,-46],[-8,-49],[-26,-70],[-13,-157],[-50,-239],[-35,-3],[-30,10],[-52,-28],[-35,-33],[-32,0],[-18,-10],[-23,8],[37,187],[31,-5],[35,7],[15,-3],[23,2],[18,86],[11,96],[-7,62],[-3,64],[7,73],[3,53],[43,174],[37,89],[42,72],[-5,68],[-14,85],[-4,65],[20,20],[19,41],[-22,187],[-14,55],[-22,55],[0,-71],[2,-70],[-30,-89],[-40,-64],[-26,-60],[-25,-136],[-32,-115],[-30,-43],[-27,-9],[-27,-18],[-42,-45],[-42,-39],[-30,-50],[-26,-27],[-86,-230],[-40,-76],[-8,-31],[-16,-26],[3,-37],[13,-24],[13,-102],[-8,-22],[-14,11],[-35,57],[-22,-21],[-18,-23],[-46,105],[-20,24],[-24,42],[-26,36],[-11,5],[-19,-8],[2,28],[13,23],[11,6],[21,-34],[24,-30],[14,-2],[6,12],[-23,118],[-15,104],[-7,30],[-19,106],[-9,30],[-40,74],[-43,88],[-11,104],[-16,67],[-20,42],[-31,38],[-85,14],[-35,107],[-21,133],[16,9],[19,2],[7,41],[-5,64],[-84,78],[-40,83],[-34,35],[-31,14],[-42,-3],[-53,3],[-126,131],[-30,4],[-90,-41],[-31,7],[-137,179],[-91,86],[-30,15],[-39,15],[-32,-21],[-22,-19],[-46,-22],[-182,14],[-156,-28],[-105,-19],[-67,-24],[-112,-107],[-133,-103],[-108,-49],[-99,-65],[-66,-19],[-84,-8],[-179,32],[-61,-24],[-97,-120],[-29,-29],[-55,-33],[-141,-155],[-65,-33],[-42,-11],[-36,-32],[-32,-66],[-45,-183],[-27,-86],[-61,-138],[-39,-46],[-40,6],[-44,-48],[-38,51],[-31,9],[-50,-4],[-174,-58],[-25,68],[-32,10],[-60,-3],[-90,20],[-164,-25],[-79,-28],[-31,-25],[-58,16],[-99,-23],[-35,-38],[-26,-35],[-51,-154],[-56,-51],[-47,-1],[-51,-12],[-105,-148],[-106,-144],[-36,-15],[-40,-24],[-52,-12],[-26,-13],[-122,37],[-77,4],[-97,22],[-83,71],[-64,40],[-73,155],[-44,58],[-80,70],[-23,-2],[-19,-19],[-33,49],[-1,64],[-9,54],[1,142],[5,167],[29,-38],[23,-36],[49,2],[44,62],[25,92],[21,103],[-3,110],[-15,193],[10,41],[15,16],[5,96],[4,296],[-11,111],[-68,226],[-45,197],[-32,88],[-28,143],[-23,198],[-7,100],[-7,185],[8,105],[-4,61],[-28,167],[-64,156],[-10,58],[0,61],[-15,71],[-51,143],[-52,123],[-9,60],[-10,249],[-19,114],[-89,287],[-104,248],[-29,102],[-13,34],[8,4],[11,-13],[13,-25],[7,-2],[6,21],[-1,47],[4,26],[9,-14],[11,-53],[33,-138],[10,-70],[42,-21],[13,18],[15,36],[5,97],[-21,44],[-20,19],[-32,72],[-21,115],[-33,107],[0,38],[15,28],[25,-15],[23,-62],[25,-57],[-4,-100],[-4,-27],[2,-23],[9,-22],[12,-17],[13,25],[11,58],[7,-7],[18,-133],[14,-36],[27,-42],[24,32],[11,28],[-4,94],[7,91],[-4,67],[-61,177],[-56,218],[-34,109],[-28,164],[-18,56],[-24,92],[-1,104],[2,71],[19,151],[18,79],[56,181],[3,78],[0,59],[8,90],[0,63],[-8,59],[-23,100],[31,177],[45,226],[18,33],[28,31],[5,-47],[-13,-157],[19,-81],[-6,-92],[18,15],[27,18],[21,48],[11,46],[51,184],[30,69],[41,50],[85,61],[81,80],[39,77],[49,66],[34,73],[32,49],[166,183],[28,34],[36,4],[44,-6],[40,10],[43,-42],[31,-5],[77,46],[41,40],[71,89],[31,25],[72,28],[82,37],[98,154],[70,-10],[63,-15],[51,46],[119,28],[66,39],[124,102],[33,35],[50,73],[44,91],[43,123],[27,110],[11,57],[26,90],[17,71],[14,34],[48,48],[71,135],[23,28],[4,43],[-15,24],[-19,15],[-13,143],[-12,99],[-1,69],[5,66],[28,103],[19,44],[28,51],[25,16],[21,45],[34,44],[15,45],[21,91],[19,69],[15,-3],[28,-160],[19,-85],[35,-100],[32,-148],[27,-67],[13,-44],[10,-20],[3,28],[-3,33],[13,112],[-6,79],[2,31],[6,12],[13,-8],[25,-44],[13,-16],[9,3],[-1,72],[13,45],[-5,31],[-22,-2],[-9,39],[-18,44],[-21,32],[-24,74],[-8,28],[10,14],[15,-2],[13,31],[5,42],[-11,69],[12,25],[22,-7],[36,-109],[16,11],[13,44],[23,12],[24,-8],[15,-31],[32,-32],[42,4],[22,-8],[45,6],[22,-10],[-4,17],[-25,20],[-27,4],[-32,-2],[-14,21],[-5,55],[8,40],[5,17],[21,-7],[19,2],[2,53],[7,48],[11,39],[0,37],[-12,-10],[-28,-86],[-14,70],[-20,53],[4,77],[12,76],[18,10],[16,-12],[23,45],[13,34],[-3,28],[3,21],[16,-6],[62,-69],[12,-36],[13,14],[4,39],[-1,39],[-14,-5],[-32,3],[-7,22],[3,19],[-15,46],[21,29],[17,2],[13,20],[0,27],[4,12],[10,-17],[32,-7],[31,-35],[15,-8],[6,19],[2,41],[-39,41],[-1,40],[-17,47],[0,45],[24,39],[5,37],[15,15],[27,0],[19,32],[21,11],[6,70],[-1,48],[9,12],[21,-20],[-6,-55],[0,-53],[-6,-29],[8,2],[5,12],[9,35],[22,-14],[6,-37],[3,-37],[11,-12],[15,56],[21,15],[-1,71],[8,51],[2,38],[13,19],[3,40],[-10,28],[-6,51],[18,11],[18,-25],[13,-64],[8,-29],[11,16],[7,42],[22,25],[22,-34],[24,-48],[31,42],[28,77],[-5,47],[4,49],[35,26],[29,-19],[25,-52],[54,-39],[46,-56],[20,-36],[40,-58],[25,-60],[34,-107],[82,-131],[5,-23],[-11,-43],[-10,-56],[-12,-95],[-3,-139],[12,10],[12,50],[13,-10],[14,-32],[2,31],[-9,18],[-15,64],[0,34],[12,28],[19,32],[20,22],[13,18],[2,24],[18,23],[28,8],[16,-4],[118,-59],[29,-60],[3,-73],[11,-26],[7,46],[-2,100],[10,20],[31,-15],[22,-20],[30,-66],[6,-32],[13,-21],[4,30],[-6,43],[-4,50],[6,43],[36,3],[23,10],[-11,16],[-15,6],[-25,40],[-17,42],[27,42],[-1,10],[-25,-1],[-34,40],[-29,56],[22,103],[45,101],[25,34],[2,34],[12,62],[8,53],[2,42],[11,43],[28,41],[37,15],[18,16],[18,38],[16,46],[-34,90],[3,50],[6,59],[42,43],[22,112],[15,17],[33,-3],[13,10],[-2,89],[3,35],[14,14],[18,-12],[11,-39],[25,-36],[9,20],[-4,39],[-3,51],[23,11],[19,3],[1,41],[-3,33],[8,14],[48,7],[13,34],[7,29],[6,-16],[8,-66],[27,-38],[80,-1],[45,27],[19,-16],[30,-13],[32,31],[20,24],[33,-31],[11,-32],[8,69],[20,24],[20,14],[26,-12],[10,4],[-23,51],[1,46],[-1,69],[4,62],[8,45],[-55,91],[-55,14],[-40,-19],[-17,15],[-36,72],[-34,27],[-2,18],[41,52],[16,-9],[24,-49],[14,-17],[12,4],[7,38],[11,20],[20,-12],[62,-82],[34,-80],[18,21],[31,45],[29,-9],[17,-27],[25,-97],[20,-48],[48,-13],[24,-19],[25,-32],[33,3],[70,-12],[65,-62],[27,-39],[32,-11],[18,-15],[34,-5],[53,44],[24,-40],[11,-28],[48,-52],[53,-16],[37,53],[55,39],[38,60],[28,29],[27,49],[10,-2],[-22,-46],[-2,-26],[17,-11],[-2,-14],[-23,-35],[-29,-56],[1,-34],[11,-18],[13,8],[18,28],[23,16],[19,-23],[7,-80],[14,-53],[30,-7],[19,0],[19,74],[-10,63],[-12,14],[6,23],[48,104],[27,-3],[19,-102],[31,-53],[32,4],[17,-14],[14,-61],[-114,-251],[-5,-28],[15,-45],[6,-53],[-37,-128],[-14,-6],[-13,35],[-19,22],[-18,-16],[-18,-9],[-66,-71],[0,-183],[17,-109],[-10,-71],[-19,-126],[-22,-47],[-17,-30],[-57,-172],[-18,-41],[-19,-59],[6,-56],[7,-39],[22,-44],[83,-92],[38,-64],[66,-76],[15,-53],[9,-43],[47,-49],[34,-30],[10,8],[7,10],[8,0],[9,-6],[-2,-38],[-3,-21],[3,-27],[24,-34],[38,1],[22,8],[25,-36],[22,-24],[36,-48],[63,-58],[49,-38],[58,-140],[44,-81],[49,-59],[72,-41],[33,7],[54,-48],[53,-22],[28,-66],[9,-50],[3,-39],[26,-92],[54,-30],[69,-92],[57,-41],[14,-24],[25,-29],[48,-1],[84,46],[38,47],[51,74],[23,128],[14,103],[71,212],[20,105],[18,140],[15,87],[-5,95],[16,172],[36,237],[13,79],[-7,118],[-22,220],[10,77],[10,106],[-16,77],[-16,53],[-2,75],[17,140],[15,74],[16,96],[-9,182],[34,63],[13,32],[26,0],[12,-14],[3,36],[-10,34],[-4,39],[-8,20],[-16,7],[-13,21],[-19,22],[3,81],[33,156],[18,60],[11,-25],[14,-20],[2,45],[-5,46],[25,152],[27,207],[8,188],[44,36],[23,47],[13,55],[25,0],[17,-24],[-11,-41],[-4,-31],[47,-79],[16,-60],[7,-57],[9,-54],[4,-72],[0,-115],[6,-109],[17,-34],[15,-22],[22,-3],[31,-18]],[[99521,41836],[0,-26],[8,-11],[8,-2],[21,-48],[31,-42],[19,-32],[1,-28],[-6,-29],[8,-51],[4,-54],[14,-86],[-20,-16],[-30,-2],[-7,-15],[-11,8],[-25,-6],[-25,-28],[-23,-38],[-27,0],[-30,-8],[-30,5],[-21,21],[-38,22],[-49,19],[-21,15],[-17,25],[-16,63],[-3,31],[3,30],[15,10],[12,15],[1,19],[6,14],[7,5],[3,9],[-5,32],[-1,29],[29,53],[31,45],[56,42],[34,-4],[52,33],[17,15],[16,-10],[9,-24]],[[95611,40180],[31,-36],[34,15],[42,-57],[108,-172],[37,-37],[23,-14],[16,-28],[16,-40],[20,-28],[9,-26],[2,-36],[8,-22],[37,-57],[22,-50],[32,-26],[13,-30],[17,-14],[18,-31],[30,-24],[68,-88],[53,-84],[26,-52],[29,-46],[36,-37],[34,-42],[17,-99],[-9,-35],[-20,-18],[-18,-1],[-17,-12],[-56,64],[-14,9],[-15,-4],[-8,14],[-6,21],[-35,24],[-32,37],[-9,26],[-5,32],[-8,19],[-45,28],[-31,31],[-22,44],[-34,31],[-54,63],[-27,20],[-24,31],[-65,115],[-23,21],[-20,51],[-55,120],[-27,50],[-29,44],[-22,52],[-17,61],[-40,88],[-5,38],[2,38],[-10,25],[-16,15],[-8,26],[1,35],[5,18],[40,-60]],[[85480,52331],[21,-13],[21,4],[10,26],[3,33],[11,62],[24,42],[17,7],[12,18],[-2,46],[1,45],[18,48],[57,68],[31,24],[42,7],[5,-25],[-5,-37],[8,-56],[-4,-150],[-10,-21],[-42,-52],[-47,-42],[-13,-17],[-12,-42],[1,-41],[38,-54],[59,-52],[13,-24],[8,-40],[2,-45],[14,-21],[20,-10],[13,-22],[11,-30],[-100,70],[-26,31],[-32,4],[-31,9],[-32,27],[-34,6],[-16,-19],[-7,-38],[-4,-43],[8,-53],[-1,-32],[-6,-58],[25,-171],[31,-137],[45,-142],[23,-49],[25,-44],[-41,13],[-12,48],[-52,47],[-10,28],[-34,135],[-10,25],[-31,46],[-14,33],[-5,46],[4,48],[-2,66],[1,65],[7,81],[-11,28],[-15,26],[-17,62],[-5,70],[1,40],[7,35],[10,31],[2,30],[-25,44],[-25,124],[-2,65],[32,124],[-1,60],[7,36],[3,38],[17,83],[28,70],[47,99],[18,21],[20,14],[2,-24],[-4,-21],[-34,-101],[-5,-22],[-1,-43],[17,-24],[18,-51],[3,-68],[1,-72],[-4,-73],[-7,-25],[-28,-73],[-65,-85],[-5,-21],[0,-24],[12,-29],[15,-22]],[[69217,23554],[23,-4],[13,6],[62,76],[16,2],[-2,-59],[16,-26],[-20,-6],[-38,2],[-9,-33],[39,-42],[19,-6],[15,0],[29,10],[23,15],[36,36],[22,14],[41,0],[21,34],[10,10],[24,-1],[21,-13],[13,-31],[7,-37],[-5,-37],[-15,-36],[-26,-22],[6,-26],[-7,-13],[-13,-1],[-12,6],[-16,31],[-20,16],[-48,-1],[-22,-2],[-3,-23],[-12,-18],[-12,-10],[-16,4],[-3,-10],[9,-24],[21,-31],[36,-22],[21,-5],[3,42],[26,4],[23,-12],[16,-30],[-13,-10],[-12,-16],[-3,-21],[-23,-23],[-13,-2],[-44,11],[-26,25],[-6,18],[-16,7],[-18,-23],[-19,-5],[-37,19],[-35,31],[-22,12],[-33,8],[-19,-71],[-26,-30],[-33,-3],[-16,6],[-9,28],[2,29],[5,29],[11,29],[6,32],[-2,30],[-12,22],[6,40],[-12,30],[4,23],[20,16],[-9,13],[-10,4],[-7,18],[-6,22],[7,41],[12,39],[-2,45],[19,42],[17,47],[12,19],[15,3],[7,-13],[3,-26],[-6,-17],[14,-7],[4,-55],[-9,-22],[-1,-22],[-19,-46],[5,-37],[37,-16]],[[67603,98329],[-52,-2],[-51,9],[-67,29],[-67,34],[20,18],[63,23],[82,42],[139,9],[67,0],[67,10],[19,21],[13,41],[12,22],[15,17],[74,14],[63,-1],[63,-16],[40,-14],[38,-28],[20,-23],[-6,-28],[3,-23],[18,-21],[-122,-65],[-125,-36],[-326,-32]],[[66098,97996],[-43,-11],[-113,21],[-17,11],[-14,20],[-19,78],[-1,23],[-7,16],[-28,28],[-20,13],[18,15],[124,-11],[266,-6],[136,-28],[40,-16],[39,-26],[-238,-14],[-32,-12],[1,-29],[-9,-26],[-25,-3],[-58,-43]],[[42935,92696],[10,-34],[1,-16],[-2,-14],[-6,-9],[-13,-9],[25,-22],[7,-15],[2,-12],[-16,-24],[-110,-31],[-31,-15],[-38,-37],[-47,-31],[-16,0],[-18,33],[-74,24],[-139,-13],[-162,-30],[-58,-14],[-29,7],[-9,12],[0,15],[19,47],[8,12],[37,15],[25,41],[-8,44],[10,62],[25,10],[64,-22],[41,-5],[73,-3],[99,8],[79,25],[144,71],[25,-1],[19,-25],[13,-12],[43,-20],[7,-12]],[[94374,46501],[61,-92],[27,8],[80,-2],[47,-66],[28,-30],[16,-59],[19,-14],[12,-30],[7,-55],[-5,-9],[-24,-20],[-18,-9],[-47,20],[-44,42],[-89,5],[-41,12],[-14,17],[-13,21],[-21,51],[-17,61],[-2,35],[-2,68],[5,24],[17,25],[18,-3]],[[82586,56704],[-26,-42],[3,52],[7,49],[26,99],[19,31],[31,78],[18,38],[42,75],[39,82],[13,6],[14,1],[12,9],[25,45],[63,147],[53,110],[54,139],[26,41],[7,15],[49,128],[16,18],[17,14],[12,17],[11,22],[17,56],[8,65],[-5,37],[-10,54],[13,74],[9,34],[35,150],[10,31],[14,-19],[2,-27],[-7,-64],[0,-31],[8,-33],[-10,-53],[25,-142],[19,-89],[1,-30],[-26,-53],[-15,-16],[-33,-15],[-15,-15],[-23,-44],[-15,-57],[-4,-30],[-7,-23],[-68,-39],[-31,-25],[-15,-19],[-7,-31],[5,-55],[-57,-199],[-18,-51],[-19,-45],[-24,-31],[-33,-19],[-27,-39],[-18,-68],[-22,-61],[-28,-45],[-30,-40],[-28,-30],[-30,-20],[-9,-27],[-6,-33],[-14,-16],[-15,-8],[-28,-33]],[[84026,58533],[32,-29],[32,25],[31,-7],[26,-38],[-9,-24],[-1,-27],[57,58],[16,-3],[-1,-54],[-3,-46],[-7,-44],[-12,-52],[-17,-46],[-21,-33],[-26,-21],[-12,-19],[-4,-28],[1,-35],[-6,-32],[-27,-14],[-42,-62],[-90,-40],[-25,-27],[-16,-36],[-17,-32],[-10,-8],[-4,15],[-1,13],[13,84],[-3,35],[-6,33],[4,66],[16,62],[8,68],[3,132],[12,182],[-1,22],[-9,25],[-35,20],[-14,19],[7,36],[13,25],[18,-1],[16,-23],[57,-48],[30,-40],[27,-51]],[[84202,57064],[-18,-6],[-20,3],[-13,28],[-22,122],[-26,30],[-30,22],[-15,19],[-14,23],[-42,122],[-3,74],[7,42],[13,38],[14,10],[35,1],[18,5],[40,56],[3,22],[0,92],[-4,64],[-10,62],[11,29],[14,28],[14,55],[3,39],[0,41],[4,29],[12,14],[54,45],[10,3],[71,-41],[14,-62],[1,-20],[-11,-69],[-9,-46],[-24,-71],[-18,-77],[-13,-115],[-8,-38],[-22,-72],[-7,-40],[0,-86],[-4,-32],[0,-31],[44,-143],[4,-23],[0,-26],[-8,-32],[-18,-55],[-10,-19],[-17,-14]],[[84603,58377],[20,-20],[22,8],[27,45],[30,-16],[18,-68],[9,-25],[5,-44],[-2,-106],[-7,-95],[6,-20],[14,-17],[12,-22],[10,-27],[7,-30],[2,-74],[18,-62],[2,-24],[-4,-25],[-29,5],[-3,-21],[1,-27],[-10,17],[-17,60],[-16,26],[5,-98],[5,-48],[1,-47],[-27,36],[-33,23],[-9,19],[4,61],[-1,31],[-14,64],[16,140],[0,29],[-3,28],[-13,57],[-21,47],[-13,0],[-32,-33],[-16,11],[-9,131],[-13,127],[-9,32],[-7,34],[6,28],[13,-11],[17,-34],[21,-19],[10,-16],[7,-30]],[[84788,59059],[20,-47],[4,-34],[-2,-38],[9,-16],[16,-5],[20,-19],[15,-35],[-9,-32],[3,-46],[-16,-59],[2,-105],[9,-33],[1,-33],[-2,-36],[4,-28],[24,-96],[5,-32],[-8,-25],[-2,-24],[15,-2],[21,-40],[12,-53],[-3,-13],[-17,41],[-13,6],[-55,-11],[-33,17],[-22,2],[-21,70],[-19,12],[-15,31],[-25,79],[-8,46],[18,46],[5,37],[-1,36],[-17,-6],[-14,12],[-17,44],[-7,25],[-13,22],[-20,50],[-30,20],[-11,14],[-24,42],[-16,53],[-17,92],[-9,95],[76,-25],[76,5],[86,22],[25,-26]],[[83528,59607],[14,-5],[45,18],[18,-9],[12,-33],[15,-10],[12,-17],[23,29],[22,-33],[20,-63],[24,-44],[22,-33],[5,-25],[-14,-40],[-4,-50],[2,-55],[16,-114],[-5,-31],[-18,-44],[-12,-49],[1,-20],[-5,-16],[-1,-35],[-11,7],[-9,-5],[-9,-16],[-15,-33],[-23,10],[-10,10],[-3,29],[-7,20],[-9,12],[-24,50],[-11,38],[-1,40],[-6,37],[-12,33],[-16,26],[-6,24],[-2,29],[-1,75],[-24,92],[-8,23],[-21,22],[-18,30],[-8,29],[-7,48],[-5,7],[-14,-3],[-13,7],[3,35],[14,25],[19,3],[51,-14],[14,-11]],[[93321,47991],[-7,-54],[-5,-9],[-7,20],[-24,-20],[-11,-22],[-13,-17],[-28,4],[-27,15],[-26,28],[-23,35],[-23,55],[-14,57],[7,66],[-9,60],[-44,43],[-10,14],[-19,59],[-19,26],[-25,52],[-6,23],[-11,66],[-3,40],[9,116],[-4,58],[12,-5],[13,-23],[15,-16],[35,-11],[27,-46],[25,-90],[4,-30],[8,-21],[26,-38],[14,-25],[26,-98],[15,-21],[17,-9],[16,-14],[27,-43],[24,-49],[17,-51],[12,-55],[9,-70]],[[92490,49103],[-21,-44],[-13,41],[-16,36],[-13,36],[-17,79],[0,40],[4,42],[1,43],[-8,87],[-19,78],[-68,189],[-21,49],[-24,44],[-16,11],[-31,11],[-14,8],[-26,31],[-24,36],[-60,106],[-31,30],[-17,37],[-94,120],[-27,28],[-34,0],[-28,24],[22,15],[5,40],[-5,41],[47,-67],[50,-58],[14,-47],[25,-3],[45,-38],[30,-35],[29,-40],[33,-58],[62,-45],[9,-17],[32,-75],[42,-64],[14,-35],[177,-301],[30,-85],[2,-58],[-6,-22],[-19,-49],[1,-58],[-6,-51],[-16,-52]],[[88481,47077],[-66,-76],[-87,13],[-31,2],[-51,-19],[-11,15],[10,71],[41,190],[49,168],[20,43],[29,41],[31,33],[69,34],[62,-7],[9,-13],[27,-56],[18,-44],[7,-63],[-27,-107],[-29,-102],[-49,-80],[-21,-43]],[[86042,50192],[64,-64],[33,-9],[56,8],[21,-6],[53,-82],[15,-56],[4,-48],[9,-46],[13,-11],[15,-5],[20,-66],[4,-21],[-15,-166],[-63,63],[-60,71],[-26,27],[-69,60],[-11,21],[-8,27],[-30,37],[-60,6],[-23,-1],[-9,-6],[2,-20],[0,-40],[-15,-12],[-37,26],[-34,9],[-29,25],[-39,14],[-4,12],[3,19],[-1,18],[-9,6],[-18,-3],[-17,-17],[-14,-21],[-20,-55],[-11,-21],[-34,-9],[-14,5],[-13,14],[-39,101],[-13,22],[-14,18],[-14,8],[-13,-16],[-8,-31],[-3,-37],[-4,-22],[-17,-59],[-13,-36],[-5,6],[7,57],[0,32],[-9,34],[-5,35],[65,165],[24,40],[103,13],[61,-8],[34,4],[22,12],[19,-5],[4,-33],[12,-24],[16,2],[29,25],[26,40],[15,17],[16,3],[16,-3],[16,-9],[43,-34]],[[85238,50064],[46,-45],[10,-29],[9,-35],[9,-20],[10,-15],[18,-31],[5,-46],[-4,-93],[-21,-8],[-19,-14],[-40,-54],[-20,-10],[-21,-4],[-15,-14],[-15,-6],[-39,30],[-38,35],[-54,61],[-10,15],[-9,32],[-25,59],[-6,38],[-2,106],[6,25],[11,13],[36,-25],[24,26],[69,22],[71,-2],[14,-11]],[[84106,46882],[-40,-20],[-24,-20],[-23,-26],[-15,-5],[-27,-2],[-37,5],[-26,-9],[-71,-66],[-28,-6],[-24,-16],[-8,26],[-10,19],[-24,4],[-24,-1],[-24,-59],[-38,13],[-15,-6],[-14,-12],[-14,-5],[-15,4],[-56,45],[-64,27],[-64,-10],[-55,25],[-30,-19],[-29,-28],[-8,29],[-11,26],[-9,37],[0,44],[3,30],[8,27],[5,29],[3,31],[12,-15],[12,5],[38,34],[37,50],[34,19],[20,5],[16,-10],[17,4],[18,11],[28,-39],[11,-8],[38,-3],[34,-22],[30,-34],[44,-31],[27,-42],[20,-15],[15,-5],[13,6],[18,28],[20,12],[18,0],[32,7],[14,7],[15,15],[15,-9],[13,-15],[54,-74],[17,-2],[30,16],[10,20],[4,31],[9,25],[11,22],[14,17],[40,28],[28,28],[19,48],[-44,20],[9,34],[15,20],[20,-7],[17,-27],[7,-102],[-14,-15],[-8,-15],[-6,-20],[-26,-38],[10,-46],[-7,-20],[-10,-9]],[[83336,46442],[13,-25],[45,-50],[7,-21],[3,-35],[9,-26],[21,-4],[22,5],[16,-16],[15,-26],[21,-50],[19,-56],[23,-31],[14,-46],[-8,-41],[-30,-57],[-16,-12],[-21,-4],[-35,-34],[-12,18],[-39,12],[-30,24],[-26,45],[-15,47],[-19,43],[-33,28],[-58,83],[-37,7],[-15,-6],[-15,0],[-77,37],[-12,22],[-9,28],[-9,27],[-5,31],[10,27],[10,19],[43,32],[31,10],[35,-2],[53,10],[51,-16],[15,12],[25,34],[9,-12],[11,-31]],[[82844,47051],[14,-22],[13,2],[26,34],[16,13],[17,1],[17,-6],[16,-25],[6,-40],[6,-13],[10,49],[13,14],[14,8],[22,-3],[17,-23],[16,-69],[-1,-60],[6,-22],[11,-17],[8,-23],[-7,-24],[-7,-11],[-21,-11],[-9,4],[-9,17],[-10,6],[-23,-6],[-21,-13],[3,-22],[17,-10],[5,-11],[-1,-14],[-7,-3],[-22,19],[-15,-3],[-54,-26],[-14,1],[-9,24],[1,63],[-6,17],[-40,-77],[-12,-19],[-17,-9],[-16,3],[-59,-46],[-18,6],[-18,0],[-62,-50],[-33,-14],[-17,-1],[-17,4],[-15,-4],[-14,-21],[-28,-17],[-28,13],[-25,18],[-23,23],[-5,29],[1,35],[10,48],[-7,84],[5,39],[9,38],[15,14],[18,2],[31,34],[28,45],[16,-4],[37,-31],[22,-4],[37,5],[15,-19],[6,-44],[8,-16],[11,-11],[26,-74],[24,4],[21,-14],[38,45],[28,-1],[8,34],[-17,37],[-20,31],[-11,6],[-12,-2],[-11,5],[-45,67],[-14,37],[-8,43],[5,31],[31,28],[15,7],[55,-19],[9,-16],[14,-68],[11,-29]],[[82399,46881],[-35,-120],[13,-19],[7,-18],[-58,-25],[-24,13],[-14,-3],[-59,22],[-42,28],[-5,21],[3,26],[13,-8],[32,-4],[13,11],[0,77],[-5,100],[44,82],[24,33],[27,20],[68,-46],[11,-12],[9,-18],[4,-30],[-26,-130]],[[82068,47145],[28,-31],[40,-89],[3,-25],[-12,-24],[-28,-38],[-63,-58],[-10,-28],[-14,-54],[-3,-23],[-4,-13],[-7,-9],[-14,-8],[-15,12],[13,34],[1,42],[-10,39],[-14,32],[-29,44],[-30,40],[-31,19],[-33,9],[-12,19],[-19,49],[-6,27],[-3,28],[2,27],[8,1],[32,-6],[59,-32],[30,-2],[16,7],[43,62],[11,-1],[41,-27],[30,-23]],[[79456,50881],[10,-40],[13,-35],[10,-39],[13,-185],[43,-159],[126,-63],[-21,-25],[-10,-23],[-8,-27],[-18,-110],[1,-24],[11,-37],[3,-41],[-16,0],[-17,10],[-15,15],[-13,20],[-14,16],[-15,10],[-26,32],[-34,22],[-36,17],[-17,47],[-8,58],[9,86],[-9,24],[-13,21],[-15,62],[-6,73],[-22,28],[-30,17],[-13,14],[-58,-26],[-14,6],[-12,20],[-32,21],[1,40],[15,32],[35,33],[16,27],[3,36],[-6,26],[3,28],[11,27],[13,21],[34,27],[16,-48],[7,-40],[10,-30],[14,42],[-9,72],[27,16],[26,1],[19,-20],[13,-31],[5,-44]],[[56282,85611],[20,-14],[18,4],[18,10],[40,-9],[92,-71],[8,-19],[-54,-8],[-13,-22],[-13,-15],[-15,-5],[-27,-30],[-35,-29],[-8,-17],[-64,3],[-35,-11],[-29,-33],[-11,-62],[-21,-49],[-21,-18],[-22,-3],[-6,19],[3,18],[46,69],[10,23],[-23,10],[-20,24],[-42,28],[-8,22],[10,2],[10,7],[11,19],[5,21],[-34,64],[18,10],[21,-2],[22,-19],[24,22],[11,3],[17,-8],[17,42],[40,14],[20,13],[20,-3]],[[56002,97117],[38,-14],[83,3],[45,-98],[26,-103],[41,-8],[80,15],[70,7],[36,-8],[65,-30],[28,-21],[-24,-17],[-59,-19],[-10,-55],[59,-20],[98,-47],[56,-6],[98,19],[93,-37],[92,-45],[-215,-56],[-19,-16],[-29,-42],[-32,-35],[-29,-20],[-64,-35],[-35,-13],[-78,3],[-29,-14],[-27,-28],[-27,-21],[-69,-5],[-35,28],[12,9],[5,17],[-13,40],[66,40],[15,23],[-13,8],[-18,-2],[-48,12],[-14,0],[-40,-24],[-55,-16],[-55,-4],[-224,-31],[-34,11],[-15,61],[91,31],[14,53],[23,35],[26,23],[50,60],[12,4],[-123,48],[-48,31],[-53,61],[-17,50],[-71,42],[9,54],[-52,-4],[-41,38],[38,21],[190,24],[113,24],[43,-1]],[[67268,98406],[17,-23],[-10,-37],[-22,-27],[-10,-38],[-86,-9],[-24,-9],[-23,-29],[-87,-18],[-65,-49],[-91,9],[-124,34],[-105,-28],[-69,-8],[-85,42],[-11,10],[-5,29],[5,26],[23,55],[30,31],[15,10],[12,19],[34,11],[105,7],[39,-6],[12,-21],[57,2],[94,13],[137,20],[79,18],[70,-4],[70,-11],[18,-19]],[[63178,98417],[127,-23],[95,6],[29,-3],[28,-7],[28,-16],[38,-35],[0,-49],[-17,-2],[-161,22],[-74,51],[-20,5],[-29,-13],[-25,-31],[-27,-8],[-31,-39],[-29,5],[-15,-4],[-37,-27],[-93,0],[-15,-12],[-30,-38],[-38,-10],[-66,-6],[-22,21],[-10,33],[-15,17],[-92,-19],[-69,13],[-67,22],[-68,8],[61,23],[334,48],[131,12],[62,34],[92,22],[25,0]],[[63966,98460],[42,-10],[103,2],[32,-14],[149,-84],[38,-2],[31,-30],[-154,-49],[-52,-36],[-189,-8],[-121,-17],[-26,-15],[12,-26],[-58,-29],[-191,-4],[-24,-9],[-37,-31],[3,-5],[65,-8],[10,-6],[9,-14],[5,-20],[-9,-26],[-24,-4],[-26,3],[-60,20],[-7,-7],[-6,-14],[-19,-28],[-22,-8],[-61,21],[-20,-6],[-19,-13],[-24,-6],[-56,-4],[-29,17],[25,23],[70,35],[-23,15],[-70,4],[-55,-9],[-28,-24],[-26,-5],[-72,2],[-40,31],[-30,12],[-26,25],[211,83],[70,32],[67,16],[87,9],[27,10],[27,4],[17,-6],[44,-29],[129,5],[27,24],[2,56],[-13,33],[27,63],[74,25],[171,34],[43,2]],[[63962,91696],[5,-56],[-17,-23],[-16,-6],[-7,35],[-13,15],[-48,-41],[-22,-46],[-60,-66],[-123,-47],[-75,-20],[-68,-6],[-63,42],[-35,79],[-6,24],[-4,32],[1,33],[4,50],[7,49],[26,44],[60,52],[59,34],[31,8],[75,2],[214,-117],[48,-30],[27,-41]],[[66791,92128],[9,-29],[-1,-53],[-11,-39],[-31,-6],[-31,-16],[-53,17],[-29,-11],[-30,-1],[-24,6],[-25,8],[-16,11],[1,30],[-22,43],[-34,14],[-31,5],[-35,13],[-17,-6],[-22,-16],[-14,5],[-76,92],[-12,21],[-8,24],[-11,15],[-26,64],[13,29],[26,19],[18,5],[32,43],[59,18],[12,-3],[11,-13],[61,-44],[33,-29],[28,-35],[30,-30],[89,-51],[60,-50],[61,-35],[16,-15]],[[69631,93948],[-82,-27],[-22,-2],[-50,7],[-22,-11],[-33,27],[2,24],[16,25],[9,31],[-6,78],[42,49],[56,19],[164,22],[23,-6],[33,-15],[25,-18],[33,-43],[26,-18],[40,-34],[12,-33],[-2,-30],[-75,-6],[-130,-25],[-59,-14]],[[75745,97744],[-68,-5],[-80,5],[-130,61],[-85,26],[-70,40],[-15,44],[44,28],[54,11],[91,2],[117,-4],[116,-29],[247,-31],[90,-21],[-56,-51],[-61,-19],[-63,-27],[-64,-19],[-67,-11]],[[81496,94700],[-10,-27],[-15,-21],[-11,-26],[-19,-19],[-59,-24],[-46,-54],[-8,-5],[-163,30],[-26,9],[-53,33],[-75,31],[-39,46],[19,8],[19,4],[67,-6],[19,14],[10,39],[1,23],[5,18],[22,13],[241,-40],[93,-23],[28,-23]],[[89169,94469],[-140,-47],[-27,2],[-63,48],[-23,103],[26,31],[29,11],[30,6],[123,4],[26,-5],[26,-13],[12,-19],[5,-24],[-14,-68],[-10,-29]],[[56625,72312],[19,-4],[26,1],[6,3],[16,34],[20,1],[9,-34],[-20,-15],[-5,-9],[4,-7],[16,-13],[21,5],[1,-26],[4,-22],[11,-13],[11,-2],[26,4],[25,8],[25,17],[26,9],[79,-9],[28,-36],[53,-5],[50,-19],[26,13],[45,12],[7,-13],[-6,-82],[3,-24],[13,-11],[12,5],[16,27],[37,21],[39,0],[33,54],[10,3],[-6,-26],[-5,-63],[-7,-37],[-3,-29],[-22,-15],[-33,-3],[-61,6],[-60,-10],[-113,-28],[-113,-14],[-15,9],[0,37],[-3,25],[-7,18],[-35,15],[-33,26],[-130,36],[-31,14],[-50,-8],[-18,1],[-13,13],[-9,22],[-4,69],[7,69],[10,18],[5,-21],[13,-9],[12,21],[0,31],[6,29],[9,-12],[7,-45],[16,-12]],[[56504,74284],[15,-62],[15,-21],[31,-25],[15,-4],[52,-45],[62,-8],[8,-13],[7,-35],[13,-27],[3,-22],[-7,-23],[9,-72],[16,-68],[23,-33],[29,-10],[28,1],[7,-14],[-3,-59],[-12,-24],[-9,-5],[-9,6],[-7,14],[-8,7],[-16,1],[-12,24],[-29,33],[-5,19],[-1,31],[-13,22],[-11,43],[-11,11],[-6,22],[-1,9],[-43,6],[-35,0],[-30,24],[-9,63],[-18,17],[-13,18],[-11,25],[-29,45],[-31,39],[-30,25],[-32,16],[-26,-19],[-15,4],[-3,13],[33,27],[44,50],[31,16],[15,2],[29,-44]],[[59573,72346],[-145,-174],[-10,-52],[7,-35],[20,-44],[5,-11],[8,-33],[-32,-10],[-31,-3],[-18,4],[-17,-1],[-51,-95],[-28,-32],[-33,-19],[-33,-11],[-17,-1],[-15,-12],[-10,-22],[0,-22],[-5,-17],[-18,4],[-8,34],[-13,15],[-32,-8],[-16,1],[-52,33],[-16,13],[-10,28],[-27,101],[-4,75],[25,-19],[23,23],[23,38],[27,15],[16,-7],[17,-6],[30,12],[13,56],[4,65],[50,-19],[52,-9],[42,-4],[41,11],[126,69],[36,41],[23,14],[38,34],[40,19],[-25,-39]],[[55298,85158],[-23,-14],[-13,-40],[-19,-7],[-17,-14],[-7,-128],[33,-49],[-18,-7],[-17,-14],[-11,-22],[-12,-47],[-45,-26],[-17,-19],[-25,-44],[-13,-63],[-25,-27],[-29,-6],[17,52],[22,42],[-21,28],[-13,46],[-16,34],[13,39],[-7,63],[2,62],[19,32],[22,25],[34,59],[37,42],[51,19],[23,-17],[10,38],[17,9],[15,-9],[33,-37]],[[53491,83977],[0,-58],[-7,-17],[-10,-11],[-28,-11],[-24,-17],[-22,-29],[-7,-41],[16,-30],[31,-16],[8,-58],[-26,-28],[-64,-28],[-7,-68],[2,-54],[-1,-39],[-5,-54],[-52,-24],[-34,82],[0,33],[-11,38],[-1,33],[-12,52],[-50,14],[-19,2],[-27,-9],[-6,3],[-33,72],[6,79],[-17,40],[-3,18],[1,20],[-14,16],[-18,9],[-8,44],[20,11],[48,-5],[15,3],[13,9],[39,73],[-1,16],[4,21],[42,8],[19,-28],[-3,-46],[2,-57],[26,-16],[10,-3],[10,43],[8,21],[10,12],[4,39],[-6,24],[-13,17],[48,49],[50,38],[29,2],[29,-9],[27,-13],[15,-11],[8,-18],[-18,-43],[-5,-23],[12,-77]],[[52956,83876],[12,-30],[14,-64],[23,-72],[-10,-30],[7,-38],[-7,-41],[-44,-46],[-51,-2],[-52,22],[-74,44],[-6,24],[-10,13],[-20,74],[1,92],[37,11],[81,43],[18,-6],[20,-23],[23,-1],[32,32],[6,-2]],[[50873,74763],[27,-19],[28,17],[15,-5],[15,-9],[3,-37],[-13,-41],[-18,-41],[-16,-45],[-13,-52],[-25,-31],[-23,-18],[-48,38],[-28,10],[-8,14],[-7,58],[-12,18],[-19,8],[-16,-14],[-21,-31],[-12,31],[-17,5],[-7,19],[0,23],[115,139],[33,31],[71,36],[11,-5],[-9,-22],[0,-9],[9,-10],[-2,-17],[-9,-14],[-4,-27]],[[16512,9357],[49,-58],[19,-38],[11,-39],[-199,-96],[-9,-10],[-9,-50],[5,-11],[8,-8],[1,-19],[-17,-6],[-340,-38],[-159,35],[-22,23],[-5,36],[19,7],[35,5],[-9,16],[-22,29],[-2,24],[48,61],[23,16],[-90,57],[-11,13],[-12,4],[-44,-7],[-43,3],[15,23],[12,38],[38,32],[28,5],[28,-3],[132,-2],[130,-17],[131,-12],[215,-11],[46,-2]],[[14908,9627],[74,-16],[25,-25],[33,-18],[33,-10],[31,-27],[18,-48],[16,-15],[49,-32],[17,-28],[-3,-14],[-93,-11],[-31,4],[-29,-9],[-9,-17],[1,-18],[16,-13],[34,-12],[34,2],[63,14],[28,-3],[32,-15],[32,-2],[84,46],[21,8],[21,-2],[115,-54],[24,-27],[-17,-15],[-14,-22],[6,-15],[55,-22],[23,-28],[14,-11],[-3,-24],[-8,-29],[1,-33],[-28,-18],[-13,0],[-60,18],[-187,10],[-60,15],[-92,65],[-36,4],[-37,16],[-57,46],[-99,37],[-63,45],[2,38],[-9,27],[-12,11],[-12,6],[-36,10],[-35,-3],[-18,-11],[-29,-28],[-32,-5],[-25,6],[-5,6],[-1,74],[-27,10],[-23,30],[-4,40],[10,37],[35,45],[40,5],[40,-7],[41,10],[65,6],[74,-4]],[[31618,5715],[-26,-2],[-14,4],[-14,12],[-12,46],[-137,37],[-16,21],[-9,46],[-23,18],[-178,82],[-15,17],[-10,25],[33,10],[70,-18],[127,-5],[28,-8],[26,-14],[142,-3],[72,-7],[40,-65],[81,-19],[11,-38],[10,-68],[-110,-50],[-25,-7],[-51,-14]],[[33931,14945],[11,-8],[9,4],[9,8],[9,19],[33,27],[31,3],[-10,-28],[74,-50],[-6,-39],[14,-32],[-30,-10],[-24,-33],[21,-13],[12,-28],[-25,-7],[-54,17],[-28,-4],[3,26],[-9,10],[-33,-5],[-14,-57],[-10,-5],[-12,9],[9,37],[-14,6],[-14,-1],[-42,-27],[-12,-1],[-25,32],[79,42],[-33,21],[-7,26],[5,36],[-29,-5],[-28,-14],[-13,-2],[-11,12],[4,26],[23,43],[18,45],[36,22],[21,17],[28,8],[12,16],[26,1],[15,-37],[-1,-22],[-12,-24],[-6,-61]],[[32450,14706],[-27,-60],[40,1],[28,21],[29,9],[25,-30],[-52,-23],[-50,-40],[-20,-21],[-22,-9],[-28,3],[-28,-4],[-25,-39],[-26,-18],[-8,15],[-10,9],[-56,14],[-26,20],[-23,14],[-25,7],[13,35],[15,31],[85,42],[-8,13],[-6,17],[67,21],[2,21],[-4,24],[21,16],[20,24],[14,7],[42,-3],[29,-33],[-12,-33],[26,-51]],[[29526,11154],[43,-51],[-40,-40],[-142,-75],[-83,-29],[-84,-22],[-380,-69],[-27,0],[-26,9],[-15,15],[-25,57],[3,29],[34,27],[35,18],[60,16],[229,36],[23,12],[19,27],[6,31],[8,24],[15,11],[16,0],[30,-23],[55,-93],[18,13],[16,25],[3,80],[16,6],[49,-22],[30,-23],[1,45],[21,14],[22,-5],[22,-10],[48,-33]],[[29170,11677],[49,-14],[72,-63],[24,-32],[7,-19],[-6,-13],[-33,-15],[-25,-77],[-50,-27],[-116,17],[-128,31],[-10,6],[-11,27],[-2,31],[14,39],[22,20],[95,24],[7,14],[14,39],[24,8],[11,-3],[42,7]],[[22752,10418],[-23,-61],[2,-60],[68,4],[30,114],[64,21],[31,-68],[-30,-55],[15,-31],[18,-22],[32,-1],[29,33],[13,24],[11,26],[19,58],[61,54],[135,8],[71,-34],[-48,-86],[-115,-50],[-74,-52],[25,-14],[25,-7],[23,2],[65,27],[160,50],[61,37],[22,-6],[0,-62],[21,-42],[-12,-93],[-69,-17],[-71,-8],[18,-41],[-4,-17],[-6,-13],[-178,17],[-31,-6],[-31,-12],[-31,3],[-62,30],[-32,0],[-64,-15],[-65,-6],[-93,1],[-68,5],[-64,33],[-67,9],[-75,1],[-79,38],[-66,15],[-95,39],[-25,15],[-25,8],[-45,-3],[-346,59],[-51,-1],[-33,-8],[-33,4],[-67,28],[-14,31],[7,29],[15,13],[30,13],[480,69],[50,19],[37,-2],[28,-59],[42,-61],[14,1],[14,6],[47,51],[86,-16],[48,23],[33,45],[97,52],[61,-10],[57,-22],[27,-54]],[[29346,9735],[-40,-75],[-7,-8],[-40,-19],[14,-20],[11,-10],[7,-24],[23,-33],[28,-21],[-23,-59],[-34,-26],[-369,160],[-28,26],[-14,19],[-11,30],[-1,30],[9,24],[13,14],[33,17],[34,1],[75,-32],[10,5],[14,28],[40,1],[9,24],[-55,8],[-44,24],[-29,24],[-8,19],[99,33],[251,-42],[38,-14],[17,-19],[14,-26],[-36,-59]],[[31114,12975],[-29,-37],[-23,-11],[-21,10],[-21,5],[-15,-14],[-16,-58],[-19,-29],[-20,-15],[-12,6],[-12,0],[-19,-13],[-24,-5],[-23,6],[-22,37],[-32,44],[-6,14],[-5,36],[1,37],[14,28],[73,98],[24,44],[21,50],[23,45],[44,80],[22,29],[111,84],[30,19],[33,-5],[8,-44],[-16,-22],[-53,-56],[-11,-79],[1,-29],[5,-8],[20,-10],[14,-11],[18,-24],[21,-14],[-45,-41],[-30,-21],[-21,-26],[-40,-25],[-17,-16],[26,-6],[38,-21],[10,-18],[-5,-14]],[[0,93051],[43,8],[43,15],[40,3],[40,-9],[41,2],[40,15],[32,-2],[33,-9],[122,-21],[23,-7],[39,-27],[22,-10],[22,-16],[23,-27],[43,-29],[65,-34],[14,-10],[10,-26],[-7,-30],[-83,-57],[-67,-15],[-129,-15],[-175,-43],[-72,-12],[-25,2],[-63,28],[-74,12]],[[0,92737],[0,314]],[[33652,22309],[43,-33],[53,11],[22,-9],[13,-28],[-7,-26],[-17,4],[-15,-7],[3,-35],[10,-14],[56,-38],[10,-2],[-1,15],[-10,26],[-4,28],[9,24],[14,7],[64,11],[15,-11],[32,-66],[-30,-9],[-12,-28],[26,-12],[20,-19],[-11,-28],[-2,-14],[-46,-19],[-40,-13],[-19,-33],[-33,-24],[-96,-41],[11,-34],[1,-16],[-4,-44],[-133,52],[-18,-5],[36,-90],[-26,-16],[-26,10],[-24,-7],[-15,-65],[-38,42],[-32,58],[-1,33],[32,62],[-10,26],[73,83],[13,25],[23,14],[23,5],[10,11],[-1,20],[-10,35],[1,57],[58,77],[-8,49],[18,1]],[[39693,20699],[27,-28],[22,19],[22,-2],[12,-10],[12,-3],[16,-1],[27,-47],[-11,-41],[29,8],[26,-35],[12,3],[5,14],[17,16],[11,-22],[14,-41],[18,-12],[15,-44],[12,-55],[11,-8],[19,-1],[20,8],[-8,-48],[3,-42],[32,-30],[-19,-17],[-20,-24],[-41,-19],[-11,8],[-35,42],[-17,50],[-37,71],[-8,21],[-9,13],[-34,9],[-30,17],[-24,36],[-8,22],[-10,15],[-33,-1],[-21,17],[-21,23],[-94,67],[-37,-7],[-17,19],[0,33],[20,20],[-82,8],[-29,12],[20,7],[114,1],[43,6],[3,-15],[38,-29],[36,-3]],[[29507,26874],[-21,-12],[-19,-3],[-20,9],[-35,-1],[-34,22],[-32,32],[-9,19],[3,26],[24,61],[22,116],[15,166],[-12,63],[1,26],[6,31],[2,33],[-1,32],[3,30],[24,64],[4,29],[0,31],[11,64],[-3,21],[-9,18],[7,16],[85,-47],[56,-11],[3,-49],[11,-38],[7,-68],[8,-16],[-4,-49],[-26,-21],[2,-45],[15,-42],[-22,-16],[-23,-9],[-6,-11],[-17,-10],[-20,-23],[6,-21],[26,-48],[29,-33],[16,-49],[21,-51],[-10,-33],[-19,-46],[-31,-31],[-27,-19],[3,-76],[-10,-31]],[[33253,22199],[41,-11],[37,40],[25,13],[21,-9],[15,-24],[21,4],[61,25],[8,-9],[21,29],[19,-13],[14,-25],[-7,-30],[-17,-19],[-10,-26],[-13,-21],[-21,-19],[-16,-31],[-40,-73],[-57,-94],[-19,-8],[-40,-6],[-17,7],[-14,-2],[-12,-51],[-18,-38],[-9,-8],[-19,-4],[-8,-5],[-7,-14],[-50,3],[-35,24],[-41,52],[55,64],[48,-3],[39,43],[32,21],[13,22],[14,17],[0,22],[-11,10],[-14,-1],[-14,-10],[-34,-12],[-23,25],[15,10],[17,-1],[52,24],[10,10],[-16,33],[-31,21],[-26,34],[-4,13],[1,20],[-14,41],[15,2],[19,-26],[44,-36]],[[29312,23532],[2,-85],[-4,-85],[-11,-104],[2,-21],[12,-5],[4,-13],[-4,-55],[-7,-42],[-13,-35],[-7,-41],[-7,-9],[-30,-7],[-17,4],[-13,47],[-4,29],[1,38],[-16,51],[-1,19],[6,34],[14,16],[2,52],[6,15],[15,21],[2,9],[-1,8],[-5,1],[-61,-64],[-5,-18],[-3,-24],[-1,-84],[-10,-49],[-10,-9],[-28,-2],[-37,5],[-42,44],[-27,-12],[-6,54],[14,44],[51,-4],[8,77],[-16,18],[-18,32],[-10,28],[9,21],[30,31],[15,3],[15,-17],[36,13],[-2,49],[-32,22],[7,37],[41,35],[24,36],[2,41],[-10,40],[3,16],[20,34],[29,16],[13,-2],[26,-24],[24,-3],[5,-7],[5,-26],[15,-193]],[[29726,26048],[-68,-46],[-33,15],[-13,34],[-7,29],[-7,48],[12,26],[24,37],[10,24],[4,28],[-2,27],[4,25],[14,9],[50,-28],[52,-43],[18,-29],[3,-23],[-22,-52],[-15,-42],[-24,-39]],[[32833,80122],[-117,-8],[-92,36],[-69,17],[-67,31],[-146,100],[-16,35],[-14,43],[-28,39],[-30,32],[-154,98],[-13,34],[31,23],[36,10],[31,-1],[104,-38],[130,-34],[56,-26],[64,-38],[62,-47],[140,-125],[24,-10],[63,-61],[23,-46],[11,-38],[-14,-19],[-15,-7]],[[33026,78308],[9,-4],[38,28],[20,-1],[-1,-20],[-32,-22],[-15,-17],[18,-15],[0,-10],[-22,-25],[-11,-27],[9,-26],[36,26],[14,0],[20,-6],[19,8],[11,13],[63,99],[3,13],[-68,-20],[-8,13],[45,61],[-4,31],[23,51],[20,30],[15,16],[22,16],[15,-24],[5,-43],[37,6],[37,-9],[26,-18],[5,-10],[0,-17],[-9,-29],[-15,-25],[30,-31],[-4,-13],[-48,-36],[-28,-35],[-25,-44],[-50,-51],[-80,-36],[-25,0],[-30,11],[-30,-3],[-29,-13],[-29,1],[-13,-7],[-14,1],[-11,14],[-23,41],[-12,27],[-12,130],[4,68],[20,63],[29,43],[17,34],[72,200],[14,45],[17,39],[31,39],[40,64],[12,14],[23,6],[23,-4],[-7,-23],[2,-23],[26,-89],[0,-18],[-15,-71],[-27,-116],[-7,-63],[4,-19],[-11,-32],[-12,-25],[-47,-45],[-24,-11],[-22,-17],[-54,-58]],[[2371,88502],[5,-14],[29,2],[40,-6],[45,-14],[45,5],[56,43],[33,11],[34,6],[37,-10],[35,-23],[14,-13],[11,-24],[7,-28],[11,-21],[67,-25],[42,-10],[10,-14],[9,-19],[36,-14],[37,5],[20,-5],[63,-1],[77,-21],[-12,-56],[-25,-24],[-72,7],[-71,-8],[-29,-28],[-25,-37],[-3,-35],[-14,-16],[-15,-7],[-12,19],[-17,60],[-11,16],[-12,11],[-35,19],[-35,12],[-21,1],[-15,21],[-8,30],[-14,15],[-28,22],[-29,17],[-89,38],[-29,5],[-30,-4],[-32,-17],[-31,-26],[-31,-19],[-33,-4],[-32,11],[-29,25],[-15,18],[-8,30],[1,30],[4,29],[16,71],[27,14],[51,-50]],[[3851,86626],[26,-29],[13,-1],[43,8],[16,-6],[15,-12],[9,-19],[2,-33],[-7,-30],[2,-41],[-1,-18],[22,-24],[8,-32],[3,-34],[-49,-12],[-49,-2],[-43,-23],[-9,-17],[7,-26],[-11,-6],[-11,5],[-21,24],[-22,11],[-79,18],[-100,69],[-42,14],[-44,50],[-39,64],[25,10],[26,5],[116,-9],[14,46],[15,11],[36,13],[35,25],[15,0],[16,-10],[32,15],[17,3],[14,-7]],[[4590,83513],[27,-95],[12,-18],[17,-10],[24,-11],[15,-14],[12,-21],[2,-10],[-76,38],[-48,-56],[-15,-7],[-136,-3],[-27,-10],[-18,-18],[-31,-52],[-16,-19],[-16,-12],[-36,-14],[-42,2],[-22,7],[-12,24],[-11,48],[0,14],[5,23],[38,31],[12,17],[49,109],[14,15],[16,4],[41,-8],[36,32],[77,48],[17,6],[55,1],[16,-8],[11,-13],[10,-20]],[[28538,62475],[34,-21],[35,-11],[15,0],[14,-7],[32,-49],[26,-28],[97,-60],[33,-105],[6,-33],[-25,-19],[-32,-7],[-30,-1],[-28,20],[-12,16],[-29,7],[7,14],[-13,7],[-16,-2],[-12,-40],[-14,-32],[-25,3],[-10,27],[-13,-12],[-11,-20],[-13,-75],[-21,37],[-23,31],[-28,13],[-57,2],[-28,11],[-22,63],[-9,18],[-23,17],[-22,72],[-8,10],[-62,16],[-12,40],[4,36],[20,44],[10,12],[34,-1],[32,13],[14,19],[15,12],[117,-32],[27,0],[26,-5]],[[31630,62468],[9,-12],[8,2],[-6,23],[6,0],[53,-14],[34,-24],[35,-12],[3,-80],[-27,-32],[-18,-34],[-15,-41],[-38,-47],[-45,-15],[-31,-1],[-11,1],[-11,9],[-23,-8],[-29,21],[-24,-5],[-48,5],[-18,-19],[-18,-4],[-17,4],[-14,8],[-36,-1],[-15,16],[6,91],[1,41],[-9,35],[-10,21],[-7,25],[14,17],[12,24],[4,37],[12,9],[15,4],[69,-17],[173,-10],[10,-3],[6,-14]],[[7528,85151],[2,-31],[12,3],[42,33],[23,10],[29,1],[23,-15],[4,-11],[-2,-14],[-18,-27],[1,-18],[19,-33],[49,-18],[6,-10],[0,-12],[-34,-55],[-12,-12],[-9,-3],[-61,9],[-55,18],[-23,3],[-8,-5],[-15,-17],[11,-5],[49,-4],[17,-25],[7,-18],[4,-20],[-10,-8],[-20,-6],[-25,0],[-31,-22],[-17,-25],[-62,-7],[-47,-34],[-17,-17],[-6,-20],[-17,-15],[-41,-14],[24,-13],[4,-11],[1,-16],[-4,-13],[-31,-59],[-60,-48],[-15,2],[-7,6],[-5,9],[-1,9],[78,98],[-3,4],[-21,4],[-34,26],[-23,-17],[-5,1],[6,23],[15,27],[-3,8],[-8,7],[-19,4],[-31,1],[-22,-6],[-15,-15],[-1,-6],[31,2],[9,-7],[8,-14],[5,-16],[2,-17],[-7,-24],[-14,-30],[-22,5],[-44,67],[-20,97],[-38,75],[-2,18],[11,46],[38,65],[42,18],[29,27],[28,9],[18,-1],[24,-12],[10,-25],[-6,-12],[2,-6],[17,-15],[18,-52],[21,-47],[14,-19],[19,-12],[-19,36],[-12,44],[-5,88],[-6,23],[11,6],[30,-3],[-1,13],[-32,29],[-19,25],[-8,19],[1,17],[17,25],[10,7],[10,3],[21,-5],[9,-8],[26,-56],[12,-17],[10,0],[10,9],[9,18],[8,12],[10,3],[29,-8],[10,3],[4,14],[0,25],[7,9],[2,18],[-16,27],[18,9],[61,-21],[25,-23],[-13,-42]],[[7662,85460],[10,-4],[10,34],[8,1],[33,-29],[20,6],[13,-35],[12,-4],[10,5],[7,-3],[-2,-38],[-24,-38],[-12,-9],[-15,9],[-6,4],[-10,17],[-8,21],[-5,1],[-18,-25],[0,-13],[8,-19],[-1,-11],[-20,-6],[-20,3],[-24,-16],[-5,10],[-4,29],[-7,-4],[-12,-35],[-12,-22],[-22,-18],[-5,-9],[-17,-1],[-24,-12],[-15,2],[-90,38],[-21,14],[74,87],[39,34],[22,-2],[22,-11],[12,2],[1,39],[-21,29],[1,12],[46,19],[18,-3],[19,-10],[18,-16],[17,-23]],[[13617,83806],[-10,-63],[-19,-65],[-29,-35],[-21,8],[-15,28],[-14,-1],[-15,6],[-8,23],[8,30],[-7,23],[-8,-20],[-13,-19],[-33,-24],[-23,-47],[-11,-30],[-13,33],[-9,78],[-1,33],[24,50],[31,48],[6,142],[99,71],[9,-4],[32,-53],[35,-74],[8,-34],[1,-58],[-4,-46]],[[12898,84296],[53,-12],[48,1],[17,-24],[10,-25],[7,-24],[1,-22],[-1,-15],[-6,-17],[2,-5],[94,-55],[44,-58],[18,-30],[10,-26],[19,-64],[39,-74],[21,-23],[11,-22],[-6,0],[-28,16],[-60,50],[-5,-2],[-5,-27],[-9,-24],[-14,-17],[11,-5],[48,11],[41,-49],[15,-8],[16,-35],[0,-14],[-9,-26],[-6,-10],[2,-7],[11,-4],[45,7],[8,-12],[-7,-101],[6,-37],[0,-17],[-5,-22],[0,-19],[4,-19],[1,-18],[-12,-45],[-12,-8],[-19,0],[-15,13],[-22,39],[-21,60],[-8,9],[-27,9],[-5,7],[-17,1],[-13,25],[2,33],[-11,33],[1,15],[-12,6],[-10,-9],[6,-33],[-6,-25],[-22,11],[-36,80],[-41,65],[-17,15],[5,19],[20,10],[17,-1],[3,11],[-34,63],[1,18],[12,31],[-15,13],[-43,-9],[-15,6],[-13,26],[-7,21],[-37,4],[-14,-2],[-24,33],[-12,21],[5,11],[22,18],[13,-2],[25,-20],[10,0],[25,27],[4,24],[18,20],[-3,21],[-10,35],[-23,10],[-46,-21],[-41,-32],[-16,12],[-3,20],[43,55],[19,30],[-4,17],[-14,23],[-1,58],[9,13]],[[12954,84679],[18,-18],[10,19],[19,-1],[35,-17],[20,-25],[12,-29],[1,-17],[-3,-40],[2,-40],[-1,-20],[-5,-18],[-8,-13],[-8,-2],[-27,36],[-31,65],[-24,20],[-1,-7],[7,-18],[19,-35],[3,-21],[14,-26],[6,-19],[3,-26],[0,-22],[-4,-19],[-6,-12],[-9,-6],[-47,6],[-28,-13],[-33,7],[-8,11],[-5,19],[-2,46],[-9,66],[2,50],[-21,46],[-18,27],[-26,25],[-18,24],[5,20],[27,14],[44,-3],[95,-34]],[[12508,84879],[24,-63],[17,-49],[15,-59],[26,-122],[12,-46],[3,-26],[3,-66],[-4,-14],[-7,-13],[-2,-19],[7,-50],[1,-77],[-7,-43],[-8,-7],[-19,14],[-15,24],[-12,24],[-28,77],[-9,36],[0,25],[4,19],[9,12],[17,31],[-3,5],[-12,-7],[-25,-4],[-22,24],[-17,13],[3,45],[-4,12],[-34,-13],[-13,12],[-3,17],[1,25],[6,21],[32,55],[-3,11],[-15,2],[-21,19],[-9,61],[-22,35],[-14,-3],[-29,-99],[-15,-22],[-42,-14],[9,28],[4,25],[-15,74],[-1,29],[10,21],[30,9],[15,13],[13,20],[3,20],[23,53],[10,10],[29,0],[60,-59],[18,-8],[26,-38]],[[12589,85346],[70,-13],[52,3],[47,-86],[29,-70],[17,-49],[10,-47],[13,-45],[-1,-7],[-28,31],[-19,62],[-10,24],[-10,11],[-10,23],[-21,59],[0,17],[-9,16],[-11,6],[-12,-3],[-4,-5],[2,-41],[9,-46],[51,-99],[34,-57],[7,-18],[5,-52],[-15,-23],[18,-48],[-1,-9],[-4,-9],[-48,-21],[-45,-89],[-48,-52],[-23,-8],[-10,9],[-11,20],[-6,26],[-1,33],[12,21],[24,109],[0,35],[-30,50],[-18,40],[-9,57],[-17,149],[-7,48],[-11,39],[-14,32],[-10,35],[-8,38],[3,15],[24,-20],[29,-55],[15,-36]],[[12297,85393],[40,-56],[0,-13],[-8,-38],[-22,-11],[6,-15],[17,-12],[11,10],[42,54],[13,11],[8,1],[51,-16],[44,-26],[13,-20],[8,-36],[-12,-79],[-37,-13],[-17,1],[-18,12],[-30,-28],[25,-20],[75,-5],[23,-44],[6,-34],[-16,-62],[-43,17],[-37,36],[-77,51],[-19,3],[-12,-9],[-4,-31],[1,-68],[-20,-34],[-61,15],[-24,51],[-22,80],[-84,96],[-23,19],[-30,57],[12,45],[4,26],[16,7],[23,20],[14,44],[21,-36],[28,-34],[1,32],[13,26],[28,-1],[13,5],[18,24],[26,12],[16,-14]],[[14291,82338],[13,-184],[-1,-59],[-19,-38],[-13,-65],[-15,-29],[-15,39],[-1,64],[-4,51],[-5,24],[6,95],[-6,-7],[-18,-41],[-19,-3],[-34,47],[-17,38],[-3,40],[-22,42],[-3,15],[2,16],[19,42],[7,28],[7,58],[7,23],[18,-3],[31,-27],[33,-28],[30,-39],[22,-99]],[[13151,83022],[26,-34],[61,22],[11,-4],[12,-13],[12,-28],[14,-42],[3,-46],[-5,-17],[-11,-18],[-98,-73],[-2,-7],[2,-7],[9,-7],[19,1],[77,18],[5,13],[5,57],[11,31],[0,23],[-7,55],[1,22],[54,5],[33,20],[35,38],[8,-1],[-5,-68],[-5,-21],[-33,-84],[-19,-73],[-9,-73],[-2,-120],[-8,-41],[-15,-25],[-93,-43],[-48,2],[-43,40],[-20,27],[15,33],[10,2],[30,-7],[24,-12],[10,0],[-2,7],[-66,63],[-49,28],[-14,32],[-1,24],[-4,14],[-38,86],[-8,34],[-5,48],[0,49],[10,80],[4,8],[16,-1],[27,-9],[66,-8]],[[13402,82485],[28,-53],[8,-48],[-3,-56],[-45,-22],[-23,17],[-11,-3],[-15,-17],[19,-7],[26,-28],[23,-36],[32,-6],[44,-25],[-33,-45],[-5,-26],[41,-72],[4,-18],[13,-4],[30,6],[4,-6],[0,-15],[-19,-42],[2,-8],[17,-7],[32,0],[8,-41],[-30,-38],[-55,49],[-25,48],[-14,45],[-17,25],[-52,57],[-78,121],[-21,18],[-20,48],[-6,23],[1,15],[7,9],[24,5],[0,24],[-90,42],[-10,8],[-12,30],[7,4],[49,-5],[53,14],[33,11],[13,13],[27,17],[11,-1],[28,-20]],[[32274,78610],[8,-8],[13,15],[15,47],[41,-12],[22,-21],[12,4],[12,-2],[23,-28],[44,-22],[46,4],[70,13],[8,5],[72,11],[72,5],[25,-12],[9,-12],[5,-14],[-41,-38],[-41,-44],[-58,-44],[-7,-21],[4,-39],[-1,-40],[11,-3],[7,-14],[-15,-13],[-59,-6],[-17,4],[-21,16],[-7,39],[-25,-6],[-7,5],[35,32],[-16,42],[-18,-3],[-11,19],[1,27],[16,13],[5,14],[-22,-13],[-17,-24],[-21,-9],[-22,-22],[33,-6],[-17,-17],[-17,-3],[-81,32],[-20,12],[-26,34],[-19,45],[11,2],[3,8],[-2,7],[-28,6],[-45,-2],[-25,12],[1,79],[-8,22],[-28,18],[-42,5],[-4,30],[13,44],[21,39],[16,37],[18,31],[46,62],[-1,-46],[4,-40],[-30,-79],[52,-79],[6,-17],[5,-21],[-4,-19],[-8,-18],[20,-8],[6,-15]],[[29858,75452],[-20,-37],[18,-4],[16,11],[14,22],[34,30],[29,13],[9,3],[13,-21],[28,17],[28,9],[-121,-96],[-25,-11],[-36,-28],[-33,-21],[-24,-7],[-120,-71],[-10,-2],[-10,7],[-99,-36],[-40,-5],[-37,-12],[27,29],[1,11],[-7,9],[-14,-3],[-15,-30],[-24,-10],[-5,33],[8,26],[11,24],[24,38],[34,24],[17,21],[12,-18],[2,25],[10,14],[10,8],[24,0],[12,4],[10,8],[9,2],[27,-12],[25,4],[21,15],[22,5],[56,4],[57,11],[23,21],[47,56],[28,16],[-43,-66],[-23,-30]],[[92198,49368],[14,-12],[42,60],[22,-42],[28,-20],[30,-12],[-12,-86],[4,-40],[7,-40],[-1,-59],[-13,-52],[-26,-76],[-12,-15],[-13,-8],[-43,-6],[-8,-40],[3,-43],[23,-57],[18,-63],[-18,-59],[-30,-40],[-29,-21],[-47,12],[-50,-5],[-10,-22],[0,-37],[-7,-28],[-9,-25],[-25,-53],[-29,-46],[-38,-45],[-13,-10],[-35,-7],[-31,-26],[-13,-25],[-15,-20],[-33,-22],[-32,-43],[-12,-8],[-66,-7],[-95,-2],[-28,-5],[-27,6],[-15,17],[-32,79],[-28,26],[-30,0],[-41,-28],[-8,6],[-80,116],[-25,28],[-26,21],[-32,15],[-30,23],[-18,55],[2,72],[24,42],[37,-21],[14,0],[14,12],[16,-4],[17,-10],[60,15],[34,-22],[34,-29],[32,-6],[32,6],[43,33],[14,-4],[42,0],[36,44],[14,177],[9,60],[13,14],[9,-4],[13,-30],[-17,-38],[-8,-29],[-2,-71],[9,-69],[22,-54],[32,-7],[29,36],[32,7],[30,-35],[30,6],[14,23],[16,10],[16,4],[14,13],[20,60],[13,67],[19,52],[52,88],[15,11],[17,6],[37,-4],[27,32],[2,70],[-4,72],[-31,167],[-2,27],[4,30],[9,27],[31,0],[32,-9],[13,-26],[14,-20]],[[85359,46990],[-50,-92],[-56,-76],[-34,-23],[-35,-15],[-27,-29],[-23,-46],[-29,-26],[-32,-9],[-28,-14],[-26,-27],[-35,-46],[-14,-5],[-15,1],[-29,-17],[-91,-67],[-55,-73],[-59,-93],[-10,-58],[-34,-54],[-37,-89],[-29,-46],[-26,-53],[-23,-36],[-28,-13],[-42,-7],[-56,-65],[-32,-28],[-31,-2],[-28,21],[-11,24],[2,31],[10,28],[12,22],[7,29],[-33,37],[-2,27],[12,75],[9,76],[12,52],[46,93],[28,46],[62,68],[104,58],[20,22],[17,32],[51,53],[38,63],[25,88],[17,34],[40,33],[16,9],[118,48],[28,3],[74,-1],[100,10],[24,7],[32,21],[31,26],[16,21],[18,14],[25,-18],[44,-14],[11,-13],[11,-17]],[[90289,28348],[32,-2],[18,14],[16,-2],[19,-33],[22,-18],[16,3],[13,-6],[12,-24],[30,-20],[14,-13],[11,-20],[13,-16],[81,-54],[57,-26],[71,12],[21,15],[21,22],[17,-20],[17,-32],[-3,34],[6,30],[17,23],[20,15],[32,-2],[31,7],[14,13],[14,2],[19,-17],[19,-9],[13,22],[21,51],[12,18],[55,-16],[15,0],[27,53],[17,-1],[51,-42],[22,-53],[-3,-97],[2,-34],[4,-34],[2,-67],[-6,-67],[-1,-52],[3,-52],[-3,-98],[8,-64],[-4,-44],[0,-21],[7,-19],[4,-22],[-3,-28],[3,-32],[-3,-27],[-11,4],[-4,21],[2,26],[-2,22],[-6,19],[-20,22],[6,13],[10,12],[-7,29],[-13,-24],[-8,-33],[5,-11],[-8,-9],[-17,-38],[-12,-51],[-5,-50],[1,-52],[-10,-40],[-14,-39],[-3,-49],[1,-91],[11,-83],[7,-113],[-10,-15],[-30,-7],[-14,-15],[-24,57],[-15,58],[11,24],[24,-14],[8,13],[2,16],[-2,15],[-30,32],[-33,15],[-11,-19],[4,-55],[-3,-13],[-24,-21],[-12,80],[-31,60],[1,-29],[13,-50],[-1,-21],[-5,-29],[-13,-10],[-5,-23],[0,-32],[-5,-51],[-20,-23],[-48,57],[-4,-19],[1,-17],[25,-33],[-12,-25],[-8,-29],[-14,-76],[-23,-64],[-11,-4],[-37,10],[-42,54],[-38,-6],[-62,4],[-40,-20],[-9,59],[-8,21],[3,18],[32,13],[33,-1],[-6,23],[-8,8],[-15,-5],[-41,19],[-29,-8],[-19,28],[-34,96],[-20,45],[-12,18],[-13,9],[-9,14],[-61,221],[-8,51],[-11,129],[48,-62],[18,-39],[9,-50],[16,61],[-3,19],[-43,73],[-6,21],[-2,25],[-10,-25],[-17,-3],[7,51],[-6,51],[-51,111],[-39,105],[-38,130],[-3,16],[-1,28],[-18,87],[-10,65],[-4,56],[17,114],[3,64],[27,-29],[63,-37]],[[76812,98545],[10,-26],[36,-21],[18,-21],[183,-67],[80,-8],[36,-17],[10,-20],[-3,-37],[-31,0],[-22,-12],[-124,-15],[-30,-22],[-24,-45],[13,-9],[12,-13],[37,-77],[10,-12],[37,-11],[-33,-29],[-35,-19],[-366,-37],[-249,-15],[-83,-16],[-27,2],[-65,-29],[-127,-38],[-61,0],[-181,53],[-222,45],[-31,25],[-55,15],[-71,12],[-31,51],[45,35],[58,34],[97,12],[92,20],[69,49],[43,48],[78,51],[-135,-13],[-51,7],[5,17],[28,36],[15,12],[49,19],[35,36],[81,25],[39,4],[38,-1],[70,12],[70,18],[66,10],[65,5],[63,14],[62,28],[27,48],[179,5],[28,-11],[22,-29],[26,-10],[31,-6],[79,-48],[15,-14]],[[77131,98017],[64,-37],[31,-41],[-30,-11],[-28,-28],[-13,-34],[-37,-27],[-10,-43],[17,-8],[20,12],[41,41],[53,28],[58,-16],[23,6],[40,39],[-7,33],[16,20],[18,5],[75,-4],[119,-17],[21,-17],[29,-10],[17,-16],[53,-13],[26,-12],[35,-28],[32,-42],[-40,-22],[-22,-40],[-9,-9],[-7,-15],[-3,-35],[-6,-30],[-7,-13],[-5,-17],[5,-45],[-12,-35],[-40,-27],[-41,-1],[-61,18],[-18,-1],[-17,-7],[76,-38],[56,-56],[65,-13],[18,-6],[23,-52],[8,-26],[-108,-62],[-28,-11],[-172,-9],[-113,-18],[-36,4],[-63,15],[-42,-6],[-60,10],[-37,0],[-85,23],[-88,38],[-17,18],[-18,12],[-105,10],[-23,8],[-153,-9],[-26,6],[-47,50],[-27,1],[-84,-29],[-31,2],[-64,19],[-38,24],[-6,8],[-4,29],[-38,15],[-46,52],[-27,54],[-128,28],[-77,7],[-58,-2],[-56,21],[93,78],[123,41],[53,31],[61,42],[25,65],[103,40],[27,14],[36,31],[12,4],[81,-38],[16,7],[15,17],[29,19],[100,3],[85,-8],[32,8],[39,-3],[195,28],[130,8],[24,-5]],[[78578,97496],[-27,-45],[-11,-40],[-83,-133],[-10,-23],[49,20],[44,45],[27,38],[30,24],[34,0],[35,9],[65,31],[66,14],[36,-1],[34,-15],[22,-35],[24,-28],[87,-21],[13,-7],[8,-24],[-7,-25],[50,-25],[69,11],[37,-7],[36,-14],[17,-22],[14,-27],[15,-39],[9,-41],[-8,-55],[-134,-84],[-25,-8],[-62,6],[-61,-9],[-161,-44],[-199,-1],[-57,-39],[-17,1],[-17,7],[-16,13],[-121,-11],[-136,-7],[-136,-1],[-45,-28],[-139,-55],[-127,-42],[-66,-10],[-96,11],[-30,14],[-29,21],[42,27],[30,54],[37,32],[94,61],[11,24],[18,51],[11,20],[15,18],[11,22],[2,33],[6,28],[37,42],[27,20],[29,6],[71,-8],[22,3],[-16,13],[-11,50],[2,16],[10,31],[18,15],[18,10],[11,42],[-5,15],[27,20],[13,27],[32,16],[65,13],[3,34],[10,21],[14,7],[33,6],[18,-1],[24,-34],[26,-28],[34,-6],[34,2],[-20,33],[1,35],[12,22],[16,10],[34,2],[107,-24],[70,-35],[16,-18],[-13,-10],[-31,-6],[-16,-10]],[[88902,95523],[28,-11],[34,7],[32,-15],[30,-61],[14,-16],[15,-11],[15,-5],[45,-2],[20,12],[15,28],[-1,28],[-4,29],[0,39],[7,35],[10,21],[13,14],[74,43],[52,42],[71,-16],[72,-38],[127,-80],[59,-23],[71,-21],[72,-8],[35,5],[69,22],[35,2],[436,-160],[15,-13],[14,-19],[-94,-24],[-61,-42],[-21,-29],[24,-24],[20,-32],[-133,-96],[-53,-25],[-54,-8],[-110,23],[-64,-1],[-62,20],[-69,58],[-29,29],[-25,40],[-8,64],[10,55],[37,16],[32,35],[5,15],[-17,31],[-108,5],[-68,-17],[-61,-18],[18,-117],[13,-37],[18,-27],[98,-123],[22,-17],[65,-24],[55,-53],[-97,-59],[-43,-17],[-42,-10],[-26,5],[-26,12],[-28,28],[-24,30],[-31,23],[-66,-5],[-61,-20],[-61,-14],[-180,-24],[-55,-15],[-55,-5],[-71,28],[-70,39],[-22,1],[-20,-11],[-17,-24],[-9,-38],[-23,-51],[-29,-36],[-31,-16],[-32,-2],[-33,10],[-32,16],[-215,56],[-25,17],[-24,25],[-65,79],[-32,19],[-33,8],[-64,40],[-59,64],[-12,20],[-4,32],[10,23],[51,-11],[34,1],[-21,119],[15,112],[25,19],[97,-13],[-31,37],[-26,49],[16,27],[18,19],[42,15],[56,7],[17,12],[16,19],[31,20],[62,8],[107,40],[29,-1],[27,-21],[26,-30],[28,-16],[88,-39],[60,-35],[85,-71]],[[89495,94409],[69,-25],[57,-28],[196,-135],[18,-28],[15,-35],[8,-123],[-11,-9],[-72,-6],[-98,14],[-70,5],[-68,0],[-60,17],[-147,16],[-115,45],[-120,33],[-25,4],[-75,-10],[-102,-43],[-28,-3],[-39,0],[-27,40],[65,14],[65,5],[63,14],[59,47],[29,38],[51,85],[28,31],[28,20],[30,6],[33,-3],[103,19],[70,6],[70,-11]],[[90776,95259],[73,-4],[107,43],[14,1],[260,-15],[22,-15],[2,-30],[-8,-15],[-4,-22],[32,-21],[84,-4],[53,19],[156,-10],[128,-14],[49,-32],[38,-17],[31,-20],[23,12],[22,20],[18,4],[18,-4],[-49,-122],[-18,-14],[-69,-30],[-137,-42],[-67,-13],[-152,0],[-209,16],[-57,15],[-34,18],[-64,43],[-31,16],[-103,14],[-32,8],[-60,37],[-62,30],[-154,49],[10,56],[20,56],[24,50],[26,45],[28,13],[59,-41],[-1,-47],[14,-33]],[[98129,31719],[5,-26],[15,18],[11,30],[19,30],[-3,-48],[10,-11],[61,-34],[13,-28],[13,-8],[7,16],[9,8],[22,-18],[50,-49],[4,-17],[-2,-25],[2,-27],[7,-21],[17,-5],[22,31],[10,4],[15,-45],[6,-25],[-3,1],[10,-25],[12,-25],[22,-74],[-3,-26],[-6,-23],[20,-68],[-13,-5],[-40,12],[1,-14],[23,-50],[20,-70],[15,-43],[55,-132],[-8,-47],[1,-31],[-7,-26],[19,-70],[-12,-22],[-8,-72],[-8,-12],[1,-26],[22,-7],[13,-11],[12,-21],[7,25],[10,7],[26,-34],[55,-34],[15,-13],[8,-27],[5,-67],[11,-29],[21,-6],[23,9],[7,25],[-5,65],[-16,104],[0,34],[2,33],[-3,34],[-9,32],[-8,24],[-12,21],[4,32],[17,14],[10,-27],[9,-32],[42,-97],[26,7],[2,-40],[17,-41],[10,-47],[12,-143],[19,-133],[35,-59],[4,-28],[-21,15],[-7,-9],[2,-14],[20,-25],[23,-13],[14,2],[14,-9],[90,-87],[43,-34],[109,-56],[31,-4],[17,2],[33,19],[29,34],[25,52],[22,59],[23,28],[27,23],[14,21],[14,15],[73,-7],[25,-30],[32,-24],[16,-18],[-5,-38],[-19,-56],[-15,-61],[-13,-138],[-9,-141],[-13,-61],[-24,-48],[-27,-34],[-30,-17],[-12,-79],[-6,-93],[1,-24],[10,-18],[4,-28],[-16,-56],[-9,8],[-13,47],[-12,19],[-36,15],[-37,7],[-32,-5],[-31,-19],[-47,-41],[-14,-21],[-13,-25],[-21,-58],[-5,-71],[1,-38],[7,-28],[40,-40],[-39,-136],[-35,-143],[-20,-40],[-23,-38],[-21,-85],[-38,-74],[-25,-56],[-20,-59],[-17,-62],[-37,-88],[-16,-58],[-22,-48],[-40,-61],[-42,-53],[-67,-73],[-18,-24],[-20,-18],[-24,21],[-5,23],[-6,50],[-5,18],[-31,15],[-41,-24],[-7,5],[-2,11],[0,73],[7,20],[-9,12],[-10,-5],[-3,-18],[6,-16],[-23,-20],[-25,-1],[-7,8],[-2,13],[6,22],[8,20],[45,91],[47,122],[40,130],[11,67],[15,125],[-12,51],[-16,49],[-40,94],[-55,53],[-35,7],[-33,20],[-31,45],[-29,53],[-56,43],[-60,34],[-34,48],[-8,29],[-5,33],[0,30],[5,32],[6,24],[11,17],[63,62],[67,35],[12,-1],[12,6],[17,21],[30,48],[8,33],[6,104],[10,102],[17,116],[26,73],[9,44],[-11,73],[10,27],[12,17],[13,9],[-23,69],[-26,104],[-6,32],[4,32],[7,31],[-17,8],[-10,30],[-24,101],[7,16],[14,-11],[20,-73],[4,38],[16,23],[16,12],[18,2],[-40,82],[-14,-4],[-18,-12],[-19,-8],[-18,7],[-17,18],[-8,34],[-11,66],[-7,24],[-53,135],[16,4],[43,-67],[8,21],[7,31],[-3,35],[-10,26],[-15,17],[-1,30],[12,28],[-1,20],[-24,40],[-10,4],[-5,-18],[7,-28],[-6,-3],[-61,73],[-18,58],[-15,65],[-2,-26],[2,-37],[24,-74],[39,-82],[7,-22],[-6,-29],[-14,-8],[-11,18],[-18,71],[-13,35],[-148,365],[19,48],[29,41],[7,18],[5,22],[-13,3],[-11,-10],[-13,-18],[-11,-22],[-15,-47],[-7,-11],[-17,33],[-7,20],[0,24],[-4,16],[-13,5],[-19,48],[-12,24],[20,47],[1,62],[-21,65],[-24,60],[-47,96],[-43,102],[47,13],[47,2],[-22,-61],[10,-35],[15,-30],[32,-91],[3,-27],[16,-26],[8,-21]],[[98087,28064],[32,-3],[29,43],[31,34],[32,28],[49,66],[12,9],[32,13],[14,15],[15,4],[-14,-39],[-17,-13],[-3,-14],[10,-22],[-15,-31],[0,-39],[-18,-46],[28,18],[10,30],[-5,17],[12,34],[18,16],[-7,25],[0,20],[23,-7],[11,0],[9,8],[16,4],[4,-23],[21,3],[-8,-28],[-16,-33],[-4,-20],[-27,-33],[-18,-14],[28,-4],[40,44],[24,39],[-1,-48],[-19,-44],[-17,-28],[-19,-8],[-18,-23],[-9,-36],[1,-25],[5,-19],[19,-32],[-21,-63],[24,8],[13,-12],[18,-36],[-11,-42],[-8,-22],[-47,-88],[-20,-44],[-24,-29],[1,-47],[-14,-34],[-70,-117],[-12,-25],[-55,-186],[-35,-78],[-20,-27],[-21,-22],[-51,-36],[-23,-43],[-25,-35],[-26,-8],[1,-15],[17,-9],[13,-23],[-10,-26],[-19,-16],[-19,-5],[-10,-17],[46,12],[13,-13],[3,-29],[5,-26],[11,-34],[39,-21],[35,-10],[7,-16],[5,-54],[-6,-27],[-8,-18],[-12,-6],[-28,-3],[-29,12],[-19,33],[-54,-11],[-15,-7],[-7,6],[30,35],[-16,19],[-13,8],[-14,-12],[-9,-18],[-3,-30],[-10,-17],[-15,-5],[-21,25],[-21,35],[-30,36],[4,-22],[24,-54],[12,-36],[-28,-29],[-28,-22],[-25,-13],[-22,-20],[-27,-32],[-15,-11],[-39,-1],[-21,-10],[-7,-42],[-15,-27],[-34,-5],[12,-8],[8,-14],[-23,-126],[-5,-53],[-4,-89],[-14,-83],[-41,0],[6,-15],[31,-23],[-6,-36],[-34,-64],[-14,-38],[-14,-90],[-20,-84],[-32,-95],[0,-17],[11,-24],[13,-21],[1,-30],[-4,-16],[-15,-4],[-13,-10],[-71,-26],[-24,-29],[-19,-53],[-22,-45],[-74,-100],[-44,-83],[-9,-24],[-12,-18],[-95,-39],[-68,-6],[-37,10],[-36,20],[-19,7],[-38,-12],[-16,-14],[-30,13],[-23,-10],[-7,10],[-9,25],[5,32],[-6,24],[-15,17],[-10,19],[-12,13],[-31,6],[-49,-9],[-16,1],[-34,80],[-11,20],[-39,25],[-14,-3],[-21,-43],[-13,-7],[-74,-5],[-75,14],[-28,16],[-5,37],[57,102],[-17,-14],[-35,-41],[-22,6],[21,45],[2,20],[-4,23],[-30,-38],[-33,-5],[-4,35],[3,41],[7,11],[89,22],[33,14],[14,22],[-54,7],[-3,31],[7,25],[46,41],[-33,-11],[-38,4],[3,43],[9,34],[40,1],[-13,23],[-1,33],[11,2],[39,-44],[29,-16],[-12,33],[2,21],[7,9],[24,7],[-7,6],[-22,8],[-26,25],[-3,26],[1,31],[28,42],[17,-25],[20,7],[-15,19],[-9,30],[6,19],[60,78],[15,-75],[4,25],[1,24],[-7,20],[1,21],[7,18],[25,17],[34,58],[25,26],[20,-17],[13,-23],[-2,23],[-9,19],[-3,53],[45,81],[49,78],[48,82],[25,29],[54,34],[34,-14],[9,3],[51,58],[21,16],[19,-21],[12,-8],[-12,54],[10,24],[42,44],[54,45],[40,19],[30,30],[18,1],[-3,23],[3,22],[16,-2],[5,9],[-14,12],[44,44],[24,48],[13,11],[11,14],[14,34],[17,11],[15,-5],[11,-17],[-6,28],[-20,15],[22,24],[22,16],[21,-12],[21,-19],[-21,30],[-3,18],[25,21],[14,6],[19,-39],[-2,31],[4,28],[28,45],[36,75],[11,-26],[2,-31],[-2,-39],[8,14],[2,34],[-5,61],[45,113],[8,12],[10,8],[16,3],[-5,17],[-12,17],[12,57],[8,65],[10,63],[17,62],[18,102],[14,22],[38,7],[16,15],[28,37],[32,67],[18,54],[23,140],[13,147],[37,108],[54,79],[48,60],[19,12],[33,4],[32,-17],[-59,-14],[-6,-36],[-2,-35],[7,-33],[11,-28],[28,-27],[33,-16],[15,-61],[3,-72],[5,-62],[13,-54]],[[85001,57212],[22,-35],[30,9],[-1,-87],[5,-26],[27,-74],[4,-61],[-16,-59],[-12,-27],[-22,-40],[0,-18],[9,-20],[31,-12],[23,-32],[4,-91],[22,-71],[-1,-31],[-9,-128],[3,-54],[16,-44],[14,-19],[8,-27],[6,-75],[-1,-128],[-2,-44],[-10,-42],[-30,-94],[-40,-75],[-22,5],[-6,-22],[13,-68],[-5,-145],[-9,-100],[-13,51],[-9,53],[-9,140],[-10,64],[-16,57],[-7,52],[-16,48],[-22,125],[-14,-7],[-23,-34],[-5,-23],[-3,-36],[-6,-32],[-27,-51],[-22,-60],[-17,-67],[-6,-61],[15,-47],[15,-20],[21,-42],[7,-20],[23,-139],[-1,-141],[-17,-63],[-42,-119],[-30,-37],[-17,19],[-13,72],[-2,29],[9,68],[1,62],[-10,21],[-12,-4],[-4,-9],[-27,-81],[-12,-21],[-17,-2],[-13,5],[-81,71],[-66,70],[-51,65],[-38,99],[-8,74],[0,77],[-17,113],[-2,38],[2,37],[16,70],[20,35],[12,25],[9,28],[6,37],[-2,37],[-7,23],[-32,82],[-27,50],[-57,45],[-13,24],[-14,19],[-16,8],[-16,0],[-16,-14],[-5,-29],[2,-27],[-2,-26],[-24,-148],[-30,32],[-29,38],[-7,26],[-4,32],[-5,21],[-6,19],[-14,-49],[-16,-39],[-20,-10],[-21,0],[-7,17],[-7,94],[-22,30],[-27,-7],[-33,-52],[-6,-19],[-7,-45],[-36,-127],[-19,-98],[-21,-96],[-9,-31],[-13,-21],[-19,9],[-18,23],[-17,61],[6,72],[19,45],[15,49],[19,171],[1,61],[4,26],[31,77],[26,48],[13,10],[57,28],[23,23],[36,0],[30,13],[24,37],[2,38],[-2,40],[6,24],[9,21],[12,27],[15,20],[40,15],[14,17],[10,26],[16,50],[17,-12],[18,-20],[33,-16],[28,-42],[19,-66],[3,-32],[5,-108],[-7,-25],[-28,-51],[13,-5],[36,46],[19,18],[45,24],[11,16],[7,24],[16,66],[12,71],[9,29],[13,23],[13,4],[47,-48],[31,23],[8,73],[7,106],[6,29],[17,28],[21,-9],[28,-38],[27,-13],[9,31],[10,61],[10,-1],[36,-20],[34,13],[10,73],[-7,78],[-27,226],[16,51],[14,1],[34,-60],[65,-81],[22,-50],[14,-61]],[[83638,62566],[43,-30],[94,-108],[34,-27],[36,-20],[28,-5],[26,24],[10,25],[20,67],[20,8],[13,-24],[9,-33],[5,-47],[-6,-50],[-20,-44],[-12,-54],[-8,-177],[0,-53],[7,-51],[17,-81],[9,-23],[26,-29],[7,-22],[1,-39],[4,-35],[17,-13],[14,-18],[-5,-38],[-9,-39],[-12,-97],[-55,-223],[-3,-48],[-22,-96],[-45,-16],[-52,-46],[-28,-36],[-25,-47],[-10,-62],[8,-28],[5,-30],[0,-32],[-8,-27],[-25,-65],[-10,-54],[-11,-24],[-6,-29],[2,-33],[10,-29],[30,-125],[33,-121],[7,-14],[2,-16],[-19,-32],[1,-58],[5,-58],[29,-142],[4,-38],[10,-31],[14,-30],[17,-24],[46,-42],[18,-9],[19,-1],[4,28],[17,10],[-4,28],[-20,38],[0,21],[10,16],[13,9],[28,42],[29,34],[38,-3],[37,-19],[27,-19],[22,-37],[22,-62],[16,-69],[-1,-33],[-3,-33],[0,-33],[12,-22],[36,-1],[18,51],[3,58],[-13,22],[6,28],[11,22],[16,-19],[15,-36],[56,-39],[14,-1],[11,-7],[25,-28],[12,-21],[-14,-45],[-56,-10],[-16,-34],[17,-68],[26,-55],[17,-45],[15,-49],[0,-45],[-9,-46],[24,3],[23,-9],[32,-40],[10,-3],[10,6],[-1,-141],[-22,-129],[-27,16],[-23,54],[4,67],[15,64],[-8,14],[-15,-6],[-17,-14],[-19,-5],[-30,8],[-62,70],[-26,7],[-6,31],[2,67],[-25,80],[-4,28],[-8,23],[-74,86],[-9,15],[-23,69],[-52,98],[-14,10],[-16,3],[-5,-25],[7,-38],[3,-33],[-1,-35],[2,-27],[25,-54],[3,-26],[17,-70],[2,-82],[-21,-34],[-24,38],[-1,31],[-4,29],[-25,74],[-8,16],[-48,74],[-37,80],[-82,86],[-9,5],[-15,-7],[-13,-10],[-40,-43],[-14,-29],[-1,-46],[-28,-36],[-39,-5],[-30,23],[-25,45],[-21,2],[-25,71],[-31,9],[-26,-55],[-5,109],[0,111],[7,33],[13,27],[65,116],[8,38],[-3,50],[-15,40],[-23,25],[-27,10],[-19,23],[-15,38],[-11,-67],[10,-98],[2,-65],[-9,-24],[-17,0],[-16,7],[-11,23],[-9,67],[-23,43],[-9,63],[-10,9],[-21,-5],[-16,29],[-10,74],[-2,78],[-9,66],[-13,64],[-7,52],[-12,235],[-2,21],[-6,18],[-15,27],[-11,32],[-2,27],[3,115],[5,28],[11,13],[16,-22],[12,-28],[15,-14],[14,-17],[25,-69],[10,-10],[31,2],[18,8],[9,25],[5,30],[1,35],[-18,103],[-6,74],[0,67],[5,67],[24,112],[3,77],[-2,104],[4,61],[-1,36],[-14,55],[-4,60],[41,302],[13,58],[9,61],[4,80],[31,22],[29,33],[15,-3],[15,-8],[36,17],[13,1]],[[87075,51424],[70,-8],[35,5],[34,-7],[14,-15],[24,-44],[-7,-29],[-4,-60],[13,-58],[20,-58],[16,-62],[3,-30],[-6,-65],[-5,-31],[-20,-53],[-11,-58],[7,-71],[4,-71],[-1,-66],[4,-65],[10,-65],[47,-180],[27,-122],[9,68],[-2,76],[9,27],[14,15],[17,-16],[4,-30],[2,-67],[14,-131],[19,-6],[21,20],[3,-40],[-1,-74],[10,-59],[8,-23],[34,-48],[15,-9],[44,-12],[33,-3],[32,17],[21,44],[18,47],[65,110],[18,53],[18,80],[7,18],[63,87],[8,31],[9,59],[14,58],[10,30],[62,28],[64,16],[64,53],[27,46],[2,30],[-14,53],[-1,23],[15,23],[56,67],[66,69],[53,47],[29,0],[27,-42],[28,-34],[150,-101],[24,-31],[21,-42],[30,-29],[33,-14],[31,-27],[28,-35],[64,-64],[86,-79],[21,-5],[80,4],[14,-15],[13,-21],[12,-5],[91,-14],[14,-15],[13,-21],[8,-57],[99,-3],[22,-9],[140,-125],[41,-50],[14,-12],[14,-1],[14,-5],[62,-70],[94,-69],[99,-67],[31,-14],[31,-6],[69,-23],[37,-21],[53,-82],[27,-25],[25,-46],[35,-50],[15,-12],[15,-6],[35,-2],[35,9],[15,-4],[14,-9],[13,-17],[6,-33],[22,-47],[31,-20],[29,-42],[27,-50],[19,-50],[22,-43],[34,-18],[35,-2],[120,-253],[6,-39],[1,-165],[-13,-129],[30,-40],[40,-15],[58,-28],[55,-41],[175,-174],[24,-15],[35,-6],[36,3],[13,-9],[26,-32],[14,-20],[24,-57],[21,-61],[9,-17],[11,-14],[6,-33],[9,-103],[-3,-64],[-9,-24],[-28,-11],[-99,-11],[-65,12],[-46,-65],[-2,-28],[4,-27],[40,-137],[23,-121],[20,-50],[29,-40],[26,-48],[24,-54],[50,-95],[27,-36],[31,-21],[53,-74],[7,-33],[16,-103],[6,-69],[1,-29],[4,-26],[46,-63],[11,-18],[20,-140],[16,-65],[27,-24],[31,2],[85,42],[12,1],[16,-10],[14,-23],[4,-63],[-13,-66],[-4,-64],[17,-52],[43,-41],[16,-12],[78,-13],[30,-11],[30,-17],[11,-16],[-8,-28],[-15,-14],[-18,-6],[-29,-20],[1,-36],[16,-38],[15,-45],[12,-17],[14,-11],[33,-15],[33,-22],[22,-22],[22,-15],[48,-10],[36,-29],[51,12],[-44,-47],[-15,-11],[-53,17],[-10,-18],[22,-50],[32,-34],[12,-19],[-9,-23],[-37,-46],[-16,-6],[-29,-4],[-50,20],[-35,25],[-9,34],[-10,20],[-31,49],[-23,26],[-28,9],[-30,-1],[-53,28],[-116,20],[-27,12],[-35,39],[-16,6],[-18,-12],[-44,-8],[-13,3],[-32,33],[-33,12],[-14,-9],[-14,-3],[-44,24],[-34,10],[-28,33],[-15,30],[-17,28],[-16,70],[-24,67],[-31,54],[-65,89],[-13,22],[-25,81],[1,54],[9,54],[-14,-19],[-16,3],[-44,36],[-18,42],[-30,116],[-19,62],[-44,108],[-13,64],[-18,56],[-12,21],[-9,24],[-9,32],[-12,21],[-62,49],[-11,15],[-12,8],[-46,5],[-26,8],[-50,39],[-26,12],[-31,7],[-30,15],[-15,15],[-10,25],[-6,59],[-25,-7],[-25,10],[-24,21],[-24,13],[-17,-18],[-5,-47],[-8,-2],[-14,9],[-7,-5],[-16,-22],[-12,-29],[-23,4],[-47,30],[-21,18],[-18,34],[-15,38],[-16,29],[-19,22],[24,-51],[56,-228],[-14,-4],[-14,6],[13,-44],[-15,-6],[-15,0],[-32,19],[-31,6],[-10,-9],[7,-16],[11,-49],[9,-50],[-46,-23],[-46,-14],[-52,-27],[-53,-2],[-27,16],[-28,9],[-26,-9],[-25,-20],[-21,3],[-14,36],[-6,27],[-8,23],[-20,-4],[-19,-12],[33,-2],[10,-30],[8,-36],[23,-32],[29,19],[61,-5],[60,-57],[14,-7],[13,-11],[31,-56],[24,-51],[19,-59],[4,-23],[-1,-61],[-6,-30],[-39,-43],[-41,-33],[-61,-63],[-59,-73],[-31,15],[-28,38],[-10,10],[-29,21],[-18,7],[-69,-16],[-70,-8],[-30,1],[-28,12],[-32,23],[-31,-11],[-21,-26],[-23,-4],[-58,78],[-39,64],[-34,74],[-23,68],[-25,62],[-108,184],[-27,61],[-6,16],[3,16],[12,32],[22,92],[-23,-57],[-27,-45],[-40,-3],[-39,-11],[-37,-27],[-37,-10],[-18,14],[-11,34],[-6,35],[-3,36],[-15,-59],[-31,-33],[-41,-69],[-12,14],[-7,27],[-3,27],[8,29],[6,31],[8,73],[19,44],[12,84],[8,30],[4,30],[-11,34],[-18,12],[-13,20],[-15,57],[-9,20],[-16,23],[-13,28],[14,20],[19,8],[15,-1],[27,-13],[13,0],[31,21],[-17,-7],[-18,1],[-57,37],[-35,38],[-33,77],[0,15],[23,14],[51,16],[-16,39],[-23,34],[-8,61],[-15,38],[-34,61],[-23,64],[-19,129],[-20,98],[5,35],[17,25],[-26,3],[-23,19],[12,47],[27,28],[-25,-7],[-23,-14],[-11,-2],[-11,4],[-6,19],[-1,27],[3,48],[-4,46],[-21,22],[-17,33],[-10,13],[-13,-1],[-12,22],[-10,32],[-126,139],[-8,40],[-11,-18],[-12,-8],[-14,23],[-16,15],[-16,-2],[-15,12],[-16,7],[-17,1],[-66,43],[-63,68],[-51,29],[-31,38],[-33,31],[-73,30],[-74,20],[-27,1],[-22,-7],[-22,2],[-122,147],[-21,67],[2,39],[6,33],[50,9],[-36,9],[-14,-4],[-29,-27],[-16,-2],[-22,18],[-21,22],[-35,-20],[-17,34],[-7,35],[-9,17],[-13,-2],[-17,-13],[-18,2],[-11,25],[-8,32],[-12,23],[-15,17],[-24,42],[-12,56],[1,98],[4,36],[24,57],[16,54],[-20,6],[-19,-25],[-8,-25],[-3,-31],[-2,-103],[-15,-30],[-22,2],[6,-60],[-9,-57],[-26,-67],[-2,-31],[4,-33],[-6,-32],[-42,-94],[-14,-5],[-32,1],[-32,-15],[-15,22],[-13,28],[-9,34],[-13,70],[-10,71],[32,88],[-11,80],[-21,68],[-55,94],[-57,90],[-26,18],[-43,8],[-13,9],[-13,33],[-10,39],[26,17],[46,46],[26,-3],[70,-24],[21,-23],[20,-13],[48,75],[38,99],[24,21],[20,7],[20,-9],[41,-34],[32,-16],[23,-4],[12,-30],[13,-14],[3,46],[12,54],[22,17],[12,3],[8,14],[-2,50],[-30,6],[17,43],[14,21],[5,21],[1,26],[-59,-50],[-62,-21],[-36,5],[-37,1],[-73,-33],[-27,1],[-65,13],[-36,17],[-27,-13],[-27,-1],[-28,38],[-23,48],[-12,34],[-16,25],[-7,33],[-17,126],[-2,89],[-27,2],[-28,9],[-121,85],[-15,-21],[-17,-11],[-17,-4],[-17,5],[-17,13],[1,23],[13,58],[12,21],[17,17],[11,30],[18,92],[1,31],[-2,32],[1,24],[11,12],[46,30],[95,45],[24,27],[20,43],[24,26],[10,27],[12,21],[74,57],[32,4],[32,-6],[65,-34],[61,-54],[53,-72],[57,-52]],[[84691,52416],[-53,-98],[-17,-47],[-14,-51],[-21,-56],[-24,-50],[-12,-15],[-29,-27],[-17,-10],[-32,-4],[-97,-39],[-31,-5],[-32,2],[-60,10],[-12,5],[-24,51],[-27,40],[-24,5],[-24,-4],[-175,-3],[-61,-8],[-61,-18],[-33,8],[-33,21],[-24,7],[-25,-2],[-115,-31],[-29,3],[-58,39],[-34,8],[-33,-10],[-31,-36],[-11,-23],[-32,-81],[-18,-58],[-14,-73],[-11,-75],[-7,-61],[0,-64],[5,-72],[9,-71],[10,-55],[39,-126],[8,-17],[44,-36],[25,-45],[25,-126],[17,-65],[17,0],[19,4],[33,-8],[33,-17],[32,39],[17,73],[18,55],[43,103],[25,48],[15,15],[16,-6],[13,-28],[16,-22],[32,-11],[33,7],[34,34],[12,20],[11,26],[29,22],[69,0],[36,-8],[64,9],[-1,19],[-12,20],[-4,16],[12,11],[41,23],[42,17],[31,-12],[27,-33],[11,-34],[4,-41],[-10,-105],[-5,-25],[-22,-12],[-20,14],[-21,54],[-28,20],[-41,-16],[-14,-16],[-13,-22],[-23,-56],[-19,-64],[-41,-100],[-48,-86],[-23,-33],[-26,-23],[-83,-57],[-22,-42],[-17,-55],[-19,-19],[-22,-6],[-16,10],[-33,31],[-11,-25],[-2,-39],[16,-14],[27,-43],[20,-61],[13,-13],[29,-20],[12,-19],[22,-52],[34,-122],[12,-66],[19,-53],[58,-91],[3,-26],[-3,-30],[4,-27],[21,-52],[5,-34],[-23,-43],[-1,-62],[-14,-83],[-3,-28],[0,-26],[10,-24],[11,-18],[16,-10],[14,-17],[26,-65],[14,-17],[8,-23],[0,-36],[12,-20],[11,-37],[16,-9],[8,10],[6,16],[14,-6],[8,-25],[4,-33],[2,-37],[-1,-69],[-7,-24],[-15,1],[-27,28],[-1,-20],[2,-20],[-14,-7],[-16,3],[-40,-3],[-73,-42],[-26,-26],[-17,-46],[-1,-31],[6,-68],[-9,-23],[-34,-9],[-47,18],[-28,18],[-16,15],[-21,45],[-8,58],[16,172],[4,22],[7,19],[8,31],[2,37],[-22,45],[-34,18],[-29,37],[-111,209],[-6,21],[0,34],[4,33],[37,114],[4,22],[5,91],[-1,74],[-4,75],[-17,46],[-31,15],[-32,2],[-31,-15],[-30,-37],[-57,-79],[-22,-46],[-2,-60],[13,-58],[17,-54],[8,-58],[13,-207],[-1,-23],[-14,-60],[-6,-135],[6,-190],[10,-116],[-4,-63],[-26,-136],[-8,-75],[-1,-31],[31,-142],[7,-56],[4,-58],[-33,28],[-15,-1],[-16,-9],[-34,-9],[-35,-1],[-12,-11],[-25,-38],[-15,-15],[-13,-3],[-44,47],[-27,52],[-24,56],[-4,63],[8,66],[12,70],[24,116],[-1,78],[8,64],[14,62],[5,58],[3,224],[-3,20],[-33,133],[-4,22],[0,36],[3,34],[1,31],[-7,24],[-14,22],[-16,9],[-34,-9],[-68,-36],[-20,31],[-15,49],[-10,68],[-5,71],[2,67],[10,65],[-8,45],[-12,49],[0,25],[7,23],[12,18],[15,11],[14,19],[37,66],[12,58],[1,72],[10,68],[19,63],[22,58],[7,60],[-11,96],[5,43],[-4,51],[0,50],[13,95],[42,194],[40,103],[16,27],[21,-47],[16,-57],[1,51],[-5,50],[-16,117],[-14,228],[4,21],[14,-3],[15,20],[7,36],[-15,84],[0,30],[28,119],[24,43],[10,27],[6,73],[12,27],[16,20],[20,50],[11,63],[7,5],[8,2],[12,-55],[14,-22],[28,-18],[24,21],[7,27],[9,24],[14,25],[12,28],[14,66],[18,59],[12,21],[15,13],[16,8],[16,1],[35,-37],[21,-7],[20,2],[14,-6],[10,-17],[9,-34],[11,-29],[10,-14],[12,-7],[76,12],[67,-33],[91,-8],[32,-19],[30,-26],[36,-44],[14,-10],[15,2],[19,42],[14,10],[15,1],[59,-8],[158,-52],[23,8],[96,99],[38,93],[34,26],[11,43],[7,51],[12,13],[29,15],[11,15],[21,62],[24,56],[11,16],[34,-8],[15,-25],[19,-81],[-3,-14],[-22,-40],[-7,-17],[-25,-115],[-17,-56],[-21,-50]],[[79825,48382],[28,-66],[25,-35],[29,-19],[30,-2],[30,-8],[35,-25],[35,-11],[17,4],[16,13],[11,1],[10,-12],[25,-56],[27,-51],[6,-26],[18,-123],[20,-35],[29,-10],[33,0],[33,-5],[77,-29],[30,4],[27,29],[24,-19],[65,-34],[32,-8],[36,10],[37,2],[17,-10],[17,-15],[14,-6],[15,1],[26,29],[18,52],[14,67],[11,69],[7,30],[10,26],[14,17],[14,11],[38,-7],[8,-16],[42,-118],[8,-10],[45,-8],[12,4],[27,24],[16,2],[28,-29],[13,-25],[13,-18],[70,-19],[28,-50],[13,-7],[49,6],[34,-5],[29,-13],[13,-72],[11,-73],[7,-25],[28,-25],[12,-23],[-3,-73],[3,-70],[61,-60],[65,-35],[69,-4],[70,12],[35,15],[45,26],[9,0],[87,-80],[8,-12],[9,-60],[0,-62],[-16,-149],[-1,-41],[1,-41],[18,-89],[9,-25],[31,-47],[1,-25],[-4,-24],[-35,17],[-21,20],[-12,33],[-17,19],[-33,-7],[-61,34],[-69,52],[-122,110],[-33,-1],[-32,-14],[-33,-28],[-35,-20],[-26,-7],[-26,5],[-65,27],[-66,17],[-168,11],[-47,25],[-79,12],[-63,22],[-62,30],[-158,149],[-51,36],[-159,71],[-24,6],[-58,-5],[-36,21],[-32,0],[-47,-23],[-15,-17],[-18,-35],[-33,2],[-32,7],[-84,33],[-31,21],[-30,30],[-28,40],[-14,14],[-72,41],[-60,14],[-122,18],[-27,12],[-22,15],[-12,33],[1,42],[9,36],[12,36],[8,34],[-89,73],[-71,40],[-30,7],[-31,0],[-34,-8],[-34,4],[-16,11],[-17,5],[-16,-9],[-13,3],[-4,33],[9,28],[17,32],[10,6],[4,-50],[5,-10],[16,-11],[6,3],[27,64],[8,31],[13,85],[14,-16],[14,10],[8,13],[23,196],[19,58],[26,47],[12,12],[26,-29],[51,-11],[30,-20],[31,-2],[29,-10],[42,-34],[15,3],[14,11],[23,38],[9,60],[32,-31],[48,-12],[11,-17]],[[76803,54855],[34,-5],[63,31],[35,-3],[32,-23],[30,-13],[72,17],[14,-5],[13,-13],[11,-20],[33,-75],[56,-92],[16,-59],[9,-67],[6,-15],[63,-127],[7,-54],[-9,-73],[19,-59],[61,-55],[36,-40],[8,-24],[5,-29],[21,-44],[25,-28],[78,-74],[103,-156],[59,-74],[48,-112],[18,-54],[14,-58],[29,-84],[50,-105],[13,-31],[13,-46],[16,-43],[19,-39],[22,-30],[22,-10],[37,-75],[20,-24],[-3,59],[-17,51],[0,32],[3,27],[14,24],[16,6],[31,-21],[49,-89],[21,-52],[16,-72],[13,-75],[20,-37],[27,-13],[31,-5],[28,-23],[65,-104],[22,-48],[16,-57],[12,-68],[7,-71],[4,-16],[42,-85],[22,-36],[27,-18],[78,-19],[28,-30],[23,-49],[10,-50],[-17,-44],[-61,-68],[-66,-47],[64,16],[32,20],[30,31],[30,39],[46,55],[17,11],[21,-4],[18,-16],[28,-53],[26,-57],[20,-66],[12,-73],[-22,-39],[-33,-28],[-45,-71],[-4,-28],[9,-18],[-11,-52],[25,-32],[4,-28],[-22,-39],[2,-24],[26,-103],[13,-24],[40,-52],[60,-53],[34,-25],[38,-19],[17,1],[28,8],[6,-20],[12,-102],[6,-64],[9,-137],[11,-57],[-1,-69],[15,-59],[30,-38],[32,-31],[15,-30],[0,-45],[-5,-36],[-11,-28],[-33,-60],[-6,-25],[-5,-65],[6,-30],[13,-2],[10,16],[40,87],[11,16],[15,12],[15,8],[72,0],[31,-13],[27,-29],[25,-36],[88,-228],[40,-126],[3,-31],[1,-33],[-7,-25],[-37,-86],[-4,-23],[-12,-94],[2,-67],[13,-29],[9,-30],[0,-28],[-25,-139],[-2,-23],[15,-226],[1,-61],[-3,-77],[2,-124],[-19,-384],[-4,-23],[-15,-59],[-20,1],[-16,10],[-12,22],[-6,28],[-9,23],[-48,71],[-13,-12],[-49,-88],[-13,-13],[-16,11],[-25,26],[-81,93],[-5,-30],[-1,-40],[16,-101],[2,-44],[-15,-9],[-8,2],[-33,59],[-31,65],[-35,87],[-26,42],[-23,46],[-66,177],[-17,27],[-101,124],[-20,30],[-26,51],[-28,46],[-61,72],[-106,184],[-46,105],[-51,170],[-17,43],[-86,128],[-47,77],[-20,44],[-45,155],[-14,52],[-16,46],[-28,37],[-24,44],[-49,140],[-15,55],[-11,61],[2,120],[-103,366],[-26,114],[-23,158],[-6,16],[-56,142],[-19,45],[-24,43],[-20,50],[-38,162],[-15,45],[-20,33],[-73,61],[-27,34],[-22,48],[-13,62],[-14,131],[-35,199],[-38,267],[-26,119],[-30,94],[-9,21],[-133,169],[-22,25],[-24,15],[-34,11],[-27,43],[-10,78],[-6,105],[-7,63],[-7,35],[-56,75],[-21,58],[-18,65],[-17,50],[-61,172],[-21,45],[-26,32],[-76,33],[-23,29],[-37,98],[-22,50],[-67,109],[-114,230],[-23,57],[-18,60],[-14,64],[-48,177],[3,36],[8,37],[-1,31],[-6,31],[1,27],[15,16],[32,21],[34,-2],[31,-9],[30,-17],[29,-38],[51,-94],[30,-33],[33,-15],[67,-22]],[[82446,55697],[-6,-49],[7,1],[28,30],[29,79],[17,69],[14,30],[28,-17],[6,-12],[-2,-49],[3,-29],[11,-61],[24,-37],[33,-24],[31,-34],[10,-22],[6,-27],[7,-45],[0,-44],[-22,-44],[10,-71],[-2,-41],[-7,-35],[-33,-33],[88,33],[22,18],[30,47],[16,-41],[15,-69],[-12,-18],[-38,-26],[-2,-10],[13,-36],[16,3],[31,24],[29,38],[14,0],[15,-8],[29,-24],[16,-20],[13,-26],[9,-53],[33,-19],[68,-75],[12,-7],[14,-1],[35,9],[13,-10],[9,-27],[3,-34],[-1,-36],[-4,-27],[-8,-22],[-25,-34],[-61,-45],[-66,-34],[-34,2],[-47,29],[-17,-3],[-17,-14],[-21,-92],[39,-92],[66,-96],[9,-24],[-2,-29],[-11,-18],[-14,-9],[-37,-16],[-38,-11],[-30,-17],[-31,-21],[-31,7],[-43,43],[-12,3],[-13,-22],[-13,-60],[-11,-22],[-19,-16],[-9,-33],[27,-51],[1,-34],[21,-30],[24,-46],[1,-16],[9,-21],[4,-25],[-17,-26],[-24,-5],[-17,24],[-16,30],[-4,-37],[-13,-21],[-45,6],[-32,0],[-32,-10],[16,-5],[14,-12],[50,-96],[11,-35],[-17,-70],[8,-29],[19,-16],[24,-35],[17,-4],[12,-19],[0,-34],[7,-32],[-19,-12],[19,-8],[17,-16],[-9,-16],[-7,-20],[7,-10],[23,-19],[10,-16],[6,-45],[22,-73],[41,-95],[9,-34],[0,-32],[-6,-27],[-24,-32],[-19,-42],[-2,-15],[-26,-20],[12,-14],[9,-19],[18,-59],[42,-95],[22,-35],[87,-129],[46,-57],[60,-128],[31,-30],[6,-36],[-26,-54],[-38,-28],[-62,-15],[-62,20],[-32,15],[-28,32],[-22,63],[-29,35],[12,-39],[7,-39],[-4,-43],[-11,-33],[-20,-25],[-21,-20],[-9,-14],[-53,-224],[-9,-60],[-16,-252],[0,-71],[24,-133],[2,-69],[5,-30],[-4,-25],[-11,-15],[-46,-41],[-32,-34],[-26,-48],[-21,-59],[-19,-44],[-25,-20],[-18,3],[-14,20],[-10,38],[-6,42],[-4,-31],[1,-30],[8,-33],[4,-34],[-5,-35],[-11,-28],[-29,-30],[-16,-26],[-2,-46],[-8,-26],[-11,-20],[-40,-46],[-9,-18],[-7,-24],[22,4],[19,-4],[2,-45],[6,-34],[-8,-75],[-30,-50],[15,-11],[14,-16],[30,-12],[10,-53],[-4,-64],[-6,-58],[-21,-16],[-14,11],[-14,-1],[-10,-17],[-2,-30],[19,15],[-1,-75],[-5,-72],[-7,-40],[-11,-33],[-18,-10],[-16,24],[-4,-28],[5,-24],[24,-58],[-15,-13],[-10,-20],[-5,-29],[-26,-66],[-11,-49],[-5,-52],[-12,-41],[-194,-180],[-156,-151],[-12,10],[-7,23],[-6,235],[-19,121],[-3,68],[-22,-61],[-14,6],[-15,16],[-11,19],[0,26],[11,75],[-14,-41],[-16,-31],[-16,3],[-14,16],[-5,24],[-7,4],[-35,-67],[-45,-35],[-25,0],[-20,21],[1,50],[-2,50],[-5,29],[-13,10],[-11,-4],[-32,-25],[-12,3],[-7,-13],[-85,180],[-18,-146],[-59,-78],[-44,-45],[-43,17],[-45,29],[-44,-35],[-47,-86],[-13,-13],[-14,1],[-10,11],[3,65],[1,64],[-4,145],[-4,28],[-13,40],[-18,28],[-11,-21],[-9,-28],[-36,1],[-35,23],[-30,-13],[-60,-58],[-32,-8],[-17,12],[-11,31],[6,29],[14,21],[-25,-17],[-21,-29],[-9,-19],[-10,10],[-26,65],[-54,-24],[-8,-8],[-13,-22],[-13,11],[-7,24],[-2,136],[-28,262],[-7,134],[-6,31],[-32,49],[1,69],[16,57],[4,68],[-5,73],[-10,71],[-12,54],[-18,46],[-24,52],[-30,39],[-63,43],[-33,-4],[-13,17],[-8,23],[3,43],[12,30],[15,7],[2,17],[-33,35],[-26,48],[-9,28],[-2,31],[0,73],[8,46],[4,25],[8,76],[18,24],[-3,14],[-8,10],[-11,25],[-9,29],[-20,49],[-36,60],[-6,102],[-5,150],[3,68],[11,128],[21,40],[16,12],[12,17],[-10,2],[-9,-6],[-15,-4],[12,114],[6,33],[25,64],[30,57],[12,67],[17,58],[70,61],[18,-80],[7,-18],[40,-54],[33,-27],[36,-11],[37,-2],[15,4],[14,10],[14,-11],[76,-88],[30,-15],[31,6],[13,-8],[44,-67],[13,-8],[22,5],[-28,30],[-18,22],[-8,41],[4,44],[18,29],[12,31],[5,94],[8,48],[14,46],[5,43],[-16,34],[-4,57],[3,47],[10,33],[15,-22],[15,-19],[15,2],[11,7],[2,25],[-3,43],[1,78],[19,63],[31,43],[29,21],[108,35],[172,89],[51,35],[19,18],[15,25],[27,80],[50,125],[35,103],[74,151],[59,139],[8,26],[9,76],[1,36],[-2,36],[8,17],[12,10],[34,-1],[34,10],[35,30],[33,37],[28,43],[27,47],[27,38],[43,44],[15,-4],[0,-31],[-6,-36],[32,0],[65,19],[14,21],[26,46],[10,26],[7,58],[-32,34],[-12,44],[-1,48],[38,88],[13,21],[6,-31],[17,-8],[15,-1],[16,2],[22,44],[12,64],[39,91],[14,70],[8,72],[99,226],[12,36],[59,227],[7,7],[16,-22],[4,-72],[-2,-31],[-9,-47]],[[68823,95758],[-111,-44],[-66,-30],[-65,-21],[-66,-15],[-104,-36],[-184,-46],[-116,-37],[-127,-30],[-134,-39],[-134,-27],[-33,-2],[-96,-38],[-75,-16],[-272,-85],[-125,-63],[-36,-5],[-36,3],[-30,-20],[-28,-33],[-59,-34],[-30,-31],[-30,-24],[-18,-8],[-34,2],[-16,-2],[-55,-27],[-10,-22],[59,-14],[13,-24],[-17,-16],[-38,-23],[-22,-23],[-40,-23],[-27,-7],[-65,1],[-4,-29],[11,-18],[-6,-16],[-22,-15],[-21,2],[-99,45],[-16,-15],[-7,-32],[-3,-34],[-13,-25],[-17,-13],[-31,-13],[-109,21],[-9,-20],[17,-25],[23,-54],[5,-22],[-13,-36],[-49,-56],[-187,-67],[3,-23],[21,-44],[5,-27],[-8,-26],[-24,-21],[-28,0],[-15,4],[-43,29],[-37,7],[-7,-14],[49,-39],[21,-51],[-23,-27],[-90,-61],[-47,-80],[-92,-35],[-57,-5],[-56,10],[-53,18],[-135,7],[-75,20],[-76,36],[-66,-3],[-56,-18],[-74,-39],[-47,75],[20,35],[-101,90],[-22,40],[25,19],[31,13],[59,36],[59,29],[61,9],[10,5],[25,43],[27,35],[25,20],[28,33],[89,134],[21,10],[184,26],[16,8],[-53,27],[-54,-1],[-25,9],[-14,19],[-8,22],[21,16],[71,81],[84,58],[78,35],[-19,9],[-25,23],[-95,-6],[-37,32],[-12,19],[-3,19],[31,25],[32,15],[35,-4],[35,-13],[28,-15],[27,-24],[23,1],[85,84],[-13,19],[-5,29],[9,14],[41,13],[27,5],[59,-6],[85,-18],[7,9],[21,56],[21,30],[86,50],[-5,15],[-4,25],[100,33],[65,33],[63,45],[32,9],[32,2],[65,19],[121,22],[71,22],[23,48],[45,17],[90,7],[35,-3],[20,-20],[39,1],[15,11],[16,17],[-5,29],[-1,37],[34,23],[13,5],[102,9],[60,-4],[125,-28],[65,-7],[87,9],[52,-5],[154,42],[261,39],[68,28],[67,33],[34,7],[35,2],[31,11],[61,28],[30,7],[33,0],[30,20],[26,43],[29,33],[79,43],[134,60],[121,23],[75,25],[32,2],[102,-12],[130,-33],[59,-36],[49,-47],[10,-17],[9,-30],[-14,-28],[-9,-28],[11,-22],[-95,-71],[-93,-78],[-16,-17],[-111,-27]],[[65366,94071],[130,-23],[97,-7],[59,-18],[22,-14],[-9,-36],[-17,-14],[-41,-47],[-6,-28],[7,-45],[-6,-33],[-13,-24],[-11,-10],[-73,0],[-27,-13],[-1,-26],[-5,-29],[-24,-42],[-48,-13],[-11,-16],[4,-27],[-17,-21],[1,-32],[9,-18],[2,-37],[33,-54],[-6,-22],[-26,-43],[-8,-53],[-21,-46],[48,-38],[21,-50],[19,-53],[57,-105],[62,-94],[114,-137],[122,-104],[48,-29],[116,-48],[20,-16],[19,-21],[-49,-39],[-51,-14],[-5,-18],[-28,-10],[-138,34],[-7,5],[-15,24],[-16,18],[-35,3],[-35,-11],[21,-22],[23,-7],[40,-41],[-17,-16],[-18,-2],[-82,55],[-7,-7],[-8,-16],[-40,18],[-10,-13],[-31,-6],[-25,15],[0,19],[-5,10],[-125,-15],[-52,0],[-51,7],[-61,36],[-11,-16],[-2,-19],[-23,8],[-51,29],[-37,12],[-133,28],[-94,34],[24,16],[40,8],[1,21],[-7,29],[-1,29],[23,20],[52,-9],[-7,32],[25,6],[47,-18],[18,11],[-75,41],[-82,58],[8,21],[-29,5],[-30,-1],[-25,34],[4,45],[22,31],[-13,6],[-127,-27],[-64,6],[-72,18],[-66,-26],[-67,-9],[-35,9],[-34,20],[-28,26],[-22,45],[-20,74],[-3,28],[4,62],[11,27],[28,52],[19,16],[43,25],[22,6],[51,-12],[51,-1],[22,14],[21,25],[15,32],[35,18],[10,10],[11,20],[12,31],[2,27],[10,26],[32,39],[-12,24],[5,16],[21,29],[-64,7],[-22,13],[-21,19],[6,18],[8,13],[64,48],[28,15],[31,7],[31,0],[33,-5],[32,7],[-34,33],[-3,22],[-13,53],[3,25],[14,21],[30,24],[43,8],[34,12],[33,19],[31,3],[63,-12],[31,2],[34,11],[97,40],[36,11],[38,-3],[50,-15],[55,-28]],[[89655,83175],[60,-145],[2,-32],[-5,-33],[-11,-42],[-4,-44],[7,-39],[-5,-10],[49,-176],[35,-111],[11,-45],[7,-48],[11,-99],[2,-151],[-3,-50],[-8,-49],[-8,-29],[-18,-20],[-8,-54],[-4,-153],[9,-80],[17,-56],[12,-60],[2,-64],[5,-29],[27,-36],[11,-28],[3,-40],[2,-59],[4,-13],[13,-18],[56,-426],[22,-129],[64,-223],[26,-135],[17,-64],[11,-68],[9,-69],[19,-76],[25,-74],[49,-67],[22,-37],[5,-30],[2,-103],[-11,22],[-14,79],[-24,45],[-35,54],[-35,48],[-44,80],[-21,23],[-23,16],[-41,18],[-24,2],[-98,-12],[-40,-16],[-37,-37],[-21,-54],[-16,-108],[-89,-386],[-21,-101],[-8,-108],[3,-85],[6,-31],[26,-84],[21,-49],[15,-21],[18,-14],[11,-17],[10,-23],[18,-57],[23,-128],[25,-91],[11,-28],[28,7],[18,-1],[18,-8],[10,-23],[15,-101],[11,-98],[1,-26],[-20,-75],[-5,-32],[-3,-34],[-5,-27],[-9,-23],[-3,111],[-14,79],[-5,68],[-19,47],[-65,20],[-61,7],[-9,9],[-14,29],[-15,23],[-16,3],[-16,-9],[-27,-33],[-21,-51],[-15,-55],[-13,-59],[-27,-155],[-16,-51],[-20,-48],[-17,26],[-15,30],[-9,43],[-4,48],[-24,161],[10,140],[41,194],[7,63],[-6,60],[-9,60],[-6,113],[1,25],[14,65],[17,62],[20,54],[9,64],[-13,159],[-29,108],[-37,102],[-7,28],[-2,27],[32,128],[11,62],[13,134],[12,74],[9,74],[3,373],[-3,55],[-20,117],[-1,67],[9,84],[13,65],[17,63],[0,129],[-32,119],[-24,52],[-37,63],[-28,35],[-14,27],[14,9],[10,21],[-24,33],[-15,50],[-2,196],[6,49],[18,55],[16,59],[14,137],[5,141],[-9,57],[-4,116],[8,29],[31,38],[49,23],[11,-7],[38,-45],[14,-2],[15,5],[29,21],[16,52],[-21,29],[12,37],[35,13],[3,32],[-13,4],[11,46],[7,45],[-10,42],[-57,104],[-36,76],[60,-1],[18,14],[14,32],[7,33],[19,-13]],[[89950,77256],[35,-3],[16,2],[26,-8],[106,-88],[32,-11],[33,-1],[23,7],[20,24],[64,106],[67,97],[8,-4],[0,-27],[-5,-29],[-30,-89],[-33,-119],[-7,-60],[11,-59],[20,-49],[17,-66],[19,-93],[26,-11],[14,-2],[27,28],[25,35],[22,4],[22,-6],[-30,-24],[-28,-30],[-24,-57],[-9,-10],[-28,3],[-16,-2],[-32,-24],[-29,-27],[-27,-33],[-30,-17],[-32,-4],[-49,-27],[-32,-2],[-59,23],[-29,-6],[-63,-53],[-58,-77],[-50,-86],[-42,-104],[-17,-54],[-10,-60],[-2,-40],[-4,-38],[-9,-27],[-12,-22],[-35,13],[-57,55],[-110,81],[-117,123],[-66,62],[-123,-19],[-117,-118],[-11,10],[-44,81],[-22,32],[-26,9],[-19,-1],[-19,-6],[-26,-41],[-10,-30],[-7,-34],[-2,-24],[3,-24],[25,-53],[31,-40],[13,-8],[30,3],[14,-4],[49,-80],[55,-74],[12,-25],[-20,-26],[-22,-13],[-26,3],[-25,10],[-44,32],[-18,-27],[-29,-56],[-16,-60],[-13,-28],[-32,-36],[-34,-19],[-17,6],[-14,23],[-7,27],[-4,32],[7,69],[17,62],[7,63],[-14,89],[-9,18],[-36,53],[-17,50],[-4,63],[2,35],[9,77],[9,39],[16,13],[18,8],[28,27],[30,36],[29,41],[29,51],[15,55],[-25,68],[-5,40],[4,38],[26,20],[27,-15],[55,-56],[11,-5],[37,-3],[51,-12],[30,3],[14,8],[22,46],[10,59],[-4,75],[0,75],[14,61],[43,99],[12,57],[4,141],[16,62],[12,64],[6,135],[-17,129],[-18,64],[-20,60],[3,58],[16,53],[0,16],[4,14],[31,11],[14,11],[14,26],[16,15],[12,-15],[10,-26],[43,-65],[68,-116],[80,-176],[50,-86],[53,-78],[59,-79],[63,-69],[39,-32],[29,-52],[18,-8]],[[89229,75675],[11,-11],[52,29],[-10,-88],[-5,-89],[4,-148],[4,-67],[9,-65],[22,-46],[29,-33],[42,-105],[23,-129],[16,-63],[11,-66],[4,-30],[0,-30],[-3,-41],[4,-33],[-5,-105],[-19,-121],[-2,-62],[-16,-12],[-10,-29],[-9,-13],[-9,-10],[-14,-3],[-9,-11],[-4,-33],[-6,-31],[-12,-28],[-9,-31],[-8,-75],[-3,-77],[-11,-54],[-28,-14],[-32,1],[-40,-25],[-9,-15],[-32,-94],[-9,-56],[0,-59],[9,-73],[12,-72],[9,-133],[-10,-203],[-9,-65],[-20,-44],[-16,-20],[-13,-25],[-17,-66],[-29,-132],[-2,-34],[0,-34],[-8,-45],[-5,-44],[5,-51],[9,-48],[38,-123],[15,-36],[17,-34],[-65,-36],[-12,-17],[-39,-70],[-12,-67],[1,-73],[-7,-27],[-10,-23],[-12,-15],[-43,-34],[-28,-33],[-27,-52],[-11,-28],[-21,9],[-13,24],[12,31],[-3,35],[6,93],[-7,37],[22,28],[10,45],[24,35],[16,32],[3,26],[-15,28],[-15,20],[-22,0],[-21,-6],[-13,-27],[-5,-36],[1,-16],[-2,-15],[-32,-49],[4,-52],[10,-26],[12,-13],[-4,-17],[-15,-42],[-11,-4],[-20,58],[-25,32],[-31,0],[-31,-12],[-25,-39],[-8,-32],[-5,-33],[2,-81],[-10,-68],[-19,-59],[-10,-22],[-23,-40],[-17,-5],[-12,18],[-9,28],[12,101],[-1,57],[28,29],[-23,41],[-28,16],[-39,-21],[-11,-25],[-8,-33],[-21,-41],[-24,-39],[-26,-66],[-18,-79],[-58,26],[-32,6],[-32,-2],[-57,9],[-63,-16],[-71,-30],[4,22],[59,47],[2,14],[-6,26],[-14,1],[-35,-9],[-18,4],[-8,28],[-12,12],[-7,-12],[2,-54],[-9,-7],[-11,14],[4,42],[-8,61],[-1,39],[12,32],[-12,14],[-14,-5],[-17,-16],[-14,-22],[-32,-112],[-12,-64],[23,-52],[63,-72],[10,-17],[1,-31],[-8,-32],[-17,-15],[-69,-24],[-59,-46],[-18,-47],[-54,-183],[-43,-125],[-62,-43],[-67,39],[-16,43],[-14,54],[-25,48],[-22,53],[-13,63],[2,101],[-10,61],[9,16],[37,37],[12,21],[21,48],[8,27],[1,41],[-17,21],[-44,-1],[-43,-13],[-31,18],[-41,49],[-12,11],[-43,3],[-31,-9],[-31,-18],[-32,-6],[-11,-9],[-37,-60],[-29,-38],[-26,-19],[-55,-5],[-28,-12],[-29,-20],[-8,1],[-30,-27],[-35,-24],[-19,-24],[-34,16],[-68,-43],[-33,-5],[-34,23],[-31,38],[-30,-16],[-21,-56],[-10,-113],[-12,-50],[-4,-61],[-15,10],[-91,109],[-6,4],[-74,-19],[-19,-9],[-23,-22],[-25,-10],[-23,16],[-22,26],[-21,-8],[-22,-18],[-8,165],[4,21],[14,29],[14,25],[36,9],[36,-9],[25,12],[22,32],[23,47],[26,37],[35,30],[34,34],[30,48],[28,52],[26,39],[28,32],[43,77],[57,87],[22,64],[13,18],[49,35],[65,28],[31,-2],[30,-56],[17,8],[16,14],[34,8],[34,-9],[34,0],[33,7],[65,19],[34,22],[33,29],[118,20],[82,48],[12,-3],[13,-11],[1,-36],[-10,-39],[10,-24],[16,-14],[76,-5],[22,-8],[32,26],[30,33],[31,44],[22,49],[-20,61],[-4,67],[17,73],[24,62],[30,37],[27,42],[54,121],[40,98],[14,121],[-8,142],[34,106],[33,18],[66,49],[34,14],[5,-21],[-1,-28],[-51,-89],[-30,-36],[-17,-12],[-16,-16],[-7,-31],[26,-53],[7,-38],[-2,-37],[1,-34],[30,-36],[34,-12],[14,0],[13,10],[39,89],[8,15],[111,65],[55,50],[30,13],[28,26],[64,100],[23,46],[21,51],[18,59],[13,64],[18,40],[101,95],[32,52],[11,25],[12,73],[9,75],[12,59],[16,56],[22,57],[25,52],[15,54],[21,128],[10,72],[7,25],[11,22],[9,27],[7,31],[3,30],[5,93],[-3,72],[-16,61],[-14,17],[-15,1],[-23,-5],[-19,24],[4,22],[20,4],[13,12],[9,21],[18,66],[11,71],[1,31],[-14,58],[-11,69],[0,37],[12,43],[17,34],[16,9],[17,2],[15,13],[14,20],[8,21],[13,59],[4,33],[-7,90],[8,24],[11,15],[16,-11],[15,-2],[19,3],[17,-9],[4,-23],[11,-151],[6,-21],[13,-16],[14,3],[13,23],[8,32],[17,6],[51,-34],[18,24],[11,37],[11,66],[-5,60],[-13,21],[-12,-4],[-11,-16],[-13,-9],[-75,-31],[1,66],[16,99],[9,31],[12,15],[32,-17],[15,-11],[34,-48]],[[87321,71576],[38,-24],[39,6],[0,-105],[5,-35],[11,-32],[-5,-46],[18,-16],[-53,-52],[-48,-70],[-20,-47],[-17,-50],[-11,-53],[-6,-58],[-16,23],[-46,93],[-29,26],[-47,13],[-15,-3],[-96,-87],[-13,-63],[-26,-96],[-12,-32],[-14,-9],[-10,-16],[-11,-82],[-30,-51],[-18,-1],[-31,14],[-14,-8],[19,81],[-30,9],[-30,-1],[0,52],[-18,30],[13,39],[0,31],[8,18],[3,25],[-1,22],[-18,6],[-12,16],[2,57],[-10,2],[-26,-10],[-54,-44],[-15,0],[23,31],[48,43],[21,25],[48,69],[29,33],[16,58],[5,36],[10,31],[9,49],[15,17],[27,43],[15,-4],[17,-53],[23,-40],[16,3],[30,21],[14,5],[34,-3],[30,26],[13,30],[4,37],[-11,63],[15,-6],[14,3],[33,40],[34,23],[35,6],[40,-22],[39,-36]],[[86437,71199],[37,-17],[16,-1],[14,7],[23,23],[23,17],[17,-9],[14,-20],[8,-28],[-4,-30],[-26,-63],[-22,-68],[50,-13],[50,1],[-12,-42],[-1,-36],[15,-18],[13,-23],[-4,-21],[-7,-21],[27,-32],[-2,-21],[-7,-22],[-68,-145],[-20,-73],[-13,-81],[-13,-59],[-9,-61],[-8,-66],[-12,-68],[4,-61],[-4,-62],[-34,-153],[-25,3],[-30,18],[-19,-3],[-10,-34],[17,-70],[-54,-83],[-60,-56],[-1,26],[6,20],[9,16],[6,19],[9,66],[-5,65],[-18,83],[-1,29],[12,12],[9,4],[4,11],[1,27],[-6,21],[-17,6],[-17,1],[-11,-31],[-16,-59],[-8,-59],[3,-33],[7,-29],[22,-49],[-6,-29],[-9,-22],[-77,50],[-17,4],[-14,11],[-15,67],[32,16],[9,8],[3,22],[5,65],[-15,55],[-12,19],[-11,23],[7,46],[-4,58],[-1,81],[6,14],[29,16],[21,44],[19,49],[27,87],[22,94],[-21,5],[-18,17],[19,45],[-6,56],[-29,69],[-17,81],[-26,36],[-14,13],[-17,-19],[-14,-23],[13,-53],[-1,-46],[2,-47],[13,-2],[16,11],[13,-8],[7,-24],[2,-32],[-5,-31],[-12,-15],[-15,1],[-14,17],[-12,24],[-27,13],[-28,-28],[-28,-58],[-23,-29],[11,42],[5,47],[-11,32],[-27,54],[-6,31],[-2,38],[5,37],[28,-43],[14,-53],[20,-23],[25,-1],[-19,79],[-7,20],[-28,35],[-37,59],[-23,29],[8,62],[14,12],[12,-3],[39,-22],[4,31],[-6,16],[-3,20],[26,26],[42,22],[9,11],[8,22],[10,11],[30,0],[25,21],[20,58],[5,31],[8,27],[51,46],[13,7],[34,-6],[32,-26],[16,-55],[13,-60],[33,-40]],[[83613,64873],[-17,-68],[-14,-71],[-6,-68],[1,-69],[-4,-63],[-7,-62],[-27,18],[-15,44],[-3,73],[-20,88],[-7,26],[-28,49],[-26,25],[-20,36],[3,-3],[-15,49],[-11,52],[-23,148],[-8,36],[-10,32],[-3,33],[3,36],[10,53],[6,54],[-5,74],[2,73],[8,32],[130,443],[36,94],[22,47],[18,52],[17,66],[22,60],[15,19],[75,54],[23,52],[19,16],[21,-1],[14,-25],[12,-29],[13,-16],[33,-28],[15,-28],[6,-48],[-20,-45],[-10,-41],[-2,-45],[4,-61],[0,-61],[-25,-143],[-27,-90],[-7,-44],[-9,-111],[-16,-111],[-13,-140],[-22,-145],[-13,-61],[-16,-58],[-37,-109],[-42,-90]],[[80802,63359],[13,-26],[9,-37],[8,-68],[4,-63],[-28,-40],[-25,-16],[-50,-154],[-11,-48],[-8,-21],[-3,-21],[1,-21],[-13,-74],[-12,-91],[-7,-37],[-14,-28],[-19,-15],[-11,-2],[-11,-8],[-27,-49],[-30,-38],[5,-17],[0,-16],[-13,-18],[-14,3],[-42,-14],[-16,-28],[-16,-51],[-6,-7],[-25,-12],[-20,-5],[-33,36],[-16,11],[-44,15],[-43,24],[-30,28],[-61,69],[-7,123],[-11,67],[0,24],[4,206],[4,22],[8,20],[27,46],[31,37],[44,76],[33,35],[27,50],[-16,-2],[-12,6],[12,43],[12,23],[14,12],[29,-9],[27,9],[19,38],[19,8],[71,-12],[49,17],[24,35],[12,2],[36,-10],[14,-37],[-1,25],[1,23],[7,-2],[47,-45],[0,55],[3,15],[15,23],[7,-1],[19,-44],[17,-26],[23,-13]],[[72217,57495],[26,-3],[29,2],[20,-8],[34,-89],[93,-159],[51,-162],[4,-35],[7,-30],[12,-9],[11,-14],[50,-156],[6,-31],[-1,-34],[3,-25],[14,-13],[16,-6],[11,-24],[14,-124],[0,-39],[3,-17],[64,-193],[4,-24],[-1,-18],[2,-15],[12,-34],[20,-92],[9,-21],[12,-81],[1,-154],[-4,-69],[-12,-84],[-14,-81],[-16,-59],[-21,-50],[-71,-106],[-21,-22],[-93,-66],[-68,-63],[-64,-17],[-63,34],[-48,83],[-24,122],[-17,127],[-25,141],[-18,435],[-9,122],[-15,155],[2,67],[10,64],[0,-141],[9,-17],[7,18],[7,146],[5,62],[25,161],[1,29],[-5,61],[1,30],[38,113],[9,66],[5,67],[-2,73],[-7,72],[31,-23],[17,-25],[17,-17],[14,9],[16,0],[-11,39],[-36,36],[-59,22],[-18,29],[-7,25],[3,29],[5,11]],[[63760,44681],[13,-60],[15,-58],[46,-140],[20,-53],[17,-57],[8,-114],[30,-178],[28,-266],[8,-273],[9,-126],[21,-118],[36,-122],[11,-136],[-21,-140],[-32,-132],[-8,-25],[-15,-34],[-6,1],[-26,34],[-20,56],[-26,132],[-10,66],[-10,11],[-31,-6],[-22,-41],[-4,-27],[5,-74],[8,-66],[4,-68],[0,-85],[9,-26],[12,-22],[12,-55],[3,-133],[-8,-67],[-22,-58],[2,-32],[8,-32],[-8,-20],[-29,-25],[-11,-22],[-16,-59],[-25,-120],[-3,-61],[16,-186],[-5,-132],[-32,-252],[-18,-119],[-26,-143],[-40,-189],[-39,-237],[-34,-243],[-25,-147],[-28,-144],[-38,-255],[-33,-258],[-48,-285],[-68,-317],[-7,-41],[-14,-163],[-15,-140],[-18,-140],[-37,-230],[-5,-71],[-8,-68],[-36,-144],[-16,-54],[-10,-57],[-6,-72],[-11,-70],[-27,-129],[-39,-110],[-27,-40],[-58,-59],[-30,-11],[-65,-2],[-64,-33],[-66,-64],[-63,-73],[-25,-35],[-27,-20],[-83,-4],[-26,16],[-84,120],[-32,20],[-62,17],[-18,10],[-17,16],[-25,62],[-50,54],[-12,16],[-7,37],[-5,39],[-13,45],[-10,84],[-16,59],[-45,104],[-5,33],[-4,110],[2,75],[-5,136],[5,65],[16,58],[-6,62],[-17,66],[-6,68],[-13,62],[-48,112],[-11,55],[-8,57],[-18,178],[-2,62],[3,130],[7,68],[11,47],[3,35],[8,30],[11,24],[7,28],[18,168],[23,37],[33,21],[27,44],[16,59],[15,121],[42,121],[15,63],[34,96],[30,135],[9,64],[7,65],[8,143],[5,71],[-1,70],[-17,72],[-41,132],[-1,24],[3,98],[-4,70],[-15,71],[-19,66],[-19,124],[-10,205],[2,74],[-5,65],[-14,63],[10,109],[123,397],[4,47],[-5,121],[2,71],[5,26],[9,15],[21,7],[99,18],[13,12],[25,33],[34,65],[15,19],[14,-7],[8,-28],[11,-15],[40,29],[16,1],[16,-5],[7,27],[4,36],[6,26],[11,14],[51,8],[33,11],[43,25],[9,-5],[34,-91],[11,-8],[13,-4],[12,17],[-28,48],[-4,26],[1,31],[15,65],[25,50],[56,76],[57,88],[17,6],[14,-14],[11,-103],[-1,-17],[9,-3],[10,13],[10,42],[0,34],[-7,34],[-4,28],[0,26],[29,61],[23,58],[10,70],[10,32],[24,36],[7,-6],[6,-29],[3,-31],[-6,-31],[-9,-31],[-4,-40],[14,-8],[13,10],[19,73],[21,70],[13,36],[16,25],[27,-5],[26,-15],[-43,73],[-10,101],[50,174],[1,37],[7,11],[3,14],[-26,59],[-5,29],[4,44],[12,40],[12,27],[16,11],[13,-15],[28,-49],[19,-7],[23,46],[18,58],[28,40],[32,25],[49,91],[32,191],[2,56],[-7,67],[-11,65],[-19,80],[5,18],[27,-11],[9,11],[28,71],[48,136],[16,0],[13,-25],[5,-37],[10,-28],[32,-65],[16,-48]],[[64752,74195],[-3,-27],[-15,81],[-7,89],[9,26],[11,-2],[-10,-32],[15,-135]],[[63939,77681],[-9,-17],[-15,3],[-28,61],[8,62],[10,13],[14,8],[2,-13],[-20,-28],[-2,-35],[17,-39],[23,-15]],[[63975,77748],[-10,-8],[-6,37],[11,31],[15,4],[-5,-49],[-5,-15]],[[5819,5871],[-347,-22],[-141,19],[-294,63],[-403,114],[-110,36],[-72,31],[-70,39],[-16,43],[10,62],[13,51],[21,32],[86,38],[43,42],[87,44],[25,33],[37,2],[70,-4],[69,-9],[65,-11],[63,-19],[144,-62],[100,-61],[144,-72],[143,-81],[80,-30],[77,-45],[74,-61],[14,-21],[31,-27],[19,-26],[19,-22],[19,-11],[15,-24],[-3,-26],[-12,-15]],[[30462,5944],[-60,-2],[-120,5],[-120,20],[-31,10],[-44,32],[-14,17],[-12,21],[-1,33],[32,114],[59,68],[56,39],[174,92],[23,10],[159,43],[62,23],[97,48],[534,186],[122,27],[55,-20],[31,-19],[-16,-22],[-72,-53],[-34,-32],[-87,-65],[-188,-109],[-133,-82],[-171,-113],[-40,-40],[-81,-95],[15,-42],[-27,-58],[-107,-28],[-61,-8]],[[37438,6445],[36,-2],[146,6],[146,-2],[89,-7],[26,-16],[23,-32],[26,-50],[24,-55],[27,-45],[16,-79],[25,-29],[43,-73],[6,-59],[-13,-128],[-21,-52],[-56,-50],[-64,5],[-29,-2],[-28,-10],[-11,-7],[-4,-10],[74,-43],[9,-16],[1,-19],[-10,-13],[-10,-7],[-1573,-260],[-61,-14],[-61,-27],[-20,-23],[-20,-18],[-1219,-49],[-11,3],[-11,10],[-31,50],[-6,79],[7,31],[61,30],[23,17],[103,117],[53,55],[25,46],[13,-3],[47,-27],[35,-8],[68,11],[67,33],[29,18],[29,-6],[5,-28],[12,-9],[162,88],[147,98],[144,111],[73,66],[18,19],[12,28],[-10,28],[-13,25],[-12,10],[-12,4],[-75,18],[23,29],[22,35],[14,39],[5,47],[-3,24],[3,18],[34,15],[23,24],[16,28],[-26,9],[-12,21],[23,49],[21,52],[21,28],[56,55],[163,138],[59,74],[17,27],[386,119],[63,12],[121,17],[56,3],[158,-12],[74,-12],[128,-32],[189,-61],[71,-27],[71,-34],[68,-43],[67,-52],[13,-16],[6,-29],[2,-28],[-3,-27],[-18,-56],[-26,-39],[-311,-37],[-41,-15],[-22,-30],[-16,-30],[36,-11]],[[33407,5562],[-11,-124],[1,-56],[-16,-45],[-28,-23],[-55,-39],[-40,-23],[-87,-38],[-400,34],[-180,31],[-75,40],[-12,18],[-23,61],[-21,19],[-159,-13],[-97,-19],[-17,-10],[-26,-38],[-14,-8],[-259,81],[-273,95],[-113,49],[-39,22],[-11,15],[25,19],[26,12],[29,9],[30,1],[22,-7],[22,-14],[14,-51],[14,-8],[38,-14],[961,7],[80,2],[166,15],[89,21],[33,29],[-80,7],[-32,22],[-27,41],[-6,38],[9,28],[106,14],[16,10],[-28,16],[1,37],[63,14],[25,31],[124,39],[196,-21],[47,-56],[-13,-36],[-9,-37],[-1,-57],[80,-8],[25,-21],[24,-26],[-29,-1],[-28,-6],[-23,-27],[-20,-35],[-14,-16]],[[30541,11987],[-8,-70],[46,25],[17,-5],[40,-26],[81,-151],[18,-48],[33,-139],[40,-105],[100,-183],[49,-100],[26,-58],[3,-78],[31,-22],[7,-32],[10,-107],[7,-124],[7,-238],[-4,-55],[-43,-89],[-18,-63],[-23,-42],[-27,-30],[-141,-125],[-17,-62],[-237,-53],[-134,-22],[-52,24],[-53,6],[-66,-8],[-191,-7],[-144,-18],[-19,7],[-13,23],[-14,16],[-38,-3],[-31,9],[-30,19],[-33,36],[-14,21],[-8,23],[64,60],[33,13],[33,4],[67,-13],[67,-20],[147,-16],[204,-4],[56,6],[67,19],[62,55],[-30,21],[-31,13],[-30,3],[-30,-4],[-84,-34],[-65,-20],[-65,-12],[-69,20],[-64,56],[-2,18],[220,43],[20,7],[40,27],[13,24],[6,23],[-148,40],[-31,-1],[-30,-7],[-67,17],[-64,47],[-59,57],[-22,5],[-21,-17],[-143,-150],[-12,-1],[-54,11],[-68,30],[-62,10],[-40,-8],[-15,-12],[39,-34],[33,-30],[10,-24],[-101,-75],[-27,-10],[-43,7],[-16,9],[-31,40],[-30,10],[-65,-8],[-34,3],[-34,18],[-32,26],[-30,14],[-36,29],[-26,20],[-8,29],[3,28],[11,16],[2,15],[-8,27],[5,19],[12,18],[54,34],[65,7],[63,-43],[42,-13],[19,-1],[7,2],[5,12],[-1,22],[-12,42],[-1,29],[14,24],[19,9],[20,6],[13,3],[41,-15],[29,-16],[59,-46],[49,-32],[19,-3],[14,11],[13,18],[-59,46],[-6,30],[3,26],[36,15],[22,2],[104,-27],[56,-9],[55,-3],[114,31],[-61,35],[-132,30],[-25,21],[-18,34],[97,31],[99,-1],[177,-40],[59,19],[55,58],[32,15],[125,-5],[101,27],[16,-3],[15,-8],[97,-97],[13,5],[10,19],[3,34],[1,34],[-3,35],[-12,22],[-16,-3],[-17,-10],[-28,9],[-28,18],[-29,8],[-100,11],[-71,18],[-37,14],[-34,28],[-5,31],[36,71],[138,76],[65,25],[66,6],[32,-5],[76,-32],[12,2],[11,8],[-73,53],[-65,41],[-33,31],[-26,12],[-109,12],[-57,-31],[-27,-5],[-27,3],[-160,74],[-9,8],[-23,28],[-12,21],[-7,35],[3,35],[5,23],[24,91],[13,72],[-7,59],[-25,32],[-36,22],[-33,35],[-9,24],[-6,28],[-1,36],[9,32],[14,34],[18,17],[34,17],[133,39],[270,49],[30,-25],[43,-52],[14,-21],[15,-104],[0,-29]],[[30787,21504],[24,-4],[80,57],[9,-3],[28,-29],[8,-12],[16,-25],[65,-118],[17,-48],[10,-56],[-26,35],[-27,-20],[-13,-34],[-12,-36],[0,-26],[9,-23],[27,-19],[64,-7],[5,-7],[37,-141],[19,-32],[22,-25],[51,-72],[49,-77],[58,-74],[62,-57],[57,-42],[54,-53],[58,-73],[63,-54],[67,-37],[69,-32],[105,13],[32,-4],[20,-23],[-20,-64],[-26,-51],[-35,-21],[-36,-8],[-34,1],[-33,10],[-31,-6],[-29,-21],[-31,-11],[-32,-2],[-31,-18],[-32,-13],[-32,11],[-84,51],[-55,12],[-185,20],[-59,12],[-59,18],[-31,0],[-45,-11],[-35,1],[-10,-11],[-41,0],[-12,-13],[-66,-19],[-112,29],[-28,27],[-38,58],[-13,-16],[-36,-25],[-36,-19],[-30,-2],[-28,24],[-6,12],[-6,3],[-60,-34],[-66,34],[-53,21],[-84,12],[-59,43],[-109,-4],[-19,14],[-7,42],[6,20],[23,11],[6,24],[24,-6],[30,-31],[9,1],[20,29],[30,26],[11,3],[54,-32],[22,4],[32,14],[5,12],[5,22],[9,13],[28,6],[27,-12],[3,-38],[-4,-41],[36,-11],[43,1],[30,-15],[4,25],[-48,65],[-20,40],[-26,24],[-35,12],[-28,75],[1,66],[-3,64],[62,36],[-14,55],[21,41],[25,16],[24,-153],[18,-54],[-23,-11],[-47,1],[27,-76],[43,-25],[37,-56],[1,-41],[20,-18],[50,-1],[34,8],[16,27],[19,9],[33,-34],[57,-25],[15,-17],[11,-30],[0,-31],[3,-16],[17,8],[23,42],[12,15],[14,7],[8,10],[1,12],[-42,31],[-220,141],[-28,56],[-18,71],[1,73],[16,23],[39,29],[72,41],[84,58],[10,11],[-1,37],[-10,25],[-33,18],[-35,4],[-33,-1],[-33,-8],[-60,-39],[-34,2],[-32,21],[-24,42],[-13,57],[0,36],[5,33],[15,35],[19,14],[18,-2],[17,8],[10,12],[8,16],[-3,13],[-6,12],[-27,24],[-10,23],[-23,38],[12,10],[41,6],[28,-26],[26,-30],[16,0],[15,13],[33,38],[28,49],[25,56],[21,34],[23,3],[69,-105]],[[27267,65185],[73,-26],[59,7],[28,16],[-3,-16],[26,-40],[10,-3],[38,20],[99,8],[10,-11],[18,-39],[25,-24],[26,-18],[28,-5],[27,8],[26,-4],[32,-37],[10,-5],[28,10],[-8,-34],[48,-49],[36,-95],[25,-39],[28,-35],[23,-24],[25,-11],[79,5],[18,-3],[17,-14],[15,-5],[9,5],[151,-149],[48,-79],[30,-41],[63,-59],[25,-13],[14,7],[-3,14],[-18,33],[-3,12],[24,-11],[43,-67],[12,-24],[21,-23],[22,-17],[-11,-26],[-17,-3],[-34,11],[27,-43],[5,-31],[12,-3],[19,35],[11,29],[48,-75],[25,-34],[-6,-20],[-2,-20],[28,18],[11,-2],[10,-11],[12,-32],[26,-7],[27,1],[55,-27],[51,-54],[49,-11],[49,-2],[24,-28],[11,-39],[-12,-27],[-7,-28],[18,-35],[-39,-15],[-6,-21],[2,-23],[8,-12],[23,11],[33,-10],[51,-8],[35,7],[71,-24],[21,-13],[42,-44],[19,-30],[42,-79],[35,-31],[31,-8],[11,5],[10,-8],[9,-11],[8,-35],[-5,-37],[-17,-29],[-10,-22],[-44,-2],[-62,-10],[-60,-32],[-29,-26],[-14,-17],[-31,-15],[-2,13],[0,17],[-8,31],[-7,-28],[-12,-21],[-19,-17],[-73,-1],[-29,23],[-30,17],[-109,16],[-27,-1],[-73,-18],[-73,-9],[-31,-11],[-30,-16],[-59,0],[-70,-18],[-70,-4],[45,131],[95,125],[17,27],[13,35],[3,26],[-4,23],[-23,39],[-4,29],[-7,19],[-33,17],[-33,10],[-35,0],[-73,13],[-39,1],[-33,27],[-55,96],[-26,26],[-13,22],[-10,24],[-13,140],[-11,68],[-17,58],[-25,45],[-27,15],[-101,-38],[-24,5],[-23,13],[-154,91],[-63,50],[-26,25],[-22,35],[-23,58],[-25,52],[0,-21],[-4,-14],[-129,-6],[-20,12],[-13,14],[-10,21],[-7,42],[-12,35],[-4,-38],[-6,-34],[-17,-20],[-20,-3],[-24,46],[-104,10],[-9,8],[-34,44],[-30,56],[29,19],[60,26],[13,18],[8,21],[-5,33],[-12,24],[-13,14],[-13,9],[-18,4],[-232,5],[-13,-17],[-21,-37],[-41,-46],[-28,-49],[-10,-25],[-12,-18],[-29,-30],[-24,-46],[-30,-21],[-16,13],[-16,0],[-11,-12],[-13,-5],[-59,-6],[-9,-11],[-8,-34],[-10,-64],[-9,-21],[-30,-8],[-28,-18],[-58,-62],[-15,-9],[3,45],[-3,44],[-16,2],[-19,-7],[-15,-13],[-29,-32],[-14,-9],[-14,17],[3,21],[95,79],[11,6],[17,-6],[17,3],[13,22],[-16,105],[6,71],[22,55],[45,83],[21,27],[219,174],[22,9],[142,35],[22,12],[66,51],[69,21],[73,-16]],[[55804,98069],[28,-6],[153,2],[30,-14],[11,-34],[24,-12],[32,-3],[81,-42],[28,-6],[24,23],[19,58],[0,68],[-7,33],[9,21],[27,8],[34,-2],[34,12],[29,21],[31,3],[67,-16],[18,-13],[-18,-25],[-7,-37],[-31,-75],[66,-4],[93,15],[24,22],[50,35],[53,-5],[25,4],[13,15],[5,18],[29,-3],[40,-34],[19,-6],[34,9],[13,0],[34,-14],[157,-25],[54,-14],[24,-12],[23,-8],[167,1],[118,-9],[43,-20],[37,-38],[14,-88],[-33,-24],[-239,-108],[-60,-35],[-29,-32],[-48,-70],[-24,-21],[-112,-34],[-26,-3],[-84,16],[-25,-2],[-102,-36],[-36,-22],[-34,-27],[-51,-13],[-53,7],[-237,14],[-32,20],[-26,37],[47,48],[-265,-18],[-292,10],[-15,6],[-13,19],[-100,12],[-75,15],[-64,26],[-62,33],[20,15],[20,9],[54,4],[48,-4],[85,0],[20,33],[34,10],[27,24],[-90,15],[-94,2],[-62,-20],[-73,-9],[-66,-1],[-127,6],[-60,14],[-83,36],[-28,21],[-11,16],[-9,24],[95,21],[36,17],[36,24],[-142,13],[-60,19],[-59,29],[48,16],[192,13],[51,-11],[50,-21],[56,-12],[53,27],[-50,12],[-46,45],[-9,22],[6,17],[23,3],[18,-7],[67,-42],[51,-14],[14,39],[2,19],[-9,15],[-24,28],[-21,35],[33,9],[33,-4],[70,-24],[71,-17],[32,-16],[61,-42],[56,-29]],[[54662,97872],[15,-1],[14,6],[10,16],[11,9],[71,-11],[99,-32],[30,-16],[41,-33],[34,-55],[-27,-40],[-35,-37],[-12,-21],[13,-30],[-6,-29],[-13,-26],[54,29],[114,94],[17,6],[18,-3],[51,-19],[46,-48],[11,-16],[8,-20],[5,-24],[-3,-28],[-4,-19],[-25,-12],[-11,-12],[26,-1],[30,-15],[27,-31],[31,-13],[111,11],[73,-17],[39,-52],[62,12],[0,27],[13,12],[82,-9],[43,-13],[43,-27],[-74,-45],[61,-43],[103,-31],[61,-33],[12,-14],[10,-18],[-40,-24],[-41,-13],[-104,-2],[-93,-17],[-172,-12],[-26,-7],[-6,-7],[-10,-21],[-66,-47],[-64,-58],[-26,-35],[-20,-49],[-8,-29],[15,-29],[-4,-30],[-48,-23],[-31,0],[-38,4],[-38,-13],[-2,-20],[2,-28],[-9,-85],[-12,-65],[-18,-59],[-19,-33],[-25,-9],[-81,-5],[-62,-57],[-50,-100],[-26,-39],[-55,-62],[10,-22],[17,-24],[-30,-43],[-46,-48],[1,-19],[16,-34],[7,-35],[-35,-30],[-66,-16],[-66,17],[-32,21],[-30,32],[-32,22],[-33,13],[-127,72],[-117,114],[-108,45],[-69,21],[-34,20],[-33,28],[-28,31],[-27,39],[-12,24],[-3,36],[9,21],[12,11],[85,9],[31,-5],[30,-19],[27,-7],[63,94],[357,54],[115,9],[115,0],[-18,25],[-15,33],[-17,7],[-87,-18],[-133,-19],[-65,0],[-67,13],[-67,-7],[-69,-28],[-69,-17],[-68,-7],[-143,3],[-35,14],[-48,33],[-11,17],[-10,21],[-9,63],[10,17],[14,9],[15,6],[32,1],[31,-11],[72,-36],[-17,39],[208,46],[96,40],[49,6],[50,-2],[-11,21],[0,20],[35,16],[25,7],[77,8],[174,-2],[62,11],[47,28],[-50,-10],[-50,-2],[-23,6],[-53,24],[-24,31],[68,63],[24,30],[-70,-5],[-23,-10],[-80,-58],[-60,-26],[-73,-12],[-73,1],[-16,8],[-22,39],[-7,20],[3,11],[23,31],[12,34],[-2,29],[-17,5],[-27,-28],[-25,-39],[-33,-20],[-35,6],[-15,15],[-13,23],[-13,9],[-15,0],[-31,-9],[-31,-18],[11,-25],[3,-29],[-14,-23],[-10,-28],[32,-17],[26,-28],[-39,-13],[-38,-18],[-34,-29],[-36,-23],[-56,-2],[-70,-12],[-141,-5],[-66,37],[-12,17],[-13,12],[-44,19],[-63,57],[-50,64],[-33,6],[-49,21],[-27,19],[-25,24],[-8,29],[3,26],[29,12],[-69,29],[-68,39],[25,13],[25,6],[202,-46],[14,6],[22,23],[-8,7],[-34,5],[-46,0],[-11,5],[-18,24],[-16,30],[-6,20],[-3,23],[34,35],[19,32],[-29,14],[-83,-1],[-28,-4],[10,-45],[-26,-31],[-51,-25],[-36,12],[-28,60],[-37,41],[-14,26],[-10,38],[-15,27],[-27,33],[-3,20],[3,16],[20,34],[-15,28],[-19,25],[-1,14],[18,18],[16,6],[17,-2],[51,-21],[28,-25],[9,2],[19,38],[25,8],[100,12],[111,-48],[29,-10],[23,-4],[-12,21],[-7,28],[17,10],[89,-24],[42,1],[98,33],[163,16],[62,-25],[3,-14],[-2,-18],[-3,-5],[-36,-22],[-206,-17],[-134,-66],[183,10],[33,-7],[14,-55],[13,-5],[48,-8],[32,-16],[32,-31],[34,-21],[21,3],[7,22],[-8,27],[-5,30],[3,33],[5,27],[39,19],[56,62],[59,42],[66,-19],[62,-53],[55,-74],[53,-80],[60,-99],[29,-35],[27,-8],[121,-103],[13,-3],[-25,78],[-62,133],[-43,102],[-9,39],[-7,54],[3,16],[5,14],[31,59],[40,28],[-12,40],[10,31],[42,24],[39,2],[38,-19],[73,-65]],[[52675,75392],[14,-37],[31,-151],[3,-32],[-6,-34],[-8,-23],[-31,-76],[5,-63],[11,-39],[2,-43],[-6,-54],[-19,-328],[-9,-58],[-6,-50],[-21,-16],[-28,17],[-34,28],[-16,-2],[-16,-10],[-13,9],[-13,16],[-9,-113],[-16,-46],[-23,-29],[-23,-2],[-23,10],[-19,0],[-15,21],[-12,38],[-18,47],[-19,55],[-2,49],[-3,109],[5,24],[8,23],[4,49],[-3,43],[6,15],[11,-15],[8,5],[-1,22],[3,40],[-15,34],[-24,11],[-2,35],[2,35],[13,23],[4,30],[1,94],[-18,34],[-6,52],[-9,33],[-16,34],[-18,27],[-12,26],[-2,69],[6,58],[6,24],[6,-3],[18,-29],[15,-6],[29,-7],[29,9],[35,26],[34,31],[49,93],[30,18],[16,25],[5,33],[13,8],[15,-32],[19,-3],[29,-26],[12,-26],[11,-30],[10,-13],[11,-8],[2,-7],[-9,-7],[-10,-35],[6,-10],[16,-19]],[[52633,76500],[-7,-84],[5,-25],[10,-18],[5,-19],[8,-225],[-2,-18],[-34,-91],[-7,-26],[-2,-113],[-6,-30],[-12,-30],[-21,-96],[-19,-43],[-51,53],[-30,22],[-14,25],[-10,17],[6,23],[14,23],[2,19],[-32,21],[-15,14],[0,24],[11,38],[-5,32],[-18,-2],[-15,5],[-1,17],[10,21],[14,27],[-1,30],[-16,13],[-15,25],[-6,33],[12,23],[18,15],[-13,34],[-10,1],[-7,7],[6,16],[14,24],[21,71],[28,33],[50,22],[14,9],[12,25],[14,16],[16,-2],[16,-9],[9,-11],[8,11],[6,31],[-4,27],[2,75],[9,42],[15,3],[13,-24],[-1,-20],[5,-49],[1,-32]],[[54326,73859],[-19,-66],[-9,-25],[-67,-160],[-7,-37],[-5,-40],[-7,-35],[-9,-34],[-9,-42],[1,-48],[4,-23],[8,-16],[13,-14],[10,-22],[-16,-21],[18,-40],[14,-24],[2,-24],[0,-24],[-30,-46],[-12,-24],[-8,-31],[-3,-31],[3,-28],[-1,-28],[-30,4],[-32,17],[-31,-8],[-45,33],[-16,5],[-15,13],[-38,100],[-30,43],[-32,33],[-33,2],[-33,-4],[-29,20],[-59,68],[-63,55],[-27,35],[-12,24],[-14,16],[-36,16],[-33,37],[-14,2],[-32,-4],[-16,2],[-16,13],[-32,44],[-20,60],[-5,26],[14,69],[17,65],[15,19],[17,13],[11,20],[9,23],[32,-68],[15,-17],[14,4],[26,24],[2,27],[29,35],[36,0],[17,-6],[9,-31],[14,-9],[16,-5],[53,-59],[15,-9],[15,-2],[41,25],[31,9],[66,-13],[36,15],[25,1],[36,23],[28,38],[15,9],[15,3],[38,-2],[38,-9],[16,9],[13,25],[16,11],[17,-8],[44,43],[19,2],[18,-16],[-16,-27]],[[35352,92133],[93,-47],[98,-32],[9,-15],[8,-22],[2,-12],[-3,-11],[-6,-10],[7,-12],[21,-16],[2,-19],[-25,-31],[-34,-35],[-183,-72],[-64,-13],[-160,-49],[-49,2],[-11,2],[-30,22],[-42,20],[-19,16],[-17,23],[7,14],[30,5],[44,0],[65,16],[-18,15],[-17,9],[-12,19],[-27,-3],[-20,11],[-38,7],[-101,7],[-66,19],[-20,11],[-17,20],[-15,28],[22,109],[15,27],[34,9],[84,-24],[11,11],[-92,40],[-33,23],[-10,19],[-6,28],[0,16],[4,16],[8,17],[23,22],[92,35],[102,-12],[175,-43],[22,-10],[54,-37],[103,-113]],[[14667,81013],[138,-72],[138,-35],[102,-42],[62,-13],[22,-9],[15,-15],[17,-36],[29,-85],[23,-55],[46,-94],[37,-67],[8,-27],[-8,-8],[1,-16],[28,-65],[52,-59],[41,-28],[86,-45],[53,-45],[16,-30],[23,-30],[9,-21],[19,-76],[35,-73],[36,-139],[7,11],[4,42],[4,9],[8,5],[7,-17],[6,-36],[23,-87],[-7,-26],[-7,-2],[-31,11],[-10,-15],[-15,-32],[-10,-13],[-6,6],[-90,31],[-55,29],[-72,45],[-87,47],[-50,33],[-41,33],[-29,29],[-5,24],[1,11],[56,77],[23,42],[9,31],[5,34],[-3,41],[-3,-3],[-5,-40],[-8,-34],[-10,-28],[-6,-9],[-67,-14],[-54,4],[-27,-33],[-8,-4],[-15,11],[-33,44],[-47,36],[5,9],[31,19],[16,26],[-3,5],[-11,-2],[-10,6],[-19,34],[-10,10],[-23,-16],[-10,-1],[-9,23],[13,53],[1,13],[-24,-20],[-8,7],[-7,17],[-7,7],[-19,-3],[-21,15],[-7,-6],[-3,-23],[-7,-6],[-31,39],[-8,1],[-15,-29],[-5,-2],[-9,13],[-4,71],[2,21],[4,7],[28,16],[79,18],[7,13],[-60,-7],[-15,10],[-17,24],[-17,0],[-9,8],[-10,18],[-25,64],[-17,17],[-29,10],[-15,12],[-6,-5],[-6,-19],[-9,-11],[-19,-7],[-19,5],[-14,18],[-8,22],[-4,25],[8,33],[0,14],[-3,15],[-7,12],[-9,10],[-5,-5],[-1,-20],[-5,-14],[-17,-11],[-13,19],[-9,27],[-11,19],[-57,0],[-27,-25],[-13,-2],[-13,6],[-2,13],[12,35],[-3,47],[-3,12],[-27,7],[-4,12],[15,57],[9,11],[12,4],[53,4],[17,-8],[26,-34],[-1,13],[-9,39],[-2,24],[18,26],[-17,8],[-63,6],[1,-17],[5,-24],[-37,-21],[-28,-4],[-26,4],[-21,12],[-37,51],[-23,51],[1,27],[13,29],[16,19],[39,18],[51,1],[57,-23],[143,-104]],[[30012,63203],[34,-14],[15,12],[12,10],[8,34],[11,31],[14,17],[17,10],[32,-1],[44,-27],[13,1],[43,24],[35,14],[34,-16],[13,-21],[28,-33],[14,-10],[43,1],[12,-3],[37,-55],[30,-22],[18,-1],[32,21],[16,-1],[18,-47],[4,-67],[15,-61],[24,-39],[115,16],[25,-32],[-8,-27],[-17,-14],[-54,6],[-24,-3],[-5,-26],[0,-25],[32,-6],[31,-12],[32,-20],[33,-13],[36,-9],[36,-14],[61,-49],[66,-109],[18,-25],[12,-34],[-6,-43],[-24,-69],[-13,-22],[-20,-14],[-13,-28],[-13,-49],[-8,-4],[-9,2],[-16,28],[-12,42],[-32,39],[-38,-5],[-56,24],[-34,-12],[-34,-2],[-35,12],[-35,4],[-35,-15],[-34,-25],[-12,-17],[-22,-39],[-12,-15],[-82,-20],[-24,29],[-22,40],[-32,5],[-46,-30],[-28,-11],[-12,-14],[-3,-14],[0,-56],[-7,-33],[-45,-127],[-25,-90],[-10,-28],[-12,-6],[-23,52],[-14,19],[-17,9],[-7,27],[0,39],[-5,38],[-10,29],[-16,20],[-23,46],[-26,38],[-16,15],[-16,10],[-123,-5],[-14,-7],[-11,-12],[-11,-6],[-34,-12],[-34,-2],[-79,31],[-31,16],[-31,10],[-36,-3],[-36,-10],[-29,-22],[-21,-40],[-4,-36],[-13,-10],[-29,59],[-27,41],[-30,31],[-62,45],[-12,27],[-5,32],[26,101],[28,19],[16,3],[35,-12],[35,-23],[31,-15],[49,-6],[27,-25],[187,-38],[35,-12],[14,4],[12,15],[10,27],[12,21],[56,4],[11,9],[8,29],[0,29],[-33,40],[-51,86],[-45,103],[20,34],[-8,63],[8,58],[10,57],[-44,49],[-53,49],[-73,15],[-22,13],[-12,36],[11,49],[23,28],[27,16],[28,12],[67,14],[67,-16],[57,-50],[59,-40],[73,-13]],[[36214,51711],[26,-3],[37,11],[24,27],[28,5],[27,-3],[92,-30],[55,-9],[20,-9],[20,-14],[14,-15],[4,-32],[-14,-51],[-10,-53],[-9,-75],[-7,-16],[-12,4],[7,-67],[-2,-27],[-6,-26],[-15,-54],[-22,-69],[-7,-14],[-17,-24],[-14,-31],[3,-29],[7,-29],[-8,-36],[-27,-53],[-16,-13],[-14,-6],[-14,6],[-23,53],[-3,-42],[-6,-42],[-8,-24],[-31,3],[-17,23],[-28,25],[-5,-69],[-18,-47],[-17,-15],[-27,-10],[-16,-20],[-30,16],[-27,31],[-16,3],[-12,-25],[-63,-5],[-29,-26],[-18,8],[-26,52],[-5,34],[-15,70],[-14,84],[-10,75],[8,66],[17,-3],[20,-9],[4,4],[1,21],[-4,18],[-32,-3],[-21,39],[-3,60],[4,124],[2,26],[15,36],[4,31],[-3,34],[6,61],[13,52],[52,67],[59,24],[172,-65]],[[49136,85550],[2,-47],[-3,-15],[-7,-17],[-21,-33],[-55,-47],[-101,-108],[-60,-54],[-8,-26],[-4,-36],[35,-7],[14,-12],[-8,-18],[-53,-63],[-16,-58],[41,2],[33,11],[67,36],[62,27],[30,1],[59,-21],[13,-1],[25,10],[25,1],[170,-6],[47,12],[32,-15],[26,-37],[25,-68],[-1,-11],[-15,-31],[-28,-39],[-24,-54],[-7,-29],[-4,-32],[-8,-29],[-47,-138],[-47,-76],[-20,-55],[-26,-43],[-24,-27],[-26,-18],[-76,-20],[-21,-13],[-25,-24],[-27,-12],[31,2],[31,13],[56,5],[65,-46],[-6,-37],[-26,-30],[-59,-5],[-55,-65],[-25,-20],[-26,-10],[-33,3],[-60,17],[-26,18],[24,-29],[26,-16],[156,-37],[9,4],[49,39],[66,0],[126,-71],[36,-55],[52,-78],[28,-31],[21,-28],[12,-41],[25,-138],[27,-134],[37,-146],[16,-40],[22,-28],[110,-66],[24,-21],[43,-63],[41,-67],[38,-51],[41,-41],[-20,-22],[-14,-34],[11,-46],[16,-44],[33,-71],[30,-77],[-11,12],[-11,6],[-16,-1],[-15,3],[-28,24],[-27,30],[-53,-12],[-29,5],[-26,0],[49,-17],[53,-2],[117,-129],[40,-76],[23,-101],[-16,-46],[-25,-29],[-23,-34],[-22,-38],[65,-56],[14,2],[15,8],[13,19],[24,46],[12,16],[40,6],[34,-3],[34,-10],[30,3],[60,-20],[30,-18],[77,-80],[16,-44],[8,-57],[1,-63],[-13,-58],[-15,-52],[-9,-67],[-6,-25],[-9,-18],[-41,-54],[-27,-21],[-11,9],[-12,-1],[-1,-13],[12,-27],[1,-33],[-24,-24],[-25,-10],[-40,13],[-57,-45],[41,-23],[8,-25],[-10,-43],[-25,-20],[-29,-8],[-29,-2],[-24,-11],[-23,-20],[29,11],[20,-10],[13,-36],[11,-11],[57,-15],[34,0],[68,9],[32,-1],[12,-6],[0,-30],[-5,-75],[-9,-15],[-89,-62],[-19,-44],[-5,-26],[-52,4],[-24,-27],[-43,-19],[-32,-20],[-32,-25],[-27,-7],[-113,30],[-69,-3],[-93,-26],[-24,5],[-35,24],[-37,17],[-42,7],[-37,23],[23,-44],[-51,-42],[-23,-8],[-24,1],[-50,-12],[-46,6],[7,-30],[12,-26],[-9,-11],[-11,-3],[-87,20],[-13,-4],[-10,-18],[-32,9],[-31,31],[-33,21],[-34,10],[-28,-4],[-112,-48],[-23,-49],[-11,-69],[-16,-61],[-27,-47],[-31,-7],[-30,33],[-56,36],[-20,25],[-6,1],[-6,-9],[-22,-11],[-23,0],[-35,-10],[-62,-29],[-25,-20],[-53,-55],[-11,-15],[-19,-55],[-30,-10],[-27,35],[-31,13],[-32,-13],[-20,-18],[-9,15],[-1,31],[24,38],[64,28],[55,74],[28,45],[10,25],[14,16],[17,6],[9,28],[77,112],[7,25],[4,46],[6,44],[63,29],[30,93],[8,7],[88,17],[65,-1],[65,-18],[33,-2],[33,7],[26,25],[45,90],[25,40],[29,36],[27,41],[44,76],[-30,-26],[-36,-42],[-20,-24],[-66,-24],[-28,-25],[-50,-56],[-9,-5],[-75,14],[-56,72],[-35,30],[-15,4],[-15,-9],[-33,-9],[-33,1],[17,34],[23,19],[-51,13],[-15,10],[-16,23],[-40,4],[-19,-6],[-33,-31],[-51,-33],[-62,46],[-12,20],[0,39],[-9,31],[-17,10],[22,40],[26,27],[58,27],[89,62],[49,27],[46,46],[19,28],[14,39],[13,47],[20,39],[-19,9],[-9,29],[3,29],[8,26],[-7,33],[-14,34],[1,26],[3,29],[-35,-2],[-36,-9],[-32,-20],[-31,-27],[-27,-5],[0,22],[12,27],[31,38],[34,32],[12,25],[9,28],[17,23],[44,43],[83,48],[13,3],[33,-6],[32,7],[28,18],[29,4],[63,-51],[-19,78],[28,18],[41,-70],[15,-7],[32,10],[-13,12],[-14,1],[-19,10],[-15,23],[-27,71],[2,42],[17,44],[20,41],[-16,8],[-14,15],[-3,41],[5,35],[35,32],[10,48],[5,53],[-6,24],[-35,-4],[-17,-10],[-15,-16],[-16,1],[-43,59],[-25,44],[-44,93],[-6,56],[35,120],[55,77],[64,27],[-12,5],[-98,1],[-33,-10],[-30,-31],[-17,-10],[-17,-3],[-17,-16],[-15,-22],[-17,-14],[-33,4],[-16,-5],[-11,13],[-9,21],[-13,5],[-14,-6],[-29,-28],[-30,-17],[-36,18],[-48,33],[-9,-12],[-11,-31],[-6,-47],[-33,41],[-29,56],[-10,34],[0,39],[15,16],[17,-14],[25,93],[50,121],[18,35],[12,46],[-2,31],[-11,25],[-46,58],[0,48],[5,53],[13,32],[5,6],[62,-1],[-24,17],[-48,48],[1,17],[11,45],[-5,-5],[-10,-20],[-20,-50],[-12,-12],[-34,-12],[-6,-24],[-6,-7],[-17,-2],[-5,-23],[-4,-2],[-5,25],[0,41],[7,38],[13,29],[49,67],[-24,-21],[-55,-62],[-28,-40],[-7,-14],[-3,-12],[0,-13],[13,-72],[-4,-33],[-47,-219],[-9,-22],[-8,-11],[-8,-3],[-23,4],[-11,17],[0,18],[5,28],[19,104],[9,29],[13,27],[27,47],[0,3],[-19,-9],[-8,3],[-5,9],[3,139],[15,46],[6,67],[13,57],[15,42],[12,53],[17,24],[5,36],[19,39],[15,41],[-8,-4],[-96,-106],[-25,-20],[-33,5],[-26,12],[-20,26],[-9,48],[-24,1],[-21,9],[0,6],[27,27],[44,9],[41,42],[-37,29],[3,9],[32,24],[40,82],[9,75],[-20,35],[-7,23],[-38,26],[-7,33],[5,18],[12,18],[19,14],[30,14],[-27,14],[-10,17],[-8,24],[0,15],[14,63],[8,26],[16,33],[72,-2],[8,15],[8,1],[37,-14],[-6,15],[-60,79],[-5,15],[17,42],[1,19],[-2,21],[5,15],[19,8],[58,-1],[14,7],[-6,21],[-14,27],[-2,22],[3,20],[1,41],[2,17],[14,27],[11,8],[15,5],[32,-9],[12,-11],[14,-26],[10,3],[40,27],[12,4],[16,-32],[68,26],[91,11],[55,17],[58,6],[54,19],[57,-9],[2,-11],[-3,-15],[-14,-42]],[[48005,83557],[22,-5],[20,19],[23,59],[16,3],[18,-4],[35,7],[62,27],[28,1],[39,-14],[29,0],[26,-42],[14,-66],[32,-66],[43,-57],[1,-34],[-15,-19],[-32,-23],[1,-25],[20,13],[18,5],[44,-5],[15,-26],[10,-37],[6,-31],[-4,-34],[-11,11],[-12,30],[-13,14],[-16,7],[7,-41],[-3,-56],[7,-5],[21,-1],[-14,-56],[-28,-16],[-33,-6],[-8,-20],[-6,-26],[-17,-38],[-22,-22],[-28,4],[-28,18],[12,-21],[5,-21],[-20,-7],[-22,4],[-10,-14],[-1,-26],[8,-34],[14,-24],[11,-55],[10,-60],[14,-37],[3,-45],[-2,-22],[3,-40],[-6,-14],[4,-38],[18,-78],[7,-43],[5,-94],[-12,-36],[-16,-33],[-11,-40],[-8,-43],[-5,-70],[-36,-81],[-15,-20],[-18,-13],[39,-56],[-32,-26],[-34,-8],[-38,14],[-23,-1],[-22,-19],[-8,-11],[-7,6],[-14,46],[-11,-48],[-22,-15],[-37,3],[-62,-13],[-24,-14],[-10,-21],[-8,-25],[-10,-14],[-11,-8],[-48,-18],[-9,-8],[-23,-40],[-29,-23],[-24,-7],[-21,23],[-9,14],[-10,8],[-33,-2],[10,-7],[7,-16],[3,-32],[-4,-31],[-16,-15],[-19,-3],[-31,-32],[-41,-9],[-22,-30],[-134,-50],[-7,0],[-19,13],[-20,5],[-20,-4],[-56,-28],[-28,6],[35,69],[47,35],[5,10],[-16,4],[-88,-24],[-31,-21],[-31,-6],[14,32],[40,43],[21,21],[14,8],[14,25],[42,29],[-135,-59],[-35,7],[-8,16],[-28,-7],[-10,40],[40,61],[24,26],[29,14],[27,20],[10,25],[-13,8],[-82,-6],[-39,5],[2,20],[8,22],[40,37],[22,6],[20,-4],[19,-9],[15,-13],[46,8],[-19,23],[-3,49],[-15,16],[19,22],[21,14],[36,47],[13,7],[71,11],[76,24],[76,34],[-39,19],[-19,25],[-30,-51],[-21,-19],[-61,-10],[-19,6],[-27,15],[-9,-6],[-8,-12],[-40,-24],[-42,-6],[49,45],[62,76],[14,25],[20,42],[-6,18],[-13,11],[45,87],[16,15],[29,3],[22,14],[9,0],[8,5],[19,26],[-29,16],[-29,9],[-92,-9],[-12,2],[-12,8],[-7,11],[-6,30],[-6,6],[-21,0],[-20,-9],[-15,1],[-14,13],[23,30],[-29,7],[-29,-6],[-25,9],[0,19],[11,19],[-15,18],[-3,23],[16,11],[16,-4],[35,17],[43,8],[-37,16],[-15,14],[-1,22],[3,18],[44,32],[46,13],[-4,21],[4,22],[-47,7],[-46,-16],[5,43],[11,38],[2,25],[-2,27],[-22,-11],[-3,38],[-9,26],[-32,-18],[1,35],[9,24],[17,11],[17,-5],[30,0],[30,19],[43,4],[69,-5],[47,-52],[12,9],[19,33],[9,3],[71,-14],[44,-18],[12,6],[-7,35],[-15,25],[19,33],[23,22],[16,11],[36,14],[15,13],[11,42],[16,35],[-90,-18],[-85,41],[14,29],[18,17],[31,13],[3,15],[15,13],[26,33],[-9,43],[5,32],[19,21],[6,30],[8,22],[38,8],[37,20],[13,-2],[43,5],[15,-8],[-4,36],[27,4],[10,-7],[5,-25],[12,-17],[3,-28],[-8,-22],[-13,-17],[12,-17],[-19,-31],[21,13],[29,31],[-1,25],[-5,31],[-9,28],[4,31],[17,20],[43,10],[-18,35],[16,3],[18,-7],[25,-28],[26,-21],[28,-17],[-27,-35],[-32,-23],[-13,-26],[11,-21]],[[0,91580],[56,-25],[56,-20],[23,6],[12,-2],[32,-35],[21,-16],[113,-41],[51,-45],[42,-52],[-21,10],[-38,34],[4,-39],[12,-27],[61,-26],[64,-20],[40,-24],[14,-21],[8,-38],[-10,-33],[37,12],[35,30],[-18,23],[-117,81],[-25,27],[34,-14],[158,-103],[43,-39],[-18,-8],[-13,-23],[14,-10],[19,8],[31,4],[31,-13],[35,-27],[73,-32],[434,-254],[10,-44],[12,-21],[7,-26],[2,-43],[-39,-51],[61,5],[9,6],[16,21],[17,14],[24,-17],[19,-34],[-6,-46],[-17,-38],[-2,-63],[15,-54],[15,-22],[13,-26],[3,-76],[-27,-34],[-15,-59],[17,-6],[52,-5],[18,-11],[30,-27],[7,-26],[7,-36],[9,-34],[7,-16],[8,3],[30,46],[14,14],[34,12],[19,-53],[-13,-88],[11,0],[8,10],[11,23],[15,14],[19,32],[16,39],[-19,31],[-21,20],[-51,10],[-26,24],[-10,29],[26,12],[22,21],[15,52],[-4,28],[-6,27],[-12,39],[-19,23],[-36,11],[-16,22],[-25,-1],[-25,6],[-9,8],[1,16],[28,7],[157,2],[57,22],[25,-6],[26,-16],[94,-21],[-3,-10],[-16,-10],[-27,-46],[-6,-26],[-1,-34],[24,-6],[24,14],[-12,27],[-3,33],[10,14],[13,3],[24,-24],[27,-8],[89,-10],[26,3],[8,13],[-18,14],[-116,33],[-2,17],[108,-22],[48,-20],[48,-15],[67,5],[66,-24],[63,-65],[58,-82],[59,-49],[61,-36],[103,-99],[13,-8],[10,-14],[-19,-16],[-17,-25],[34,17],[33,12],[17,-3],[15,-12],[10,-21],[5,-20],[-14,-18],[99,-4],[30,-12],[14,-49],[-28,-34],[-17,5],[-16,14],[-15,1],[-44,-14],[-67,-46],[-38,-37],[-7,-24],[6,-65],[-5,-31],[-29,-20],[-64,12],[-29,13],[-33,17],[-31,24],[-41,39],[-12,4],[-8,-10],[13,-24],[28,-31],[47,-40],[22,-45],[-14,-23],[-18,-5],[-13,1],[-41,14],[-29,3],[-90,-13],[-32,-8],[-11,7],[-3,19],[-48,15],[-29,2],[-13,6],[-11,21],[-32,30],[-48,11],[-31,2],[-17,-7],[63,-39],[56,-67],[-11,-13],[-7,-14],[31,-1],[21,4],[5,-17],[-16,-71],[-11,-15],[-98,-16],[25,-12],[25,-3],[29,3],[26,-13],[17,-44],[3,-46],[-25,-27],[-27,-21],[-53,-33],[-56,-14],[-29,3],[-28,-7],[-19,-17],[-5,-17],[24,11],[28,-6],[27,-21],[-3,-17],[-26,-18],[-5,-14],[9,-24],[-3,-20],[13,-11],[30,-4],[36,-14],[36,-20],[14,-16],[12,-24],[4,-24],[-6,-11],[-82,-4],[-12,3],[-5,28],[-10,22],[-31,16],[-12,-11],[9,-79],[-12,-24],[-14,-18],[-41,-10],[-33,6],[-28,37],[0,32],[19,19],[0,26],[-6,30],[-18,-35],[-23,-29],[-35,-37],[-18,-4],[-17,4],[-47,26],[-29,23],[-56,74],[-32,34],[-70,46],[-72,34],[-57,22],[-31,-3],[-30,-9],[-39,5],[-13,8],[-11,19],[-11,10],[-54,46],[-38,37],[-2,25],[8,30],[-7,73],[-18,69],[-48,68],[-126,44],[-104,31],[-37,7],[-33,-6],[-87,-57],[-59,-8],[-170,-3],[-28,6],[-26,24],[-6,33],[8,59],[-1,25],[-7,9],[-9,-1],[-33,24],[-31,40],[-25,41],[-16,56],[22,3],[31,-14],[5,13],[10,51],[21,24],[9,18],[14,68],[2,49],[-24,-26],[-39,-68],[-18,-20],[-14,-9],[-13,-4],[-30,13],[-22,17],[-1,65],[-10,17],[-10,-12],[-4,-24],[-28,-4],[-13,-10],[7,-39],[-3,-33],[-27,-13],[-53,-7],[-19,32],[-16,-45],[-12,-51],[-2,-67],[17,-56],[25,-27],[53,-40],[23,-28],[6,-37],[-2,-33],[-28,-42],[-18,-34],[-33,-81],[-19,-33],[-82,-69]],[[0,89324],[0,2256]],[[45682,89993],[32,-3],[52,20],[22,13],[53,45],[32,13],[49,-3],[23,3],[1,-5],[-30,-18],[-24,-6],[-35,-27],[-32,-62],[-25,-30],[1,-13],[29,-24],[32,-13],[30,12],[13,-5],[12,-17],[6,-18],[2,-17],[-6,-36],[-17,-37],[-24,-30],[3,-10],[19,-5],[92,20],[10,-1],[5,-10],[1,-19],[5,-16],[9,-15],[-3,-15],[-40,-48],[48,30],[37,9],[65,-15],[26,-18],[15,-30],[23,10],[9,-1],[15,-17],[0,-18],[-10,-27],[-4,-24],[-11,-10],[-21,-7],[-6,-9],[9,-18],[14,-18],[19,-1],[3,-9],[1,-10],[-3,-12],[-6,-8],[-10,-4],[-13,-13],[48,-29],[6,-10],[1,-16],[-4,-17],[-8,-18],[-15,-11],[-34,-2],[-22,-12],[7,-20],[0,-26],[-6,-29],[-28,-46],[-26,-24],[-25,-15],[-45,5],[-24,12],[2,-39],[-25,-24],[5,-20],[9,-10],[-5,-26],[-11,-26],[-20,-27],[-23,-17],[-45,-21],[-38,-35],[-26,-14],[-65,1],[-67,-22],[-93,-47],[-64,-38],[-48,-43],[-65,-69],[-48,-30],[-27,-7],[-54,-7],[-45,-19],[-150,-35],[-50,-19],[-7,-18],[-21,-27],[-1,-9],[9,-8],[2,-9],[-19,-32],[-37,-22],[-17,0],[-21,20],[-10,-1],[-3,-3],[0,-6],[12,-24],[-23,-10],[-97,-28],[-166,20],[-65,22],[-81,33],[-49,9],[-68,2],[-56,47],[-26,29],[-2,12],[3,14],[5,9],[9,5],[19,0],[2,5],[-14,23],[-14,-8],[-36,-33],[-16,2],[-21,16],[-1,16],[-41,6],[-36,20],[-36,28],[-5,11],[17,16],[-3,3],[-13,3],[-26,-5],[-39,-36],[-17,-9],[-257,-8],[-65,-4],[-13,-5],[-11,23],[-10,53],[-4,34],[3,17],[9,20],[14,-4],[13,-15],[12,-23],[14,-11],[89,28],[37,18],[15,18],[18,29],[20,16],[9,14],[18,46],[13,21],[14,16],[18,10],[40,7],[-27,11],[-24,0],[-85,-48],[-28,0],[1,7],[12,14],[29,24],[-20,1],[-8,11],[-1,22],[15,37],[69,47],[24,7],[7,10],[-9,7],[-14,5],[-70,-49],[-50,-17],[-15,3],[-26,19],[-8,9],[-12,22],[2,13],[24,38],[-4,8],[-17,3],[-44,36],[-71,-4],[-174,21],[-36,-9],[-59,-30],[-36,-10],[-16,6],[-15,16],[-14,22],[-12,27],[5,19],[23,11],[17,5],[47,-6],[58,19],[37,4],[10,3],[22,20],[11,5],[16,-7],[8,-14],[59,22],[20,10],[2,7],[9,8],[28,-12],[24,0],[29,8],[52,3],[115,2],[18,18],[8,15],[10,39],[-4,8],[-73,-36],[-16,1],[-84,19],[-30,21],[10,18],[44,37],[46,30],[67,32],[16,13],[2,15],[-45,26],[-85,-7],[-22,31],[-70,19],[-47,-12],[-25,19],[-61,-26],[-134,-38],[-54,-27],[-28,-8],[-33,21],[-57,25],[-64,7],[-6,14],[37,44],[26,8],[26,-4],[49,-30],[34,-10],[-43,45],[1,17],[-3,26],[-13,11],[-13,29],[5,9],[17,4],[34,-10],[82,-50],[40,9],[22,18],[29,14],[-8,7],[-70,1],[-38,10],[-19,14],[-17,25],[6,11],[20,10],[60,-3],[-40,43],[-27,24],[-3,12],[2,15],[3,10],[6,5],[69,-25],[15,-1],[-14,16],[-30,24],[-2,9],[13,7],[6,14],[1,11],[21,9],[21,1],[21,-9],[66,-46],[10,-13],[3,-17],[-3,-22],[2,-8],[26,7],[21,-9],[10,2],[26,32],[17,-7],[11,-15],[3,-14],[2,-18],[-5,-39],[1,-5],[18,22],[31,1],[4,11],[1,41],[-3,34],[-3,7],[-101,48],[-17,11],[-22,24],[5,11],[19,11],[30,4],[68,-1],[7,5],[-13,13],[-32,8],[-7,7],[-4,14],[-38,-8],[-42,0],[-40,8],[-1,11],[16,15],[33,26],[15,7],[46,-5],[46,8],[37,-9],[29,-26],[42,-45],[57,-29],[5,-9],[30,-24],[60,-63],[60,-37],[3,-10],[-10,-11],[-23,-13],[5,-7],[31,-9],[21,-25],[2,-11],[-20,-78],[-10,-16],[-13,-9],[-56,15],[14,-25],[40,-26],[9,-15],[-6,-14],[4,-4],[15,8],[6,-8],[-3,-24],[-6,-20],[-10,-16],[3,-7],[16,2],[14,-4],[23,-22],[19,-67],[9,-21],[7,19],[8,49],[8,25],[7,1],[7,8],[5,15],[11,55],[38,41],[18,12],[16,3],[9,-5],[28,-43],[17,-7],[9,2],[12,29],[15,56],[3,63],[-8,69],[5,49],[18,30],[23,9],[29,-12],[22,-18],[42,-68],[34,-36],[29,-39],[15,-12],[29,-7],[7,3],[6,9],[2,15],[-6,98],[8,31],[12,22],[53,12],[28,14],[28,22],[22,12],[19,2],[19,-9],[19,-19],[31,-37],[39,-61],[50,-46],[26,-73],[5,-13],[6,-1],[7,9],[4,14],[1,32],[-14,43],[-46,109],[-1,20],[6,17],[33,1],[75,-9],[25,-17],[51,-66],[15,-16],[8,-5],[4,9],[20,12],[13,15],[23,36],[51,66],[10,2],[15,-5],[26,-18],[12,-13],[24,-11],[25,4],[35,23],[38,14],[14,32],[2,15],[-31,97],[13,20],[68,24],[59,2],[14,-7],[38,-47],[25,-23],[13,-19],[3,-42],[15,-16],[29,-17]],[[31987,62401],[-21,-5],[-28,27],[22,10],[15,-6],[12,-26]],[[99603,81748],[-17,-10],[-10,25],[-1,15],[10,15],[17,-9],[10,-15],[-9,-21]],[[53975,72596],[-16,-9],[-17,17],[-4,11],[23,9],[12,-8],[4,-15],[-2,-5]],[[53871,75291],[-12,-5],[-7,6],[-4,9],[5,22],[25,-13],[-1,-12],[-6,-7]],[[53347,73016],[-13,-6],[-18,19],[-1,28],[3,9],[22,-13],[6,-26],[1,-11]],[[51759,82667],[-39,-20],[-10,4],[3,6],[34,12],[12,-2]],[[51647,82637],[-55,-9],[-19,7],[-3,6],[15,4],[47,1],[14,-6],[1,-3]],[[51419,82550],[-52,-42],[-4,6],[33,37],[23,-1]],[[51479,82595],[-26,-5],[-12,8],[63,23],[39,7],[7,-3],[-71,-30]],[[281,41487],[-8,-8],[-6,2],[-7,9],[-4,16],[9,14],[13,-16],[3,-17]],[[344,41339],[-3,-10],[-15,17],[-6,12],[16,9],[8,-3],[0,-25]],[[486,41501],[-16,-6],[-14,25],[9,26],[13,-7],[7,-25],[1,-13]],[[7926,42247],[-5,-4],[-6,10],[-2,16],[2,26],[13,-17],[6,-11],[-8,-20]],[[8385,41736],[-9,-15],[-11,11],[-5,14],[-2,15],[2,19],[26,-3],[8,-8],[-9,-33]],[[16581,71442],[-14,-1],[-23,6],[8,13],[12,10],[4,-7],[13,-21]],[[16823,70977],[-13,-1],[-17,5],[-8,31],[13,2],[13,-4],[10,-24],[2,-9]],[[31229,19648],[-10,-1],[-25,11],[-36,4],[-5,5],[0,8],[4,9],[20,7],[60,-6],[8,-4],[2,-7],[-10,-19],[-8,-7]],[[30583,59015],[1,-16],[-13,9],[-17,35],[-17,27],[4,29],[4,10],[18,-27],[17,-50],[3,-17]],[[31885,58125],[-15,-13],[-27,13],[-14,18],[9,21],[22,0],[21,-25],[4,-14]],[[29776,62659],[-5,-40],[-71,48],[-57,61],[2,33],[30,7],[28,-20],[41,-40],[32,-49]],[[43048,73133],[-2,-11],[-15,5],[-20,-4],[-11,31],[10,13],[22,3],[11,-14],[5,-23]],[[54625,76610],[51,-16],[38,8],[34,-10],[21,-19],[5,-9],[-28,-1],[-31,8],[-35,-19],[-31,10],[-12,12],[-8,15],[-4,21]],[[54776,76685],[-20,-6],[-123,4],[-36,12],[-40,31],[-9,9],[41,9],[37,-9],[12,-22],[101,-18],[37,-10]],[[54662,76768],[-44,-1],[-38,10],[-19,18],[2,15],[6,25],[42,-3],[65,-18],[15,-21],[-4,-9],[-25,-16]],[[49302,80353],[-10,-38],[-26,13],[-2,10],[29,22],[6,0],[3,-7]],[[49439,80202],[2,-29],[-12,-7],[-10,10],[-21,0],[-20,-6],[5,52],[38,-7],[18,-13]],[[90474,62651],[-9,-22],[-7,16],[-2,31],[13,-3],[4,-6],[1,-16]],[[90475,61255],[-6,-4],[-9,2],[-6,9],[-2,15],[18,1],[7,-12],[-2,-11]],[[90350,59998],[-13,-27],[-10,6],[-6,9],[-2,15],[22,15],[10,-5],[-1,-13]],[[33392,77153],[-37,-20],[-32,1],[-22,19],[-1,8],[51,-8],[19,5],[39,32],[-17,-37]],[[23051,67915],[-6,-1],[14,47],[2,19],[22,59],[12,9],[5,-25],[-23,-42],[-26,-66]],[[25308,68958],[-15,-30],[1,12],[11,30],[8,11],[-5,-23]],[[25400,69248],[-3,-6],[-25,12],[-15,11],[-2,11],[41,-20],[4,-8]],[[25535,69269],[-24,-12],[-36,1],[-8,4],[15,8],[43,11],[10,-12]],[[32496,62237],[-3,-15],[-18,13],[-10,13],[3,16],[14,14],[11,-2],[4,-5],[-1,-34]],[[31826,62272],[-22,-3],[-14,4],[-5,17],[27,16],[30,-2],[18,-10],[2,-6],[-36,-16]],[[32630,61705],[-14,-12],[-12,17],[3,40],[11,1],[11,-18],[1,-28]],[[32112,62479],[-7,-4],[-5,1],[-1,8],[5,23],[28,2],[-20,-30]],[[32039,62415],[-19,-15],[-12,2],[-5,6],[10,18],[26,-11]],[[32057,62443],[-22,-2],[-6,7],[12,18],[23,2],[6,-4],[-13,-21]],[[32009,62093],[24,-26],[28,0],[-30,-25],[-56,-3],[1,41],[33,13]],[[28514,66252],[-31,-12],[-23,11],[-5,10],[9,16],[21,13],[34,1],[15,-15],[2,-7],[-22,-17]],[[27487,66080],[-12,-13],[-13,10],[14,13],[43,15],[-16,-18],[-16,-7]],[[81730,64637],[-7,-9],[-19,42],[-1,14],[15,2],[16,-19],[0,-17],[-4,-13]],[[28737,71805],[-6,-1],[-11,6],[-15,12],[-4,9],[15,-3],[21,-23]],[[1344,39648],[4,0],[4,17],[15,7],[-1,-19],[-21,-59],[-12,23],[-37,38],[-8,29],[13,23],[-2,-18],[6,-8],[21,-4],[19,-15],[-12,-6],[11,-8]],[[64633,78001],[-5,-6],[-18,16],[-12,26],[15,31],[14,-5],[9,-33],[-3,-29]],[[63328,78045],[-4,-10],[-13,53],[-1,32],[8,17],[11,-54],[-1,-38]],[[33767,21882],[1,-50],[-22,16],[-8,24],[12,17],[11,-1],[6,-6]],[[61830,60658],[-9,-13],[-2,23],[5,50],[9,14],[7,-37],[-4,-20],[-6,-17]],[[61132,61107],[9,-56],[-27,21],[-5,12],[12,22],[3,13],[8,-12]],[[60250,66464],[-7,0],[-20,39],[-11,29],[-12,19],[-53,39],[-8,25],[9,25],[5,-25],[10,-14],[44,-36],[49,-76],[9,-7],[-15,-18]],[[60165,66654],[-3,-8],[-12,21],[1,44],[10,25],[-1,-34],[5,-35],[0,-13]],[[78143,53564],[-14,-10],[0,15],[2,21],[10,20],[5,-12],[-3,-34]],[[87420,48070],[-15,-6],[-8,48],[13,12],[14,-29],[-4,-25]],[[84332,50861],[-19,-4],[-13,17],[1,85],[12,18],[5,-3],[4,-25],[5,-23],[10,-21],[-5,-44]],[[85208,71626],[5,-27],[-22,5],[-12,26],[1,23],[14,3],[14,-30]],[[92467,95691],[-27,-20],[-64,33],[24,18],[43,12],[10,-6],[8,-13],[6,-24]],[[68706,91894],[-22,-50],[-46,3],[-14,11],[-6,9],[52,54],[32,-2],[4,-25]],[[68488,92477],[3,-23],[-15,8],[-19,26],[-11,32],[-4,64],[7,17],[6,9],[6,-2],[-1,-40],[28,-91]],[[65410,98083],[-79,-27],[-40,1],[-20,16],[32,23],[41,17],[31,-5],[23,-8],[12,-17]],[[55115,85846],[-12,-6],[-6,2],[7,27],[6,11],[19,11],[5,-2],[-19,-43]],[[55165,86100],[-7,-19],[-7,23],[3,5],[4,23],[14,12],[21,-7],[0,-6],[-20,-19],[-8,-12]],[[15874,79034],[-3,-11],[-4,1],[-8,23],[-1,16],[7,12],[10,-34],[-1,-7]],[[79367,45798],[-8,-41],[-14,23],[-17,7],[3,30],[14,5],[7,1],[10,11],[5,-36]],[[25994,61277],[-44,-45],[-14,1],[20,35],[33,30],[28,14],[23,-6],[-46,-29]],[[95548,8736],[-37,0],[-22,18],[-7,39],[1,13],[72,48],[58,12],[-31,-72],[-11,-12],[-23,-46]],[[95786,12937],[-24,-16],[-15,5],[-15,34],[16,53],[-6,69],[3,17],[39,-39],[7,-21],[16,-32],[3,-17],[-16,-32],[-8,-21]],[[96566,6830],[-34,-43],[-39,-19],[-123,16],[-86,-36],[-95,-13],[-45,19],[-20,35],[-10,47],[0,17],[27,7],[127,-33],[53,-29],[29,1],[76,38],[63,48],[16,23],[21,8],[27,-17],[13,-52],[0,-17]],[[95361,13351],[-5,-35],[-14,8],[-20,28],[-20,69],[18,7],[23,-12],[9,-34],[8,-18],[1,-13]],[[96411,7303],[105,-42],[275,4],[229,-39],[21,-40],[-65,-21],[-101,-53],[-65,-17],[-55,0],[-112,22],[-146,-3],[-31,-31],[-71,-31],[-82,-54],[-22,44],[-33,42],[-82,89],[-6,13],[45,17],[22,29],[47,39],[-5,24],[-39,26],[-15,22],[26,36],[58,16],[75,-15],[34,-48],[-6,-21],[-1,-8]],[[97178,9444],[-38,-12],[-51,37],[-12,12],[50,70],[-4,23],[7,19],[19,14],[12,-2],[29,-77],[20,-32],[-28,-31],[-4,-21]],[[95268,8313],[-50,-74],[-35,2],[-20,14],[36,41],[34,18],[21,5],[14,-6]],[[78050,14010],[-121,-14],[-10,15],[-45,2],[-16,12],[-6,28],[15,47],[24,32],[37,33],[18,7],[76,11],[55,-15],[39,-40],[11,-32],[-6,-21],[-71,-65]],[[73839,13275],[-48,-15],[-8,8],[-1,9],[-72,55],[-12,45],[7,31],[59,-3],[70,-27],[37,-69],[-32,-34]],[[75722,13935],[-37,-8],[-38,8],[-19,27],[-4,12],[15,19],[54,3],[38,-17],[8,-17],[2,-8],[-19,-19]],[[74039,13382],[-32,-14],[-25,3],[-29,31],[12,21],[30,13],[38,-7],[10,-11],[26,-7],[-30,-29]],[[73702,13472],[-30,-18],[-24,3],[-16,19],[-3,12],[15,38],[12,-2],[8,-20],[38,-32]],[[69421,10415],[-35,-74],[-13,2],[-15,43],[13,27],[16,16],[28,-8],[6,-6]],[[69016,10195],[-14,0],[7,23],[37,41],[28,50],[17,8],[31,-44],[-7,-37],[-41,-27],[-58,-14]],[[76836,13804],[32,-15],[57,2],[20,-22],[4,-25],[-1,-14],[-23,-21],[-150,-14],[-24,22],[26,61],[28,20],[31,6]],[[70000,11156],[-20,0],[-25,6],[-32,42],[-18,30],[-7,31],[3,61],[16,30],[26,12],[11,-28],[4,-32],[8,-21],[33,-30],[16,-25],[5,-14],[6,-29],[-5,-20],[-21,-13]],[[95169,13549],[-15,-27],[-13,3],[-58,69],[7,30],[-8,25],[1,23],[2,8],[71,-105],[13,-26]],[[77851,13700],[-37,-8],[-14,15],[-2,9],[27,33],[33,11],[-3,-39],[-4,-21]],[[77456,13554],[-26,-7],[-27,16],[-13,31],[-3,10],[42,8],[56,-30],[-29,-28]],[[78721,14144],[-17,-14],[-45,8],[-10,12],[-4,55],[-3,16],[-17,15],[-73,28],[-8,40],[10,18],[27,4],[67,-35],[15,-27],[-2,-41],[1,-13],[21,-27],[33,-28],[5,-11]],[[9003,7690],[3,-8],[-42,6],[-63,32],[-12,11],[28,11],[36,-10],[33,-20],[17,-22]],[[9656,8230],[-31,-3],[-53,14],[-140,46],[-30,23],[21,23],[50,16],[38,-5],[95,-43],[29,-31],[17,-23],[4,-17]],[[9276,7510],[-104,-25],[-27,7],[9,36],[-16,25],[-4,12],[9,17],[61,0],[172,-27],[23,-37],[-123,-8]],[[13225,8961],[-44,-32],[-86,21],[7,23],[78,20],[53,-13],[-8,-19]],[[8723,7484],[-116,-7],[-64,15],[-16,44],[18,9],[148,-20],[54,-11],[20,-13],[-10,-12],[-34,-5]],[[8518,7651],[113,-8],[74,6],[77,-14],[18,-16],[-14,-13],[-83,-4],[-40,-22],[-47,-3],[-71,16],[-64,35],[37,23]],[[13592,8880],[-31,-12],[-116,29],[-68,6],[-31,17],[-20,15],[-6,14],[-32,22],[62,44],[49,14],[47,-3],[10,-22],[90,-26],[70,-1],[7,-24],[-3,-34],[-28,-39]],[[16792,9152],[-58,-6],[-18,1],[-18,13],[-5,9],[30,30],[29,13],[9,10],[-40,101],[37,3],[43,20],[83,-2],[72,-18],[13,-15],[9,-25],[-31,-51],[-19,-18],[-108,-45],[-28,-20]],[[17572,9121],[-136,-16],[-37,18],[-10,22],[6,23],[277,125],[49,-17],[14,-8],[-83,-62],[-37,-22],[-6,-7],[20,-9],[6,-7],[-16,-17],[-47,-23]],[[14620,8857],[-42,-10],[-83,38],[-27,18],[-24,31],[-19,7],[-7,6],[-11,80],[25,9],[53,-11],[102,-42],[71,-12],[24,-32],[-24,-56],[-38,-26]],[[8550,7294],[81,-29],[-142,9],[-62,41],[40,15],[40,-3],[35,-21],[8,-12]],[[5002,3963],[-87,-13],[-206,26],[-54,21],[-30,22],[-56,20],[-14,11],[0,24],[-9,14],[-19,13],[-9,13],[-17,8],[277,-12],[108,-20],[20,-14],[195,-60],[-53,-9],[-46,-44]],[[8269,7617],[-118,-8],[-48,16],[-12,15],[10,13],[183,13],[20,-16],[6,-10],[-41,-23]],[[9253,7922],[-57,-8],[-71,36],[-54,29],[-18,25],[-3,8],[0,10],[16,6],[115,-21],[72,-85]],[[9225,7699],[-33,-46],[-87,24],[-37,30],[21,39],[40,12],[52,-14],[19,-5],[25,-40]],[[5426,4844],[-29,-5],[-745,67],[-143,22],[-34,12],[-14,11],[-3,8],[6,22],[17,16],[185,25],[207,-19],[250,-48],[172,-38],[89,-34],[37,-26],[5,-13]],[[8223,7275],[-22,-2],[-241,44],[-47,13],[82,27],[54,4],[146,-66],[39,-8],[-11,-12]],[[7241,5741],[-51,-2],[-65,6],[-50,14],[-114,20],[-29,38],[-134,31],[-62,10],[21,37],[142,-49],[175,-49],[141,-30],[26,-26]],[[8547,7418],[-17,-9],[-121,5],[-25,8],[-11,9],[-168,13],[-76,41],[-15,13],[30,20],[57,12],[23,16],[145,14],[23,-8],[13,-22],[66,-43],[17,-27],[7,-18],[36,-8],[16,-16]],[[6115,4547],[-25,-4],[-22,31],[-108,63],[-64,42],[-42,33],[-18,23],[21,0],[158,-70],[24,-27],[118,-48],[-42,-43]],[[48362,11202],[-73,-34],[-6,15],[-24,20],[-48,56],[54,4],[49,24],[27,-10],[6,-6],[15,-69]],[[50843,11176],[-94,-15],[-21,17],[-11,34],[13,20],[123,68],[33,-6],[11,-6],[8,-26],[-11,-41],[-14,-20],[-37,-25]],[[49179,10821],[-30,-13],[-39,3],[-30,17],[-21,34],[-5,13],[3,22],[-2,11],[38,6],[14,-14],[6,-11],[66,-68]],[[50360,11373],[-24,-73],[-15,2],[-15,43],[-31,46],[-11,32],[-1,43],[22,25],[80,16],[27,-10],[13,-55],[-45,-69]],[[49296,11078],[30,-19],[47,3],[45,-15],[-7,-20],[-26,-26],[-22,-56],[-22,-26],[-66,-56],[-49,-15],[-11,31],[1,32],[4,25],[2,18],[-46,24],[-3,33],[-9,19],[-134,66],[-23,19],[10,12],[138,5],[81,-12],[60,-42]],[[51257,11244],[-45,-13],[-51,29],[-14,20],[-15,53],[-2,20],[12,13],[40,15],[66,-6],[25,-24],[9,-43],[-8,-37],[-17,-27]],[[63484,13373],[-46,-14],[-21,6],[-2,14],[-1,13],[2,15],[16,12],[78,1],[31,-10],[9,-7],[1,-21],[-3,-6],[-64,-3]],[[54506,11516],[-18,-37],[-87,51],[-51,16],[-13,9],[-12,32],[-3,12],[10,20],[28,32],[59,26],[93,13],[91,-10],[15,-16],[-86,-54],[-26,-94]],[[57460,11301],[-18,-22],[-51,4],[-39,-21],[-31,8],[-98,35],[-11,45],[-3,20],[8,35],[88,73],[35,7],[50,-10],[22,-21],[14,-41],[39,-83],[-5,-29]],[[41355,5876],[38,-12],[40,28],[-6,26],[23,45],[33,-49],[219,-52],[71,-50],[-29,-12],[-22,2],[-64,-5],[-109,-43],[-117,41],[-209,29],[-63,22],[-49,68],[88,56],[21,-6],[135,-88]],[[40573,6151],[-32,-21],[-675,36],[-33,7],[9,43],[92,7],[52,8],[72,19],[53,33],[18,1],[317,-77],[111,-32],[13,-15],[3,-9]],[[49088,11213],[-45,-1],[-13,16],[-2,11],[58,83],[32,21],[62,16],[40,-5],[26,-18],[8,-33],[0,-49],[-15,-26],[-151,-15]],[[44275,9281],[-13,-125],[4,-27],[11,-26],[49,-70],[4,-52],[-2,-20],[-20,-29],[-69,7],[-22,15],[-8,10],[-36,122],[-21,29],[-32,25],[-123,23],[-118,-8],[29,28],[178,39],[45,29],[28,34],[13,52],[31,65],[49,30],[31,3],[16,-53],[0,-50],[-24,-51]],[[45526,9977],[-19,-14],[-40,1],[-38,28],[-16,41],[-1,29],[17,33],[27,9],[15,-11],[36,-71],[19,-45]],[[46525,10268],[-22,-13],[-37,5],[-47,29],[-15,22],[-5,20],[13,29],[11,8],[24,-4],[42,-37],[29,-40],[7,-19]],[[41016,5948],[-48,-6],[-19,15],[23,38],[34,33],[63,3],[60,-22],[-6,-21],[-13,-2],[-94,-38]],[[37300,16980],[61,-14],[31,-21],[8,-24],[36,-9],[5,-5],[7,-14],[4,-15],[-1,-20],[-62,48],[-86,3],[-20,34],[-44,-20],[-5,13],[0,17],[6,24],[28,-10],[32,13]],[[34980,16532],[-12,-5],[-19,22],[-3,13],[20,26],[20,35],[7,4],[-5,-70],[-8,-25]],[[31316,6075],[-48,-28],[-202,13],[-69,9],[-39,15],[36,60],[27,20],[25,8],[56,33],[88,8],[67,-6],[113,-26],[-29,-25],[-19,-9],[-18,-38],[12,-34]],[[34676,16577],[-37,-16],[-13,22],[-7,37],[-19,23],[14,20],[199,-26],[-11,-13],[-96,-17],[-30,-30]],[[34575,15452],[17,-15],[70,1],[16,-4],[14,-25],[9,-43],[-23,-17],[-121,10],[-44,22],[-22,-1],[-49,-24],[-21,-24],[-82,-32],[-23,12],[-11,34],[-1,14],[8,9],[4,9],[-1,11],[22,29],[95,44],[126,16],[17,-16],[0,-10]],[[34480,15244],[-24,-26],[-61,39],[-16,25],[7,19],[98,17],[26,-9],[12,-40],[-42,-25]],[[34100,14650],[-24,-2],[-30,17],[-4,30],[0,16],[23,13],[14,2],[81,47],[36,12],[-16,-29],[2,-26],[-13,-23],[-69,-57]],[[33656,15954],[-62,-26],[-32,27],[-7,10],[38,26],[20,-6],[8,-9],[23,-2],[12,-20]],[[33895,16179],[35,-16],[31,11],[17,-12],[12,-33],[-1,-12],[-47,5],[-43,-38],[-51,8],[-7,-31],[11,-17],[-14,-14],[-44,30],[-35,-11],[-11,-51],[-16,-10],[-8,-2],[-14,13],[-29,4],[-2,7],[-18,20],[-51,-22],[13,26],[68,69],[8,21],[79,40],[37,-9],[80,24]],[[32791,14932],[-26,-2],[7,31],[23,21],[38,14],[-24,-35],[-7,-16],[-11,-13]],[[32778,11680],[-24,-4],[-24,53],[-13,82],[-77,119],[-20,62],[14,15],[21,5],[56,-17],[34,-23],[38,-49],[46,-44],[9,-37],[-7,-42],[-29,-11],[1,-31],[-17,-60],[-8,-18]],[[32412,14480],[-44,-26],[-23,0],[27,64],[26,2],[41,36],[11,-5],[-22,-30],[-16,-41]],[[32687,14732],[-20,-23],[-16,-4],[-15,10],[-20,-35],[-40,11],[-16,9],[10,5],[7,15],[22,31],[38,79],[7,25],[-31,41],[-5,13],[7,24],[11,17],[26,19],[34,0],[17,-16],[0,-29],[58,-27],[-10,-56],[-22,-35],[-3,-42],[-33,-19],[-6,-13]],[[32607,15512],[-12,-2],[5,24],[31,62],[58,29],[-7,-25],[-19,-31],[-56,-57]],[[33503,15872],[-38,-4],[-26,33],[-12,23],[51,2],[23,-9],[12,-26],[-10,-19]],[[34427,15507],[-55,-54],[-26,2],[-54,41],[-15,21],[-3,9],[34,37],[97,-14],[22,-4],[1,-3],[2,-21],[-3,-14]],[[33159,15806],[14,-7],[121,13],[38,-40],[43,2],[-103,-75],[-28,22],[-9,16],[-7,36],[-67,-9],[-22,7],[-27,-24],[-55,-10],[-19,0],[-24,26],[-1,26],[49,-1],[38,33],[11,34],[19,-9],[29,-40]],[[34062,15087],[4,-10],[56,6],[15,-15],[-31,-20],[-8,4],[-27,-6],[-76,15],[-18,23],[67,13],[18,-10]],[[33011,11534],[-42,-1],[-19,16],[-7,10],[5,23],[16,21],[49,-16],[12,-41],[-14,-12]],[[33151,12230],[-11,-16],[-35,10],[-20,11],[-34,28],[19,17],[37,-4],[30,-20],[14,-26]],[[33127,11111],[-23,0],[-20,12],[-17,35],[-5,17],[9,38],[16,9],[92,5],[28,-20],[1,-34],[-10,-25],[-71,-37]],[[33180,10914],[-28,-4],[-38,10],[-33,20],[-11,23],[16,19],[30,12],[47,-4],[22,-24],[5,-22],[-6,-23],[-4,-7]],[[33193,15571],[-14,-6],[-18,5],[0,-10],[15,-13],[-16,-5],[-19,13],[-14,27],[10,25],[19,6],[37,-42]],[[33152,15053],[-35,-20],[-21,6],[-33,24],[45,7],[4,70],[22,27],[43,-15],[-26,-37],[-9,-28],[9,-24],[1,-10]],[[23945,9838],[-47,0],[-31,21],[-10,14],[19,21],[11,2],[57,-36],[12,-15],[-11,-7]],[[24677,9687],[-51,-14],[-46,6],[17,132],[26,33],[-7,24],[-47,66],[-33,75],[16,17],[86,27],[99,-5],[39,-32],[12,-40],[-5,-29],[-32,-53],[33,-18],[7,-36],[-7,-44],[-32,-52],[-30,-31],[-45,-26]],[[20961,9696],[-33,-26],[-62,6],[-48,43],[-19,58],[-2,20],[13,15],[31,14],[120,-130]],[[23603,9985],[-53,-3],[-15,13],[16,28],[128,47],[52,28],[8,-4],[7,-9],[22,-56],[2,-14],[-167,-30]],[[30084,11367],[14,-17],[60,16],[21,-17],[4,-12],[-27,-42],[-32,-28],[-37,-2],[-27,71],[-3,18],[27,13]],[[30004,11694],[-60,-24],[-40,19],[-120,36],[-50,66],[5,35],[23,21],[36,11],[73,-22],[37,-23],[96,-119]],[[29478,9586],[-27,-11],[-17,6],[-31,29],[4,23],[14,15],[10,17],[60,62],[44,7],[36,-13],[-39,-59],[-10,-41],[-44,-35]],[[31709,13915],[-60,-22],[-31,8],[-2,23],[8,31],[29,16],[-5,46],[18,19],[9,35],[38,26],[54,-12],[-8,-45],[-1,-16],[-32,-12],[-8,-7],[-7,-30],[1,-43],[-3,-17]],[[31501,13709],[-62,-65],[-9,4],[-5,7],[1,11],[20,24],[4,70],[41,26],[16,-9],[-14,-30],[9,-26],[-1,-12]],[[31292,12807],[-55,-11],[-41,12],[1,44],[-11,5],[-4,10],[52,33],[39,8],[47,-5],[20,-14],[7,-15],[-36,-36],[-6,-14],[-13,-17]],[[31288,13309],[-13,-4],[-31,2],[-20,13],[26,41],[-3,28],[23,11],[26,-10],[18,-35],[3,-15],[-29,-31]],[[0,42174],[30,49],[9,7],[10,-45],[-12,-49],[-30,-43],[-7,-22],[0,103]],[[0,42344],[16,28],[12,5],[-8,-27],[0,-14],[-20,-21],[0,29]],[[99999,42071],[-21,-21],[-8,21],[10,50],[19,52],[0,-42],[0,-60]],[[28084,56609],[-6,-24],[-13,54],[2,14],[-1,49],[13,13],[9,1],[7,-7],[5,-58],[-4,-26],[-12,-16]],[[93002,80248],[-27,-25],[-28,15],[0,50],[59,153],[21,-9],[-5,-37],[-22,-57],[7,-69],[-5,-21]],[[66475,98677],[-60,-7],[-105,12],[-30,14],[7,13],[68,18],[54,4],[57,-19],[26,-23],[-17,-12]],[[65115,98198],[-39,-30],[-129,32],[11,16],[14,6],[0,16],[-12,12],[5,24],[83,-18],[8,-7],[56,-12],[9,-24],[-6,-15]],[[66983,98473],[-87,-12],[-141,15],[-73,17],[6,8],[19,10],[122,41],[242,9],[30,-30],[-26,-23],[-92,-35]],[[64866,98032],[-184,-7],[-62,4],[-8,7],[-15,6],[-58,6],[-36,29],[16,8],[85,12],[29,12],[10,17],[38,31],[92,6],[40,-6],[5,-20],[39,-25],[101,-32],[-20,-23],[-35,-3],[-37,-22]],[[65855,98128],[12,-20],[-1,-71],[-13,-31],[2,-26],[-26,-13],[-218,3],[-108,6],[-25,10],[61,34],[19,23],[-6,67],[10,12],[175,-6],[14,19],[66,1],[38,-8]],[[66580,97900],[-100,-19],[-35,6],[-10,9],[-19,9],[-50,12],[7,33],[16,7],[150,37],[72,-21],[30,-51],[-61,-22]],[[31535,20029],[-22,-25],[-16,1],[-6,9],[-1,12],[3,12],[7,11],[16,14],[5,2],[24,-14],[-10,-22]],[[29155,25984],[-7,-9],[-9,3],[-7,18],[-5,31],[10,12],[7,0],[9,-17],[4,-26],[-2,-12]],[[29025,23753],[-32,-1],[-7,103],[36,149],[3,56],[-12,43],[-5,35],[3,14],[47,30],[14,-32],[18,-83],[33,-119],[-1,-114],[-18,-28],[-58,-29],[-21,-24]],[[29082,22649],[-7,-53],[-23,5],[-7,13],[-4,34],[-7,16],[9,34],[7,37],[-2,29],[34,-2],[41,-7],[11,-8],[-12,-25],[-12,-16],[-25,-9],[-3,-48]],[[29337,21357],[5,-5],[10,1],[16,-9],[58,-11],[52,-27],[27,-26],[35,-7],[29,-33],[13,-8],[15,-2],[39,-60],[2,-7],[44,-47],[2,-7],[-25,-3],[-51,22],[-25,1],[-19,7],[-4,4],[-4,27],[-5,13],[-49,63],[-21,14],[-35,12],[-40,-8],[-28,8],[-9,-3],[-40,50],[-40,42],[-17,50],[-25,38],[-1,11],[12,9],[27,-22],[27,-37],[15,-14],[10,-36]],[[30638,20207],[223,-57],[68,35],[55,-1],[16,-48],[-55,-49],[-5,-16],[8,-13],[57,-8],[14,-16],[13,-20],[-11,-31],[-1,-14],[6,-14],[42,-46],[18,-24],[9,-23],[3,-40],[-1,-32],[-9,-4],[-21,10],[-20,18],[-18,46],[-12,10],[-36,9],[-35,22],[-28,-1],[-25,10],[-23,-9],[-8,16],[-10,30],[0,14],[12,48],[0,13],[-7,1],[-26,-10],[-11,7],[-29,35],[-11,7],[-29,3],[-17,-62],[-1,-16],[17,-39],[33,-61],[-17,-1],[-47,19],[-13,11],[-14,31],[-28,18],[-10,11],[-3,13],[-1,40],[-6,6],[-40,-11],[-8,10],[-3,17],[-6,9],[-26,16],[-2,9],[11,12],[7,28],[10,104],[51,-22]],[[29137,23711],[-3,-46],[-41,-88],[-35,-52],[-32,-41],[-21,0],[-17,20],[19,33],[24,32],[-8,42],[-7,13],[-10,4],[-17,22],[5,33],[10,15],[14,12],[12,-7],[54,23],[17,18],[32,4],[4,-37]],[[33302,22237],[-38,0],[-8,19],[1,47],[28,4],[29,-20],[-2,-20],[-10,-30]],[[42704,18182],[1,-33],[-43,30],[-10,14],[14,19],[27,0],[7,-11],[4,-19]],[[64934,59122],[17,-7],[26,20],[74,3],[90,-65],[-17,-16],[-10,-24],[-39,-21],[-40,-49],[-114,-24],[-33,13],[-28,48],[-51,62],[20,40],[5,18],[7,17],[29,30],[29,-4],[35,-41]],[[64814,65816],[-21,-3],[-18,22],[39,29],[11,13],[11,27],[9,-23],[-10,-36],[-7,-16],[-14,-13]],[[66311,63489],[-17,-8],[-6,4],[1,73],[40,91],[27,106],[19,-94],[-33,-53],[-17,-91],[-14,-28]],[[64615,65834],[-5,-4],[-4,31],[0,9],[13,15],[7,-26],[-11,-25]],[[65607,67350],[-26,-69],[-39,-58],[-17,18],[-12,0],[-28,-23],[-20,-3],[-37,-40],[-33,-20],[-23,2],[-8,4],[-5,27],[0,10],[15,-5],[51,36],[64,58],[6,26],[-10,43],[3,9],[41,-21],[46,42],[39,11],[19,-29],[-26,-18]],[[64979,65770],[0,-20],[-28,6],[-7,-10],[-24,5],[-22,14],[15,24],[40,28],[17,-26],[9,-21]],[[61663,61471],[21,-3],[-9,19],[-2,9],[10,26],[30,-55],[-1,-64],[-2,-15],[-8,14],[-6,13],[-2,15],[-8,16],[-30,-10],[-18,17],[-27,55],[-7,39],[11,8],[12,19],[7,31],[-7,32],[16,-5],[9,-33],[1,-75],[3,-16],[-5,-17],[12,-20]],[[61150,60884],[11,-30],[8,3],[7,10],[4,21],[44,-42],[-3,-29],[-26,-1],[-30,12],[-28,-4],[-33,12],[-8,48],[21,-23],[11,6],[2,6],[-15,33],[-21,6],[1,26],[10,10],[6,12],[-13,36],[24,-9],[15,-21],[10,-25],[3,-57]],[[61876,59737],[-18,-18],[12,46],[13,9],[4,-2],[-11,-35]],[[64057,66752],[-9,-44],[-9,16],[-21,76],[6,53],[-10,76],[5,22],[26,11],[6,-4],[-8,-24],[15,-43],[2,-70],[-3,-69]],[[61885,59891],[-4,-13],[-5,3],[-17,31],[19,34],[10,-32],[-3,-23]],[[63409,68907],[-16,-13],[-10,6],[-11,31],[-17,77],[10,29],[-1,12],[2,9],[5,6],[6,36],[7,12],[12,-25],[33,-88],[0,-37],[-2,-14],[-18,-41]],[[99839,41839],[-10,-16],[-4,79],[9,0],[7,-8],[4,-20],[-6,-35]],[[99818,41415],[-2,-5],[-24,46],[0,19],[5,16],[9,15],[9,-26],[7,-44],[-4,-21]],[[99673,41630],[-14,-10],[-8,35],[11,35],[12,4],[6,-36],[-7,-28]],[[96790,42177],[8,-8],[-4,-24],[-39,27],[-30,-10],[-9,1],[-9,22],[-7,44],[3,30],[13,22],[5,3],[10,-26],[8,-18],[9,-8],[19,-43],[23,-12]],[[96748,42432],[-32,-6],[-44,18],[-18,25],[-8,25],[15,19],[23,9],[27,57],[10,-22],[10,-64],[11,-20],[6,-19],[0,-22]],[[96790,41738],[27,-82],[11,-7],[-17,-59],[-34,-5],[-41,15],[15,20],[-8,23],[-13,5],[-14,-11],[-6,4],[9,38],[23,53],[6,4],[6,1],[6,-5],[30,6]],[[96641,42951],[-19,-26],[-34,2],[-13,15],[42,80],[49,17],[-25,-88]],[[96317,43302],[18,-191],[21,1],[11,10],[12,45],[5,70],[11,10],[14,-8],[-6,-22],[4,-56],[10,-31],[7,-6],[14,-146],[6,-31],[-1,-25],[-29,-54],[-44,1],[-30,-33],[-19,3],[0,37],[-17,29],[-19,63],[5,112],[-33,208],[-1,52],[12,68],[11,3],[15,-56],[23,-53]],[[96725,42643],[-5,-1],[-4,27],[-16,141],[10,126],[7,-27],[23,-221],[-3,-36],[-12,-9]],[[96718,43013],[-5,-36],[-11,41],[-7,175],[3,16],[6,1],[14,-121],[0,-76]],[[96503,42571],[12,-13],[7,0],[4,-28],[40,-56],[11,2],[9,-31],[17,-15],[5,-31],[12,-32],[-21,-38],[-41,10],[-24,-44],[-21,11],[-4,23],[3,8],[-13,58],[-5,90],[-9,52],[-9,23],[-20,-20],[-8,-3],[-18,43],[9,87],[4,25],[15,5],[23,-23],[22,-103]],[[96449,42785],[-5,-15],[-30,37],[7,36],[32,-12],[-4,-46]],[[94410,46927],[0,-14],[-37,48],[-28,59],[-81,64],[-17,33],[-15,4],[-41,54],[-41,36],[-25,47],[-6,19],[-15,11],[-25,51],[-25,34],[-9,62],[-24,43],[-6,19],[77,-35],[36,-68],[30,-38],[11,-28],[27,-38],[25,-4],[24,-38],[23,-10],[18,-20],[114,-172],[-14,-46],[15,-33],[9,-40]],[[93745,47620],[9,-20],[-21,-35],[-29,19],[-6,19],[0,11],[-20,-7],[-40,17],[-54,82],[-58,156],[-56,86],[-11,26],[-1,45],[8,17],[34,-19],[45,-71],[74,-73],[20,-38],[12,-90],[13,-27],[40,-69],[21,-16],[11,-3],[9,-10]],[[92682,49481],[-2,-13],[-17,15],[14,30],[6,2],[-1,-34]],[[83655,55342],[15,-41],[19,11],[30,-12],[6,-22],[-1,-14],[-32,-40],[-21,42],[-38,-29],[-18,17],[-24,-15],[-15,33],[6,31],[39,51],[34,-12]],[[81780,47733],[-4,-22],[-14,5],[-13,38],[6,10],[8,4],[9,-4],[8,-31]],[[87319,71706],[-5,-11],[-5,3],[-18,-26],[-4,25],[-13,17],[-2,13],[40,9],[13,-7],[-6,-23]],[[29135,24286],[-20,-7],[-3,19],[-18,31],[16,21],[31,21],[24,-2],[22,-17],[3,-19],[-38,-25],[-9,-14],[-8,-8]],[[29258,26723],[-39,-10],[-9,17],[0,15],[7,12],[20,7],[13,-9],[7,-15],[2,-12],[-1,-5]],[[29546,26024],[-9,-7],[-8,1],[-8,20],[-3,26],[-18,39],[-5,18],[0,22],[10,32],[16,9],[10,-2],[13,-37],[3,-40],[4,-42],[-5,-39]],[[29287,23852],[-6,-14],[-34,9],[-59,-15],[-25,52],[-11,83],[-8,18],[-14,47],[-8,31],[-15,48],[-6,51],[-3,16],[13,30],[62,29],[22,48],[19,-6],[-5,-98],[11,-33],[22,-28],[3,-11],[4,-35],[11,-53],[13,-26],[4,-15],[0,-13],[-5,-19],[15,-96]],[[32069,20324],[31,-13],[61,10],[32,0],[14,-5],[6,-7],[42,11],[18,-1],[-5,-25],[-38,-24],[-16,10],[-82,-2],[-36,-25],[-15,0],[-36,-36],[-26,23],[-7,21],[18,29],[18,1],[12,12],[9,21]],[[32812,29278],[3,-36],[-15,4],[-34,35],[-12,33],[-2,14],[35,-15],[16,-14],[9,-21]],[[33421,21755],[-18,-11],[-5,5],[-5,22],[-1,28],[-2,12],[12,-4],[20,-22],[-1,-30]],[[33050,22012],[20,-8],[20,3],[-11,-59],[-9,-28],[-24,2],[-23,39],[-8,20],[26,15],[9,16]],[[29743,21035],[8,-46],[4,-9],[20,7],[34,4],[57,-17],[6,-6],[24,-51],[19,-22],[28,-47],[-28,-32],[-17,-45],[-1,-23],[-11,-13],[-17,-14],[-26,-27],[-31,-3],[-31,-14],[-15,-12],[-8,-1],[-10,7],[-11,13],[-4,15],[22,14],[28,50],[5,52],[-30,9],[-18,-7],[-14,0],[-15,16],[-9,-24],[-4,-24],[4,-36],[-3,-11],[-10,-7],[-26,14],[-26,24],[-2,14],[6,48],[-1,25],[-5,37],[-3,3],[-10,0],[-31,-7],[-31,46],[-16,49],[-57,14],[44,69],[67,10],[22,-35],[74,-24],[-4,37],[1,13],[10,16],[6,2],[9,-12],[14,-5],[7,-11],[6,-23]],[[31366,20072],[-8,-22],[-17,-29],[-24,-23],[-23,-6],[-16,12],[-9,20],[-4,21],[-5,11],[-9,2],[-11,0],[-14,-8],[-29,-29],[-13,-8],[-9,-2],[-84,22],[-8,9],[-10,19],[-11,59],[-35,52],[54,29],[65,0],[125,-22],[49,-5],[39,-50],[6,-30],[1,-22]],[[30280,20237],[13,-37],[4,-6],[35,-15],[15,9],[37,4],[23,14],[32,7],[38,-90],[-4,-28],[-30,-30],[-20,-6],[-19,9],[2,15],[-4,13],[-13,17],[-12,-1],[-19,-13],[-10,2],[-19,14],[-35,10],[-7,13],[0,19],[-7,9],[-36,31],[-23,25],[-20,4],[-7,-3],[-7,-13],[-17,-11],[-5,2],[-6,9],[-3,14],[7,29],[11,3],[49,-6],[30,-13],[27,0]],[[31308,19713],[-10,-4],[-7,10],[-12,8],[-46,16],[-1,10],[5,14],[9,12],[18,13],[14,32],[7,-3],[6,-13],[11,-44],[14,-32],[-2,-11],[-6,-8]],[[29289,22305],[-1,-48],[-8,-15],[-8,-5],[-20,15],[-11,1],[-18,-25],[-16,-13],[-23,3],[-31,17],[-27,-72],[-13,-25],[-27,-33],[-3,39],[17,60],[8,40],[16,60],[31,-22],[44,22],[41,41],[34,1],[12,-23],[3,-18]],[[29151,22870],[-54,-46],[-16,19],[-39,0],[10,50],[4,37],[6,14],[2,32],[12,58],[32,-19],[24,-6],[33,-19],[36,-12],[10,-51],[-34,-23],[-26,-34]],[[29216,22102],[11,-112],[9,-16],[28,-8],[31,-57],[1,-16],[-37,-96],[-8,-69],[-43,5],[-19,68],[-27,66],[-10,77],[-15,66],[27,38],[26,-8],[1,50],[25,12]],[[29497,26597],[6,-29],[-13,-4],[-19,5],[-10,-23],[-5,-4],[-45,20],[-7,9],[1,29],[48,3],[31,19],[4,-3],[9,-22]],[[30169,20718],[62,-46],[40,0],[0,-28],[5,-49],[-6,-20],[-16,-20],[-9,-29],[-7,-5],[-45,35],[-47,48],[-24,-9],[-31,12],[-25,-3],[-16,-27],[-36,-14],[-7,54],[-33,51],[-33,41],[18,63],[22,10],[20,21],[81,-22],[42,-19],[45,-44]],[[29405,21928],[-9,-6],[-30,14],[-16,12],[-24,30],[-3,31],[-11,38],[7,0],[25,-15],[10,-11],[13,-24],[40,-34],[5,-10],[-1,-13],[-6,-12]],[[29518,26270],[-14,-25],[-22,-4],[-33,-29],[-4,-25],[-1,-30],[23,-37],[11,-43],[14,-64],[10,-61],[-1,-19],[2,-31],[17,-50],[1,-22],[-1,-22],[-7,-41],[-5,-5],[-17,-4],[-1,-25],[-4,-8],[-46,-3],[-23,12],[2,74],[-29,30],[-20,49],[-23,85],[-19,27],[-22,67],[-33,58],[38,36],[-6,64],[22,22],[33,23],[25,-18],[22,6],[10,16],[-3,65],[7,52],[25,26],[26,3],[10,-29],[13,-28],[32,-23],[-1,-29],[-8,-40]],[[29357,25523],[-15,-26],[-27,-12],[-27,20],[-32,-9],[-3,43],[12,36],[24,43],[18,58],[-2,81],[14,18],[8,29],[31,18],[7,-61],[-8,-107],[20,-64],[3,-21],[-4,-24],[-19,-22]],[[29565,78034],[-22,-11],[-36,11],[-41,-15],[-11,0],[30,42],[46,27],[46,80],[13,2],[-18,-91],[-3,-33],[-4,-12]],[[29529,78102],[-34,-12],[-11,5],[37,56],[42,13],[-34,-62]],[[33066,78046],[-12,-4],[-2,8],[-18,24],[-1,12],[15,11],[32,-6],[-12,-30],[-2,-15]],[[32801,79080],[10,-11],[18,1],[12,-4],[-17,-21],[-33,-3],[-16,9],[23,110],[27,26],[56,71],[22,22],[21,9],[21,-5],[-22,-43],[-30,-2],[-28,-35],[-18,-40],[-23,-22],[-15,-27],[-8,-35]],[[32081,79427],[-7,-42],[-25,-36],[-12,-2],[-5,3],[6,23],[0,40],[20,6],[7,-4],[16,12]],[[32090,79469],[-32,-30],[14,45],[6,11],[5,5],[5,-4],[2,-27]],[[30270,78843],[-25,-5],[6,20],[35,36],[25,20],[15,0],[-24,-44],[-32,-27]],[[31590,77357],[-14,-21],[4,20],[17,51],[11,7],[-18,-57]],[[30938,77301],[-11,-11],[-11,3],[0,29],[3,9],[4,5],[6,-8],[9,-27]],[[31455,77581],[-38,-31],[15,78],[12,24],[15,-8],[-2,-47],[-2,-16]],[[31059,77380],[-16,-11],[-18,4],[0,-30],[-2,-11],[-19,16],[-8,10],[1,40],[17,38],[14,15],[17,-10],[13,-43],[1,-18]],[[81623,47750],[-6,-9],[-47,5],[-30,-47],[-21,-14],[-76,0],[-9,6],[-7,0],[-4,-10],[-24,7],[-77,42],[-10,38],[12,42],[27,58],[56,12],[252,4],[27,-51],[3,-16],[-55,-35],[-11,-32]],[[94132,20328],[-9,-23],[-3,26],[17,114],[17,20],[-3,-60],[-19,-77]],[[1680,41106],[-11,-34],[-5,0],[-12,20],[-5,13],[19,40],[10,3],[12,-13],[0,-12],[-8,-17]],[[7942,42120],[-11,0],[-10,9],[2,59],[3,12],[15,-20],[13,-52],[-12,-8]],[[6294,52912],[46,-67],[-20,-5],[-48,32],[-44,66],[13,15],[7,-24],[20,-22],[12,46],[7,11],[-35,48],[14,-3],[33,-32],[-5,-65]],[[11382,46258],[42,-30],[13,3],[-13,-29],[-42,-16],[-14,-15],[-16,10],[-9,34],[39,43]],[[11372,46122],[-20,-45],[-1,48],[8,6],[7,0],[6,-9]],[[11486,45785],[-10,-9],[-1,61],[13,-12],[5,-9],[-2,-17],[-5,-14]],[[8522,41653],[40,-27],[7,-44],[-8,-29],[-21,7],[-10,16],[-14,52],[-39,-12],[-27,11],[-15,67],[0,31],[6,19],[29,20],[36,-15],[13,-38],[3,-58]],[[11091,46710],[-27,-14],[-13,3],[-10,47],[3,29],[5,9],[46,-11],[4,-22],[-1,-20],[-7,-21]],[[11090,46413],[-6,-11],[-11,35],[-2,14],[20,18],[11,-9],[-12,-47]],[[2130,44086],[31,-54],[12,-72],[-13,-69],[-30,17],[-42,-15],[-15,5],[-34,85],[-23,38],[-10,35],[30,-4],[44,24],[50,10]],[[290,41893],[-7,-20],[-6,7],[8,33],[1,15],[-12,17],[-1,12],[3,8],[15,-20],[9,-15],[1,-8],[-2,-15],[-9,-14]],[[5739,54103],[22,-49],[-4,-24],[-16,2],[-7,8],[12,5],[2,9],[-6,14],[-7,10],[-5,0],[-2,-20],[-8,16],[5,15],[6,10],[8,4]],[[2374,43751],[-76,0],[-38,26],[-13,0],[-33,55],[-5,28],[17,19],[36,10],[70,-41],[11,-37],[16,-4],[13,-16],[3,-26],[-1,-14]],[[2576,43576],[-12,-5],[-14,27],[28,21],[8,11],[34,-6],[-20,-8],[-24,-40]],[[2832,40850],[-28,-31],[-12,37],[11,48],[13,12],[8,2],[11,-45],[-3,-23]],[[1066,44162],[-4,-4],[-5,22],[7,34],[6,12],[6,-26],[-10,-38]],[[1413,39573],[-2,-87],[-13,40],[-2,18],[14,27],[3,2]],[[87387,56095],[-17,-12],[-8,44],[3,51],[11,39],[12,13],[2,4],[12,51],[3,-28],[-8,-93],[-9,-37],[-1,-32]],[[90493,62257],[-14,-13],[17,57],[5,10],[8,-21],[-16,-33]],[[90486,60560],[-1,-15],[-14,4],[-4,6],[8,52],[20,24],[10,5],[-9,-25],[-2,-27],[-8,-24]],[[90205,59480],[-12,-1],[-10,20],[-3,13],[-1,66],[40,57],[13,55],[10,-5],[10,-9],[8,-16],[-44,-92],[-11,-88]],[[90461,60466],[-12,-29],[-8,45],[-1,19],[10,17],[7,-1],[4,-51]],[[88372,57315],[-21,-47],[-1,16],[6,28],[9,32],[8,19],[11,6],[8,-27],[-9,-23],[-11,-4]],[[99579,40913],[0,-25],[-36,-16],[-12,20],[-8,4],[-21,-36],[-6,-15],[-2,-11],[-6,-6],[-39,-17],[-17,17],[12,12],[14,23],[14,-3],[15,22],[14,33],[21,8],[14,13],[24,-10],[19,-13]],[[96550,43628],[-11,-29],[-32,9],[-7,8],[2,48],[8,17],[19,15],[25,-24],[-4,-44]],[[96524,43832],[-4,-6],[-7,4],[-16,70],[4,23],[21,22],[18,-38],[2,-22],[0,-18],[-3,-16],[-13,-6],[-2,-13]],[[97192,40214],[-9,-31],[-15,0],[-20,22],[4,29],[22,5],[6,-2],[12,-23]],[[97080,40587],[-15,-63],[-25,15],[-24,45],[-12,40],[8,75],[12,14],[13,-5],[6,-74],[37,-47]],[[97036,40932],[-12,-27],[-12,3],[-72,64],[3,27],[-3,67],[8,37],[20,15],[15,-8],[10,-54],[22,-22],[-16,-18],[27,-41],[10,-43]],[[96669,39498],[13,-10],[22,1],[-5,-98],[-32,-16],[-11,1],[-7,21],[-18,14],[1,33],[-18,76],[31,11],[17,20],[0,-18],[2,-22],[5,-13]],[[96262,39919],[-15,-5],[18,52],[1,33],[7,63],[-1,22],[12,-3],[12,-18],[-14,-16],[-5,-28],[0,-34],[6,-7],[-9,-37],[-12,-22]],[[96499,39653],[-15,-4],[-20,41],[-39,21],[-17,36],[-11,43],[22,11],[22,58],[-15,22],[-26,3],[3,23],[42,27],[18,-16],[8,-18],[-2,-92],[19,-29],[20,-65],[-1,-18],[-8,-43]],[[96539,38811],[-9,-22],[-11,5],[-8,8],[-6,12],[6,44],[24,-22],[4,-25]],[[94430,40718],[-4,-12],[-2,92],[8,34],[5,-71],[-7,-43]],[[96368,45123],[-24,-9],[-10,2],[-16,50],[12,11],[18,-4],[5,-29],[15,-21]],[[96147,45646],[-22,-10],[-7,3],[-17,-6],[-18,-41],[-13,6],[-10,-2],[-8,34],[0,17],[13,-3],[6,33],[14,17],[32,7],[28,-10],[10,-8],[-9,-30],[1,-7]],[[94604,45047],[-20,-20],[-17,10],[-14,15],[-11,44],[-23,28],[-34,11],[-14,19],[-3,10],[-24,8],[-6,24],[2,25],[3,13],[22,-12],[103,-117],[25,-36],[11,-22]],[[94652,47053],[69,-171],[-3,-31],[-9,-19],[-3,-58],[8,-22],[19,-10],[32,-62],[13,-75],[1,-23],[14,-34],[0,-72],[30,-100],[3,-48],[-3,-22],[-12,13],[-37,113],[-41,49],[-5,21],[-42,66],[-28,111],[-30,198],[14,47],[-34,96],[1,25],[15,-6],[10,2],[5,11],[13,1]],[[94920,45859],[35,-34],[20,6],[30,-23],[23,13],[15,-30],[36,-118],[0,-38],[24,-27],[-20,-5],[-28,14],[-22,-10],[-22,23],[-38,12],[-33,27],[-69,87],[0,43],[-11,21],[-3,54],[-25,17],[-29,3],[-2,26],[5,45],[21,-1],[26,-19],[50,-65],[12,-12],[5,-9]],[[94873,46298],[4,-62],[-2,-21],[-21,45],[-10,-16],[-9,22],[1,46],[1,50],[-4,38],[-11,55],[12,-9],[39,-148]],[[94218,46587],[-4,-1],[-13,7],[-16,2],[-9,20],[11,29],[15,18],[6,-4],[7,-12],[14,-5],[2,-37],[-13,-17]],[[94490,46661],[16,-8],[8,1],[18,-31],[25,-46],[-10,-23],[-20,12],[-7,-5],[-2,3],[-4,23],[-22,23],[-19,2],[-3,27],[20,22]],[[94357,46942],[-13,-8],[-20,21],[-9,19],[4,30],[12,12],[13,-20],[1,-21],[12,-33]],[[93822,47095],[18,-47],[20,-105],[-4,-36],[-14,-3],[-4,-22],[-20,51],[-26,14],[-19,31],[-6,62],[-2,39],[-15,7],[-42,-10],[-14,-34],[-19,11],[-4,30],[3,29],[26,29],[5,38],[26,64],[15,11],[31,-23],[3,-92],[11,-30],[31,-14]],[[93944,46761],[-6,-2],[-7,23],[15,62],[8,-50],[4,-19],[-14,-14]],[[93918,46840],[-27,-45],[-20,15],[-17,39],[6,47],[3,13],[8,2],[8,10],[9,21],[29,-17],[8,-11],[-18,-29],[6,-9],[4,-14],[1,-22]],[[93718,46823],[0,-8],[-15,16],[-34,78],[6,26],[31,50],[10,7],[8,-31],[-7,-46],[-10,-12],[-5,-43],[16,-37]],[[93523,47279],[-5,-8],[-9,31],[-7,10],[0,34],[-28,57],[-2,39],[16,38],[22,-22],[22,-48],[25,-16],[-5,-32],[-23,-57],[-6,-26]],[[93500,47136],[-3,-15],[-15,71],[1,36],[3,23],[5,7],[12,-79],[-3,-43]],[[93658,47172],[-6,-9],[-30,4],[-23,59],[0,44],[18,40],[22,8],[12,-16],[11,-34],[4,-43],[-3,-38],[-5,-15]],[[93288,47754],[-28,-13],[-17,18],[7,44],[10,23],[35,-41],[-7,-31]],[[95272,54910],[3,-27],[-18,13],[-2,10],[10,10],[7,-6]],[[93975,55768],[-16,-13],[-20,5],[-6,47],[-10,13],[2,23],[15,19],[30,-15],[11,-34],[-7,-22],[1,-23]],[[98761,30944],[2,-31],[-21,11],[-8,24],[-24,24],[-4,8],[-2,48],[12,23],[2,10],[6,4],[10,-26],[19,-36],[8,-59]],[[98309,28304],[-38,-34],[2,23],[7,51],[17,26],[8,1],[17,20],[-1,-43],[-12,-44]],[[96317,25543],[-1,-28],[-3,-14],[-10,0],[-14,3],[-14,13],[-10,-4],[-7,5],[10,32],[33,17],[12,-14],[4,-10]],[[1062,26647],[-10,-15],[-17,1],[-30,-59],[2,44],[-9,17],[-26,-4],[-4,-10],[17,-12],[4,-6],[-17,-25],[17,-55],[15,2],[14,-43],[0,-13],[-33,-16],[-17,-23],[-16,1],[-7,4],[-9,41],[0,17],[19,31],[11,30],[-9,28],[-22,19],[-48,-9],[-11,6],[24,39],[26,-5],[28,28],[108,-13]],[[1062,26312],[-12,-5],[1,33],[-4,21],[21,7],[9,-26],[-15,-30]],[[96993,21602],[15,-29],[-29,-13],[-14,11],[-10,13],[-5,19],[15,-2],[14,8],[14,-7]],[[96172,22602],[6,-48],[-16,-1],[-32,14],[-9,21],[-7,5],[-12,-24],[-18,-1],[-5,8],[8,25],[44,49],[8,61],[-1,19],[35,5],[8,-7],[3,-9],[-2,-11],[-14,-20],[0,-23],[3,-24],[-11,-12],[6,-21],[6,-6]],[[96706,24848],[0,-23],[-29,9],[1,-26],[23,-14],[8,-18],[24,5],[5,-28],[-5,-24],[-16,-19],[-47,-9],[-31,-36],[-26,6],[-7,-3],[-30,-39],[-34,-12],[-9,3],[5,34],[25,33],[0,31],[7,25],[24,18],[0,33],[16,29],[-10,63],[6,56],[47,3],[53,-97]],[[88081,42754],[-12,-27],[-15,28],[-3,29],[-12,8],[6,27],[6,7],[6,33],[16,-39],[1,-43],[7,-23]],[[88017,42845],[-5,-4],[0,48],[8,24],[4,-50],[-7,-18]],[[87941,42840],[-17,-2],[-4,3],[-3,25],[5,23],[18,6],[7,-6],[-6,-49]],[[86831,45332],[-6,-9],[-22,89],[6,27],[-9,46],[15,5],[12,34],[4,-16],[1,-63],[9,-36],[-10,-77]],[[91400,40154],[-6,-6],[-10,0],[-13,11],[12,74],[6,-39],[12,-32],[-1,-8]],[[91370,40236],[-6,-3],[-7,6],[5,24],[7,19],[10,14],[-3,-52],[-6,-8]],[[90632,41341],[6,-55],[12,-42],[-5,-28],[-7,-21],[-18,19],[-12,51],[-21,41],[-5,23],[25,-2],[12,8],[5,9],[8,-3]],[[89520,45676],[-23,-33],[-15,18],[-4,36],[2,16],[19,28],[21,-65]],[[89538,45972],[-17,-36],[-17,11],[-6,20],[6,29],[23,5],[11,-29]],[[89490,45994],[-7,-16],[-12,34],[14,40],[12,-19],[-7,-39]],[[88751,42296],[-21,-51],[-11,7],[-10,-27],[-20,-13],[-12,0],[-22,-13],[-4,16],[4,51],[19,56],[18,35],[46,16],[36,25],[4,-4],[26,-65],[-38,-8],[-15,-25]],[[88738,41984],[-11,-10],[-3,24],[14,24],[9,34],[19,-30],[3,-30],[-31,-12]],[[87975,43891],[12,-24],[13,2],[12,53],[7,-8],[5,-13],[4,-23],[-17,-40],[-8,-6],[-7,-23],[-12,-73],[1,-24],[11,-25],[27,-22],[13,10],[5,-3],[-5,-36],[-11,-27],[-36,12],[-32,-4],[-52,26],[-27,3],[-8,10],[16,21],[10,28],[-5,67],[4,84],[30,41],[14,42],[20,26],[13,-3],[-2,-26],[5,-45]],[[87843,43879],[-7,-6],[-25,11],[0,21],[3,15],[7,10],[16,41],[11,-24],[5,-49],[-10,-19]],[[87943,45288],[-20,-35],[-1,26],[10,21],[25,84],[11,20],[6,11],[5,31],[1,46],[14,7],[-11,-105],[-40,-106]],[[87871,45159],[-44,-43],[24,58],[51,52],[8,12],[-2,-25],[-26,-43],[-11,-11]],[[86238,45115],[23,-14],[10,-19],[7,-21],[1,-25],[-29,-11],[-52,37],[-51,-31],[-15,0],[-10,22],[8,61],[19,-9],[16,22],[-3,67],[-9,37],[27,68],[12,13],[12,0],[11,-48],[2,-51],[13,-48],[8,-50]],[[86282,45290],[37,-5],[45,43],[21,-18],[9,4],[33,41],[21,12],[15,30],[14,-33],[32,-38],[11,-40],[13,-19],[5,-12],[-20,-42],[-3,-45],[-21,3],[-25,-74],[-95,-124],[-85,106],[-37,71],[-24,99],[-5,82],[-10,51],[4,14],[5,6],[7,-1],[25,-56],[12,-15],[16,-40]],[[84777,43444],[-18,-36],[-12,29],[7,58],[12,20],[10,-10],[-1,-45],[2,-16]],[[84610,42971],[-11,-17],[-10,5],[0,23],[-11,24],[6,28],[4,14],[9,-2],[3,-23],[12,-26],[-2,-26]],[[82068,39868],[-17,-45],[-19,9],[-3,23],[13,37],[22,45],[7,-28],[-3,-41]],[[81439,36835],[-7,-24],[-54,180],[-15,123],[10,22],[10,6],[32,-170],[10,-39],[0,-40],[4,-12],[10,-46]],[[90931,26844],[-13,-59],[-21,10],[-22,-10],[-13,40],[0,10],[16,-10],[6,13],[4,17],[5,4],[4,24],[14,29],[8,0],[9,-38],[3,-30]],[[91139,27240],[-15,-5],[-6,2],[1,30],[-2,13],[13,27],[20,-13],[7,-20],[-19,-17],[1,-17]],[[90953,26934],[-17,0],[-7,5],[-3,29],[-11,12],[6,9],[2,18],[7,20],[13,-22],[10,-71]],[[90217,28509],[-10,-47],[-11,60],[12,8],[9,21],[2,-3],[-2,-39]],[[89979,28734],[-8,-2],[-6,32],[3,47],[-14,45],[8,46],[-1,50],[5,22],[16,24],[3,43],[14,2],[25,-33],[9,-85],[-4,-51],[9,-46],[-8,-40],[-21,-32],[-30,-22]],[[91201,28624],[26,-34],[15,-38],[-20,-31],[-14,-6],[-9,36],[-29,-13],[-31,3],[-23,27],[-3,14],[14,14],[38,-1],[36,29]],[[91110,28941],[50,-104],[25,-17],[8,-11],[-2,-45],[-11,-20],[20,-26],[-3,-17],[-4,1],[-24,-35],[-29,-17],[-9,12],[-8,17],[-6,23],[-37,91],[4,25],[-8,38],[-18,-3],[-12,23],[20,22],[26,61],[18,-18]],[[91176,28504],[-14,-44],[-17,28],[-2,13],[21,10],[7,-1],[5,-6]],[[88220,31256],[67,-14],[26,21],[32,-17],[22,-56],[-16,-27],[-15,-4],[-49,23],[-46,-18],[-13,-23],[-9,-51],[-40,-28],[-18,31],[-48,22],[-17,-32],[-34,9],[-32,-14],[-43,8],[-46,57],[-14,26],[11,47],[16,34],[126,49],[67,41],[55,-7],[15,-9],[14,-21],[-10,-38],[-1,-9]],[[90412,29749],[-42,-38],[-15,17],[1,29],[3,13],[36,2],[17,-23]],[[90364,29671],[10,-28],[2,-11],[-24,22],[-39,-5],[24,40],[20,-8],[7,-10]],[[92649,36038],[-24,-158],[-7,3],[-9,24],[1,91],[10,58],[24,-10],[5,-8]],[[92622,36108],[-6,-9],[-12,55],[-4,56],[5,51],[14,11],[10,-4],[-11,-94],[4,-66]],[[92521,37009],[-7,-16],[-13,29],[-8,102],[6,59],[14,55],[3,30],[-6,62],[42,71],[10,37],[4,48],[-15,52],[-12,10],[10,29],[12,15],[9,6],[7,-5],[5,-102],[17,-36],[-3,-50],[-58,-259],[-16,-97],[-1,-40]],[[91984,38311],[10,-15],[8,2],[8,-9],[-3,-38],[13,-42],[6,-30],[-10,-24],[-6,-8],[-15,20],[-42,121],[7,41],[24,-18]],[[91809,38984],[-8,-1],[-7,10],[6,23],[1,32],[10,-10],[7,-45],[-9,-9]],[[91646,39059],[-10,-18],[-6,42],[1,44],[10,15],[5,-58],[0,-25]],[[82598,56575],[-19,-14],[-4,36],[2,35],[14,-3],[6,-11],[1,-43]],[[82521,56384],[-14,-44],[-16,50],[1,71],[5,19],[24,11],[0,-107]],[[83309,57883],[-34,-18],[-8,56],[24,51],[28,-21],[16,-20],[-8,-18],[-18,-30]],[[83294,58482],[6,-31],[-8,-46],[-7,-10],[-8,19],[-20,14],[-1,24],[10,0],[18,24],[10,6]],[[83360,58852],[15,-9],[11,8],[10,31],[9,-45],[22,-37],[-7,-38],[-20,-4],[-19,8],[-21,-15],[-25,9],[-14,35],[-17,63],[-9,12],[1,26],[6,16],[-3,4],[2,12],[3,8],[5,3],[13,-28],[32,-42],[6,-17]],[[83343,58584],[-21,-19],[-5,12],[-3,28],[0,20],[-20,104],[15,15],[11,-12],[12,-16],[10,-9],[10,-32],[-2,-23],[3,-22],[-10,-46]],[[84068,57875],[-7,-8],[-7,2],[-16,-21],[-6,39],[5,66],[25,50],[6,16],[7,10],[8,1],[8,-20],[2,-30],[-16,-90],[-9,-15]],[[84269,57286],[-11,-15],[-4,38],[3,51],[21,179],[-5,45],[36,100],[22,93],[32,99],[5,51],[29,97],[27,134],[-1,45],[7,22],[4,33],[0,29],[20,50],[6,-33],[-6,-64],[1,-30],[3,-14],[0,-60],[-7,-91],[7,-105],[-13,-107],[-15,-48],[-21,-34],[-24,-21],[-25,-53],[-15,-62],[-3,-57],[-39,-192],[-34,-80]],[[84376,58342],[16,-76],[-22,0],[-8,56],[10,18],[4,2]],[[84609,57480],[-3,-21],[-22,2],[-8,-3],[-20,-54],[-12,-14],[-66,-18],[-52,14],[-18,30],[-12,49],[-3,33],[13,35],[12,24],[42,46],[10,35],[22,43],[45,14],[4,-11],[6,-6],[9,-2],[23,-35],[25,-23],[-6,-85],[7,-28],[4,-25]],[[84668,57109],[-8,-34],[-31,28],[-8,25],[4,29],[15,10],[8,0],[15,-31],[5,-27]],[[84360,57164],[2,-60],[-25,-18],[-21,16],[-13,36],[0,13],[11,-1],[26,31],[8,7],[12,-24]],[[83402,54871],[-7,-35],[-9,-16],[-12,9],[-9,18],[-5,-27],[-24,-10],[-15,-41],[-23,-12],[-15,6],[2,37],[43,54],[27,21],[23,39],[12,5],[6,-33],[6,-15]],[[83914,55546],[-28,-8],[-9,0],[-22,59],[-2,26],[-18,29],[6,29],[23,7],[40,38],[64,-59],[10,-21],[-20,-13],[-14,-56],[-30,-31]],[[85016,57468],[-4,-3],[-15,45],[2,51],[21,76],[15,-67],[0,-30],[-2,-15],[14,-37],[-10,-19],[-21,-1]],[[84913,57554],[-5,-16],[-6,33],[-17,31],[-15,53],[-11,16],[7,42],[1,68],[16,31],[7,10],[11,33],[6,2],[5,-28],[-11,-85],[16,-100],[-6,-62],[3,-14],[-1,-14]],[[83408,59764],[0,-39],[-47,57],[-1,20],[1,14],[5,9],[25,-21],[17,-40]],[[83864,59642],[18,-1],[5,5],[33,-48],[-2,-24],[4,-33],[-19,-55],[-3,-19],[-11,-18],[-35,44],[-13,27],[-4,56],[14,81],[13,-15]],[[83914,58959],[-22,-143],[-15,49],[6,31],[-13,26],[-3,24],[5,31],[13,29],[3,94],[29,30],[11,1],[-4,-23],[1,-43],[-11,-106]],[[83974,59060],[-8,-18],[-5,3],[-4,31],[8,21],[3,-2],[6,-35]],[[84070,58933],[-14,-13],[-29,56],[-17,26],[-4,15],[13,21],[37,0],[19,-39],[3,-24],[-8,-42]],[[84244,59247],[24,-88],[-26,60],[-30,41],[-31,67],[-23,24],[-6,14],[2,28],[17,5],[7,-2],[45,-119],[21,-30]],[[84381,59017],[1,-51],[-10,19],[-34,99],[-9,36],[9,24],[25,-37],[18,-90]],[[84365,58921],[53,-69],[37,-116],[4,-89],[-3,-35],[-17,39],[-38,54],[-26,12],[-8,10],[3,30],[-17,27],[-2,11],[-15,12],[-23,61],[-16,12],[-15,-13],[-35,-91],[-37,-64],[-1,25],[15,79],[10,128],[6,39],[-8,57],[-1,51],[28,-24],[35,-23],[27,-33],[4,-22],[40,-68]],[[84542,59695],[-8,-37],[-9,13],[-12,-2],[-21,-32],[-33,43],[-5,33],[24,73],[0,109],[8,27],[9,19],[11,11],[23,-75],[8,-10],[22,-34],[-5,-70],[2,-41],[-14,-27]],[[83937,59935],[-1,-23],[-60,85],[-3,15],[0,13],[4,14],[60,-104]],[[83897,60486],[5,-20],[-5,1],[-4,-4],[-13,-41],[14,-77],[-9,-56],[-16,-4],[-6,6],[3,28],[4,12],[-3,37],[-10,23],[-7,44],[-12,27],[6,43],[36,5],[17,-24]],[[83866,62727],[-17,-42],[-10,12],[10,40],[0,14],[8,31],[15,11],[13,-31],[-19,-35]],[[83680,62835],[-1,-39],[-14,21],[-3,29],[1,21],[6,26],[9,-23],[2,-35]],[[83755,62996],[3,-52],[-17,1],[-24,32],[-3,16],[1,13],[4,11],[36,-21]],[[83877,63574],[-5,-7],[-8,3],[8,55],[14,15],[11,-6],[-20,-60]],[[83854,63814],[-13,-47],[-11,0],[2,26],[14,55],[5,-1],[3,-33]],[[91117,48486],[-11,-4],[-5,26],[-26,23],[-26,70],[1,61],[3,17],[15,1],[57,-70],[6,-22],[-4,-66],[-10,-36]],[[90881,48714],[-15,-3],[-26,54],[-6,21],[3,28],[32,39],[21,-35],[4,-75],[-13,-29]],[[90560,49120],[-19,-17],[-13,13],[-6,38],[5,36],[16,29],[10,9],[12,-20],[4,-38],[-9,-50]],[[91076,50527],[-9,-30],[-21,3],[-9,9],[15,6],[6,25],[7,8],[11,-21]],[[90851,50714],[93,-38],[6,1],[-1,13],[1,4],[6,-10],[-2,-27],[-15,-7],[-13,3],[-10,-15],[-26,-52],[-18,9],[-22,-12],[-38,-1],[-50,23],[-13,-20],[-18,6],[-17,-22],[-8,1],[-4,32],[1,16],[20,14],[-3,49],[17,25],[29,-3],[27,17],[58,-6]],[[92957,48713],[-6,-4],[-12,72],[-2,54],[-4,40],[-6,24],[18,43],[8,12],[13,-23],[2,-51],[11,-43],[-8,-95],[-14,-29]],[[92408,50038],[-7,-51],[-17,30],[-12,42],[8,20],[19,11],[9,-52]],[[92249,50145],[-3,-29],[-9,1],[-24,57],[-4,15],[5,14],[28,-41],[7,-17]],[[92209,50212],[-6,0],[-1,46],[4,24],[16,-16],[2,-42],[-15,-12]],[[91601,50948],[-1,-21],[-20,11],[-6,-3],[-34,60],[0,37],[9,31],[15,-5],[25,-39],[12,-71]],[[91787,50309],[-55,-8],[-20,9],[-18,33],[-16,52],[-16,12],[-7,11],[39,39],[35,12],[56,-49],[6,-25],[0,-16],[-1,-53],[-3,-17]],[[91966,46071],[12,0],[20,43],[17,13],[11,-20],[-18,-137],[-16,21],[-60,38],[-2,54],[-15,18],[-10,53],[-20,58],[-4,38],[12,-16],[12,-38],[53,-79],[-2,-25],[10,-21]],[[91762,46374],[-4,-14],[-16,10],[-46,80],[7,59],[21,30],[31,-33],[10,-49],[3,-27],[-6,-56]],[[91813,46459],[39,-48],[21,14],[12,-7],[25,-55],[1,-40],[4,-34],[-1,-15],[-14,-21],[1,24],[-10,4],[-37,-1],[-28,15],[-39,4],[16,36],[4,14],[-21,59],[0,28],[1,15],[17,8],[9,0]],[[91973,46812],[5,-41],[-22,44],[10,50],[2,27],[-1,15],[-22,26],[11,42],[13,14],[7,4],[0,-59],[6,-27],[-9,-95]],[[92397,46682],[16,-9],[33,4],[11,-33],[16,-11],[13,-15],[12,-22],[0,-13],[-3,-12],[-7,-10],[2,-23],[-12,3],[-16,-12],[-30,27],[-11,6],[-3,24],[-19,39],[-35,28],[18,23],[15,6]],[[91915,45757],[-4,-45],[-22,13],[-5,10],[4,28],[20,1],[7,-7]],[[92855,45298],[-4,-31],[-10,10],[-30,-16],[-16,4],[-9,28],[-3,13],[27,-10],[-5,31],[38,-16],[12,-13]],[[92648,45232],[46,-30],[16,-34],[-17,-15],[-40,-10],[-10,20],[-39,21],[-6,37],[-19,-13],[10,27],[-25,29],[-7,40],[-1,16],[28,-19],[64,-69]],[[89884,46957],[-12,-2],[-49,39],[-12,29],[57,-7],[15,-7],[3,-40],[-2,-12]],[[89885,46869],[5,-25],[-40,35],[-39,58],[-19,15],[-13,38],[24,-28],[41,-27],[41,-66]],[[87606,51467],[59,-22],[21,1],[21,-25],[26,12],[14,-8],[49,-88],[24,-58],[35,-50],[26,-17],[-19,-45],[-39,-24],[-15,-1],[-30,27],[-25,-5],[-21,34],[-4,52],[-21,119],[-29,-34],[-33,54],[-9,1],[-3,-9],[-14,19],[-12,37],[-1,30]],[[87631,50926],[110,-29],[29,4],[63,-12],[52,-38],[91,-7],[28,-12],[21,-26],[-51,-22],[-24,-20],[-45,-10],[-38,10],[-27,-12],[-10,20],[-39,20],[-51,41],[-105,49],[-5,30],[1,14]],[[87489,51200],[-13,-11],[-15,12],[-15,44],[5,34],[17,23],[15,-23],[4,-30],[11,-2],[-9,-47]],[[87325,50619],[-8,-8],[-3,25],[5,33],[5,6],[6,-2],[8,-12],[-13,-42]],[[88581,47010],[-14,-7],[-69,17],[-8,24],[-1,12],[16,24],[15,40],[24,14],[10,0],[28,-94],[-1,-30]],[[87102,49397],[14,-31],[-33,24],[-47,51],[-3,34],[40,-52],[29,-26]],[[86208,50869],[4,-34],[16,-32],[-5,-49],[-7,-7],[4,-23],[7,-17],[-13,-12],[-10,6],[-15,-16],[-10,-22],[-32,-9],[-11,20],[-57,24],[-37,53],[-5,16],[71,62],[32,17],[26,-1],[33,23],[9,1]],[[86389,51085],[-10,-16],[-34,15],[-17,35],[-12,48],[-8,39],[-2,32],[-10,38],[1,14],[62,40],[12,-15],[26,-1],[12,-29],[-8,-127],[-12,-73]],[[86362,51395],[-7,-30],[-14,-19],[-119,-36],[10,21],[5,21],[8,11],[12,-3],[6,7],[5,2],[7,-3],[12,9],[24,-6],[25,5],[-2,28],[28,-7]],[[86284,51538],[-16,-1],[-28,25],[16,22],[11,5],[9,13],[5,0],[12,-11],[7,-19],[-16,-34]],[[86336,51840],[48,-24],[11,4],[70,-64],[11,-31],[-4,-21],[10,-29],[-22,-43],[-11,-5],[-12,16],[-22,10],[-25,-18],[-17,13],[-14,40],[-24,24],[-35,84],[-17,-3],[5,-33],[14,-21],[20,-64],[11,-6],[11,2],[16,-27],[-1,-41],[-40,-16],[-14,30],[-3,55],[-23,-19],[-9,-19],[-7,-2],[-15,57],[-43,3],[-29,30],[14,32],[2,30],[19,17],[19,-15],[19,22],[14,-6],[10,14],[38,9],[25,15]],[[85985,51735],[-12,-2],[-10,34],[-28,37],[-17,65],[65,-107],[2,-27]],[[85681,53025],[-44,-10],[-10,27],[-12,124],[31,99],[40,58],[27,15],[9,1],[24,-71],[-18,-144],[-21,-73],[-26,-26]],[[85403,51839],[-1,-17],[-9,24],[-6,6],[6,62],[4,11],[5,-43],[1,-43]],[[85394,52213],[-10,-7],[-3,2],[-3,24],[5,39],[12,0],[5,-6],[1,-29],[-7,-23]],[[85346,51557],[-17,-15],[-19,1],[-4,61],[6,78],[18,13],[27,-16],[-10,-20],[8,-42],[-9,-60]],[[85360,51393],[-3,-12],[-29,15],[-8,8],[15,82],[14,-2],[12,-78],[-1,-13]],[[85434,51659],[32,-86],[-21,-82],[15,-46],[40,-2],[10,-17],[7,-21],[4,-28],[-10,-23],[-23,-20],[-26,29],[-7,28],[-5,10],[-35,-21],[-10,-2],[-6,39],[8,55],[-24,25],[-23,57],[-1,24],[9,39],[-1,32],[13,3],[23,-43],[11,40],[9,17],[11,-7]],[[85597,50886],[-17,-23],[-8,-7],[-41,16],[-48,-3],[-50,-22],[-29,18],[-18,30],[1,32],[17,78],[37,60],[16,10],[26,-16],[45,-45],[36,-54],[32,-41],[1,-33]],[[87429,48555],[-2,-22],[-1,-41],[5,-38],[-12,-39],[11,-57],[2,-29],[-1,-41],[-3,-18],[-8,-54],[-9,-19],[-6,-5],[-7,-16],[-54,18],[-24,37],[-21,40],[-4,17],[-25,46],[-6,16],[0,25],[20,7],[21,-1],[-1,22],[13,80],[-33,51],[-6,21],[12,15],[26,-18],[32,89],[10,19],[4,50],[18,6],[13,-6],[8,-31],[3,-27],[-3,-24],[15,-13],[13,-60]],[[87370,48132],[-4,-41],[-5,-45],[-25,-51],[-16,-78],[-9,-19],[-34,-35],[-30,43],[-9,37],[13,172],[13,-6],[9,1],[2,12],[-19,19],[-4,98],[1,38],[15,8],[18,-29],[24,-52],[27,-40],[33,-32]],[[86923,48443],[-22,-50],[21,117],[4,59],[20,36],[29,179],[7,-5],[10,-17],[-15,-131],[-41,-92],[-13,-96]],[[86890,48472],[-17,-55],[-11,19],[-7,1],[-4,32],[4,68],[-14,76],[19,-1],[5,-23],[6,-8],[18,-73],[1,-36]],[[85755,49800],[0,-25],[-2,-8],[-15,9],[-11,-1],[-10,44],[3,10],[20,-12],[7,-5],[8,-12]],[[85711,49777],[-48,-30],[11,56],[6,15],[24,-15],[7,-26]],[[85631,49726],[-7,-21],[-16,-14],[-14,1],[5,21],[-4,11],[-10,-5],[-16,-16],[-20,-33],[-13,16],[-2,26],[1,11],[24,45],[29,8],[40,43],[18,-2],[-4,-27],[-6,-20],[-4,-20],[-1,-24]],[[84216,49221],[6,-124],[-2,-32],[-15,47],[-6,10],[-4,-10],[-6,-5],[-8,0],[-10,-48],[-1,-45],[-8,-30],[-4,-101],[3,-28],[12,14],[7,3],[27,-39],[15,-28],[-4,-34],[-19,-35],[-21,-15],[-16,15],[-5,-7],[-9,-18],[-8,-24],[3,-24],[-19,-68],[-10,-19],[-22,21],[-14,-18],[-11,1],[-16,69],[0,32],[15,36],[1,26],[7,29],[17,40],[10,29],[0,19],[8,72],[2,30],[5,32],[8,66],[1,122],[26,101],[25,28],[11,5],[-2,-27],[31,-68]],[[84067,48807],[-7,-38],[-15,-30],[-13,-2],[-12,6],[-23,26],[-6,-27],[-18,1],[-6,35],[12,105],[19,39],[-2,41],[-15,88],[10,46],[43,34],[37,42],[12,9],[11,-32],[5,-149],[-40,-118],[8,-76]],[[83900,48710],[-18,-15],[-33,66],[-14,54],[3,31],[10,26],[5,7],[-2,28],[13,14],[15,-2],[9,-38],[11,-10],[6,-36],[-5,-125]],[[84233,49473],[-27,-69],[-19,4],[-23,45],[-6,50],[-1,18],[16,28],[52,-9],[9,-25],[-1,-42]],[[85014,50431],[-4,-11],[-17,31],[-11,88],[-10,24],[-11,83],[3,24],[14,35],[11,0],[8,-21],[-5,-90],[25,-114],[-3,-49]],[[85006,50812],[85,-19],[-12,-21],[-92,-33],[-33,6],[-100,-20],[-12,1],[-2,32],[-11,23],[16,20],[21,4],[55,-7],[85,14]],[[84713,50860],[26,-20],[9,0],[9,24],[5,4],[12,-12],[2,-39],[17,6],[13,-14],[4,-9],[-1,-39],[-50,-6],[-36,-32],[-48,28],[-54,-48],[-33,-16],[-28,1],[-25,84],[14,99],[11,16],[18,8],[50,5],[85,-40]],[[84401,50716],[5,-23],[-17,1],[-7,43],[1,24],[18,-45]],[[84225,51168],[6,-36],[-10,-31],[11,-59],[28,78],[27,10],[15,-13],[10,-15],[6,-30],[-10,-63],[-18,-30],[-22,-5],[-11,37],[-15,4],[-10,-81],[-5,-12],[-13,-10],[-12,22],[-2,12],[17,37],[-9,108],[-13,-20],[-34,-99],[-26,-44],[-8,23],[-14,67],[6,86],[21,58],[18,-4],[52,18],[15,-8]],[[84208,50796],[-20,-47],[-2,25],[4,23],[5,16],[9,9],[4,-26]],[[83850,51608],[12,-25],[-7,-30],[-9,7],[-26,0],[-9,-2],[-12,-18],[-7,0],[5,27],[21,41],[14,-6],[18,6]],[[85226,54166],[-11,-12],[-18,4],[-2,30],[18,52],[12,56],[-13,14],[-12,35],[-1,41],[11,76],[15,-6],[14,-33],[6,-62],[10,-47],[-20,-64],[-9,-84]],[[85199,54075],[1,-25],[-17,56],[-7,65],[14,-23],[15,-49],[-6,-24]],[[85236,54013],[-5,-6],[-10,15],[-6,17],[1,17],[7,9],[14,-26],[0,-15],[-1,-11]],[[84904,53822],[-7,-18],[-34,32],[2,51],[-4,25],[-9,27],[-4,26],[4,28],[20,-36],[12,-57],[16,-55],[4,-23]],[[84835,53370],[-3,-13],[-11,68],[9,34],[12,-13],[3,-12],[-11,-32],[1,-32]],[[83479,48215],[-11,-96],[-6,33],[-2,88],[-7,43],[5,49],[-1,126],[8,58],[16,-74],[4,-38],[-6,-189]],[[86661,47694],[-4,-28],[-12,15],[-11,33],[-17,5],[-13,8],[-7,16],[47,7],[17,-56]],[[86350,47051],[-24,-18],[16,45],[52,104],[18,-19],[25,-4],[-37,-47],[-38,-19],[-12,-42]],[[86478,47235],[-4,-7],[-35,8],[-19,0],[2,43],[-10,33],[14,48],[0,56],[15,7],[2,32],[17,84],[10,19],[15,7],[17,49],[10,15],[10,37],[15,17],[-2,32],[9,17],[23,13],[16,-15],[10,-33],[-26,-40],[13,-99],[-19,-108],[-12,-33],[-23,-27],[-6,-27],[-27,-53],[-8,-46],[-2,-19],[-5,-10]],[[86065,47261],[-16,-53],[-18,3],[-34,71],[2,50],[3,16],[13,5],[43,-15],[9,-40],[-2,-37]],[[85741,47705],[-13,-15],[-20,30],[-6,13],[13,29],[14,9],[9,-13],[4,-13],[-2,-14],[1,-26]],[[85506,47177],[48,-23],[28,3],[6,-21],[-27,-49],[-56,38],[-10,40],[11,12]],[[85393,47451],[-17,-13],[5,43],[-1,34],[29,-11],[0,-27],[-3,-10],[-13,-16]],[[85222,47426],[3,-28],[0,-13],[-33,-9],[-32,-31],[-17,-36],[-13,-46],[-44,19],[-39,3],[-18,16],[-19,-1],[-24,-14],[-35,-40],[-8,-3],[3,60],[10,37],[36,88],[31,-19],[36,-6],[40,18],[29,39],[40,21],[33,-52],[21,-3]],[[84901,47154],[-19,-99],[-20,21],[22,55],[10,17],[7,6]],[[84281,45908],[-25,-20],[0,42],[20,54],[17,18],[10,-22],[1,-9],[-26,-20],[3,-43]],[[84152,45559],[-26,-1],[-8,6],[-3,51],[8,28],[60,37],[23,34],[34,70],[20,18],[5,8],[4,-1],[3,-54],[9,-31],[1,-17],[-30,-27],[-26,-62],[-59,-41],[-15,-18]],[[83856,45742],[-14,-7],[-30,17],[-6,10],[25,28],[20,39],[23,4],[14,-8],[-5,-47],[-27,-36]],[[84603,47153],[7,-35],[22,20],[21,4],[47,-3],[35,-8],[21,-15],[2,-70],[-10,-15],[-181,-53],[-18,17],[-7,17],[20,52],[-9,25],[10,40],[22,27],[18,-3]],[[84523,47045],[-17,-36],[-11,-62],[-11,-19],[-22,-11],[-14,62],[-24,-3],[12,54],[11,21],[16,0],[7,-22],[4,-4],[36,92],[7,1],[6,-4],[5,-11],[-5,-58]],[[84423,47077],[-39,-15],[-24,-72],[-19,1],[-11,-32],[-2,-14],[1,-12],[-2,-13],[-8,-12],[-17,20],[-16,-25],[-6,-7],[-23,30],[-21,-2],[-6,5],[26,52],[36,50],[6,18],[-14,5],[-8,7],[-2,12],[23,7],[16,2],[12,-16],[8,1],[48,58],[20,-14],[14,-14],[8,-20]],[[84254,47030],[-6,-25],[-75,2],[2,33],[21,36],[7,12],[23,11],[33,-20],[-5,-49]],[[83184,46808],[-11,-6],[-11,8],[4,52],[-6,34],[11,28],[3,48],[5,15],[6,-15],[4,-10],[5,-5],[13,-1],[3,-21],[-1,-19],[-5,-21],[-15,-23],[-11,-25],[6,-39]],[[83075,47097],[-12,-1],[-2,23],[4,24],[12,11],[5,0],[8,-22],[2,-11],[-8,-15],[-9,-9]],[[82113,46791],[-8,-20],[-22,35],[-6,16],[17,23],[6,3],[14,-24],[-1,-33]],[[82048,47827],[-22,-10],[-21,21],[0,27],[5,25],[32,13],[17,0],[18,-18],[12,-18],[6,-21],[-34,-1],[-13,-18]],[[81310,48495],[-6,-20],[-26,1],[-5,24],[17,41],[12,3],[10,-15],[-2,-34]],[[82756,54178],[-52,-29],[-31,68],[11,47],[-1,27],[13,7],[15,-6],[34,-38],[9,-55],[2,-21]],[[82682,53732],[-3,-19],[-24,47],[-7,33],[3,27],[25,2],[12,-17],[-6,-73]],[[82339,49847],[-10,-99],[-17,56],[19,67],[9,13],[-1,-37]],[[82306,49614],[-59,-107],[-9,28],[5,109],[-17,67],[2,51],[11,89],[15,68],[34,46],[8,5],[-2,-83],[7,-31],[2,-27],[-3,-23],[6,-105],[4,-26],[-8,-33],[4,-28]],[[80264,50910],[-32,-25],[-10,55],[21,16],[22,-14],[-1,-32]],[[80474,51163],[-55,-59],[-13,3],[-10,21],[6,113],[7,34],[39,4],[23,-17],[12,-18],[5,-38],[-2,-23],[-12,-20]],[[80246,53516],[-14,-30],[-14,19],[22,61],[5,4],[1,-54]],[[80087,53968],[-38,-21],[-22,30],[24,36],[8,3],[6,7],[2,15],[-43,24],[-12,21],[-12,54],[0,34],[55,91],[13,10],[2,-38],[38,-95],[2,-64],[-1,-23],[-22,-84]],[[79523,53661],[-1,-39],[-19,23],[-4,44],[7,14],[13,-8],[4,-34]],[[79377,53492],[-12,-2],[-3,17],[1,29],[-2,24],[-3,17],[0,30],[11,-15],[8,-14],[10,-10],[7,-6],[4,-5],[-7,-42],[-14,-23]],[[78251,53040],[16,-47],[3,-31],[-11,-35],[-4,-54],[-33,-42],[-28,10],[-9,15],[-18,82],[2,69],[11,27],[26,-4],[27,38],[18,-28]],[[78451,52413],[-13,-18],[-15,28],[-13,39],[-6,41],[-6,68],[-2,48],[8,28],[5,-1],[23,-28],[15,-49],[9,-15],[1,-45],[-5,-52],[-1,-44]],[[78469,52683],[2,-74],[-20,20],[-17,29],[-25,22],[-32,7],[-23,19],[-16,34],[0,16],[1,13],[5,10],[119,-67],[6,-29]],[[78618,52273],[-5,-22],[-11,16],[-54,25],[-18,2],[-47,28],[-14,14],[-10,19],[3,35],[7,21],[4,59],[12,24],[23,-44],[26,-38],[15,-17],[46,-38],[16,-19],[7,-65]],[[78657,52344],[-9,-17],[-14,4],[-14,20],[-20,35],[-21,31],[-28,20],[-17,5],[-6,8],[6,60],[18,4],[58,-56],[19,-31],[28,-83]],[[78689,52155],[-31,-4],[-9,8],[4,54],[9,33],[14,-1],[16,-49],[-3,-41]],[[78728,52447],[2,-32],[-19,8],[-13,37],[11,26],[7,10],[7,-36],[5,-13]],[[78735,52225],[-5,-7],[-24,73],[6,42],[6,11],[13,-26],[10,-27],[8,-32],[-14,-34]],[[78840,52304],[2,-17],[-25,34],[-1,24],[3,11],[15,-26],[6,-26]],[[78895,52523],[18,-25],[14,16],[-1,-21],[-3,-21],[-17,-59],[-28,13],[-7,19],[-2,15],[4,9],[3,29],[12,0],[7,25]],[[79051,52543],[1,-43],[16,-21],[4,-32],[-3,-51],[-14,-59],[-7,-15],[-20,12],[-6,19],[-3,16],[3,11],[-15,14],[10,22],[-7,32],[-40,-20],[-12,-1],[-2,36],[2,15],[31,45],[18,9],[20,-10],[24,21]],[[78955,52323],[-18,-17],[-22,53],[1,12],[2,9],[4,6],[13,-27],[16,-10],[4,-26]],[[79080,51877],[2,-14],[-13,16],[-8,10],[-5,8],[-29,79],[12,-5],[32,-69],[9,-25]],[[79104,51741],[8,-9],[10,30],[19,-41],[11,-21],[15,-20],[-15,-1],[-6,-19],[-4,-4],[-59,66],[-38,-21],[-25,19],[-8,14],[14,36],[13,83],[26,-21],[6,-26],[-2,-7],[17,-16],[18,-42]],[[79020,51650],[26,-56],[6,-20],[-13,-31],[-10,-44],[-6,-9],[-20,16],[-14,-43],[-9,69],[-20,44],[12,44],[5,4],[6,-2],[6,-11],[31,39]],[[78815,51642],[-36,-20],[-41,15],[5,34],[20,41],[17,-2],[31,-27],[12,-23],[-8,-18]],[[80057,50116],[-5,-61],[-6,-23],[-24,-30],[-7,-18],[-22,3],[-3,32],[-7,21],[-23,25],[-6,-6],[-4,-37],[-45,-26],[-13,-2],[6,49],[-11,38],[-1,47],[-2,21],[-6,12],[11,32],[-1,37],[12,39],[7,95],[47,21],[10,-17],[56,-21],[39,-58],[21,-77],[-23,-96]],[[79853,50172],[-11,-14],[-7,14],[-2,16],[5,20],[15,2],[7,-6],[-7,-32]],[[79690,50111],[-5,-11],[-15,6],[-11,16],[-7,15],[-2,16],[15,20],[32,-20],[-7,-42]],[[79236,48018],[-17,-13],[-13,11],[-6,16],[19,40],[10,10],[9,3],[5,-22],[-7,-45]],[[77077,52687],[61,-162],[24,-22],[33,-74],[8,-25],[-9,-52],[-7,-147],[-15,-37],[-38,18],[-1,26],[-22,111],[-39,62],[-16,3],[-10,63],[-20,76],[-60,137],[46,-1],[22,33],[5,27],[4,7],[34,-43]],[[78435,48687],[-23,-3],[-42,71],[-7,22],[12,21],[13,-2],[48,-45],[9,-22],[-10,-42]],[[77895,50009],[11,-84],[-33,58],[1,40],[-5,26],[-20,33],[-15,40],[-7,96],[5,20],[13,1],[58,-126],[4,-21],[-1,-45],[-8,-14],[-3,-24]],[[77834,50264],[-20,-47],[-33,1],[-6,29],[1,70],[-8,22],[0,9],[6,40],[6,9],[53,-98],[1,-35]],[[77733,50493],[2,-15],[-45,50],[-22,14],[-19,56],[5,26],[1,37],[3,15],[14,5],[18,-27],[13,-66],[23,-61],[7,-34]],[[77545,50818],[-26,-3],[-55,69],[-13,31],[-3,42],[-52,159],[-7,37],[20,131],[54,31],[18,-22],[6,-59],[30,-106],[10,-57],[8,-26],[3,-19],[-2,-14],[22,-68],[15,-39],[2,-64],[-30,-23]],[[77349,51537],[-17,-27],[-25,26],[9,37],[4,51],[15,41],[5,47],[-29,130],[14,5],[12,-14],[19,-87],[17,-52],[-7,-70],[-17,-87]],[[77037,53038],[-2,-13],[-29,61],[-32,34],[13,8],[27,-9],[11,-9],[10,-30],[2,-42]],[[76795,53202],[-18,-5],[-16,12],[-14,33],[-75,96],[-23,1],[-16,25],[-20,8],[-21,64],[-5,35],[16,16],[9,35],[25,-15],[28,-62],[29,-23],[8,-12],[14,-34],[66,-85],[7,-28],[5,-29],[1,-32]],[[76489,55191],[-6,-16],[-16,8],[-18,52],[6,10],[12,-5],[21,-12],[2,-20],[-1,-17]],[[80941,53234],[-9,-8],[-13,21],[-3,175],[9,15],[6,-2],[7,-32],[-1,-76],[1,-68],[3,-25]],[[82539,55972],[-17,-31],[-6,37],[1,47],[23,44],[33,8],[4,-35],[-4,-40],[-7,-21],[-27,-9]],[[58892,78458],[38,-29],[-39,8],[-86,27],[-38,25],[-10,28],[-5,38],[21,-40],[15,-18],[104,-39]],[[56367,85729],[-23,-28],[-13,11],[-7,14],[-30,-65],[-33,-11],[-19,13],[2,24],[-19,63],[-29,19],[-40,1],[-30,26],[113,18],[12,30],[23,32],[17,3],[15,-7],[2,-25],[4,-10],[51,-13],[20,-41],[8,-50],[-24,-4]],[[56484,85570],[-23,-6],[-55,41],[13,27],[15,11],[47,-17],[6,-42],[-3,-14]],[[59948,89390],[9,-23],[3,-37],[-9,-24],[5,-20],[-18,-14],[-27,46],[-17,1],[-17,20],[-8,33],[15,9],[7,-6],[33,24],[24,-9]],[[61864,90265],[-10,-8],[-55,27],[-5,21],[2,8],[22,6],[23,-7],[17,-27],[6,-20]],[[57465,97147],[-41,-1],[-75,42],[-14,37],[13,15],[36,1],[57,-51],[61,-15],[-37,-28]],[[58068,97299],[83,-4],[83,9],[14,-9],[-107,-31],[-119,16],[-107,4],[-127,-33],[-42,13],[65,33],[70,10],[11,20],[27,4],[93,2],[56,-34]],[[63903,97968],[-23,-8],[-106,44],[-9,13],[91,41],[102,-6],[16,-20],[3,-7],[-69,-36],[-5,-21]],[[64280,97893],[7,-7],[-1,-6],[-99,6],[-173,-4],[-100,32],[106,32],[56,7],[72,27],[89,-26],[-5,-23],[1,-11],[24,-10],[23,-17]],[[59034,97994],[-263,-22],[-27,16],[427,63],[22,6],[80,8],[68,-14],[-20,-11],[-287,-46]],[[66058,98816],[14,-23],[43,-13],[117,-11],[35,-26],[-53,-19],[-143,-10],[15,-38],[29,-28],[-29,-33],[-40,-16],[-88,-19],[-81,24],[-94,35],[-42,-23],[-44,-14],[-41,2],[-48,27],[-132,-21],[-40,23],[-29,48],[87,10],[104,-15],[69,48],[88,21],[70,51],[33,17],[76,-3],[25,4],[73,13],[26,-11]],[[65199,98568],[209,-55],[194,5],[84,-17],[122,-50],[182,-53],[35,-16],[-31,-21],[-213,-53],[-138,-18],[-120,-3],[-48,6],[-48,38],[-117,28],[-125,-8],[-13,15],[-25,11],[-43,2],[-86,15],[-6,34],[54,17],[35,1],[14,48],[60,73],[24,1]],[[64098,98529],[-39,-4],[-27,3],[-29,22],[-10,11],[-2,11],[26,2],[12,11],[4,8],[20,6],[34,1],[45,-12],[19,-24],[-44,-21],[-9,-14]],[[66283,98526],[39,-30],[15,-33],[24,-20],[8,-38],[-20,-31],[-60,-6],[-99,-2],[-97,16],[-52,56],[-96,15],[-54,58],[56,17],[68,-8],[109,50],[15,-3],[24,-11],[88,-19],[32,-11]],[[67680,98853],[-34,-8],[-179,7],[-86,14],[-12,8],[-4,7],[-114,12],[49,16],[142,7],[254,-19],[16,-13],[5,-8],[-37,-23]],[[66193,98914],[-92,-12],[-13,9],[-3,6],[10,15],[11,29],[42,17],[313,16],[41,-17],[-15,-26],[0,-12],[-294,-25]],[[55205,98099],[-60,-32],[-100,25],[12,25],[23,15],[64,-6],[61,-27]],[[53125,97125],[3,-40],[45,4],[53,-42],[58,-22],[17,-16],[12,-20],[35,-40],[17,-42],[-42,-4],[-58,60],[-47,34],[-60,29],[-48,2],[-21,12],[-78,105],[-15,24],[-44,39],[-20,48],[0,38],[60,-9],[52,-24],[45,-54],[9,-16],[-21,-22],[21,-27],[27,-17]],[[55338,94695],[-33,-23],[-51,34],[-33,43],[18,16],[89,3],[22,-23],[4,-13],[-16,-37]],[[64761,92881],[14,-16],[4,-32],[-38,-54],[-6,-20],[16,-18],[4,-10],[-27,-8],[-5,25],[-15,24],[-32,19],[-13,16],[-14,38],[-53,40],[-34,-6],[-38,18],[-11,8],[-3,23],[16,19],[60,16],[29,-1],[31,-16],[-2,20],[3,8],[13,-3],[35,-20],[25,-42],[22,-31],[19,3]],[[64761,92881],[-1,0],[2,0],[-1,0]],[[70738,93820],[-6,-5],[-14,10],[-42,15],[-71,39],[-22,27],[11,30],[16,20],[58,12],[53,-5],[35,-7],[66,-27],[-61,-17],[-26,-37],[3,-22],[11,-13],[-11,-20]],[[70973,94156],[-45,-14],[9,26],[54,37],[100,19],[30,-8],[4,-6],[-42,-39],[-21,-13],[-89,-2]],[[71320,94150],[-26,-4],[-118,22],[-43,27],[16,18],[31,0],[140,-63]],[[71564,93485],[-135,-5],[-67,9],[-10,11],[9,28],[69,42],[31,27],[32,46],[56,38],[47,0],[147,-45],[21,-28],[3,-13],[-58,-38],[-41,-14],[-63,-48],[-41,-10]],[[72083,93733],[-20,-6],[-152,23],[-53,30],[-16,27],[6,24],[141,117],[54,-33],[15,-31],[36,-38],[-1,-86],[-10,-27]],[[72974,94522],[-27,-20],[-37,11],[-27,13],[-14,19],[14,10],[40,7],[24,-7],[21,-22],[6,-11]],[[73207,94511],[-14,-14],[-13,2],[-11,-7],[-70,21],[-95,9],[24,22],[68,13],[101,-17],[30,-19],[-20,-10]],[[73543,94734],[-13,-34],[-78,17],[-11,14],[42,21],[38,12],[54,2],[-32,-32]],[[74070,95035],[23,-11],[73,17],[14,-6],[20,-24],[-31,-45],[-23,-18],[-66,10],[-83,1],[-37,25],[20,26],[48,16],[28,15],[14,-6]],[[72825,95287],[10,-19],[4,-21],[-12,-6],[-36,1],[-20,-54],[-20,9],[-13,31],[-45,-21],[-12,5],[-21,24],[-13,5],[-9,16],[59,48],[36,-25],[24,1],[-5,29],[1,22],[30,9],[40,1],[2,-55]],[[76814,95782],[22,-9],[-6,-24],[-29,7],[-38,-12],[1,-20],[-15,-33],[-53,20],[-73,3],[-46,19],[-102,12],[3,27],[16,16],[59,-23],[54,26],[101,-13],[33,19],[73,-15]],[[77107,95967],[-15,-9],[-29,4],[-24,22],[-9,35],[20,9],[57,-61]],[[76745,96213],[-9,-11],[-12,-9],[-33,6],[-65,-16],[-25,9],[-24,18],[-88,-6],[-26,4],[42,22],[120,24],[188,62],[9,-30],[0,-14],[-38,-34],[-39,-25]],[[74864,96306],[-59,-3],[-34,15],[-10,10],[16,26],[23,17],[93,6],[17,-18],[-4,-15],[-42,-38]],[[71180,97725],[34,-21],[26,16],[248,-50],[53,-18],[11,-13],[-217,-8],[-44,3],[-4,29],[-49,1],[-85,19],[-23,27],[-5,11],[27,11],[28,-7]],[[72229,98414],[-258,-21],[-25,13],[-8,8],[36,44],[30,21],[164,8],[131,-14],[41,-13],[-15,-26],[-8,-9],[-88,-11]],[[75435,98583],[-96,-45],[-346,29],[-16,20],[-5,13],[47,25],[288,-9],[103,-9],[25,-24]],[[79915,96849],[-25,-28],[-35,-14],[-38,23],[-95,-1],[-163,25],[47,16],[257,13],[18,-3],[34,-31]],[[79519,96892],[-33,-4],[-36,12],[10,26],[81,4],[30,39],[51,-2],[14,-11],[8,-13],[-1,-17],[-11,0],[-48,-2],[-9,-9],[-56,-23]],[[79837,96337],[-32,0],[-9,27],[27,33],[34,0],[29,-10],[10,-5],[10,-12],[4,-18],[-73,-15]],[[81243,95979],[43,-39],[8,-25],[-13,-6],[-8,-9],[-3,-18],[-12,-1],[-38,19],[-27,31],[-40,7],[-42,31],[-9,13],[11,4],[75,-8],[32,14],[23,-13]],[[83405,93945],[-70,-26],[-60,0],[-42,46],[33,18],[57,7],[31,-6],[44,-29],[7,-10]],[[84594,94383],[-17,-1],[-32,15],[-8,21],[0,10],[26,8],[33,-5],[25,-19],[4,-7],[-31,-22]],[[87763,95281],[-57,-16],[-81,5],[6,42],[14,19],[19,46],[-9,35],[5,42],[10,33],[23,45],[25,-27],[17,-40],[15,-20],[62,-39],[12,-12],[-52,-48],[-5,-21],[16,-27],[-20,-17]],[[91430,96001],[-209,-6],[14,16],[75,40],[191,21],[-38,-20],[-18,-41],[-15,-10]],[[87832,94420],[-21,-17],[-20,25],[-93,76],[-23,35],[-51,34],[-13,12],[-4,30],[67,-19],[113,-75],[62,-60],[-17,-41]],[[88321,93034],[-69,-49],[-27,6],[-28,24],[-15,5],[-15,-4],[-17,-10],[-22,-2],[-51,26],[-5,16],[5,8],[14,8],[10,0],[32,13],[149,5],[11,-3],[21,-23],[7,-20]],[[94643,92639],[-19,-10],[-40,8],[-19,18],[1,42],[2,6],[33,-6],[22,-23],[20,-35]],[[96999,91923],[-79,-5],[-158,54],[-56,28],[-42,36],[-48,25],[-9,10],[7,21],[14,16],[54,43],[38,19],[45,4],[283,-76],[12,-16],[4,-14],[-4,-30],[-24,-6],[-9,-20],[-10,-61],[-5,-16],[-13,-12]],[[95453,85600],[-45,-54],[-7,9],[-4,12],[-1,19],[41,36],[42,91],[16,75],[-5,25],[-2,24],[123,47],[87,75],[16,-3],[15,-63],[9,-81],[-12,-49],[-94,-28],[-88,-54],[-91,-81]],[[96677,83274],[11,-30],[-112,106],[-52,56],[-13,36],[19,0],[23,-34],[32,-16],[48,-46],[44,-72]],[[96291,83432],[-2,-84],[-34,43],[-16,34],[-23,6],[-16,16],[-26,41],[-31,54],[-10,27],[-4,34],[-21,31],[-67,60],[22,7],[28,26],[78,-16],[18,-7],[-13,-40],[5,-44],[43,-92],[21,-32],[28,-25],[20,-39]],[[93445,81023],[-11,-13],[-11,3],[-36,36],[-8,17],[13,30],[45,45],[22,-1],[9,-10],[-1,-53],[-22,-54]],[[93310,80819],[-35,-58],[-52,-14],[-25,-19],[-19,-39],[-14,-21],[-30,12],[-13,19],[0,68],[-13,30],[6,19],[30,-3],[30,44],[69,18],[25,47],[31,117],[33,41],[26,9],[8,-58],[-7,-64],[-15,-62],[-35,-86]],[[92799,79948],[-10,-30],[-12,10],[-2,9],[27,35],[10,41],[20,1],[8,-8],[-6,-20],[-35,-38]],[[93234,81118],[-26,-7],[-11,16],[-8,18],[-5,26],[29,12],[19,-14],[4,-38],[-2,-13]],[[92527,79356],[-13,-33],[-14,4],[-5,9],[18,39],[8,7],[6,-26]],[[92222,78857],[-52,-63],[-17,0],[-9,24],[-2,13],[42,10],[48,84],[35,55],[19,19],[16,-1],[-80,-141]],[[91579,78134],[-41,-29],[-26,1],[61,142],[36,21],[46,84],[97,103],[11,7],[56,-3],[-88,-113],[-11,-45],[-39,-48],[-28,-16],[-20,-23],[-54,-81]],[[91277,77947],[-52,-40],[-42,-18],[-71,-84],[-26,-46],[-36,-19],[-35,11],[-10,-19],[-3,-33],[-13,-29],[-70,-91],[-29,-72],[-30,-13],[-56,-73],[10,63],[11,30],[47,56],[3,60],[26,51],[51,52],[35,67],[28,18],[31,56],[32,20],[-3,43],[14,48],[11,-3],[26,-67],[20,-2],[54,14],[80,116],[26,21],[19,4],[11,-10],[4,-14],[-1,-17],[-6,-25],[10,-29],[-13,-22],[-53,-4]],[[91830,85840],[-22,-7],[-11,16],[-1,11],[34,25],[21,36],[13,-22],[4,-15],[-38,-44]],[[88316,83578],[25,-23],[39,4],[10,-15],[-31,-25],[-22,-51],[-7,-47],[-9,-18],[-25,-23],[-22,-30],[-19,-19],[-17,-6],[-37,99],[-18,28],[-52,-47],[-12,-1],[12,58],[30,63],[15,9],[30,85],[9,19],[93,-50],[8,-10]],[[88104,83582],[-34,-100],[-24,-1],[-18,21],[-39,-8],[-14,5],[23,31],[55,48],[23,-1],[22,10],[6,-5]],[[90753,77041],[-9,-16],[-20,14],[1,32],[2,9],[57,28],[16,-18],[4,-15],[-51,-34]],[[90612,77475],[42,-42],[58,9],[-14,-38],[-22,1],[-39,-55],[-34,-7],[-17,-13],[-55,-82],[-8,-32],[-33,-62],[-50,-55],[-9,-104],[-32,42],[-4,42],[10,35],[57,74],[23,41],[7,34],[22,36],[10,32],[14,14],[48,131],[26,-1]],[[84525,65965],[-16,-91],[-14,-13],[-14,7],[-14,51],[10,19],[14,-10],[11,4],[25,74],[7,-12],[-9,-29]],[[84413,65829],[-18,-8],[-21,10],[-19,2],[0,18],[20,17],[0,25],[5,13],[46,-30],[-2,-22],[-11,-25]],[[84845,66096],[-24,-15],[-25,8],[4,81],[9,-11],[5,-28],[19,-16],[12,-19]],[[85627,67196],[-27,-27],[-10,-31],[-25,-11],[-24,-44],[-23,-9],[0,-35],[10,-30],[-15,-6],[-17,-36],[-1,-27],[6,-22],[-1,-11],[-20,-31],[-22,-2],[-1,35],[2,25],[20,63],[0,73],[19,8],[7,10],[29,52],[6,22],[-16,21],[1,25],[4,11],[24,-8],[10,-19],[5,-2],[14,14],[6,25],[27,50],[11,49],[21,-41],[-6,-52],[-14,-39]],[[85832,67811],[-12,-11],[-15,15],[-5,66],[7,32],[12,7],[11,-57],[7,-24],[-5,-28]],[[85958,68092],[-24,-47],[-25,42],[-31,29],[15,7],[8,11],[1,18],[20,27],[40,20],[12,2],[14,19],[5,17],[6,9],[25,24],[7,-28],[-1,-21],[-19,-12],[-19,-29],[-17,-36],[-16,-15],[-5,-11],[4,-26]],[[85922,68032],[2,-13],[-27,11],[-11,53],[18,-10],[6,-18],[12,-23]],[[86283,69275],[-32,-12],[-17,13],[-16,71],[30,45],[41,-44],[8,-13],[-14,-60]],[[86377,69352],[-24,-6],[-1,34],[19,75],[2,55],[18,70],[8,15],[6,6],[6,-22],[-7,-85],[-18,-65],[-9,-77]],[[85740,70727],[10,-15],[16,9],[13,2],[9,-8],[11,-40],[4,-24],[-20,-3],[-9,-5],[-11,-30],[-16,11],[-10,14],[-2,19],[5,70]],[[86133,70408],[-22,-20],[-3,19],[-9,9],[16,28],[0,12],[-11,19],[12,71],[-3,30],[44,12],[8,-29],[1,-87],[-33,-64]],[[86216,70520],[-24,-3],[-11,7],[-4,18],[35,37],[26,-6],[-11,-34],[-11,-19]],[[87046,72697],[-12,-21],[-24,7],[-14,31],[5,35],[25,27],[23,-54],[-3,-25]],[[88428,73630],[-26,-2],[-7,6],[16,14],[1,24],[10,42],[0,13],[-21,2],[1,48],[16,48],[43,75],[11,14],[2,-33],[-13,-77],[-3,-28],[34,-6],[-22,-93],[-42,-47]],[[88744,76083],[-6,-3],[-7,5],[-6,43],[5,23],[18,16],[17,5],[-14,-80],[-7,-9]],[[89186,77956],[-11,-37],[-14,55],[-3,58],[8,0],[16,-9],[3,-28],[1,-39]],[[89248,77833],[-19,-4],[-23,24],[-3,30],[17,24],[16,-9],[16,-31],[5,-16],[-9,-18]],[[88844,70884],[-5,-6],[-13,19],[-2,17],[2,10],[9,2],[18,-20],[-9,-22]],[[88737,71846],[-3,-27],[-15,6],[-7,18],[1,32],[16,0],[8,-29]],[[87480,71594],[-30,-49],[-26,3],[-13,22],[-4,27],[25,43],[21,60],[19,27],[16,15],[12,-1],[-27,-84],[7,-63]],[[85854,70760],[-7,-6],[-9,52],[-6,18],[10,10],[21,94],[4,-37],[8,-37],[8,-6],[-8,-27],[-12,-10],[-9,-51]],[[85969,70980],[-19,-27],[-15,0],[13,32],[2,15],[11,43],[21,15],[9,2],[-17,-44],[-5,-36]],[[86054,71283],[-20,-24],[-14,19],[7,51],[5,17],[16,-17],[6,-46]],[[85910,71499],[-18,-23],[-8,35],[8,102],[34,-21],[0,-31],[-16,-62]],[[85940,71632],[-6,-28],[-19,19],[-8,18],[17,87],[-2,34],[1,16],[35,45],[6,-8],[2,-13],[-3,-20],[2,-43],[-27,-71],[2,-36]],[[86826,71494],[-8,-23],[-24,7],[10,20],[7,24],[6,5],[4,-26],[5,-7]],[[86740,71396],[13,-21],[32,9],[4,-6],[-9,-19],[-14,-19],[-26,14],[-16,1],[-2,31],[2,12],[16,-2]],[[82890,65968],[12,-38],[-5,-24],[-38,13],[-2,23],[14,-4],[19,30]],[[82828,65953],[-10,-34],[-16,5],[0,25],[-4,7],[5,23],[3,7],[18,-20],[4,-13]],[[85761,71888],[-27,-36],[-35,48],[-8,26],[26,39],[23,44],[15,3],[6,-124]],[[85573,71892],[-3,-56],[-20,-3],[-11,36],[-13,-17],[-6,-1],[-10,45],[-2,36],[23,26],[14,-16],[20,-8],[8,-42]],[[85499,71782],[-3,-18],[-14,27],[14,30],[3,-39]],[[85090,70981],[-13,-13],[-11,8],[-3,6],[-14,33],[-4,17],[10,32],[38,53],[99,51],[18,2],[39,-21],[9,-42],[-7,-35],[-9,-24],[-46,-40],[-35,-19],[-71,-8]],[[85064,71641],[-18,-9],[-10,20],[-7,6],[4,26],[29,51],[6,17],[27,-10],[10,-27],[-13,-42],[-28,-32]],[[85144,73580],[-2,-76],[-15,4],[-10,7],[-5,15],[-10,71],[11,29],[23,-23],[8,-27]],[[83850,69983],[-23,-16],[-72,49],[-51,55],[-31,65],[-4,28],[35,-5],[35,-24],[8,-36],[14,-11],[9,-21],[65,-49],[10,-15],[5,-20]],[[83970,69103],[-4,-12],[-34,33],[-37,7],[-13,29],[-2,46],[39,-2],[48,-41],[11,-21],[-8,-39]],[[83936,68939],[-1,-11],[-24,37],[-11,7],[5,21],[16,5],[13,-47],[2,-12]],[[84000,69062],[-2,-27],[-8,4],[-10,47],[6,12],[14,-3],[0,-33]],[[83283,66507],[-21,-27],[-13,13],[0,36],[7,32],[-8,23],[7,28],[16,8],[5,-17],[9,-10],[3,-9],[0,-18],[-9,-30],[7,-16],[-3,-13]],[[80662,63993],[10,-20],[28,14],[5,-25],[-1,-12],[-9,-29],[-23,22],[-23,-5],[-16,2],[-5,14],[13,28],[21,11]],[[79889,64064],[-40,-72],[-15,1],[13,82],[7,19],[24,-28],[11,-2]],[[79866,63897],[-15,-15],[-19,2],[22,28],[12,35],[9,12],[-1,-30],[-8,-32]],[[79730,63794],[-11,-3],[-22,47],[11,25],[26,-18],[5,-11],[0,-10],[-6,-22],[-3,-8]],[[79684,63833],[-3,-11],[-14,27],[-10,12],[8,37],[16,-40],[3,-25]],[[79615,56844],[-8,-1],[-6,12],[26,37],[-3,-25],[1,-12],[-10,-11]],[[78906,57828],[5,-29],[-2,-66],[-11,-66],[4,-29],[-9,-18],[-18,123],[-24,53],[-5,21],[14,-2],[24,34],[12,1],[10,-22]],[[78623,58343],[-5,-5],[-5,0],[-5,8],[1,34],[3,20],[9,4],[2,-61]],[[78501,58569],[-5,-60],[-15,24],[3,31],[7,13],[10,-8]],[[78451,58749],[1,-14],[-14,10],[-5,-5],[-17,4],[-8,80],[2,19],[11,-6],[17,-40],[8,-27],[5,-21]],[[78880,52610],[-42,-38],[-47,34],[15,57],[32,13],[25,-18],[14,-13],[10,-16],[-7,-19]],[[78950,53416],[-14,-6],[-7,4],[-5,23],[11,51],[4,9],[11,-56],[0,-25]],[[77857,54893],[-7,-16],[-20,9],[4,94],[11,12],[18,-17],[8,-16],[-14,-66]],[[77735,55567],[19,-62],[-9,-27],[-5,-8],[-12,9],[-11,-24],[-11,-4],[-11,42],[-13,17],[-3,30],[18,5],[10,-10],[20,20],[8,12]],[[77683,55599],[-5,-3],[-10,47],[13,67],[13,-82],[-11,-29]],[[77798,57428],[-3,-9],[-11,18],[-8,21],[-4,26],[17,-1],[8,-25],[1,-30]],[[77797,57365],[1,-33],[-6,-39],[-25,-23],[-9,31],[2,49],[4,12],[25,-3],[8,6]],[[77386,56413],[-3,-10],[-14,110],[20,-29],[-3,-71]],[[77335,56395],[-3,-43],[-11,1],[-12,-27],[-5,-4],[-10,86],[11,121],[6,18],[8,-32],[23,-15],[-10,-69],[3,-36]],[[77307,57057],[-16,-7],[2,32],[4,20],[8,5],[3,-34],[-1,-16]],[[76080,55778],[-17,-48],[-33,145],[-15,9],[0,69],[8,28],[38,30],[10,-17],[20,-134],[-11,-82]],[[76036,56080],[-26,-54],[-12,33],[5,22],[11,13],[11,17],[11,-31]],[[75872,56595],[8,-22],[-15,4],[-15,32],[4,31],[6,12],[12,-57]],[[75956,56381],[-22,-1],[-6,24],[-9,26],[6,25],[12,6],[16,-40],[4,-28],[-1,-12]],[[75982,56484],[-13,-22],[-4,3],[-1,16],[-1,12],[-2,20],[-2,37],[11,30],[10,-6],[-5,-31],[7,-59]],[[75774,57106],[-13,-4],[-7,20],[-1,23],[7,15],[6,7],[7,-1],[7,-39],[-6,-21]],[[75694,57923],[-8,-20],[-29,15],[3,60],[-7,58],[5,24],[21,42],[18,18],[12,-56],[5,-55],[-20,-86]],[[75747,58399],[-13,-12],[-14,15],[11,23],[2,47],[13,-26],[0,-30],[1,-17]],[[75837,58776],[13,-79],[-22,35],[-8,24],[11,17],[6,3]],[[75754,59253],[-9,-37],[-1,80],[4,10],[4,3],[6,-8],[-4,-48]],[[75756,58488],[-7,-14],[-9,15],[-25,104],[-5,66],[-7,23],[9,33],[12,11],[6,37],[3,57],[10,46],[5,13],[20,0],[6,6],[-3,44],[-12,20],[-4,12],[0,106],[3,43],[8,30],[-6,64],[4,24],[15,33],[7,72],[-6,21],[14,110],[-1,73],[19,74],[29,33],[9,1],[1,-62],[3,-21],[-17,-37],[16,-49],[-2,-17],[-6,-39],[-11,-37],[-15,-16],[-11,-50],[-7,-19],[22,-53],[7,-180],[-16,-49],[-19,-10],[4,-120],[-3,-26],[-19,-59],[-4,-26],[-11,-24],[5,-30],[9,-13],[0,-25],[-8,-64],[-1,-72],[-11,-59]],[[77372,58157],[-6,-1],[-6,2],[-6,9],[14,62],[4,-72]],[[77280,58152],[23,-100],[-3,-15],[-3,-8],[-6,3],[-9,54],[-17,34],[-21,-6],[17,44],[7,10],[12,-16]],[[77272,57565],[-13,-34],[-5,2],[6,55],[23,41],[19,4],[-2,-26],[-14,-31],[-14,-11]],[[77283,58455],[-1,-13],[-2,0],[-7,9],[4,55],[11,44],[11,66],[6,14],[2,-35],[-7,-74],[-5,-40],[-12,-26]],[[77365,58700],[-12,-3],[-5,93],[3,14],[16,-46],[24,-28],[-9,-18],[-17,-12]],[[77242,58578],[3,-32],[-18,34],[-3,95],[14,-60],[6,-14],[-2,-23]],[[77375,58608],[-7,-119],[-17,17],[-9,0],[-10,67],[0,18],[-6,44],[41,8],[8,-35]],[[77259,58842],[-3,-3],[-4,1],[-10,10],[-10,39],[5,27],[4,7],[10,-2],[4,-5],[2,-10],[-3,-22],[1,-19],[4,-23]],[[77240,58980],[-2,-21],[-16,-43],[-14,25],[-4,13],[15,28],[15,-4],[4,6],[2,-4]],[[77336,59100],[7,-16],[9,0],[-3,-56],[-22,-69],[-13,-10],[-5,0],[5,101],[-9,57],[3,39],[24,-18],[4,-28]],[[77309,59388],[-2,-95],[-14,46],[-2,52],[1,49],[3,8],[1,-8],[8,-22],[5,-30]],[[77103,61205],[-10,-7],[-16,37],[-3,90],[13,20],[7,5],[11,-11],[3,-14],[2,-18],[-3,-19],[-4,-83]],[[77521,56216],[7,-70],[-10,15],[-8,30],[0,44],[2,7],[9,-26]],[[76334,60955],[-6,-15],[-11,11],[-3,6],[26,64],[3,-24],[-9,-42]],[[76243,61028],[-18,-56],[-7,84],[30,47],[14,44],[15,31],[5,-37],[-14,-71],[-25,-42]],[[76024,62605],[-4,-5],[-29,49],[-23,62],[36,12],[35,-13],[1,-33],[-8,-53],[-8,-19]],[[75969,63301],[6,-79],[-19,30],[-7,41],[-2,42],[22,-34]],[[75835,63320],[4,-55],[-13,22],[-18,76],[1,50],[12,-23],[14,-70]],[[76031,63109],[32,-48],[13,3],[19,-30],[1,-12],[-4,-24],[-9,-19],[-24,-20],[-16,16],[-7,52],[-19,25],[-6,20],[13,29],[7,8]],[[75520,64419],[-10,-47],[-5,34],[4,43],[4,24],[3,0],[6,-25],[-2,-29]],[[75541,64232],[-17,-3],[-8,17],[4,24],[-5,78],[14,8],[7,-1],[5,-22],[3,-42],[-3,-59]],[[75319,64616],[-30,-40],[10,239],[22,-89],[6,-48],[-8,-62]],[[75432,64736],[-13,-17],[-12,14],[-16,56],[8,71],[5,11],[7,-23],[11,-50],[7,-38],[3,-24]],[[75178,65070],[4,-25],[-15,15],[-12,17],[-7,23],[12,12],[18,-42]],[[75215,64567],[-48,-20],[-25,6],[46,151],[-1,68],[-7,55],[-24,44],[-1,32],[-11,43],[-5,51],[26,16],[21,-29],[3,-16],[4,-42],[11,-43],[36,-88],[0,-55],[-10,-132],[-15,-41]],[[72213,57390],[-17,-6],[-14,38],[-3,17],[3,11],[4,6],[5,-2],[6,-36],[16,-28]],[[72187,57056],[8,-43],[-23,29],[-15,25],[-6,20],[32,-22],[4,-9]],[[47512,92649],[-25,-4],[-15,13],[37,35],[124,66],[49,63],[95,22],[6,-35],[-6,-44],[-84,-35],[-92,-23],[-89,-58]],[[6783,62794],[-12,-27],[-16,2],[-55,59],[-7,32],[4,148],[-21,120],[-23,91],[17,47],[22,37],[25,69],[-21,88],[6,53],[11,9],[59,-65],[117,-97],[31,-68],[6,-74],[21,-9],[11,-50],[30,-44],[11,-26],[-13,-40],[-56,-78],[-72,-34],[-62,-87],[-13,-56]],[[6329,64063],[59,-15],[14,6],[10,-12],[48,-8],[9,-5],[-10,-30],[-31,-27],[-45,24],[-75,8],[3,23],[7,16],[1,29],[10,-9]],[[6531,63901],[8,-11],[29,16],[22,5],[35,-38],[13,-26],[23,-27],[8,-21],[-6,-24],[-26,-40],[-36,-10],[-20,-17],[-28,4],[-8,7],[-3,51],[-9,55],[-17,-7],[-20,19],[-21,46],[-2,27],[11,44],[20,5],[15,-24],[12,-34]],[[5505,64424],[-5,-26],[-10,4],[-2,23],[6,31],[16,27],[18,41],[14,-6],[-8,-27],[-1,-29],[-20,-16],[-8,-22]],[[6167,64202],[9,-3],[13,4],[4,-46],[14,-25],[5,-15],[-15,-16],[-30,-7],[-14,13],[-15,29],[-15,-8],[-3,23],[-3,6],[-11,-6],[10,-30],[-27,-2],[-9,4],[-7,34],[-28,64],[0,25],[-10,31],[42,8],[28,53],[16,5],[31,-85],[0,-24],[6,-23],[9,-9]],[[5730,64476],[-25,-32],[-14,14],[-27,5],[-10,25],[-29,22],[-11,30],[17,56],[41,48],[63,-2],[14,-38],[1,-28],[-8,-31],[-4,-45],[-8,-24]],[[6431,63808],[-17,-16],[-18,8],[-4,39],[-17,50],[30,10],[17,-14],[9,-16],[11,-27],[-11,-34]],[[99847,81435],[-49,0],[-97,94],[-50,29],[-28,33],[13,7],[60,-23],[49,-51],[27,-33],[31,-28],[34,-12],[10,-16]],[[99923,81742],[-23,-14],[-26,7],[-15,23],[2,27],[34,29],[43,-37],[-15,-35]],[[99281,81729],[-24,-24],[-19,24],[-3,12],[36,42],[28,9],[11,15],[12,53],[20,2],[10,-6],[-5,-25],[-16,-38],[0,-27],[-50,-37]],[[98255,82004],[-18,-2],[-11,20],[-60,8],[6,19],[26,8],[39,30],[33,-5],[-9,-28],[-6,-50]],[[98002,82380],[48,-19],[33,9],[41,-30],[52,-53],[-12,-10],[-13,-5],[-12,0],[-40,-8],[-22,2],[-40,-36],[-45,26],[-15,51],[-35,12],[-28,18],[51,40],[37,3]],[[2016,86668],[60,-38],[39,4],[30,-31],[13,-26],[-46,19],[-66,-2],[-90,77],[-32,18],[7,43],[35,22],[17,-58],[33,-28]],[[2733,84783],[-29,-28],[-26,10],[-7,20],[-1,9],[75,22],[-12,-33]],[[5464,83719],[-4,-45],[-38,29],[-10,14],[7,11],[36,2],[9,-11]],[[5365,83706],[4,0],[9,4],[18,33],[6,1],[0,-10],[-8,-32],[14,-43],[13,-21],[-1,-7],[-34,-15],[-25,11],[-14,-4],[-12,-15],[-9,17],[-6,79],[2,14],[14,27],[18,13],[8,-4],[7,-11],[1,-11],[-5,-26]],[[4917,83436],[-6,-2],[-20,17],[-7,14],[-5,20],[39,30],[8,0],[8,-16],[1,-14],[-11,-37],[-7,-12]],[[4846,83180],[-24,-13],[-26,13],[-22,25],[-2,28],[49,-18],[10,-9],[15,-26]],[[5733,83509],[-9,-3],[-8,6],[-10,33],[-1,13],[20,-10],[7,-24],[1,-15]],[[5591,83599],[-17,-13],[-5,-16],[-13,-7],[-11,-13],[-37,-59],[-16,-11],[18,51],[3,16],[0,10],[-5,38],[10,-1],[9,8],[18,34],[16,3],[17,40],[9,3],[4,-6],[-7,-24],[16,-22],[-4,-22],[-5,-9]],[[5690,83612],[-1,-46],[-4,-7],[-8,12],[-15,-13],[-9,10],[4,16],[-1,12],[11,1],[3,23],[-2,9],[6,21],[8,5],[8,-43]],[[2863,82285],[-4,-24],[-4,-8],[-43,12],[-29,-4],[-3,14],[3,12],[45,18],[18,1],[12,-10],[5,-11]],[[2574,82131],[-18,-18],[-5,7],[-3,23],[10,17],[30,38],[21,-7],[6,-10],[0,-14],[-8,-19],[-10,-10],[-12,0],[-11,-7]],[[3933,82989],[-11,-10],[-8,-2],[-7,6],[-28,-7],[-6,4],[-13,34],[-1,18],[5,14],[13,13],[21,11],[21,-2],[35,-32],[17,-18],[3,-12],[-12,-11],[-29,-6]],[[4011,83027],[-12,-4],[-3,6],[-2,25],[-9,40],[18,15],[11,3],[4,-6],[13,-30],[13,-8],[9,-6],[-16,-9],[-26,-26]],[[3343,82571],[-85,-61],[-28,-45],[-21,-44],[-16,-24],[-12,-4],[-14,-11],[-28,-31],[-12,-3],[-90,-71],[-6,-1],[4,18],[28,26],[18,24],[20,40],[11,14],[4,20],[1,40],[5,15],[20,30],[14,17],[18,6],[38,-5],[16,15],[4,11],[-9,11],[-2,18],[2,32],[11,28],[19,25],[27,19],[33,13],[24,1],[44,-29],[7,-13],[-11,-29],[-6,-27],[-28,-25]],[[3718,82891],[12,-27],[21,17],[15,24],[12,31],[7,12],[11,-16],[29,-22],[-25,-34],[-47,-51],[-16,-34],[-1,-15],[46,12],[13,-2],[8,-12],[-13,-13],[-25,-13],[-21,-24],[-50,-42],[-19,-35],[-23,-14],[-30,-3],[-54,-23],[-32,-21],[-8,-12],[-11,-5],[-12,1],[-13,-10],[-14,-19],[-12,-9],[-19,-2],[-11,-8],[-11,0],[-31,23],[-8,14],[28,27],[20,9],[30,4],[29,25],[61,34],[19,18],[12,63],[14,11],[8,25],[33,-1],[16,-28],[5,-4],[3,3],[2,22],[17,16],[-10,12],[-31,15],[-23,6],[-15,0],[-13,8],[-9,17],[-5,17],[1,17],[8,19],[14,21],[17,12],[36,9],[32,14],[17,2],[13,-6],[3,-55]],[[3831,82789],[-4,-1],[-7,14],[-1,13],[5,9],[13,22],[9,8],[11,4],[3,-6],[-10,-26],[-12,-17],[-7,-20]],[[2093,81953],[-21,-8],[-22,9],[10,30],[11,16],[21,20],[24,-9],[19,-25],[-42,-33]],[[1791,81875],[54,-23],[68,2],[25,-5],[0,-7],[-43,-10],[-15,4],[-38,-13],[-26,-3],[-58,13],[-46,-9],[-12,3],[-14,11],[-16,18],[-1,12],[15,4],[40,-15],[4,8],[34,14],[29,-4]],[[1478,81817],[-149,-24],[-22,16],[22,10],[27,5],[56,27],[69,23],[54,29],[47,18],[13,30],[-41,16],[-8,12],[19,14],[16,21],[39,25],[34,-31],[8,-20],[-4,-25],[-7,-25],[-30,-13],[-4,-13],[16,-38],[-62,-33],[-93,-24]],[[1109,81688],[-24,-12],[-31,25],[3,30],[34,-25],[18,-18]],[[1031,81677],[-17,-34],[-13,15],[-5,47],[10,12],[27,-34],[-2,-6]],[[946,81720],[2,-20],[32,3],[10,-10],[0,-38],[-5,-11],[-4,-2],[-12,8],[-13,-19],[-59,-48],[-18,27],[-35,-42],[24,108],[28,16],[11,12],[-3,32],[13,52],[28,-2],[13,-22],[0,-14],[-12,-30]],[[1105,81798],[-6,-17],[-28,18],[-9,15],[-2,15],[8,25],[22,0],[12,-10],[12,-19],[4,-12],[-13,-15]],[[792,81633],[-8,-7],[-15,-6],[-42,6],[-26,-2],[-28,-4],[-22,-10],[-4,14],[1,12],[92,32],[22,16],[13,21],[12,39],[10,12],[6,-1],[13,-15],[-5,-20],[-11,-18],[-4,-17],[-4,-52]],[[589,81595],[-6,-19],[-7,0],[-37,32],[-5,11],[22,15],[6,11],[-3,16],[-16,21],[-30,27],[-11,20],[7,12],[14,7],[45,2],[25,-34],[18,-12],[43,-8],[-22,-14],[-13,-13],[-15,-53],[-15,-21]],[[70474,21234],[-34,-28],[-34,1],[-14,21],[-22,68],[-14,4],[-8,19],[-1,8],[15,5],[23,-19],[55,-16],[40,-37],[30,-12],[-12,-10],[-24,-4]],[[69244,23583],[-17,-5],[-5,19],[1,25],[-10,20],[-5,22],[4,20],[28,3],[28,-7],[8,-35],[-21,-48],[-11,-14]],[[64398,25092],[-20,-5],[-18,11],[-11,32],[23,27],[12,-19],[9,-20],[5,-26]],[[60515,24801],[-12,-11],[-56,10],[-6,22],[17,34],[9,14],[29,-7],[24,-28],[4,-9],[-9,-25]],[[57734,72539],[-21,-12],[-6,2],[-9,26],[12,65],[-11,41],[-1,18],[17,24],[11,36],[27,40],[72,46],[17,5],[-1,-37],[-24,-92],[-21,-46],[6,-37],[-34,-11],[-34,-68]],[[57548,72272],[-10,-32],[-11,27],[5,31],[-13,50],[24,74],[0,36],[18,19],[-4,-62],[-14,-49],[14,-40],[7,-46],[-16,-8]],[[57738,72899],[-6,-9],[-14,26],[0,14],[14,16],[7,3],[2,-10],[0,-23],[-3,-17]],[[57505,73132],[-28,-8],[5,46],[-13,36],[21,-20],[14,-24],[7,-5],[-2,-15],[-4,-10]],[[57485,72999],[-8,-1],[10,28],[29,38],[43,34],[14,3],[24,-21],[-44,-34],[-12,-18],[-32,-4],[-24,-25]],[[57096,73137],[-25,-22],[-17,32],[-10,50],[46,72],[11,-6],[6,-19],[-1,-65],[-10,-42]],[[57021,73195],[-22,-44],[-18,5],[-8,20],[12,42],[24,24],[11,-7],[-1,-31],[2,-9]],[[57078,72806],[-13,-30],[-18,11],[7,11],[5,15],[0,22],[-5,13],[3,5],[17,-22],[4,-25]],[[57050,72968],[-5,-9],[-21,37],[-8,21],[10,18],[31,-42],[-7,-25]],[[57451,73623],[34,-19],[9,2],[16,-6],[5,-35],[-22,-6],[-37,-32],[-15,7],[-19,28],[-30,3],[-9,8],[16,33],[29,16],[23,1]],[[57230,73461],[-13,-2],[4,23],[25,40],[34,2],[32,20],[7,0],[-15,-31],[-25,-30],[-49,-22]],[[57183,73035],[-25,-4],[-8,4],[15,10],[11,10],[5,13],[25,23],[16,29],[18,-20],[-23,-13],[-34,-52]],[[57350,72917],[-22,-14],[-14,-29],[-17,21],[0,28],[18,-9],[13,16],[-4,18],[15,-9],[11,-22]],[[56765,73488],[-19,-28],[-3,42],[12,44],[16,3],[6,-19],[-12,-42]],[[56787,73354],[-16,-17],[6,40],[-8,21],[7,17],[10,15],[5,-15],[9,-24],[-13,-37]],[[56815,73020],[0,-34],[-1,-12],[-57,-16],[5,38],[3,13],[19,-18],[7,9],[3,10],[21,10]],[[56928,73440],[-1,-60],[-8,1],[-4,9],[0,23],[3,36],[10,-9]],[[56942,73594],[-9,-39],[-21,45],[-24,31],[-9,27],[-14,16],[-4,36],[17,15],[8,1],[18,-44],[28,-5],[-2,-27],[8,-35],[4,-21]],[[57015,73501],[-10,-37],[-18,6],[-29,40],[-10,18],[-5,18],[12,2],[14,-19],[37,-10],[9,-18]],[[56866,73111],[-5,-3],[-7,25],[-2,22],[3,13],[10,2],[13,-43],[-12,-16]],[[57248,73858],[-27,-33],[-29,47],[-5,15],[21,19],[11,30],[-8,36],[-31,53],[-1,38],[46,16],[27,-33],[14,-3],[-5,-31],[2,-10],[2,-96],[-13,-13],[-2,-26],[-2,-9]],[[57336,74498],[-5,-34],[38,-57],[13,-36],[5,-35],[-3,-10],[-15,19],[-12,6],[4,-25],[13,-21],[-22,-13],[-22,1],[-64,30],[-14,32],[38,48],[8,19],[-27,-2],[-29,-57],[-46,25],[-14,23],[-4,12],[19,51],[32,-2],[17,11],[21,16],[1,24],[50,6],[18,-31]],[[56605,74374],[-12,-20],[-20,9],[-20,65],[52,-54]],[[56635,74399],[-13,-7],[13,46],[23,24],[-9,-38],[-14,-25]],[[56854,74198],[-30,-14],[-8,2],[7,18],[0,7],[-29,33],[4,42],[3,11],[22,-22],[5,-37],[26,-40]],[[57134,75130],[-31,-15],[-35,47],[34,19],[15,-14],[11,-16],[6,-21]],[[57065,74874],[-10,-19],[-8,-34],[-4,-47],[-16,-2],[-10,10],[-3,18],[-1,23],[-7,-1],[-6,-25],[-5,-11],[-16,-2],[-18,15],[1,33],[-4,38],[2,14],[49,3],[14,-28],[18,16],[7,18],[21,11],[-4,-30]],[[56881,75238],[-35,-20],[-37,39],[1,23],[19,47],[10,14],[27,-4],[15,-32],[4,-15],[-5,-26],[1,-26]],[[57213,74963],[-64,-18],[-19,17],[20,35],[37,22],[12,2],[16,-34],[-2,-24]],[[45523,58213],[-22,-8],[-10,28],[-2,11],[12,10],[5,0],[9,21],[11,14],[5,5],[5,-1],[4,-46],[-5,-20],[-12,-14]],[[45451,63194],[-17,-56],[-8,22],[-3,37],[15,52],[8,28],[14,9],[-9,-92]],[[45224,70776],[38,-30],[35,14],[43,-39],[23,-9],[-20,-27],[-21,-36],[-50,9],[-42,34],[-15,26],[-5,23],[14,35]],[[45584,58227],[-3,-16],[-16,2],[4,16],[-4,5],[5,49],[2,7],[8,-18],[1,-8],[3,-37]],[[45462,68190],[-23,-131],[-22,-52],[-13,-17],[-32,-14],[-38,82],[-19,83],[-11,26],[17,21],[25,-3],[54,17],[11,7],[55,84],[55,10],[1,-27],[-60,-86]],[[46190,68497],[-19,-38],[-21,13],[10,83],[9,25],[39,36],[32,15],[9,38],[11,15],[11,-23],[-9,-26],[-6,-84],[-22,-26],[-44,-28]],[[46056,68069],[-38,-65],[-38,15],[-6,11],[38,16],[34,50],[22,110],[35,121],[7,52],[13,20],[19,2],[8,-4],[9,-27],[0,-61],[-10,-102],[-18,-89],[-75,-49]],[[46520,56126],[-4,-15],[-18,37],[-96,56],[27,29],[66,9],[20,-17],[9,-15],[3,-27],[-7,-57]],[[45722,68057],[-2,-45],[6,-44],[-1,-69],[-13,-36],[-35,-37],[-26,6],[-15,15],[-27,60],[-1,61],[25,41],[10,51],[64,-9],[6,9],[4,3],[5,-6]],[[45631,58303],[0,-23],[-11,4],[-4,7],[7,43],[11,19],[12,-3],[4,-6],[-2,-16],[-6,-14],[-11,-11]],[[45679,58488],[-2,-13],[-16,11],[23,49],[15,8],[-1,-37],[-11,-8],[-8,-10]],[[43008,61604],[-27,-11],[-12,5],[-3,46],[-6,30],[1,14],[63,59],[21,-10],[16,-47],[-11,-26],[-42,-60]],[[43086,61530],[-22,-13],[-14,1],[-21,21],[7,22],[22,24],[15,5],[12,-43],[1,-17]],[[45226,67984],[-11,-5],[-14,15],[-14,45],[10,34],[8,16],[13,-3],[23,-25],[8,-25],[0,-16],[-23,-36]],[[45582,58447],[-13,-18],[-13,9],[-7,16],[1,29],[15,41],[14,-6],[3,-71]],[[45559,58687],[-15,-70],[-17,7],[-13,42],[-1,18],[36,6],[10,-3]],[[45031,67862],[-27,-94],[-34,35],[-8,12],[-7,19],[33,4],[33,47],[10,-23]],[[43634,61196],[23,-11],[8,4],[15,-2],[16,-30],[3,-33],[-8,-40],[-30,-33],[-18,4],[-21,30],[12,60],[0,51]],[[43247,60400],[-21,-22],[-15,10],[-15,23],[-7,33],[6,28],[29,33],[17,-11],[10,-51],[-4,-43]],[[45046,68256],[-7,-5],[-7,46],[-33,111],[20,50],[37,1],[15,-34],[5,-36],[-7,-21],[2,-42],[-4,-27],[-21,-43]],[[43309,61418],[11,-17],[4,-12],[-17,-7],[-42,22],[-11,-13],[-11,-48],[-21,72],[2,27],[4,8],[30,-19],[51,-13]],[[43642,61439],[-9,-30],[-11,44],[-6,10],[-3,62],[16,19],[8,1],[0,-64],[5,-42]],[[43560,60562],[-8,-2],[-11,26],[2,36],[-1,9],[10,39],[20,-4],[6,-28],[0,-59],[-18,-17]],[[43487,60488],[-17,-53],[-36,4],[-19,22],[-22,66],[0,52],[8,44],[-1,39],[3,10],[11,-6],[2,-26],[34,-64],[12,-13],[25,-75]],[[62354,44883],[14,-79],[0,-60],[-6,-19],[-13,12],[-23,48],[-43,46],[20,4],[12,-4],[12,4],[8,26],[1,16],[11,12],[7,-6]],[[62163,44753],[19,-35],[-54,15],[-8,31],[-1,24],[20,-5],[24,-30]],[[62549,44368],[-17,-5],[-8,15],[-5,36],[5,35],[1,28],[-14,49],[14,28],[12,-32],[6,-2],[18,-23],[-5,-42],[1,-13],[-8,-42],[0,-32]],[[62073,44987],[-5,-8],[-25,33],[-15,8],[-21,53],[8,184],[7,24],[5,10],[12,3],[14,-23],[-4,-119],[19,-79],[12,-63],[-7,-23]],[[61030,47247],[-15,-7],[-6,7],[-9,24],[16,21],[16,39],[36,59],[12,38],[5,8],[-3,-45],[-20,-99],[-18,-7],[-14,-38]],[[61387,50599],[-11,-5],[6,33],[30,43],[13,-10],[2,-10],[-1,-8],[-5,-9],[-34,-34]],[[60971,48286],[21,-123],[-3,-23],[-15,-14],[-8,-1],[-9,20],[-7,41],[-11,-10],[-19,50],[-20,2],[-17,59],[7,51],[-4,88],[21,45],[12,76],[13,-52],[3,-80],[18,-95],[15,-29],[3,-5]],[[66014,40043],[-36,-17],[-39,6],[-15,31],[-3,13],[13,12],[-1,39],[7,63],[8,26],[20,23],[8,51],[17,34],[22,4],[22,-63],[16,-66],[-3,-65],[-16,-25],[-5,-38],[-15,-28]],[[65499,39550],[-40,-17],[-27,6],[-54,49],[-15,33],[-21,91],[5,32],[17,57],[38,23],[41,-9],[18,-15],[21,-66],[28,-68],[-4,-80],[-7,-36]],[[63428,44145],[0,-21],[-36,8],[-6,72],[18,3],[4,29],[11,4],[11,-64],[-2,-31]],[[63871,42106],[-32,-106],[9,89],[36,127],[11,10],[-24,-120]],[[48418,42627],[-25,-3],[2,27],[19,29],[13,-4],[0,-33],[-9,-16]],[[61073,49017],[2,-30],[-5,-27],[1,-87],[-1,-58],[-16,-80],[-13,-28],[-12,8],[-9,13],[-8,22],[15,147],[-7,107],[30,-10],[23,23]],[[65427,49139],[1,-53],[-13,18],[-4,34],[-18,26],[-9,24],[20,29],[23,-78]],[[52426,54008],[7,-3],[41,2],[12,-30],[-1,-45],[-43,-131],[-8,-55],[-17,-46],[-14,-4],[-49,27],[-9,17],[-3,22],[5,52],[4,16],[23,10],[8,9],[13,56],[4,51],[10,39],[17,13]],[[51849,51912],[-28,-42],[-10,11],[-7,29],[-8,64],[3,30],[13,35],[28,34],[17,3],[17,-46],[0,-47],[-25,-71]],[[52062,52746],[-11,-15],[-12,12],[-3,23],[16,44],[7,11],[6,-9],[4,-12],[1,-18],[-8,-36]],[[52027,54388],[-26,-18],[-18,4],[24,77],[12,-17],[16,-7],[-8,-39]],[[37741,38512],[9,-16],[-16,2],[-18,-14],[-28,-12],[-11,23],[24,32],[9,24],[6,-5],[8,-17],[17,-17]],[[36504,36634],[-5,-7],[-18,72],[35,69],[12,-28],[-9,-55],[-10,-38],[-5,-13]],[[36531,35848],[-19,-26],[4,137],[10,45],[11,34],[14,21],[10,-29],[-8,-67],[-25,-81],[3,-34]],[[37427,38082],[0,-30],[-11,15],[-31,-12],[-11,23],[42,97],[8,-14],[6,-18],[5,-25],[-5,-16],[-3,-20]],[[53132,71862],[-43,-41],[9,36],[28,43],[7,-10],[-1,-28]],[[53043,71268],[-7,-3],[-13,-16],[-8,-1],[-20,17],[-7,0],[-10,12],[3,68],[3,19],[49,2],[27,-40],[4,-10],[1,-12],[-12,-22],[-10,-14]],[[48774,83055],[-56,-73],[-23,13],[-19,-6],[-6,2],[11,26],[13,61],[24,24],[29,64],[23,17],[9,-2],[5,-6],[11,-71],[-16,-26],[-5,-23]],[[48164,84438],[-16,-4],[-1,9],[28,39],[17,6],[6,-4],[-12,-22],[-22,-24]],[[48581,83783],[-35,0],[-12,5],[-15,14],[-17,79],[6,28],[7,13],[7,11],[19,5],[18,-15],[7,-14],[15,-54],[3,-46],[-3,-26]],[[48395,84299],[-111,-32],[-38,3],[-4,16],[8,10],[31,10],[13,77],[-47,36],[-3,10],[4,17],[5,7],[29,18],[12,4],[10,-2],[21,-21],[23,-43],[30,-7],[21,-19],[-4,-84]],[[48297,84061],[10,-74],[10,-46],[0,-16],[-9,-22],[-45,-29],[-15,0],[0,7],[10,30],[-9,33],[4,26],[-4,4],[-9,-3],[-33,-41],[-11,-4],[-1,8],[8,34],[1,22],[5,14],[9,13],[11,10],[8,1],[9,-10],[27,28],[24,15]],[[48341,83994],[-6,-6],[-14,1],[-5,10],[-3,14],[0,26],[8,19],[36,28],[-16,10],[-1,7],[10,24],[39,36],[10,7],[10,-1],[-20,-65],[-48,-110]],[[49710,86701],[-7,-7],[-27,59],[20,67],[24,-2],[4,-18],[-2,-16],[-13,-2],[-1,-5],[4,-31],[0,-36],[-2,-9]],[[49636,86714],[6,-40],[14,10],[22,-39],[11,0],[18,16],[-4,-36],[-18,-101],[-6,-17],[-3,-31],[-4,-6],[-6,-61],[-12,-21],[-11,-48],[-4,-5],[-16,19],[16,74],[6,43],[-4,22],[-9,20],[-24,1],[-20,-9],[-4,12],[-1,16],[-5,5],[-27,-1],[-7,4],[-6,15],[-1,12],[25,9],[22,-4],[34,24],[-21,78],[-28,7],[-6,8],[5,13],[15,7],[24,40],[14,6],[17,-1],[-2,-41]],[[49784,86873],[0,-7],[-14,-49],[0,-18],[-23,2],[-4,5],[-4,28],[3,30],[3,8],[7,3],[7,-6],[12,15],[6,0],[7,-11]],[[49120,85710],[-16,-7],[-15,0],[-25,33],[-9,25],[2,16],[10,5],[24,-8],[12,-28],[1,-18],[3,-7],[15,-7],[-2,-4]],[[48834,82558],[11,-11],[30,2],[-10,-24],[-32,-27],[-22,-26],[-26,-22],[-13,25],[-15,-1],[-22,49],[-4,72],[29,19],[41,-1],[33,-55]],[[49291,85962],[-31,-1],[16,34],[19,9],[36,-4],[-6,-15],[-34,-23]],[[49186,85680],[-3,-2],[-10,11],[-17,38],[27,7],[12,-5],[-5,-16],[-4,-33]],[[49150,85846],[-3,-14],[21,0],[30,-12],[19,-2],[15,-15],[-8,-28],[-10,-8],[-10,-1],[-36,28],[-48,-12],[-10,4],[-6,7],[-2,10],[0,20],[-3,6],[-17,-19],[-8,2],[-4,9],[-2,19],[2,26],[10,38],[17,8],[26,-5],[29,-21],[9,-13],[0,-11],[-11,-16]],[[48160,87445],[-6,-22],[-7,1],[-26,26],[-21,15],[-7,13],[-6,21],[12,2],[14,-4],[36,-20],[10,-20],[1,-12]],[[48139,87237],[5,-18],[-6,2],[-19,20],[-33,48],[-11,39],[-2,18],[8,-2],[7,-16],[31,-11],[8,-8],[0,-19],[10,-23],[2,-30]],[[48003,87637],[25,-22],[9,-16],[-14,-15],[-18,-4],[-21,3],[-34,17],[-12,38],[24,-1],[28,7],[13,-7]],[[48158,87688],[-7,-77],[-12,0],[-20,22],[-15,4],[-5,-11],[1,-14],[8,-9],[24,-52],[2,-15],[-3,-7],[-23,15],[-57,67],[-44,110],[60,18],[43,-29],[48,-22]],[[49241,85936],[-24,-14],[-10,12],[-2,37],[-29,16],[-14,10],[-10,18],[2,6],[19,8],[32,-34],[13,-28],[23,-8],[3,-4],[-3,-19]],[[48220,87706],[-13,-42],[-20,7],[-5,4],[-5,11],[3,31],[-1,45],[22,-37],[19,-19]],[[48278,85462],[-36,-100],[-13,-3],[-13,-25],[-37,-28],[33,0],[9,-10],[0,-19],[-6,-12],[-43,-46],[-29,-18],[-31,-48],[-16,0],[-16,-31],[-13,-13],[-7,0],[-9,6],[-19,30],[35,30],[4,16],[24,18],[-2,5],[-39,24],[-15,17],[2,8],[18,19],[-9,2],[-6,10],[-10,4],[-4,10],[-1,24],[2,26],[12,11],[4,12],[5,3],[17,-6],[18,-20],[20,8],[24,-4],[1,5],[-18,49],[3,10],[10,12],[55,35],[68,60],[17,9],[5,-8],[7,-31],[-1,-41]],[[48255,84656],[-8,-7],[-10,1],[-11,10],[-13,27],[30,19],[13,-11],[4,-13],[0,-14],[-5,-12]],[[48293,84968],[-1,-26],[-5,-30],[7,-32],[1,-22],[12,-8],[7,-10],[52,-12],[49,4],[9,-10],[1,-15],[-8,-16],[-27,-30],[-33,-48],[-10,-10],[-11,-1],[-7,5],[-6,86],[-35,-11],[-29,1],[-16,10],[-11,20],[-22,52],[-65,21],[-18,28],[-6,18],[3,9],[13,21],[17,-7],[11,4],[6,10],[0,8],[-9,18],[0,6],[66,23],[5,37],[15,3],[16,-12],[23,-38],[6,-46]],[[47998,85070],[31,-32],[-25,-54],[-38,0],[-54,39],[0,8],[4,12],[8,10],[9,2],[13,-7],[19,11],[15,-4],[18,15]],[[47986,84743],[-12,-3],[-15,3],[-10,9],[-9,35],[-2,22],[4,40],[-1,47],[32,2],[8,-7],[5,-142],[0,-6]],[[47236,82899],[-1,-17],[-21,21],[-10,22],[-56,11],[23,22],[12,-6],[40,-1],[11,-10],[2,-42]],[[47939,84657],[-24,-8],[-9,4],[-2,8],[6,20],[19,7],[13,-11],[2,-10],[-5,-10]],[[56109,86599],[-20,-3],[-29,29],[-3,11],[11,6],[-8,23],[3,10],[22,-18],[12,-21],[-12,-5],[20,-22],[4,-10]],[[55461,86513],[2,-13],[-11,3],[-8,-4],[-6,-16],[-12,5],[-5,23],[9,34],[22,2],[9,-34]],[[55552,86607],[9,0],[3,5],[15,-4],[23,-22],[4,-12],[16,-6],[5,-13],[-18,-39],[-11,0],[-8,4],[-15,-4],[-8,-7],[-3,-16],[0,-34],[-65,-7],[-15,10],[-20,77],[4,20],[14,8],[12,2],[1,-41],[18,4],[5,27],[1,20],[-4,9],[-12,8],[-7,13],[10,21],[18,9],[16,-28],[12,-4]],[[55893,88272],[3,-11],[17,3],[21,20],[16,-9],[-2,-28],[-10,1],[-3,4],[-14,-16],[-2,-9],[-16,-7],[-29,28],[-18,45],[42,0],[-4,-11],[-1,-10]],[[55321,85208],[-5,-36],[-15,3],[-13,26],[27,41],[40,-2],[14,-9],[-48,-23]],[[54591,84268],[-15,-29],[-12,2],[-9,39],[-2,99],[5,49],[61,178],[27,14],[38,109],[10,48],[17,44],[10,39],[8,15],[17,-7],[8,-7],[-18,-23],[2,-29],[-1,-13],[-48,-128],[-12,-83],[-17,-21],[-69,-296]],[[54190,83537],[-10,-10],[-46,17],[-56,40],[9,78],[14,34],[102,-88],[1,-33],[-14,-38]],[[53808,83169],[7,-39],[-8,-19],[-31,32],[-32,0],[-18,-51],[-14,-2],[-49,46],[-7,23],[-2,18],[7,65],[-1,20],[15,22],[2,32],[27,34],[24,1],[8,-28],[11,-20],[40,-22],[6,-10],[4,-14],[-19,-27],[-6,-14],[6,-23],[30,-24]],[[53485,83505],[-10,-9],[-43,7],[-48,-40],[-18,12],[7,26],[5,9],[16,11],[11,16],[4,25],[10,-14],[30,-5],[14,-8],[12,-12],[10,-18]],[[53518,83868],[-26,-24],[-6,1],[-9,34],[14,20],[8,17],[6,0],[8,-19],[5,-29]],[[53155,83462],[50,-36],[33,2],[22,-14],[6,-23],[2,-51],[-24,-15],[-26,5],[-36,-19],[-117,83],[2,69],[4,27],[56,7],[28,-35]],[[52912,83437],[-19,-6],[-21,12],[-35,48],[-4,12],[18,-8],[23,-25],[18,-5],[25,-21],[-5,-7]],[[52794,83459],[-29,-8],[-14,14],[-28,5],[-9,89],[2,5],[14,-6],[47,-41],[16,-45],[1,-13]],[[52981,83381],[-12,-3],[-17,46],[-2,15],[20,30],[12,34],[33,52],[19,61],[7,-1],[-8,-55],[-43,-151],[-9,-28]],[[52946,83976],[-5,-11],[-17,11],[-2,37],[6,34],[-7,30],[8,19],[25,-45],[7,-21],[-9,-25],[-6,-29]],[[53134,83189],[-43,-1],[-16,23],[-17,6],[9,29],[12,10],[41,-19],[13,-36],[1,-12]],[[53070,84822],[-12,-13],[-38,19],[17,26],[42,13],[24,-4],[-27,-27],[-6,-14]],[[52307,83402],[-6,-12],[3,82],[30,86],[13,-2],[-13,-23],[-4,-16],[-5,-33],[2,-17],[70,-5],[-8,-15],[-71,-10],[-11,-35]],[[49672,78285],[-10,-50],[-18,46],[-25,41],[-5,37],[0,10],[29,-27],[29,-57]],[[49704,81042],[-24,-20],[-7,-23],[-6,-9],[-15,-6],[-15,-1],[-58,47],[-14,-2],[13,22],[37,17],[20,23],[47,-22],[22,-26]],[[51357,82413],[-28,-41],[-17,12],[-4,9],[8,32],[41,53],[0,-65]],[[52887,76530],[9,-22],[1,-13],[-6,-15],[3,-33],[-24,28],[-35,-14],[-21,3],[-6,24],[5,15],[33,3],[11,7],[20,-3],[10,20]],[[52355,74347],[-16,-57],[-17,40],[-1,35],[3,10],[20,-15],[11,-13]],[[52301,75483],[-9,-26],[-13,2],[5,19],[12,39],[15,13],[6,-11],[-7,-23],[-9,-13]],[[51192,74793],[-5,-7],[-85,67],[-28,7],[-7,10],[1,35],[2,15],[57,7],[46,-24],[25,-67],[2,-11],[-8,-32]],[[50442,74119],[-6,-7],[-18,7],[-28,0],[-1,23],[4,16],[5,17],[17,-33],[27,-6],[0,-17]],[[50401,74261],[-10,-35],[-42,12],[-10,15],[9,40],[13,5],[0,28],[13,29],[60,23],[14,-20],[3,-28],[-36,-61],[-14,-8]],[[41350,74542],[-12,-27],[-21,10],[-7,10],[6,59],[17,14],[17,-24],[0,-42]],[[42479,74103],[-6,-6],[-58,16],[-16,21],[-7,39],[10,13],[25,8],[37,-7],[24,-28],[0,-36],[-9,-20]],[[42283,74052],[-13,-7],[-74,44],[-26,21],[-34,51],[96,-62],[51,-47]],[[42044,74034],[-29,-1],[-27,44],[40,23],[12,-14],[8,-16],[6,-21],[-10,-15]],[[42181,73993],[23,-23],[-35,-5],[-11,-11],[-29,16],[-33,-3],[-22,31],[-5,33],[11,20],[30,0],[71,-58]],[[42875,73640],[17,-4],[89,9],[24,-6],[-3,-43],[-17,-17],[-52,-11],[-82,27],[-27,37],[-4,27],[0,12],[17,10],[38,-41]],[[54046,72495],[-10,-19],[-26,1],[-24,29],[0,61],[27,-12],[25,-41],[8,-19]],[[54230,77224],[5,-20],[-35,38],[-13,26],[-3,11],[46,-55]],[[54113,77751],[-34,-12],[-16,22],[-4,18],[-29,6],[-17,25],[-3,11],[24,28],[13,45],[16,-27],[20,-51],[11,-14],[19,-51]],[[54119,77625],[7,-25],[-26,23],[-23,9],[-5,17],[3,14],[5,14],[18,-2],[3,-14],[18,-36]],[[54218,77382],[-7,-16],[-18,29],[-16,20],[-12,23],[-23,30],[-8,34],[-34,69],[-6,19],[18,-28],[14,-18],[12,-4],[30,-44],[30,-57],[35,-49],[-8,-2],[-7,-6]],[[54219,77143],[4,-8],[-1,-6],[-14,8],[-4,-2],[-68,126],[-7,24],[24,-29],[66,-113]],[[54269,77173],[19,-43],[-18,9],[-18,27],[-11,28],[28,-21]],[[54024,77568],[-2,-22],[-17,28],[-9,51],[-21,82],[-3,23],[11,23],[0,23],[-15,72],[12,11],[8,2],[3,-50],[7,-29],[20,-35],[-4,-58],[4,-83],[4,-18],[2,-20]],[[54891,76479],[37,-39],[-111,51],[13,5],[12,1],[49,-18]],[[55725,73953],[4,-67],[19,-12],[26,-60],[-2,-31],[-6,-10],[-43,28],[-10,-13],[-13,5],[-7,34],[1,11],[-8,20],[-5,9],[-17,-26],[-11,-5],[0,24],[16,66],[7,11],[13,-22],[10,8],[8,36],[1,36],[3,11],[14,-53]],[[55802,73620],[29,-56],[-23,14],[-26,-39],[-31,45],[-20,46],[-4,18],[20,43],[19,-44],[22,-7],[14,-20]],[[55746,74083],[-11,-5],[-9,3],[-9,-2],[-8,-11],[1,45],[10,57],[11,33],[17,15],[7,-26],[-1,-92],[-8,-17]],[[55766,73922],[-14,-6],[-17,55],[-7,38],[7,2],[7,-5],[8,-14],[0,-15],[3,-15],[7,-19],[6,-21]],[[55577,74557],[6,-32],[-35,20],[-25,29],[-21,71],[-45,81],[0,24],[17,18],[36,12],[15,-13],[9,-13],[3,-16],[-20,-31],[-5,-14],[16,-28],[0,-11],[7,-55],[8,-20],[20,-16],[14,-6]],[[56541,73689],[-11,-14],[-12,1],[-9,5],[-4,11],[5,6],[7,23],[6,6],[9,-3],[5,-9],[4,-26]],[[56403,72689],[-3,-25],[-28,17],[-8,26],[-2,57],[8,28],[5,9],[13,-32],[27,-47],[-12,-33]],[[51096,81646],[28,-31],[5,-10],[2,-11],[-34,-12],[-37,38],[-24,-9],[-9,18],[0,12],[25,9],[44,-4]],[[35829,91907],[-43,-20],[-9,5],[-9,15],[-22,70],[-7,34],[5,41],[-8,29],[39,35],[32,5],[43,-8],[72,-35],[-5,-11],[-16,-18],[-44,-24],[-15,-53],[-3,-27],[2,-20],[-12,-18]],[[39713,89591],[-43,0],[-14,45],[4,50],[49,15],[26,-34],[-10,-50],[-12,-26]],[[35129,92765],[-26,-4],[-75,29],[-12,11],[-5,14],[3,16],[24,30],[45,43],[32,8],[20,-27],[20,-37],[2,-18],[-1,-22],[-5,-19],[-9,-15],[-13,-9]],[[34717,93773],[-39,-39],[-32,-23],[-70,-66],[-12,-3],[-18,9],[-15,18],[-26,4],[-9,11],[-4,9],[-12,6],[-18,3],[-30,-7],[-27,7],[-21,29],[38,20],[24,17],[91,6],[25,-7],[16,0],[25,4],[54,21],[8,10],[48,-12],[4,-17]],[[35645,92658],[-37,-2],[-86,11],[-7,6],[-1,13],[12,37],[38,5],[45,-20],[49,-29],[6,-13],[-19,-8]],[[37148,86855],[-32,-70],[-32,15],[-16,31],[-31,15],[-34,-4],[-1,12],[110,74],[53,20],[-4,-31],[-10,-27],[-3,-35]],[[14974,80272],[8,-52],[-34,9],[-12,10],[0,25],[6,23],[26,-8],[6,-7]],[[16001,79144],[-1,-13],[-10,-10],[-6,2],[0,16],[-3,2],[-12,-18],[1,36],[6,39],[5,1],[7,-26],[13,-29]],[[15973,79259],[-2,-11],[-15,13],[-5,12],[1,27],[3,18],[3,4],[9,-8],[3,-4],[3,-51]],[[15894,79880],[3,-13],[-11,-12],[-8,-2],[-12,20],[-6,2],[5,-30],[-2,-10],[-26,18],[-5,15],[8,16],[16,16],[6,2],[32,-22]],[[15883,79741],[-4,-6],[-15,8],[-9,13],[-3,16],[6,30],[7,8],[5,-2],[2,-27],[13,-28],[-2,-12]],[[15830,79781],[7,-19],[-30,12],[-13,11],[-3,11],[-5,34],[2,12],[13,4],[25,-43],[4,-22]],[[15952,79583],[13,-76],[6,31],[38,-54],[0,-27],[-4,-9],[-8,-3],[-8,8],[-6,19],[-9,10],[-18,6],[-9,21],[-4,15],[0,42],[-5,14],[-10,2],[-9,11],[-14,29],[-2,8],[7,24],[15,41],[11,19],[7,-2],[9,-13],[10,-22],[-2,-15],[-41,-31],[-2,-7],[21,-9],[7,-7],[7,-25]],[[15513,80374],[4,-12],[-62,45],[-27,27],[-10,19],[-6,11],[-32,28],[-5,13],[7,10],[21,-6],[35,-21],[32,-35],[43,-79]],[[15730,80003],[-4,-7],[-43,41],[-29,54],[-12,32],[57,-81],[29,-26],[2,-13]],[[15712,79927],[-11,-15],[-7,2],[-5,10],[-18,102],[8,-3],[24,-31],[-5,-12],[18,-31],[4,-21],[-8,-1]],[[15284,80661],[-7,-5],[-7,66],[9,23],[2,12],[-1,13],[15,-30],[6,-20],[2,-27],[0,-8],[-19,-24]],[[14822,80417],[-11,-2],[-18,7],[-19,16],[-35,44],[-3,10],[3,9],[9,7],[3,11],[-8,32],[27,20],[25,-17],[11,-20],[13,-36],[6,-41],[1,-28],[-4,-12]],[[15226,80700],[-3,-30],[-17,49],[-28,105],[4,24],[12,35],[11,2],[18,-16],[16,-29],[3,-11],[10,-30],[5,-27],[-11,-33],[-20,-39]],[[17125,70753],[-16,-6],[-18,12],[-16,56],[-17,43],[9,13],[14,-42],[35,-64],[9,-12]],[[17155,68514],[-12,-22],[-32,120],[0,29],[9,15],[15,-3],[0,-30],[13,-26],[5,-24],[2,-59]],[[16654,71381],[-19,-8],[-15,8],[-23,55],[50,7],[21,-24],[3,-7],[-17,-31]],[[16699,71474],[57,-30],[30,14],[6,-14],[-4,-12],[-69,-23],[-21,16],[-2,21],[-7,21],[10,7]],[[17125,71074],[14,-42],[-20,5],[-21,-3],[-6,24],[-7,32],[-4,8],[-14,3],[-1,3],[-2,15],[4,8],[45,-36],[12,-17]],[[30176,75740],[-8,-11],[-3,28],[6,32],[5,0],[3,-17],[-3,-32]],[[29407,74700],[-32,-87],[-1,17],[41,108],[-8,-38]],[[29392,75185],[-13,-2],[13,55],[24,25],[9,-5],[0,-19],[-3,-17],[-16,-26],[-14,-11]],[[32019,70445],[-25,-20],[-7,2],[-5,7],[26,19],[21,46],[7,-3],[-17,-51]],[[30414,75677],[-77,-28],[-12,18],[19,8],[24,43],[16,5],[25,-24],[5,-22]],[[30210,75743],[-13,-15],[-16,2],[8,22],[3,31],[8,34],[4,11],[9,9],[-3,-94]],[[30561,75613],[-21,-9],[-49,21],[40,18],[7,6],[5,27],[1,13],[15,-57],[2,-19]],[[28949,72113],[-50,-41],[-6,3],[33,29],[23,9]],[[28990,72497],[-4,-12],[-19,64],[19,-21],[4,-17],[0,-14]],[[29074,73668],[-13,-10],[43,116],[24,96],[11,34],[-10,-68],[-19,-62],[-36,-106]],[[29015,72142],[-37,-16],[-3,6],[42,32],[14,116],[2,53],[-7,95],[1,19],[6,-30],[7,-88],[-3,-67],[-12,-97],[-10,-23]],[[28749,71798],[-7,-6],[25,72],[50,91],[14,14],[-42,-78],[-40,-93]],[[23121,68060],[-10,-3],[12,31],[21,16],[45,60],[18,4],[10,20],[4,3],[-3,-25],[-36,-36],[-61,-70]],[[22957,67568],[-9,-33],[3,50],[22,112],[46,147],[20,25],[-53,-162],[-29,-139]],[[23600,68632],[-14,-6],[61,89],[12,29],[16,-1],[-27,-50],[-48,-61]],[[23008,66911],[-4,-26],[-23,125],[-37,282],[-2,161],[6,56],[10,-228],[41,-289],[9,-81]],[[26414,68918],[-28,-21],[-30,15],[19,3],[13,-6],[35,30],[18,22],[21,9],[-48,-52]],[[27383,69683],[-12,-140],[-5,50],[-1,48],[9,28],[9,14]],[[25215,69172],[1,-27],[-13,14],[-20,1],[8,9],[7,9],[3,10],[25,33],[-7,-25],[-4,-24]],[[24502,68836],[-11,-8],[-46,50],[-3,21],[23,20],[14,-2],[22,-25],[8,-8],[3,-10],[-2,-16],[-8,-22]],[[25325,69013],[-7,-18],[7,87],[-11,74],[12,-32],[4,-39],[-5,-72]],[[28428,65811],[1,-13],[-28,-36],[20,-26],[19,56],[15,-46],[8,-86],[-1,-15],[1,-12],[3,-17],[1,-24],[-16,-75],[-54,8],[-2,63],[-8,12],[-13,91],[-17,29],[-24,74],[14,19],[18,-6],[10,9],[25,7],[16,10],[12,-22]],[[28425,64488],[-11,-18],[-13,26],[-8,2],[-11,10],[-21,29],[-5,29],[17,2],[23,-5],[39,-16],[-4,-34],[-6,-25]],[[28326,64680],[-6,-10],[-15,22],[-22,9],[-13,33],[-12,13],[-1,12],[20,9],[14,-4],[16,-26],[9,-46],[10,-12]],[[28158,64834],[38,-13],[13,8],[13,2],[13,-5],[19,-48],[-16,-6],[-13,0],[-10,8],[-34,3],[-23,14],[-12,12],[-6,14],[18,11]],[[28548,66764],[-6,-5],[-24,58],[-19,17],[30,41],[13,35],[0,76],[7,42],[-2,36],[7,37],[-9,42],[-26,33],[-50,131],[-79,32],[-41,1],[22,21],[21,-2],[32,-13],[39,-6],[23,-39],[22,-51],[21,-20],[8,-14],[-1,-14],[3,-14],[27,-24],[26,-39],[8,-113],[-36,-54],[-6,-164],[-10,-30]],[[29428,64932],[6,-10],[-17,-23],[-40,28],[-9,-2],[-8,31],[-3,22],[2,21],[24,-16],[12,-30],[33,-21]],[[29325,65707],[-22,-63],[-12,6],[7,78],[15,12],[6,0],[6,-33]],[[29714,64050],[-8,-42],[-30,-81],[-65,-20],[-73,-4],[-5,22],[-2,20],[5,30],[0,12],[-3,12],[26,13],[18,37],[27,7],[34,-27],[19,-1],[27,29],[22,63],[13,-8],[-5,-62]],[[29387,64639],[-20,-18],[5,30],[37,51],[21,44],[11,16],[5,12],[16,17],[8,28],[-2,24],[-17,38],[0,27],[6,20],[29,9],[-8,-29],[12,-82],[-39,-103],[-33,-31],[-31,-53]],[[28708,66524],[46,-65],[39,-24],[42,-82],[18,-29],[4,-26],[-7,-120],[-10,-73],[2,-63],[-10,18],[-10,42],[-17,24],[-5,13],[29,2],[3,66],[14,51],[-2,54],[-34,59],[-24,53],[-36,16],[-34,52],[-20,7],[-24,-10],[9,31],[6,41],[4,8],[17,-45]],[[28982,65351],[-12,-4],[-21,16],[-48,70],[-23,6],[8,39],[17,-14],[39,-60],[15,-30],[25,-23]],[[29211,65031],[-2,-15],[-35,115],[-44,28],[-26,28],[6,15],[17,7],[3,37],[-7,39],[-24,80],[-13,54],[-6,12],[-1,45],[27,-70],[12,-62],[18,-61],[13,-105],[35,-36],[25,-51],[2,-60]],[[29081,65783],[2,-30],[-19,6],[-28,-11],[-9,0],[6,20],[19,27],[1,26],[-24,37],[-27,92],[-13,22],[-6,35],[-23,38],[5,20],[4,4],[16,-9],[35,-134],[2,-12],[59,-131]],[[28367,64589],[-10,-2],[-27,24],[-9,20],[10,27],[2,30],[4,1],[4,-35],[22,-15],[1,-8],[13,-30],[-10,-12]],[[27212,67081],[-10,-15],[-20,11],[-11,20],[-5,38],[17,-41],[7,-9],[22,-4]],[[28404,66075],[0,-70],[3,-52],[-3,-19],[-30,-34],[-8,-20],[-28,-20],[-17,-27],[-9,45],[-17,27],[-2,47],[-13,-16],[-19,10],[-30,35],[-19,48],[27,8],[5,-30],[22,37],[-5,19],[-4,3],[-7,36],[32,94],[7,60],[-15,98],[14,6],[36,-34],[16,-34],[0,-46],[16,-35],[21,-86],[27,-50]],[[27342,66013],[-18,-6],[15,23],[5,34],[8,-26],[0,-17],[-10,-8]],[[27726,67556],[4,-42],[-25,98],[-32,154],[-17,120],[12,-33],[11,-66],[47,-231]],[[27066,64269],[-26,-31],[-55,-43],[-30,-1],[-30,16],[-20,36],[-12,35],[1,17],[19,-28],[16,-14],[13,9],[10,16],[-31,114],[2,25],[24,62],[65,-19],[11,-11],[10,-40],[14,-31],[17,-83],[2,-29]],[[27199,67138],[-1,-34],[-14,57],[-9,62],[13,-20],[11,-65]],[[27958,64898],[1,-15],[-49,42],[-21,44],[-8,10],[13,1],[55,-72],[9,-10]],[[28196,67240],[34,-18],[18,2],[11,12],[49,-5],[41,17],[6,-30],[-1,-16],[-86,-15],[-78,-45],[-43,-31],[-21,-3],[-15,16],[-52,93],[14,-10],[38,-52],[24,10],[22,34],[4,26],[-4,13],[10,41],[29,-39]],[[27671,66325],[-55,-108],[6,27],[22,58],[7,28],[14,17],[14,31],[1,37],[20,25],[6,4],[-35,-119]],[[25569,62168],[-13,-11],[11,34],[1,21],[16,89],[10,-1],[3,-8],[-28,-124]],[[25596,61879],[-21,-81],[-2,23],[9,60],[12,21],[8,22],[2,26],[10,-13],[-3,-25],[-15,-33]],[[24532,62601],[-31,-13],[-6,13],[63,58],[11,-2],[4,-8],[-33,-28],[-8,-20]],[[27157,57246],[-3,-27],[-21,49],[12,8],[5,-1],[7,-29]],[[27397,62988],[9,-11],[11,7],[4,12],[42,-9],[7,-24],[-33,-1],[-14,-15],[-8,-3],[-28,4],[-4,55],[8,6],[6,-21]],[[25850,63538],[-15,-18],[-7,64],[11,61],[14,36],[28,4],[18,12],[2,-16],[-15,-48],[-36,-95]],[[32602,61773],[-7,-8],[-13,35],[-20,10],[-18,21],[0,4],[0,11],[4,12],[9,9],[22,-28],[11,-36],[10,-17],[2,-13]],[[33084,59805],[-15,-61],[-31,38],[-3,48],[3,29],[18,54],[15,36],[10,12],[6,-47],[-3,-109]],[[33103,60192],[-2,-33],[-7,-6],[-11,27],[-45,-4],[-7,25],[-1,11],[22,42],[-26,11],[-10,18],[-22,87],[2,26],[9,13],[15,2],[28,-28],[20,-40],[7,-1],[3,-11],[-4,-29],[12,-24],[5,-17],[12,-69]],[[33052,57680],[-45,-32],[-118,-8],[-48,12],[-37,-9],[67,70],[8,30],[29,6],[9,9],[9,155],[-4,38],[-5,20],[-12,15],[-26,20],[-5,11],[17,17],[35,9],[26,19],[55,4],[26,16],[45,5],[-22,-71],[-10,-27],[4,-65],[-5,-43],[6,-55],[13,-37],[-9,-35],[-1,-54],[-2,-20]],[[31054,58838],[-14,-64],[-8,28],[-1,52],[-6,20],[-11,12],[-6,17],[0,26],[42,-41],[4,-50]],[[33123,58282],[-15,-6],[2,23],[26,40],[41,26],[10,1],[-6,-35],[-58,-49]],[[32736,61486],[-1,-34],[-19,10],[-1,30],[9,31],[5,3],[7,-40]],[[33474,59378],[-8,-11],[-25,23],[-9,28],[-1,88],[15,8],[29,-70],[17,-25],[-18,-41]],[[32264,58254],[9,-75],[-3,-14],[-25,-51],[-21,-3],[-17,1],[-13,10],[-17,33],[-16,-10],[-40,12],[-11,11],[15,41],[28,16],[10,4],[8,-25],[20,-22],[23,-2],[6,38],[32,57],[12,-21]],[[32499,62339],[-44,-29],[2,17],[35,40],[13,-3],[-6,-25]],[[32856,58762],[-18,-2],[7,21],[2,37],[10,44],[15,30],[15,-8],[-6,-98],[-25,-24]],[[32848,61966],[-4,-15],[-23,28],[-7,51],[1,11],[3,6],[9,-10],[12,-4],[8,-17],[1,-50]],[[32991,60996],[-15,-2],[-7,5],[-2,34],[12,24],[7,6],[10,-27],[3,-22],[-8,-18]],[[32856,61657],[-9,-23],[-31,9],[-6,29],[-1,20],[19,41],[22,-18],[9,-19],[6,-4],[0,-17],[-3,-12],[-6,-6]],[[32977,60627],[-26,-13],[-11,100],[-18,72],[3,45],[3,17],[38,-28],[12,-33],[7,-89],[-8,-71]],[[32964,61192],[-32,-6],[-22,5],[-5,41],[11,35],[-8,42],[5,25],[11,17],[18,-22],[3,-32],[11,-29],[51,-61],[-43,-15]],[[32891,61063],[-22,-26],[-11,8],[-14,50],[-9,138],[7,22],[5,9],[30,-17],[12,-19],[13,-13],[-7,-25],[4,-103],[-8,-24]],[[33007,59422],[-8,-9],[-21,39],[3,45],[12,25],[12,14],[12,2],[4,-38],[-3,-52],[-11,-26]],[[29711,64763],[17,-9],[9,1],[32,-17],[19,-24],[4,-10],[-10,-21],[-29,40],[-26,5],[-36,-1],[-14,8],[10,43],[24,-15]],[[30902,58789],[-14,-8],[-54,56],[-44,90],[-1,47],[11,-4],[12,-18],[17,-64],[52,-42],[21,-57]],[[30094,64380],[-1,-8],[-16,23],[-30,0],[-5,30],[12,5],[38,-11],[9,-26],[-7,-13]],[[29745,64231],[-37,-28],[-3,33],[18,27],[22,-32]],[[30033,64424],[-5,-7],[-16,20],[-2,16],[-6,1],[-10,14],[3,19],[22,1],[9,-52],[5,-12]],[[29907,64430],[32,-32],[19,5],[2,-7],[-11,-7],[-2,-6],[-31,-9],[-9,2],[-2,22],[2,32]],[[5300,85585],[-20,-9],[-22,5],[-17,57],[13,1],[28,38],[60,30],[15,4],[-57,-126]],[[7498,84749],[-35,-19],[-7,1],[-21,-38],[-17,-16],[-22,30],[5,46],[20,30],[97,-10],[7,-9],[1,-7],[-8,-6],[-20,-2]],[[7772,86613],[-13,-2],[17,28],[13,56],[17,-8],[3,-10],[-28,-57],[-9,-7]],[[7643,85532],[-9,-4],[-20,18],[-13,19],[9,14],[39,30],[19,0],[8,-4],[3,-10],[-2,-13],[-8,-18],[-26,-32]],[[7433,85166],[-8,-16],[-7,4],[-16,19],[-31,28],[-15,18],[-1,8],[11,9],[38,-22],[15,-20],[14,-28]],[[6787,83998],[-11,-19],[-21,2],[-12,6],[-3,16],[32,48],[7,6],[6,-2],[3,-20],[-1,-37]],[[7032,84352],[-19,-14],[-6,5],[-1,11],[5,18],[9,18],[29,34],[29,23],[15,-2],[6,-14],[-19,-30],[-48,-49]],[[7164,84397],[-13,-1],[-21,15],[3,18],[29,22],[29,-3],[3,-12],[-2,-14],[-2,-8],[-9,-8],[-17,-9]],[[9335,86664],[6,-16],[53,4],[16,-3],[6,-7],[-7,-11],[-21,-14],[-60,-25],[-49,-33],[-6,3],[-9,36],[-9,15],[-6,20],[0,7],[9,14],[18,20],[13,8],[46,-18]],[[9689,86599],[-9,-14],[-24,5],[-13,9],[44,37],[7,-8],[-5,-29]],[[9843,86300],[-14,-3],[20,38],[27,41],[26,27],[32,11],[-3,-20],[-43,-35],[-45,-59]],[[8962,86297],[-31,-8],[-7,17],[16,42],[13,24],[10,6],[35,48],[39,35],[36,51],[37,72],[6,27],[17,3],[28,-18],[17,-25],[-8,-20],[-92,-103],[-8,-13],[-8,-35],[-8,-13],[-12,-5],[-9,-15],[-5,-25],[-11,-14],[-18,-1],[-12,-7],[-6,-12],[-19,-11]],[[8883,86442],[-15,-17],[-55,10],[12,35],[42,22],[46,-34],[-30,-16]],[[8984,86664],[0,-15],[-9,-14],[8,-27],[-14,-46],[-6,-29],[-8,-19],[-7,-7],[-8,4],[-2,11],[5,16],[-18,-1],[-6,40],[10,13],[4,17],[1,12],[12,51],[4,3],[2,-12],[3,-3],[7,5],[9,22],[4,3],[9,-24]],[[8908,86881],[-35,-5],[-16,7],[-3,8],[7,29],[0,12],[17,5],[21,-14],[6,-14],[3,-28]],[[13094,83464],[6,-8],[7,5],[12,21],[20,-4],[14,-7],[9,-8],[-5,-30],[-4,-49],[-8,-17],[-8,-24],[-28,14],[-23,31],[-33,53],[-19,38],[-1,16],[-12,12],[-22,66],[-13,52],[-21,6],[-26,15],[-10,29],[7,25],[37,12],[55,-64],[9,-28],[20,-32],[3,-44],[10,-18],[24,-62]],[[12781,84587],[18,-40],[26,4],[14,-30],[11,-46],[-8,-29],[-11,7],[-13,-17],[-8,-56],[4,-55],[-4,-56],[-15,-57],[-3,-38],[-6,-11],[-7,-4],[-8,10],[-12,8],[-15,-32],[-19,0],[-15,73],[13,121],[31,25],[-18,32],[-39,39],[3,21],[-29,62],[-2,14],[5,52],[27,46],[37,8],[25,-20],[14,-17],[4,-14]],[[12971,83838],[6,-16],[0,-11],[-40,-38],[-1,-8],[-9,-23],[-9,-9],[-15,-26],[-28,-27],[4,83],[-28,48],[28,24],[19,-7],[31,-3],[30,22],[12,-9]],[[13517,83571],[28,-75],[2,-27],[-28,-9],[-21,4],[-11,8],[-3,13],[7,38],[-14,22],[-16,8],[-15,-14],[0,38],[11,27],[-7,36],[0,28],[4,9],[15,-1],[30,-29],[18,-76]],[[13126,84403],[-3,-8],[-36,1],[-12,7],[-5,24],[3,23],[8,18],[10,34],[8,56],[52,-63],[16,-28],[8,-35],[-18,-13],[-22,-6],[-9,-10]],[[13302,84164],[-6,-96],[-11,5],[-10,1],[-22,-14],[-22,6],[-11,11],[-4,12],[4,28],[-12,16],[-42,6],[-16,7],[-9,30],[-2,39],[7,14],[21,11],[16,47],[10,7],[35,94],[17,-7],[31,-57],[39,-83],[-13,-77]],[[13117,84243],[-15,-2],[-16,9],[-40,47],[-1,14],[6,15],[22,29],[10,7],[54,-3],[17,-8],[4,-13],[0,-14],[-6,-13],[-1,-15],[3,-15],[-7,-15],[-30,-23]],[[12691,85385],[-2,-15],[-38,2],[-38,21],[-19,27],[4,13],[35,11],[34,-26],[24,-33]],[[14184,82090],[-9,-26],[-37,63],[-13,18],[-28,67],[-5,29],[1,17],[5,6],[9,-4],[8,-8],[53,-74],[15,-35],[1,-53]],[[13631,83225],[-6,-1],[-3,12],[2,25],[9,42],[4,9],[36,-7],[5,-3],[1,-8],[-2,-13],[-12,-19],[-34,-37]],[[13603,81774],[-5,-1],[-9,12],[-7,19],[-4,51],[3,20],[3,8],[24,-32],[-5,-77]],[[13823,82925],[-8,-21],[-20,-32],[-13,-13],[-6,6],[-18,4],[-19,32],[-14,13],[-10,1],[-5,-12],[-1,-15],[3,-20],[-2,-9],[-6,2],[-5,9],[-6,16],[-1,17],[4,17],[13,24],[42,47],[13,9],[14,-2],[23,-22],[5,-7],[17,-44]],[[13931,82469],[-6,-2],[-18,7],[-60,98],[-43,35],[-29,48],[-30,31],[18,50],[16,-6],[56,-41],[44,-39],[25,-26],[53,-110],[-4,-16],[-22,-29]],[[14465,81493],[-4,-9],[-11,0],[-18,10],[-13,21],[-16,66],[2,12],[5,12],[25,24],[10,-3],[3,-18],[15,-39],[5,-11],[0,-46],[-3,-19]],[[14342,82027],[-21,-7],[7,31],[2,18],[-4,17],[-3,33],[-1,79],[21,49],[33,1],[-1,-25],[-14,-111],[-7,-51],[-5,-19],[-7,-15]],[[14079,82368],[-4,-5],[-11,8],[-11,15],[-19,43],[-6,18],[-4,29],[3,5],[9,-3],[5,-5],[30,-70],[8,-35]],[[14120,82440],[-2,-4],[-28,0],[-8,6],[-5,12],[-2,19],[4,22],[17,42],[1,18],[3,8],[12,-22],[5,-19],[3,-82]],[[11377,91921],[-23,-21],[-37,22],[-9,11],[42,30],[19,-1],[39,-18],[14,-15],[-45,-8]],[[33056,56951],[-17,-12],[-3,58],[5,15],[30,47],[8,8],[6,-9],[-2,-13],[14,-21],[-3,-26],[-16,-29],[-22,-18]],[[27741,50130],[-5,-22],[-27,2],[-7,7],[0,25],[6,81],[7,34],[22,32],[18,16],[23,-3],[25,-29],[-29,-55],[-16,-8],[-6,-7],[-11,-73]],[[35602,51017],[-30,-11],[38,144],[34,67],[1,133],[36,118],[34,49],[47,14],[26,-72],[-32,-205],[-9,-1],[-43,-108],[-48,-75],[-54,-53]],[[28037,56597],[-12,-25],[-5,24],[9,25],[3,0],[5,-24]],[[28080,52564],[-15,-4],[-7,28],[19,32],[6,6],[-3,-62]],[[28301,53307],[-7,-13],[-14,23],[-5,29],[8,21],[12,-7],[5,-18],[1,-35]],[[33105,57107],[-33,-19],[0,15],[9,27],[17,7],[7,10],[11,6],[6,-1],[7,-8],[-16,-15],[-8,-22]],[[37639,50149],[-28,-56],[9,65],[-4,45],[3,35],[19,34],[6,5],[-2,-41],[1,-13],[-4,-74]],[[39237,44298],[-10,-12],[-2,36],[29,47],[4,54],[15,-25],[4,-28],[0,-12],[-40,-60]],[[39193,44081],[-9,-33],[-11,5],[-5,22],[-8,22],[4,18],[8,10],[20,-2],[1,-42]],[[37532,51083],[-18,-27],[-5,-15],[-15,11],[3,16],[4,-2],[5,47],[25,-6],[1,-24]],[[36183,51997],[12,-30],[-40,-120],[-21,-18],[-24,-3],[-31,36],[-48,-3],[-15,9],[-1,52],[20,56],[40,-3],[69,45],[39,-21]],[[36028,52959],[-28,-26],[-16,10],[-15,69],[5,57],[20,19],[16,-4],[6,-8],[14,-93],[-2,-24]],[[35929,51767],[-76,-113],[-25,37],[-6,22],[5,21],[-1,9],[8,39],[43,32],[21,5],[27,-10],[5,-27],[-1,-15]],[[36265,51778],[-73,-18],[-34,29],[8,24],[25,38],[30,28],[28,12],[28,-15],[8,-33],[-2,-32],[-18,-33]],[[35992,51923],[-5,-85],[-50,36],[4,87],[24,24],[20,46],[7,56],[1,77],[8,14],[6,5],[6,-5],[3,-116],[2,-70],[-26,-69]],[[36068,52069],[-30,-19],[-5,18],[0,72],[8,40],[38,11],[4,12],[11,7],[7,-25],[-1,-41],[-32,-75]],[[24907,51398],[-15,-1],[-43,56],[3,55],[17,37],[56,18],[23,-34],[-2,-66],[-19,-48],[-15,-9],[-5,-8]],[[25161,51318],[-33,-24],[-11,11],[-7,11],[-2,15],[19,35],[17,20],[16,41],[29,24],[9,-6],[5,-8],[2,-14],[-9,-33],[-18,-23],[-17,-49]],[[27332,56067],[-15,-3],[-31,24],[-23,48],[-2,15],[1,16],[12,49],[17,17],[6,0],[16,-57],[-11,-21],[5,-35],[22,-26],[3,-27]],[[24604,51577],[-28,-10],[-24,20],[-10,31],[-2,46],[2,15],[52,16],[17,-38],[0,-57],[-7,-23]],[[24882,51071],[-11,-1],[-16,24],[12,45],[13,-11],[9,-12],[5,-18],[-12,-27]],[[24646,51857],[18,-37],[9,-106],[56,-112],[7,-62],[-5,-29],[2,-11],[27,-44],[18,-47],[-30,-108],[-62,-46],[-67,2],[-13,12],[-18,41],[-4,37],[11,35],[34,54],[53,48],[6,37],[-21,35],[-14,71],[-34,50],[-16,152],[-11,8],[-23,-21],[-11,18],[-2,10],[25,35],[5,24],[36,12],[15,-20],[9,-38]],[[24840,51650],[-13,-17],[-52,20],[-16,33],[13,46],[11,18],[31,-17],[32,-51],[-6,-32]],[[19644,36209],[-43,-18],[2,32],[11,27],[31,-16],[15,-3],[-16,-22]],[[20416,64291],[-8,-47],[-21,19],[-8,30],[-1,48],[11,9],[17,-21],[4,-14],[6,-24]],[[19190,62638],[-17,-12],[-24,36],[6,27],[14,19],[14,-35],[7,-35]],[[19287,66246],[8,-65],[-15,10],[-18,35],[-13,44],[1,20],[3,4],[26,-26],[8,-22]],[[19498,65755],[-6,-3],[-14,31],[-6,75],[3,8],[27,-93],[-1,-11],[-3,-7]],[[18568,68578],[-2,-10],[-29,35],[-64,122],[-23,61],[-4,28],[2,64],[22,-8],[25,-42],[12,-40],[0,-45],[48,-21],[7,-98],[6,-46]],[[18140,70106],[-9,-2],[-17,26],[1,25],[4,2],[17,-21],[6,-19],[-2,-11]],[[18008,68012],[-4,-19],[-47,39],[26,67],[-4,70],[12,15],[10,-23],[13,-90],[-6,-59]],[[18972,65894],[-3,-27],[-84,108],[20,10],[23,-8],[44,-83]],[[19139,66831],[3,-20],[-2,-6],[-11,14],[-19,-86],[-6,-8],[12,118],[12,17],[13,3],[-2,-32]],[[18832,68551],[-21,-136],[-21,2],[-44,43],[-5,27],[17,157],[13,21],[39,21],[6,-19],[4,-47],[12,-69]],[[18873,65982],[-6,-7],[-24,67],[-3,46],[-10,19],[-24,15],[21,93],[17,193],[8,-35],[-18,-195],[1,-26],[8,-24],[10,-40],[1,-44],[16,-40],[3,-22]],[[96382,25818],[12,-70],[-25,14],[-11,20],[20,35],[4,1]],[[84531,57952],[-7,-3],[13,61],[10,-9],[3,-6],[0,-28],[-19,-15]],[[84799,57593],[2,-29],[-35,75],[-8,53],[12,-2],[16,-20],[13,-77]],[[84148,56111],[3,-14],[-1,-14],[-29,-27],[-9,1],[-3,44],[7,21],[14,-18],[12,21],[6,-14]],[[84939,55853],[-4,-32],[-17,77],[-7,19],[9,65],[19,-32],[0,-97]],[[84991,57369],[-5,-15],[-8,31],[7,68],[5,11],[7,-43],[-6,-52]],[[84613,58463],[-35,-4],[-15,26],[-19,78],[21,16],[21,-4],[15,-27],[15,-52],[-3,-33]],[[84681,58522],[-5,-30],[-8,8],[-7,14],[-11,44],[-3,33],[16,-18],[9,-33],[9,-18]],[[87449,48136],[-7,-4],[0,28],[8,25],[8,14],[9,1],[-18,-64]],[[87409,47955],[-5,-9],[-7,18],[-1,12],[10,32],[9,18],[11,1],[-3,-26],[-14,-46]],[[85551,50151],[-14,-48],[-24,2],[-4,7],[29,30],[13,9]],[[85445,49933],[7,-25],[-28,16],[-12,25],[12,15],[7,4],[14,-35]],[[84458,48402],[-3,-28],[-10,32],[-9,15],[1,34],[13,-12],[8,-41]],[[84340,48806],[-1,-58],[-11,3],[-9,20],[-3,20],[1,15],[5,13],[18,-13]],[[83548,47742],[-29,-3],[-8,5],[-3,56],[32,-24],[10,-2],[-2,-32]],[[84160,46920],[-9,-34],[-16,10],[4,33],[8,19],[22,28],[22,5],[13,-10],[4,-11],[-34,-11],[-14,-29]],[[82654,47023],[-7,-1],[-12,11],[5,24],[-7,40],[2,32],[16,18],[33,2],[1,-24],[-31,-102]],[[69450,90150],[-49,-7],[-54,44],[-51,86],[10,21],[31,-7],[51,-2],[33,-14],[44,-9],[-5,-40],[0,-16],[14,-17],[-14,-30],[-10,-9]],[[76903,95736],[-15,-6],[-13,4],[-4,7],[1,29],[25,38],[1,12],[12,6],[31,-7],[15,-16],[2,-7],[-21,-38],[-34,-22]],[[77815,97703],[-61,-7],[7,40],[4,11],[31,6],[20,-10],[44,-7],[-45,-33]],[[94851,91532],[-12,-1],[9,39],[1,17],[-27,28],[-50,21],[-13,17],[-3,50],[11,78],[-23,42],[8,37],[59,41],[24,31],[27,25],[4,-3],[27,-24],[-2,-52],[-20,-37],[-46,-14],[-6,-25],[6,-44],[1,-57],[5,-51],[28,-52],[6,-26],[-3,-25],[-11,-15]],[[86032,70078],[-9,-10],[6,45],[22,40],[2,-26],[-21,-49]],[[85115,72864],[-4,-38],[-18,25],[-5,82],[19,-24],[8,-45]],[[84695,74617],[-16,-17],[0,30],[12,25],[12,3],[-8,-41]],[[83680,68021],[-24,-13],[-9,0],[0,42],[20,39],[8,-13],[5,-21],[0,-34]],[[81542,64979],[3,-27],[-22,41],[-6,2],[-11,15],[-6,25],[17,1],[16,-30],[9,-27]],[[81330,64286],[-6,-11],[-8,20],[-2,30],[-6,16],[14,21],[6,22],[15,-4],[7,-7],[-14,-23],[-3,-10],[-3,-54]],[[81289,64308],[-27,-12],[-6,2],[10,30],[24,21],[-1,-41]],[[81665,64637],[-33,0],[-7,5],[-4,13],[12,22],[45,30],[-11,-32],[-2,-38]],[[79768,57832],[-23,-35],[-2,29],[20,19],[7,15],[6,0],[-8,-28]],[[78699,58017],[-11,-22],[-16,46],[0,12],[27,-36]],[[52385,83359],[-11,-14],[-26,2],[-15,13],[5,14],[14,11],[11,2],[18,-7],[4,-21]],[[51870,82708],[-25,-2],[7,15],[24,12],[13,0],[-19,-25]],[[25947,92747],[11,-12],[64,16],[54,18],[84,45],[50,15],[152,0],[26,-9],[-11,-26],[-7,-8],[5,-11],[17,-16],[33,-17],[13,16],[9,37],[23,153],[9,46],[5,44],[-1,41],[-11,26],[-39,16],[-53,-3],[-28,4],[-33,8],[-25,13],[-16,17],[-31,52],[-24,28],[-60,52],[-28,17],[14,21],[55,23],[33,23],[39,65],[23,11],[84,-9],[114,-51],[72,-44],[19,-5],[0,8],[-18,21],[-82,54],[-38,40],[-17,29],[8,12],[46,13],[6,14],[-63,17],[-31,0],[-26,-12],[-28,-1],[-51,22],[-14,13],[-30,38],[-15,34],[-17,21],[-7,16],[-3,51],[2,30],[7,26],[12,22],[33,39],[19,12],[35,5],[76,-20],[203,-71],[-5,23],[-227,96],[-81,24],[-20,35],[122,133],[111,31],[56,38],[91,2],[85,-25],[1,7],[-38,46],[3,12],[48,27],[89,32],[108,26],[22,13],[28,9],[51,9],[127,3],[71,-3],[95,-20],[55,-35],[17,-21],[30,-69],[24,-95],[35,-40],[56,-21],[39,-24],[22,-26],[6,-32],[-10,-39],[7,-40],[25,-41],[20,-24],[42,-26],[1,-14],[-13,-16],[-28,-23],[-70,-69],[-90,-76],[-64,-66],[-3,-20],[133,104],[42,-4],[2,-15],[-28,-50],[-33,-45],[-33,-29],[6,-11],[63,-50],[-11,-9],[-31,5],[-12,-5],[-9,-9],[-6,-14],[0,-20],[5,-25],[-1,-18],[-6,-13],[7,-5],[18,2],[16,10],[27,34],[88,93],[57,34],[18,4],[52,-23],[13,1],[-58,72],[-5,18],[12,26],[7,9],[32,20],[26,10],[15,-4],[24,-36],[11,-25],[19,-11],[44,14],[28,30],[36,-20],[54,-48],[-5,-48],[0,-49],[3,-35],[65,-65],[44,-28],[9,-1],[-2,10],[-9,22],[-24,21],[-23,34],[-20,40],[12,95],[34,50],[32,-13],[43,-29],[34,-2],[53,3],[108,-58],[58,-1],[-5,23],[-44,12],[-64,31],[-101,38],[-46,44],[-8,20],[1,22],[6,20],[10,16],[20,17],[97,50],[69,22],[51,7],[87,-1],[100,-9],[55,-14],[62,-36],[79,-35],[28,-6],[33,0],[38,8],[36,-3],[114,-52],[30,-27],[18,-32],[14,-32],[8,-31],[-3,-24],[-95,-108],[-41,-18],[-28,-41],[-40,-77],[-35,-42],[-3,-8],[7,-2],[21,19],[36,53],[26,46],[47,38],[78,45],[68,22],[58,-2],[49,-6],[39,-11],[24,-10],[7,-7],[16,-34],[-1,-23],[-10,-26],[-19,-29],[-84,-33],[-47,-25],[-29,-10],[-87,-9],[4,-10],[65,-14],[71,4],[-1,-16],[-34,-44],[-11,-38],[9,-31],[-1,-26],[-26,-53],[-28,-48],[10,-7],[66,69],[18,76],[27,66],[31,37],[23,14],[74,5],[40,39],[35,12],[15,1],[29,-15],[-1,-15],[-43,-70],[-92,-112],[38,13],[25,27],[34,26],[38,40],[25,-36],[39,-27],[23,-61],[38,-29],[23,-23],[-3,39],[-33,77],[9,31],[25,16],[79,65],[55,-22],[34,-19],[17,5],[43,-3],[69,-10],[67,-19],[66,-25],[50,-31],[35,-34],[21,-24],[8,-14],[12,-34],[-9,-23],[-50,-53],[-27,-24],[-27,-11],[-73,11],[-23,-7],[-24,-16],[-76,-73],[-42,-32],[-41,-20],[-10,-10],[89,1],[24,21],[21,41],[39,42],[74,19],[103,-41],[52,2],[39,41],[44,28],[17,6],[9,-3],[33,-30],[10,-26],[0,-60],[-5,-18],[-29,-46],[-73,-68],[-47,-25],[-52,-14],[-57,-23],[-20,-19],[-20,-26],[-20,-18],[-25,-14],[33,-22],[12,1],[13,13],[33,50],[24,23],[14,4],[14,-2],[14,-10],[14,-18],[-1,-43],[-42,-171],[7,0],[26,47],[74,178],[18,36],[36,36],[80,54],[63,29],[70,24],[37,9],[43,-6],[28,-28],[37,-5],[46,7],[30,-4],[33,-11],[29,-20],[48,-24],[110,-44],[14,-10],[12,-16],[12,-25],[-1,-24],[-15,-23],[-18,-15],[-22,-5],[-23,-13],[-42,-34],[-13,-6],[-66,-14],[-61,-7],[-38,-14],[-73,-37],[-101,-68],[1,-16],[40,-8],[33,10],[45,47],[42,18],[66,15],[91,12],[39,-2],[7,-2],[5,-11],[3,-20],[-15,-26],[-17,-12],[-47,-58],[31,-15],[42,-7],[24,16],[22,36],[25,19],[27,4],[24,9],[21,15],[5,9],[-30,19],[-2,11],[12,28],[22,30],[23,19],[17,2],[57,-21],[39,-35],[98,-107],[12,-21],[34,-79],[7,-35],[-6,-25],[-8,-15],[-10,-5],[-22,-1],[-130,33],[-60,-4],[-26,-9],[-21,-14],[-16,-17],[-12,-21],[-23,-12],[-82,0],[-47,-12],[-80,-28],[-28,-16],[-7,-20],[49,4],[81,26],[75,8],[127,-59],[41,-9],[23,9],[28,2],[101,-4],[35,-7],[51,-22],[78,-49],[15,-14],[9,-15],[2,-16],[0,-39],[-8,-13],[-27,-9],[-112,10],[-35,9],[-42,-11],[-34,4],[-44,15],[-48,28],[-72,-26],[-58,17],[-59,-15],[-117,-62],[13,-11],[160,53],[31,-3],[51,-20],[80,-38],[23,-16],[0,-60],[-12,-41],[-25,-45],[-37,6],[-85,28],[-35,4],[-26,-4],[-34,-19],[-17,0],[-137,36],[-31,2],[-3,-4],[6,-7],[125,-56],[92,-6],[57,-10],[34,-17],[16,-13],[2,-37],[30,-38],[28,-15],[18,-1],[30,14],[30,2],[25,-9],[31,-21],[37,-6],[33,-13],[26,-2],[71,6],[31,-8],[8,-7],[-13,-12],[-66,-29],[-10,-28],[37,-36],[20,-28],[-1,-20],[-20,-47],[-5,-19],[6,-2],[48,38],[7,-4],[5,-53],[6,3],[16,43],[-7,58],[28,23],[88,18],[-15,-91],[-2,-47],[-39,-79],[-32,-25],[1,-6],[23,-10],[14,-1],[14,13],[33,60],[66,64],[12,1],[0,-23],[-9,-42],[31,-20],[29,19],[16,17],[37,-2],[17,-8],[5,-19],[-17,-79],[3,-19],[39,-52],[4,3],[-8,25],[-8,62],[8,28],[32,34],[65,50],[25,10],[15,-7],[24,-24],[-8,-14],[-26,-15],[-19,-27],[-13,-39],[14,-21],[53,-2],[54,32],[30,-16],[37,-42],[66,-67],[39,18],[47,-51],[-64,-40],[20,-86],[-82,4],[-46,-7],[-31,8],[-34,-3],[31,-20],[59,-9],[6,-25],[46,0],[35,5],[63,-1],[4,30],[41,17],[23,19],[20,-12],[57,-12],[77,-59],[-34,-35],[-9,-33],[-12,-28],[-6,-25],[-14,-17],[-109,-99],[18,-1],[46,24],[91,35],[50,15],[36,-10],[18,0],[16,13],[30,-15],[62,-13],[71,81],[43,-16],[40,-50],[86,-89],[45,-51],[15,-23],[-2,-23],[-41,-25],[-20,-5],[-55,46],[-50,24],[-31,-3],[-30,-18],[10,-9],[121,-71],[21,-52],[2,-23],[-81,-35],[-26,-2],[-57,17],[-32,31],[-28,11],[-37,3],[-12,-6],[41,-52],[-4,-16],[-21,-10],[-11,-25],[81,-46],[61,-46],[9,-19],[-41,-13],[-29,-4],[-62,7],[-35,10],[-9,-11],[35,-24],[14,-16],[10,-23],[7,-22],[1,-20],[-28,-17],[-35,-46],[-14,-48],[-31,-5],[-13,9],[-42,-15],[-55,21],[-20,22],[-61,90],[-1,-10],[15,-46],[-3,-27],[-64,-20],[0,-7],[39,-15],[48,-11],[-8,-42],[1,-181],[-11,-64],[-23,-56],[-34,-53],[-36,35],[-15,36],[-12,18],[-17,15],[-23,7],[-23,0],[-25,-32],[-28,28],[-26,33],[10,88],[11,44],[-4,-1],[-16,-20],[-36,-64],[-23,-79],[-31,30],[-28,38],[-22,38],[-37,43],[-36,51],[-19,60],[-8,13],[-21,50],[-8,14],[-8,5],[-17,31],[6,34],[28,39],[26,28],[42,28],[50,16],[22,36],[28,66],[30,46],[33,26],[-16,4],[-42,-22],[-30,-32],[-35,-54],[-32,-34],[-84,-40],[-30,-8],[-36,-4],[-78,5],[-18,14],[9,38],[56,68],[-9,5],[-20,-24],[-27,-17],[-23,-9],[-34,3],[-41,43],[-19,13],[-39,15],[-16,14],[-66,104],[-13,28],[-7,27],[-21,23],[-35,18],[-8,-3],[13,-23],[0,-20],[-30,-12],[-31,4],[-33,21],[-3,-28],[35,-51],[1,-64],[-10,-6],[-24,-4],[-16,8],[-53,48],[-50,33],[-36,18],[-4,-13],[23,-57],[27,-57],[44,-47],[69,-56],[32,-32],[-25,-46],[-22,-14],[-13,-5],[-42,0],[-77,25],[-37,28],[-52,67],[-87,69],[-19,-1],[-61,-28],[9,-4],[40,-2],[29,-9],[69,-55],[6,-23],[-18,-25],[1,-32],[20,-39],[20,-25],[41,-18],[20,-2],[8,-11],[-25,-87],[-2,-24],[7,-10],[9,0],[52,35],[22,9],[19,2],[22,-10],[26,-22],[14,-23],[5,-23],[7,-15],[52,-24],[-5,-12],[-53,-37],[-3,-5],[11,-3],[33,-22],[31,-34],[19,-41],[4,-21],[0,-19],[4,-11],[16,-2],[7,7],[7,-1],[9,-10],[8,-32],[19,-92],[10,-25],[5,-1],[3,92],[9,15],[33,-16],[47,-36],[34,-32],[4,-15],[-25,-29],[5,-13],[19,-19],[17,7],[12,33],[22,32],[25,22],[48,-18],[39,-48],[6,-16],[26,-21],[22,11],[44,-54],[-21,-25],[-45,-36],[-5,-12],[11,2],[87,1],[23,-15],[5,-28],[-38,-76],[-35,6],[-47,2],[-24,-4],[4,-10],[65,-35],[18,-29],[25,-30],[12,-25],[-1,-11],[-10,-17],[5,-6],[44,-11],[28,10],[34,4],[30,-3],[3,-11],[-5,-28],[-31,-25],[9,-7],[36,8],[17,-12],[21,-62],[25,-48],[-20,-11],[-22,-5],[3,-61],[14,-64],[1,-60],[-5,-54],[-20,-12],[-22,1],[-8,14],[-53,161],[-13,29],[-16,25],[-56,70],[2,-11],[14,-32],[12,-48],[16,-96],[8,-61],[-4,-23],[-11,-6],[-3,-11],[5,-17],[43,-63],[21,-38],[15,-39],[13,-26],[13,-14],[-3,-11],[-19,-9],[-32,-4],[-16,5],[-58,36],[-8,-11],[32,-133],[-1,-32],[-16,-11],[-20,13],[-24,38],[-36,42],[-49,46],[-47,37],[-11,-1],[-7,-11],[-7,-2],[-9,7],[-16,28],[-16,18],[-68,62],[-7,0],[7,-18],[6,-41],[-7,-8],[-18,3],[-34,18],[-23,40],[-28,70],[-16,26],[-1,-17],[8,-67],[-1,-22],[-17,-6],[-8,6],[-7,18],[-6,29],[-17,23],[-25,15],[-14,16],[-7,29],[-5,6],[-45,-6],[-23,20],[-65,81],[-59,88],[-38,46],[-14,12],[20,-57],[22,-84],[6,-39],[-10,-1],[-22,17],[-113,108],[-69,51],[-39,9],[-63,6],[-14,-28],[34,-62],[33,-47],[32,-32],[50,-61],[46,-79],[19,-25],[62,-34],[33,-9],[34,-2],[3,-12],[-16,-23],[-4,-14],[75,-35],[28,-20],[27,-32],[15,-8],[65,-82],[16,-14],[58,-26],[19,-17],[32,-53],[20,-27],[28,-64],[21,-29],[52,-32],[22,-10],[10,-12],[-7,-29],[-6,-12],[-30,-20],[5,-28],[17,-50],[-1,-31],[-18,-12],[-37,-14],[-19,1],[-28,12],[-35,20],[-70,50],[-105,35],[-39,18],[-13,17],[-20,10],[-260,48],[-44,12],[-27,15],[-25,22],[-100,49],[-12,11],[-67,85],[-49,100],[-17,13],[-54,13],[-45,-8],[-30,-11],[-46,4],[-30,16],[-63,45],[-64,23],[-56,39],[-29,14],[3,10],[41,58],[-12,0],[-73,-45],[-26,14],[-43,35],[-32,35],[-66,97],[-38,35],[5,8],[43,3],[34,-3],[23,8],[44,39],[19,25],[2,14],[-37,4],[-8,7],[-7,16],[-17,21],[-27,25],[-31,10],[-107,-9],[-19,11],[0,17],[21,47],[12,19],[3,10],[-4,3],[-14,-2],[-62,-42],[-14,3],[-24,45],[-15,51],[-11,17],[-14,6],[-51,50],[-72,95],[-27,30],[-30,27],[-21,11],[3,14],[46,79],[2,12],[-40,-4],[-59,16],[-28,-20],[-18,-1],[-21,11],[-12,-4],[-11,-65],[-9,-16],[-12,-9],[-11,2],[-9,11],[0,15],[-9,79],[-21,12],[-58,3],[-13,6],[-14,15],[-12,27],[-10,40],[-12,22],[-13,3],[-11,-3],[-8,-10],[-18,-6],[-28,-3],[-1,-15],[27,-28],[25,-40],[25,-52],[-15,-35],[-55,-18],[-48,-5],[-41,7],[-32,12],[-44,29],[-63,-9],[-15,-76],[-13,-4],[-60,1],[-24,-6],[-80,-42],[-25,-6],[-18,5],[-18,-11],[-27,-24],[-37,-2],[-47,19],[-39,8],[-33,-3],[-33,12],[-34,25],[-29,11],[-36,-2],[-9,4],[-54,55],[-17,22],[-35,68],[-7,27],[-1,29],[3,21],[13,32],[13,76],[12,25],[17,23],[32,29],[120,51],[24,20],[-1,14],[-27,62],[0,16],[9,9],[19,37],[9,10],[21,6],[44,-19],[37,-7],[50,-3],[83,-25],[115,-49],[66,-33],[50,-50],[36,-49],[5,-25],[-16,-38],[-9,-11],[1,-13],[9,-15],[29,-21],[7,8],[-3,26],[6,22],[15,17],[1,23],[-11,28],[-13,24],[-17,21],[-74,70],[-7,23],[25,11],[108,-24],[42,6],[16,27],[17,19],[18,10],[37,4],[51,-13],[25,-2],[23,5],[29,15],[42,50],[28,11],[41,8],[31,1],[56,-20],[35,0],[-3,34],[-23,63],[-28,66],[-23,22],[-57,41],[-68,78],[-34,49],[-9,24],[4,16],[12,24],[123,86],[97,86],[42,44],[21,31],[21,22],[22,14],[47,16],[13,22],[3,36],[8,32],[44,85],[33,23],[51,16],[33,20],[41,70],[-4,17],[-19,13],[-14,20],[-62,182],[-42,89],[-49,76],[-45,94],[-73,92],[-1,24],[13,28],[-6,6],[-76,-40],[-18,-2],[-29,17],[-20,22],[-16,38],[1,20],[11,19],[15,47],[0,24],[-5,22],[-6,16],[-9,9],[-23,6],[-38,2],[-13,-8],[43,-71],[-7,-17],[-54,-7],[-24,3],[-22,8],[-20,14],[-63,74],[-13,27],[4,20],[-5,11],[-13,-7],[-17,0],[-24,7],[-5,8],[44,40],[3,12],[-21,13],[-30,3],[-8,12],[10,12],[41,22],[15,14],[-25,11],[-13,1],[-28,-24],[-42,-48],[-30,-18],[-41,22],[-27,8],[-18,-5],[-28,-38],[-61,-27],[-109,-65],[-46,-20],[-51,4],[-9,13],[0,22],[4,18],[6,14],[2,18],[-4,73],[9,21],[17,12],[32,12],[81,-15],[37,3],[27,17],[26,24],[27,33],[5,31],[-28,50],[-10,11],[-72,39],[-40,14],[-35,6],[-26,11],[-16,17],[-15,27],[-1,18],[2,24],[15,17],[64,20],[0,5],[-53,14],[-25,-2],[-21,-16],[-27,-37],[-16,-11],[-48,22],[-29,3],[-19,11],[-11,10],[7,10],[24,11],[41,32],[3,18],[-29,28],[-15,7],[-60,10],[-72,-10],[-28,5],[-12,32],[-7,37],[-4,44],[-13,75],[-14,39],[-19,4],[-88,-16],[-20,0],[-15,6],[-57,50],[-24,18],[-13,4],[-42,53],[-16,10],[-19,26],[-22,42],[-24,13],[-26,-16],[-26,-24],[-26,-30],[-14,-26],[-2,-21],[16,-16],[91,-28],[24,-18],[19,-30],[15,-36],[10,-43],[-1,-32],[-11,-22],[-20,-19],[-57,-30],[-58,-17],[-59,-5],[-28,4],[-152,59],[-27,0],[-35,8],[-79,24],[-43,3],[-76,20],[-128,11],[-25,-9],[34,-27],[30,-14],[25,0],[37,-24],[48,-47],[28,-29],[22,-34],[1,-12],[-23,-23],[-178,122],[-109,-42],[-51,-16],[-43,-3],[-54,17],[-121,59],[-46,20],[-16,3],[-106,-25],[-91,-1],[-185,24],[-67,17],[-18,17],[-22,8],[-40,0],[-105,19],[-97,-43],[-116,40],[-35,23],[-11,16],[-33,66],[-5,36],[10,32],[9,22],[10,12],[-64,-37],[-22,-6],[-29,-1],[-87,13],[-14,-7],[5,-12],[23,-19],[2,-12],[-48,-8],[-73,9],[-33,-4],[-14,-5],[-33,-30],[-14,-7],[-17,3],[-77,67],[-62,43],[-73,16],[-33,14],[-18,16],[-100,137],[-14,29],[-32,107],[-10,23],[-13,15],[25,3],[95,-13],[91,0],[50,-8],[57,-27],[76,-19],[53,-4],[87,7],[98,18],[11,14],[-63,24],[-57,31],[-52,41],[-31,17],[-53,11],[-146,8],[-137,27],[-93,37],[-77,41],[-31,22],[-11,18],[-12,54],[-13,90],[-12,61],[-12,31],[-1,27],[26,57],[74,63],[2,10],[-15,3],[-31,16],[-10,23],[-4,37],[0,32],[3,25],[13,33],[32,57],[46,71],[49,65],[9,22],[4,58],[7,43],[6,30],[11,22],[31,43],[38,41],[60,34],[5,13],[1,18],[3,13],[6,9],[149,110],[68,45],[57,29],[69,21],[195,43],[101,12],[127,-3],[233,-24],[28,-17],[7,-9],[10,-24],[-7,-16],[-64,-52],[-80,-44],[-53,-38],[-88,-86],[-24,-30],[-110,-173],[-26,-28],[-15,-23],[-11,-63],[4,-22],[17,-36],[59,-79],[16,-36],[0,-34],[-7,-81],[-1,-41],[3,-39],[12,-56],[22,-73],[51,-74],[79,-74],[59,-50],[59,-36],[69,-54],[15,-26],[-32,-29],[-74,-44],[-98,-19],[-52,-18],[-65,-39],[-82,-30],[-32,-19]],[[30697,99663],[227,-10],[73,4],[84,-26],[51,-3],[83,5],[61,-6],[226,-6],[47,-10],[-1,-11],[-48,-26],[-66,-25],[-423,-82],[-31,-13],[83,-4],[121,3],[94,9],[111,28],[37,2],[70,13],[137,38],[109,20],[49,-9],[42,-14],[28,-2],[15,11],[23,30],[14,11],[36,7],[22,-1],[35,-14],[40,-33],[36,-23],[20,0],[83,26],[41,3],[96,-9],[39,-12],[7,-12],[-25,-13],[-16,-11],[-6,-10],[14,-11],[58,-23],[83,-51],[-1,-19],[-45,-38],[1,-9],[214,40],[217,-18],[61,-12],[23,-15],[25,-24],[27,-34],[-19,-35],[-95,-55],[-98,-43],[-58,-38],[-88,-22],[-305,-92],[-149,-30],[-85,-30],[-39,-5],[-181,6],[-48,-16],[-26,-28],[-58,-13],[-84,-9],[-172,-7],[-39,-31],[-10,-21],[-17,-16],[-15,-8],[-492,-111],[-10,-18],[50,-8],[63,8],[717,134],[137,9],[128,-10],[-14,-31],[-181,-88],[-231,-80],[-115,-61],[-291,-104],[-237,-105],[-92,-52],[-122,-95],[-42,-23],[-51,-9],[-60,4],[-54,14],[-72,35],[-65,39],[-21,7],[13,-19],[126,-132],[-14,-25],[-232,-27],[-103,-23],[-53,-6],[-38,4],[-36,-2],[-36,-10],[-2,-10],[32,-11],[92,-9],[206,30],[33,-2],[52,-15],[3,-13],[-55,-42],[-166,-50],[21,-2],[48,-18],[-1,-16],[-52,-38],[-25,-12],[-160,-35],[-70,-8],[-62,4],[-281,77],[-99,11],[-94,19],[-69,-3],[-74,-22],[33,-12],[136,-21],[114,-4],[47,-9],[18,-14],[49,-51],[8,-27],[-11,-25],[-15,-18],[-18,-10],[-30,-5],[-111,3],[-41,-6],[-48,-15],[-61,-6],[-109,3],[-128,-22],[-67,-4],[-76,10],[-81,24],[-86,12],[-145,11],[12,-14],[51,-6],[104,-37],[50,-51],[47,-8],[96,-42],[69,-6],[72,-14],[102,18],[68,-3],[-14,-102],[-30,-10],[-164,0],[-79,15],[-34,15],[-76,17],[-68,-10],[-62,2],[-42,-10],[-67,1],[-174,-18],[-92,0],[-68,11],[-79,4],[-90,-4],[7,-12],[38,-4],[55,-19],[52,-29],[43,-13],[51,7],[52,14],[190,23],[84,3],[75,-10],[49,-12],[35,-15],[44,-40],[109,-5],[84,-13],[133,-58],[37,-4],[15,-15],[-28,-38],[-4,-22],[-92,-44],[-144,-12],[-158,4],[-113,-5],[-12,-6],[78,-11],[180,-51],[69,-28],[13,-16],[-100,-61],[-87,-122],[-29,-10],[-30,-3],[-77,2],[-98,-30],[-74,-6],[-134,11],[-154,-1],[-13,-19],[-7,-38],[1,-57],[9,-76],[-8,-56],[-26,-35],[-32,-26],[-58,-25],[-60,-16],[-44,-5],[-75,-1],[-213,-18],[-105,1],[-81,8],[-83,25],[-140,71],[-40,16],[-38,9],[1,-15],[42,-40],[35,-26],[28,-11],[-7,-12],[-62,-20],[-67,-8],[-81,0],[-2,-7],[27,-21],[35,-19],[24,-6],[61,6],[72,24],[44,8],[89,-6],[35,-9],[110,-54],[16,-2],[82,27],[118,1],[44,-21],[16,-43],[2,-34],[-12,-26],[27,-25],[67,-25],[52,-6],[37,14],[56,35],[24,8],[23,-2],[34,-25],[46,-48],[5,-56],[-38,-64],[-46,-42],[-180,-69],[-55,-27],[-43,-28],[-63,-26],[-123,-34],[-64,-6],[-140,-37],[-31,-2],[-45,6],[-9,18],[11,32],[15,30],[19,27],[0,23],[-39,35],[-28,16],[-27,9],[-54,-5],[-30,-10],[-33,-2],[-35,6],[-29,15],[-59,63],[-22,8],[-29,-2],[-25,9],[-23,20],[-38,19],[10,-15],[38,-35],[26,-36],[15,-35],[-7,-27],[-321,-16],[-138,8],[-28,25],[-66,103],[-14,-183],[-241,-30],[-56,5],[-93,20],[-121,50],[-50,33],[-20,32],[-15,18],[-9,3],[-30,-39],[-33,-81],[-83,21],[-104,20],[-38,80],[-2,-115],[-169,15],[-81,-4],[-23,100],[-4,112],[-33,-71],[14,-59],[5,-73],[-72,21],[-157,10],[-56,10],[7,96],[13,97],[202,96],[60,45],[44,18],[69,12],[89,7],[60,-6],[70,6],[82,17],[59,5],[11,6],[-17,9],[-63,62],[-23,14],[-23,6],[-45,3],[-45,27],[-25,24],[-28,32],[-43,62],[-44,69],[22,37],[72,30],[72,21],[73,11],[60,0],[73,-16],[103,-32],[59,-36],[74,-76],[49,-61],[39,-27],[177,-50],[59,-8],[70,4],[143,13],[70,14],[31,16],[16,23],[21,18],[63,41],[96,85],[54,68],[12,22],[11,28],[9,32],[-30,-17],[-167,-167],[-35,-30],[-97,-51],[-42,-8],[-66,2],[-89,23],[-104,-36],[-63,9],[-56,25],[0,118],[-71,95],[78,48],[65,29],[115,77],[26,1],[84,-12],[-46,17],[-45,26],[-100,-7],[35,166],[-67,-124],[-68,-65],[-42,-33],[-46,-18],[-176,-17],[43,61],[40,90],[-42,-34],[-99,-50],[-74,-27],[-61,-14],[-118,4],[-59,25],[17,62],[0,77],[36,35],[54,46],[59,61],[40,63],[158,29],[153,11],[128,34],[63,6],[60,-16],[244,-26],[100,-20],[44,-15],[33,-5],[34,22],[44,21],[152,-2],[42,3],[39,10],[47,20],[56,30],[8,15],[-38,-1],[-39,-8],[-58,-21],[-56,-12],[-57,2],[-115,19],[-200,3],[-102,8],[-47,9],[-27,12],[-23,19],[-20,25],[10,17],[41,10],[35,2],[57,-14],[63,-23],[69,-3],[-24,21],[-88,42],[-60,36],[-51,44],[-40,43],[-87,68],[-70,68],[-50,30],[-52,15],[-160,18],[-32,12],[-76,59],[-20,100],[-34,61],[32,77],[54,35],[318,-27],[135,4],[172,-10],[92,-19],[106,-47],[94,-53],[91,-36],[83,-48],[91,-73],[54,-34],[47,-21],[62,-19],[118,-23],[103,-7],[53,3],[57,16],[41,20],[-45,6],[-119,-3],[-82,11],[-47,23],[-50,31],[-79,59],[-60,39],[-131,63],[-97,62],[-78,60],[-7,25],[56,18],[69,13],[432,40],[258,48],[105,56],[12,13],[346,78],[244,29],[94,5],[85,13],[3,7],[-74,11],[-75,5],[-171,0],[-152,9],[-46,18],[10,28],[14,25],[46,40],[49,31],[209,88],[140,38],[41,25],[-302,-57],[-106,-41],[-106,-62],[-55,-19],[-39,5],[-35,-6],[-31,-16],[-25,-30],[-21,-44],[-19,-30],[-17,-16],[-43,-23],[-104,-44],[-242,-63],[-82,-16],[-70,-3],[-226,-35],[-68,-2],[-76,11],[33,31],[119,56],[32,25],[-77,-5],[-78,-16],[-172,-12],[-69,-23],[-66,-42],[-53,-26],[-40,-11],[-55,-6],[-202,-3],[-45,2],[-116,32],[-103,-11],[-43,2],[-78,23],[-23,14],[3,20],[45,37],[53,35],[170,78],[109,37],[158,31],[369,35],[17,26],[-374,-29],[-318,-36],[-52,-14],[-74,-35],[-235,-129],[-70,-33],[-106,-7],[-81,11],[-63,16],[-109,38],[-83,21],[-39,13],[-23,14],[-18,17],[-15,18],[27,16],[210,33],[284,-6],[128,7],[125,20],[186,51],[201,71],[40,22],[-74,5],[-54,-5],[-131,-26],[-208,-68],[-181,-24],[-448,-13],[-142,-19],[-63,4],[-47,19],[-52,34],[9,28],[107,31],[84,7],[15,7],[-119,30],[-11,15],[69,34],[148,50],[76,15],[137,10],[142,-5],[5,9],[-140,19],[-105,4],[-138,-14],[-369,-80],[-31,2],[-53,14],[15,20],[197,85],[6,13],[-141,-2],[-42,4],[-40,10],[-58,-9],[-75,-27],[-52,-12],[-31,4],[-78,33],[10,27],[62,35],[57,25],[77,23],[126,29],[90,10],[148,0],[70,13],[62,22],[78,36],[86,25],[140,20],[118,-6],[65,-18],[51,-31],[56,-24],[5,19],[46,24],[58,10],[69,-3],[61,-12],[79,-28],[63,-13],[30,0],[38,16],[99,1],[-2,6],[-32,17],[-40,12],[-352,82],[-10,18],[119,17],[74,21],[35,5],[87,43],[57,22],[105,25],[43,-7],[53,-22],[51,-14],[151,-13],[65,-14],[115,-81],[46,-26],[66,-27],[39,-10],[77,-6],[8,15],[-92,38],[-25,22],[11,18],[20,10],[28,1],[72,-17],[192,-56],[288,-67],[110,-15],[68,-24],[62,-29],[61,-20],[11,2],[-57,45],[-139,55],[-371,94],[-147,50],[-72,33],[-53,34],[-1,19],[50,21],[68,17],[85,7],[11,7],[-78,26],[-45,22],[1,16],[93,12],[57,-4],[108,-28],[91,-13],[15,8],[-94,75],[-9,17],[14,9],[33,10],[98,-5],[161,-37],[290,-18],[79,3],[-12,8],[-115,23],[-121,30],[-53,18],[-39,24],[-47,21],[-4,9],[75,16],[196,-3],[182,-24],[155,9],[97,-6],[39,-8],[70,-26],[224,-96],[23,-15],[26,-23],[27,-32],[38,-8],[74,21],[49,21],[-21,20],[-124,46],[-28,20],[-61,34],[-139,59],[-37,28],[-23,24],[383,22],[370,-20],[60,-14],[40,-19],[38,-30],[60,-30],[119,-46],[171,-29],[-33,20],[-127,51],[-58,35],[1,23],[10,18],[20,13],[144,47],[206,15],[24,-3],[161,-73],[76,-30],[53,-12],[2,5],[-74,34],[-56,18],[-6,12],[94,35],[59,9],[251,10],[28,-3],[24,-10],[59,-39],[22,-5]],[[23803,93182],[38,-4],[24,7],[76,-2],[18,-14],[-1,-15],[-9,-24],[6,-21],[51,-40],[47,-28],[42,-34],[63,-72],[13,-21],[10,-22],[16,-80],[2,-31],[-6,-88],[-5,-17],[-16,-20],[5,-8],[50,-23],[39,-46],[21,-15],[49,-24],[9,-9],[12,-16],[28,-66],[46,-59],[3,-13],[-10,-28],[7,-9],[18,-10],[16,5],[14,21],[15,6],[17,-9],[12,-16],[17,-38],[25,-31],[-2,-10],[-12,-8],[-68,-8],[-37,6],[-35,15],[-25,16],[-22,24],[-9,-2],[-12,-20],[-25,-29],[-16,-27],[18,-12],[89,1],[19,-8],[23,-19],[-26,-31],[-60,-53],[-129,-103],[-38,-26],[9,-8],[14,-2],[45,5],[41,14],[51,-6],[22,-12],[-8,-11],[14,-17],[83,-42],[52,8],[53,40],[41,20],[51,-2],[14,-5],[-5,-10],[-38,-22],[-34,-25],[-3,-7],[42,10],[94,-16],[45,-4],[34,4],[31,-6],[29,-17],[9,-11],[-27,-6],[-25,0],[-22,-11],[-18,-20],[-13,-26],[-8,-33],[-19,-13],[-31,6],[-13,9],[7,13],[-9,2],[-25,-10],[-20,0],[-5,-9],[137,-104],[44,-91],[30,-38],[3,-10],[-20,-26],[-1,-19],[9,-56],[-4,-45],[-14,-78],[13,-25],[29,-22],[18,-27],[12,-10],[9,-22],[10,-14],[12,-6],[8,8],[5,20],[11,19],[31,34],[30,54],[5,17],[-5,42],[4,18],[28,64],[9,44],[8,69],[15,48],[32,40],[56,82],[20,16],[22,8],[40,-2],[28,-26],[39,-49],[49,-44],[90,-60],[25,-23],[51,-59],[21,-59],[15,-84],[13,-50],[10,-17],[5,-25],[-1,-34],[-4,-26],[-7,-19],[-11,-11],[-27,-4],[-34,6],[-9,8],[-18,40],[-7,2],[-31,-29],[-4,-16],[12,-54],[-2,-102],[3,-23],[33,-106],[55,-81],[138,-155],[8,-18],[15,-64],[7,-13],[9,-8],[11,-2],[15,6],[51,48],[44,51],[31,27],[18,2],[18,9],[21,17],[13,18],[7,19],[9,77],[8,37],[21,50],[8,14],[107,127],[9,16],[45,147],[17,67],[2,41],[-6,36],[3,30],[12,24],[13,16],[22,17],[13,24],[7,2],[19,0],[24,-16],[17,-3],[113,19],[0,9],[-66,31],[1,16],[5,21],[21,24],[26,7],[6,15],[0,19],[9,31],[-8,11],[-62,42],[-36,-2],[-9,5],[-31,35],[-11,50],[-1,20],[4,33],[4,9],[-2,15],[-8,20],[0,19],[6,16],[-4,19],[-14,22],[-6,18],[15,56],[1,17],[-15,24],[-10,9],[8,6],[25,2],[31,-7],[36,-18],[43,0],[52,17],[52,9],[91,-4],[21,-5],[90,-52],[70,-26],[32,3],[156,-11],[68,6],[35,-3],[68,-28],[-4,-24],[-30,-39],[-38,-8],[-34,-14],[32,-21],[92,-28],[22,-44],[6,-21],[-11,-18],[6,-10],[21,0],[55,16],[61,-10],[89,-35],[10,-7],[15,-27],[-2,-11],[-78,-67],[-41,-27],[-54,-27],[-1,-15],[75,-3],[58,-7],[27,-9],[14,-13],[19,-27],[3,-22],[-2,-29],[-6,-20],[-69,-59],[-31,-18],[-53,-21],[-23,-17],[-26,3],[-28,20],[-28,5],[-52,-17],[-29,1],[-13,-6],[-2,-13],[25,-37],[14,-14],[6,-11],[-11,-18],[3,-6],[8,-7],[47,-80],[10,-6],[10,3],[20,23],[13,9],[5,-1],[0,-12],[-22,-70],[-2,-19],[0,-17],[11,-35],[23,-38],[30,-35],[45,-46],[60,-49],[22,-24],[33,-56],[7,-22],[-9,-59],[-24,-97],[-15,-55],[-7,-14],[-45,-39],[-26,-9],[-42,1],[-14,-8],[-22,-31],[-30,-55],[-24,-35],[-17,-14],[-32,-17],[-50,-51],[-24,-20],[-86,-21],[-69,-68],[-28,-23],[-30,-12],[-32,-2],[-19,11],[-10,42],[-7,14],[-24,29],[-50,83],[-22,29],[-14,6],[-30,-5],[-14,3],[-33,26],[-11,17],[1,7],[25,9],[-11,14],[-43,37],[-18,20],[-2,6],[-43,26],[-43,7],[-53,-42],[-21,-29],[1,-9],[26,-11],[11,6],[22,26],[11,8],[33,-4],[28,-18],[10,-16],[4,-11],[75,-83],[26,-17],[12,-20],[8,-33],[16,-37],[36,-61],[39,-75],[8,-30],[-20,-14],[-10,-1],[-30,11],[-78,35],[-9,-1],[-20,-18],[-17,-42],[-5,-4],[-42,17],[-78,36],[-52,31],[-27,26],[-32,41],[-37,56],[-45,17],[-52,-20],[-76,-7],[-158,6],[-21,-5],[-8,-7],[14,-30],[-4,-9],[-10,-6],[-3,-9],[18,-32],[27,-23],[79,-30],[52,-25],[32,-22],[10,-19],[1,-20],[-15,-41],[-8,-15],[-183,-203],[-70,-82],[-35,-50],[-32,-33],[-27,-17],[-45,-9],[-62,-2],[-81,8],[-42,26],[-76,70],[-54,41],[-23,14],[-20,39],[-18,7],[-39,7],[-39,21],[-92,70],[-48,28],[-44,15],[-39,3],[-15,-4],[27,-36],[-12,-2],[-31,8],[-32,0],[-55,26],[-55,-4],[-39,5],[-48,14],[-51,7],[-82,0],[-29,-3],[-5,-7],[40,-31],[68,-37],[-9,32],[2,8],[23,11],[107,-19],[122,-42],[31,-4],[34,-15],[38,-25],[52,-51],[99,-116],[32,-29],[43,-27],[215,-40],[75,0],[149,-11],[79,-21],[22,-15],[7,-51],[-7,-26],[-43,-79],[-27,-58],[-168,-245],[-22,-57],[-9,-34],[-30,-34],[-76,-55],[-76,-46],[-46,-10],[-41,11],[-26,14],[-39,45],[-3,-4],[29,-72],[-7,-7],[-23,9],[-53,32],[-17,-6],[-10,-9],[-14,0],[-18,10],[-32,26],[-9,13],[-7,40],[-6,7],[-64,-23],[-10,-7],[26,-16],[9,-12],[25,-58],[2,-13],[-19,-8],[-61,23],[-7,-2],[30,-59],[12,-27],[1,-15],[-39,-66],[-25,-27],[-35,-10],[-21,6],[-24,17],[-18,-2],[-11,-22],[-20,-15],[-29,-9],[-37,4],[-45,17],[-120,62],[-37,9],[-70,9],[-9,9],[1,8],[10,8],[-3,7],[-15,6],[-15,-6],[-16,-16],[-28,-5],[-40,7],[-59,24],[-116,62],[-128,53],[-74,68],[28,-62],[-3,-20],[-14,-19],[-2,-18],[29,-44],[40,-15],[40,1],[1,7],[-16,11],[-15,16],[-7,24],[7,4],[36,-12],[23,-15],[177,-81],[53,-15],[40,-15],[11,-10],[-14,-20],[-71,-50],[-1,-8],[49,4],[59,45],[33,20],[32,13],[43,-22],[55,-56],[44,-32],[63,-18],[37,-19],[62,-53],[10,-27],[6,-111],[-2,-27],[-8,-27],[-14,-26],[-26,-15],[-38,-3],[-30,-11],[-65,-59],[-28,-9],[-117,18],[-45,16],[-21,-1],[-12,-13],[-12,-6],[-46,-5],[-8,-11],[3,-16],[9,-22],[11,-13],[18,-16],[26,-11],[53,-12],[6,-30],[-2,-10],[-18,-20],[-20,2],[-35,24],[-18,1],[-15,-13],[-21,-4],[-27,4],[-15,-10],[-3,-25],[-9,-19],[-31,-30],[-17,-22],[0,-18],[18,-12],[21,-28],[23,-45],[5,-19],[-15,5],[-19,18],[-24,29],[-36,27],[-80,35],[-15,-1],[8,-9],[53,-36],[20,-24],[3,-17],[-45,-38],[-1,-13],[12,-11],[3,-9],[-16,-18],[-26,-16],[-51,-2],[-4,-9],[19,-19],[6,-12],[-16,-16],[-11,-2],[-58,7],[15,-40],[9,-14],[18,-20],[32,-19],[1,-7],[-11,-16],[-19,-20],[-81,-59],[-56,-70],[-8,-22],[14,-45],[1,-12],[-15,-21],[-33,6],[-7,-8],[8,-22],[2,-31],[-5,-42],[-24,-66],[-43,-88],[-33,-81],[-23,-73],[-16,-36],[-31,-2],[-23,-23],[16,-12],[9,-14],[7,-21],[-7,-67],[-19,-111],[-13,-89],[3,-274],[-3,-121],[-9,-67],[-14,-37],[-24,-11],[30,-10],[20,-17],[9,-26],[8,-42],[12,-19],[13,3],[13,-4],[11,-12],[33,-59],[37,-17],[2,-33],[-15,-184],[0,-24],[17,46],[18,144],[23,63],[19,14],[77,7],[81,-16],[31,-2],[27,8],[28,-17],[6,-18],[8,-75],[8,-43],[48,-153],[23,-86],[29,-133],[10,-38],[59,-178],[11,-49],[5,-37],[-2,-26],[-11,-40],[-19,-54],[-18,-42],[-17,-28],[-18,-22],[-18,-14],[1,-3],[21,6],[20,15],[39,37],[15,8],[43,5],[1,-13],[-20,-28],[4,-2],[30,22],[64,31],[252,103],[59,9],[85,-19],[69,-43],[75,-56],[79,-41],[124,-38],[37,-18],[73,-19],[34,-21],[40,-52],[65,-67],[49,-42],[54,-39],[55,-73],[88,-164],[22,-20],[54,-27],[102,-35],[151,-81],[66,-32],[43,-13],[43,-22],[43,-32],[32,-35],[23,-38],[19,-25],[35,-28],[18,-19],[2,-30],[-42,-116],[-1,-10],[42,84],[24,24],[19,11],[39,-1],[59,-14],[53,0],[44,13],[39,6],[31,-1],[23,4],[14,10],[17,0],[68,-29],[27,-2],[99,-27],[63,10],[11,-5],[22,-36],[19,-3],[31,6],[31,-10],[51,-46],[23,-40],[23,-82],[2,-25],[-42,-190],[-13,-73],[-2,-65],[8,-36],[37,-62],[6,-17],[22,-91],[6,-39],[-3,-45],[-11,-75],[3,-56],[9,-85],[-3,-58],[-17,-31],[-11,-29],[-9,-54],[0,-21],[9,-40],[16,-23],[26,-25],[24,-38],[45,-92],[33,-51],[39,-75],[8,-38],[-11,-25],[-14,-17],[-32,-23],[-14,-17],[3,-4],[47,12],[27,-1],[23,-19],[19,-36],[32,-30],[43,-25],[44,-43],[74,-100],[13,-23],[19,-52],[26,-82],[13,-54],[1,-25],[-14,-25],[-49,-46],[-50,-81],[16,4],[32,34],[56,67],[30,13],[29,-7],[45,-20],[39,-27],[35,-36],[51,-95],[55,-76],[30,-65],[-9,41],[-20,48],[-51,76],[-22,39],[-5,19],[-2,21],[4,37],[10,55],[13,39],[16,22],[10,24],[6,25],[8,19],[44,33],[12,-3],[9,-41],[10,-8],[21,-6],[17,-15],[14,-21],[10,-23],[6,-22],[13,-73],[9,-34],[2,41],[11,65],[8,26],[27,39],[-2,17],[-11,22],[-56,97],[-1,24],[15,14],[11,26],[5,40],[12,28],[35,40],[30,62],[16,42],[12,23],[13,5],[-18,17],[-4,11],[-1,51],[-8,54],[-12,25],[-34,53],[-6,16],[-6,60],[4,30],[9,26],[-5,24],[-32,45],[-12,39],[-14,93],[-13,118],[-14,86],[-16,56],[-3,35],[9,14],[11,44],[10,10],[16,-2],[1,5],[-25,23],[-12,30],[1,11],[21,29],[-3,12],[-16,16],[-49,28],[18,10],[11,23],[-2,7],[-20,10],[-22,17],[-17,27],[-20,42],[-13,34],[-12,56],[-22,63],[-9,16],[-11,10],[-12,5],[0,10],[13,14],[210,106],[18,16],[103,59],[48,33],[48,48],[66,49],[32,31],[21,31],[105,122],[44,62],[26,53],[37,64],[49,75],[31,63],[13,54],[16,91],[4,82],[3,119],[-1,106],[-14,167],[-7,53],[-15,62],[-37,125],[-6,35],[-23,57],[-74,151],[-92,101],[-18,26],[-36,30],[-56,34],[-36,28],[-94,104],[-31,13],[-11,27],[-3,19],[4,50],[5,34],[7,26],[7,16],[52,77],[29,61],[20,34],[22,26],[41,34],[23,44],[-6,17],[-18,19],[-4,19],[31,47],[4,13],[-4,45],[6,10],[38,3],[54,-64],[13,5],[-17,18],[-21,43],[3,18],[40,47],[1,21],[-12,29],[-1,24],[23,55],[-6,12],[-65,11],[-11,16],[4,7],[31,19],[2,7],[-54,125],[-9,37],[23,46],[26,20],[-3,12],[-35,2],[-21,7],[-21,35],[8,23],[8,10],[20,54],[20,11],[-4,9],[-74,-23],[-35,19],[-35,-5],[-16,6],[6,19],[62,86],[29,47],[18,43],[10,28],[1,14],[-6,93],[3,26],[25,24],[37,44],[-51,41],[-32,39],[-21,20],[-16,19],[-21,40],[-15,53],[-17,106],[-3,58],[4,42],[7,21],[11,22],[47,41],[82,60],[64,24],[47,-13],[90,-15],[73,-34],[222,-86],[40,-38],[-37,-33],[5,-8],[84,62],[22,12],[19,3],[63,-24],[25,-4],[32,-20],[76,-66],[6,6],[-21,34],[12,15],[60,35],[62,29],[44,28],[47,37],[32,20],[16,2],[21,-11],[56,-49],[36,-25],[29,-26],[40,-47],[16,-10],[31,-32],[41,3],[13,-3],[4,-7],[7,-21],[4,-14],[0,-14],[-9,-42],[-30,-66],[13,-1],[18,14],[24,25],[19,9],[40,-20],[38,-32],[13,-17],[15,-28],[12,-15],[12,-27],[-1,-9],[-11,-14],[-46,-22],[9,-9],[53,14],[17,14],[11,24],[16,6],[63,-41],[9,-14],[-4,-11],[-10,-13],[-27,-14],[-24,-35],[-4,-15],[17,-11],[41,-4],[0,-8],[-24,-16],[-3,-20],[53,-71],[36,-32],[21,-5],[48,-2],[39,-12],[86,-40],[51,-8],[44,13],[29,2],[25,-16],[8,-11],[4,-23],[0,-34],[14,-24],[28,-14],[23,2],[31,27],[25,5],[9,20],[7,37],[8,20],[18,6],[15,-11],[9,-17],[16,-51],[4,-23],[-1,-20],[-8,-19],[-16,-20],[-23,-21],[-19,-31],[-22,-70],[-9,-46],[-2,-28],[1,-29],[4,-33],[9,-27],[21,-37],[1,-13],[2,-30],[-2,-14],[-12,-27],[-34,-26],[-46,-7],[-152,-1],[-41,6],[10,-24],[43,-8],[38,0],[145,-15],[20,-15],[17,-28],[12,-28],[12,-57],[2,-27],[-6,-31],[-15,-33],[-10,-44],[-5,-55],[8,-29],[78,-3],[15,-20],[-1,-15],[-28,-56],[-3,-15],[13,-38],[-2,-11],[-7,-11],[-8,-28],[-7,-46],[-9,-30],[-21,-22],[-11,-5],[-8,6],[-21,62],[-9,9],[-8,-6],[-4,-9],[0,-14],[-4,-14],[-7,-14],[-31,-23],[-50,-16],[1,-16],[34,-9],[43,-28],[25,-4],[38,22],[75,71],[31,19],[27,7],[30,1],[34,-5],[68,9],[17,-7],[20,-15],[25,-25],[17,-23],[9,-23],[15,-85],[21,-23],[4,-16],[2,-25],[-1,-49],[-23,-100],[-11,-36],[-31,-50],[-36,-23],[-64,-21],[-33,-18],[-25,-25],[-1,-13],[72,42],[79,20],[23,24],[17,22],[17,50],[32,130],[18,40],[25,7],[11,-14],[26,-76],[0,-19],[-7,-16],[-42,-74],[15,7],[43,70],[9,21],[5,32],[14,23],[5,-11],[13,-82],[0,-60],[3,-19],[-5,-56],[5,-10],[13,49],[4,37],[6,26],[7,16],[52,50],[61,40],[40,36],[33,17],[50,17],[31,33],[14,50],[12,35],[10,20],[33,34],[17,2],[17,-12],[20,-26],[21,-40],[13,-30],[4,-23],[4,-78],[4,0],[19,60],[3,21],[-2,23],[-6,22],[-20,49],[-7,31],[1,18],[22,11],[31,4],[5,8],[-23,21],[-1,11],[22,36],[13,1],[26,-5],[-5,18],[0,12],[7,5],[42,-11],[5,14],[36,1],[4,12],[-32,18],[-30,12],[-10,9],[-7,15],[-9,35],[2,9],[9,0],[14,-9],[9,18],[9,43],[9,18],[28,-21],[1,9],[-23,68],[4,13],[35,5],[21,-9],[55,-49],[11,5],[-9,14],[-28,29],[-26,19],[-23,9],[-17,16],[-19,45],[-3,18],[2,24],[13,50],[7,11],[14,8],[19,5],[21,-5],[44,-33],[7,11],[-23,18],[-13,16],[-6,21],[2,24],[19,49],[9,40],[39,109],[12,20],[12,12],[8,13],[31,3],[57,-39],[18,-23],[4,-32],[-30,-45],[-51,-33],[-16,-14],[10,-9],[49,27],[42,12],[34,0],[28,-53],[4,-73],[-16,-60],[21,30],[26,17],[22,-40],[2,-32],[12,-31],[24,-40],[25,-36],[-28,-37],[-33,-23],[7,-16],[46,-18],[6,-18],[-5,-24],[7,1],[32,36],[27,-5],[34,-79],[-25,-46],[-39,-21],[-30,-9],[-43,2],[-17,-7],[8,-15],[41,-1],[63,12],[47,19],[20,1],[22,-8],[7,-6],[-23,-13],[-1,-5],[8,-13],[18,-44],[-2,-10],[-17,-25],[27,-5],[38,12],[11,-14],[23,-52],[15,-53],[-64,-73],[-32,-15],[-48,-39],[-13,-31],[-28,-39],[18,0],[49,64],[24,15],[18,-4],[7,-11],[-3,-18],[16,3],[66,37],[28,7],[36,3],[3,-13],[-22,-89],[-38,-69],[-70,-42],[-24,-25],[-31,-40],[12,-7],[66,52],[45,21],[64,17],[28,-3],[51,-104],[28,-10],[24,5],[44,-30],[16,-29],[-4,-21],[-15,-13],[-7,-19],[18,-58],[-11,-33],[-32,-29],[-23,-14],[-24,-5],[-24,-25],[-10,-4],[-33,6],[11,-15],[16,-8],[26,-4],[30,8],[30,-1],[46,-19],[20,-23],[0,-6],[-10,-13],[-15,-42],[-10,-15],[9,-12],[23,-18],[17,-6],[23,6],[25,-8],[82,-99],[-4,-51],[-12,-40],[5,-44],[0,-55],[-44,-15],[-148,25],[-84,39],[-5,12],[24,26],[-21,2],[-24,-10],[-11,-10],[29,-41],[77,-36],[35,-44],[38,-4],[11,-8],[21,-25],[-6,-9],[-39,-3],[-30,-30],[19,-17],[69,-16],[49,-4],[25,-17],[-20,-19],[-58,-22],[-2,-33],[43,-14],[38,8],[16,-3],[11,-80],[7,-17],[-41,-14],[-1,-16],[28,-13],[45,-10],[15,-15],[3,-24],[9,-12],[26,-3],[29,30],[17,25],[25,-9],[1,-31],[30,-36],[10,-6],[9,-51],[24,45],[17,-9],[20,-2],[-7,-44],[-11,-34],[15,-22],[12,-32],[33,-43],[-9,-21],[-38,-45],[-20,-72],[-5,-24],[-20,-41],[-26,-40],[16,4],[60,73],[36,25],[78,13],[19,20],[29,9],[18,-23],[1,-42],[24,-14],[24,14],[22,-12],[-13,-26],[-71,-108],[-21,-44],[-6,-31],[24,43],[90,97],[9,14],[20,42],[18,27],[48,-10],[25,-19],[11,-55],[19,-59],[30,-65],[78,-32],[28,-6],[49,23],[7,30],[38,10],[27,-4],[9,-59],[29,-31],[28,-26],[27,-14],[40,-6],[22,-28],[0,-12],[-22,-30],[-22,-45],[-38,-31],[-53,-1],[-72,-20],[-3,-17],[-16,-19],[-39,-20],[-21,-14],[-35,-72],[-20,-31],[-24,-6],[-34,3],[-22,-6],[-16,-14],[-10,-19],[-7,-7],[-45,-20],[-82,-55],[-44,-2],[-26,7],[-21,-5],[-14,-15],[-39,-27],[-12,-16],[-7,-19],[-5,-38],[-5,-14],[-7,-8],[-33,8],[-37,25],[7,-27],[58,-44],[17,-25],[-16,-21],[-37,-34],[-4,-18],[15,-10],[-6,-15],[-20,-16],[2,-7],[2,-6],[51,23],[45,50],[29,50],[14,14],[58,19],[34,22],[49,39],[54,58],[58,76],[74,59],[91,42],[66,22],[42,1],[2,7],[-37,14],[-32,2],[-39,-10],[-12,24],[2,10],[12,17],[33,15],[161,-21],[55,-17],[60,-137],[14,-44],[4,-32],[-6,-20],[-24,-24],[-69,-48],[-9,-12],[-1,-7],[30,-9],[9,-14],[15,-52],[31,34],[58,83],[48,38],[40,11],[47,5],[17,-1],[6,-27],[25,-54],[23,-14],[45,-7],[40,-67],[15,-46],[14,-27],[-1,-19],[2,-15],[11,-23],[5,-19],[-3,-45],[-23,-77],[17,-71],[-7,-31],[-4,-51],[14,-33],[5,-20],[-13,-11],[-88,-28],[-35,-1],[-9,-17],[27,-5],[48,1],[59,-17],[27,-19],[11,-27],[-3,-21],[-17,-16],[-33,3],[-32,15],[2,-14],[47,-35],[14,-17],[26,-22],[5,-30],[-6,-30],[-90,-120],[-73,-76],[-74,-67],[-119,-129],[-12,-6],[-21,-3],[-57,21],[-45,-5],[-85,-25],[-24,-15],[-47,-45],[-18,-6],[-51,-9],[-47,6],[-19,-7],[-23,-21],[-6,-12],[-7,-38],[-115,-168],[-31,-57],[-59,-60],[-65,-106],[-57,-43],[-19,-58],[-54,-36],[-100,-9],[-47,-10],[-55,16],[-42,-25],[-62,-8],[-30,6],[-121,-57],[-31,54],[-23,21],[-68,3],[-55,22],[-50,4],[-48,10],[-32,0],[-33,-6],[-52,2],[-29,-30],[-96,9],[-41,27],[-34,6],[-44,-6],[-43,-20],[-94,22],[-100,-19],[-87,13],[-24,13],[-138,-35],[-53,20],[-48,-54],[-32,11],[-35,-8],[-12,11],[-23,-8],[-15,-29],[-20,-3],[-33,-52],[-56,-41],[-82,-226],[-7,-87],[-31,-59],[-27,-8],[-22,-1],[-141,-44],[-63,-34],[18,-27],[-21,-21],[-33,-8],[-36,-25],[-24,-28],[-11,-39],[-72,-64],[-84,-147],[-40,-108],[-49,-78],[-34,-30],[-25,-5],[-25,10],[-41,36],[-30,4],[-76,51],[-177,52],[27,-19],[23,-32],[47,-8],[47,0],[99,-63],[48,-22],[30,-19],[25,-43],[-18,-84],[-19,-69],[-24,-53],[-85,-137],[-41,-46],[-72,-163],[-74,-77],[-40,-47],[-42,-74],[-99,-56],[-37,-15],[-34,8],[-41,-46],[-49,-28],[-15,-42],[-117,-114],[-45,-15],[-39,-30],[-11,-51],[-34,-32],[-10,-23],[-29,-72],[-53,-94],[-66,-15],[-24,-32],[-27,-53],[-39,-36],[-77,17],[18,-22],[69,-34],[7,-51],[-34,-12],[-72,-68],[-98,-117],[40,22],[82,85],[61,30],[80,89],[57,17],[11,20],[9,73],[6,26],[26,73],[33,61],[26,84],[47,54],[71,45],[66,98],[36,30],[35,22],[15,40],[21,23],[58,46],[64,13],[64,38],[50,21],[30,36],[44,19],[132,104],[36,49],[48,99],[41,51],[14,54],[60,87],[62,116],[30,83],[46,45],[89,132],[47,52],[20,6],[53,47],[34,48],[54,49],[97,60],[91,72],[123,63],[144,93],[117,50],[82,7],[100,24],[35,-3],[156,-40],[74,-50],[85,-106],[13,-27],[2,-39],[-45,19],[-40,1],[28,-22],[47,-65],[-3,-81],[-26,-73],[-79,-36],[-20,-29],[-16,-47],[-16,-18],[-39,-22],[-21,-30],[-62,-49],[-28,-6],[-32,11],[-78,47],[-47,44],[-24,-24],[-20,-25],[-46,8],[-21,-11],[-34,12],[-71,-56],[20,-6],[56,32],[19,-4],[42,-41],[100,-45],[26,-29],[25,-95],[16,-15],[35,10],[39,47],[32,25],[63,20],[-13,-31],[48,3],[48,-42],[-18,-30],[-24,-59],[-16,-116],[-49,-78],[-64,-76],[16,-19],[19,-11],[41,22],[28,-1],[31,-15],[-10,-59],[-11,-40],[7,-38],[18,-71],[25,-16],[10,-92],[14,-50],[-2,-40],[25,-25],[4,-41],[92,-12],[19,-16],[63,-15],[12,-12],[12,-22],[-63,-49],[51,-36],[47,-59],[38,12],[16,-2],[42,-36],[12,-19],[6,-16],[21,4],[31,14],[54,-4],[59,-20],[-5,-32],[-9,-21],[46,7],[28,-23],[10,11],[7,14],[57,38],[73,79],[9,-9],[3,-30],[10,-49],[28,-34],[33,-8],[45,26],[18,-22],[22,-43],[20,-57],[-1,-20],[-26,-17],[-24,-26],[99,-10],[10,-11],[10,-22],[-10,-22],[-9,-11],[-18,13],[-33,-12],[-28,-29],[-31,-16],[-20,-2],[-22,-14],[-20,-20],[-20,-6],[-65,-52],[-66,-33],[-69,-54],[-71,-34],[-73,-40],[-16,-4],[-19,2],[-41,-40],[-21,6],[-21,-7],[-25,9],[-16,16],[13,-42],[3,-39],[-6,-16],[-12,-20],[-42,3],[-16,14],[-20,21],[-9,33],[-21,24],[-13,-33],[1,-25],[-16,-33],[-18,57],[-34,-21],[-14,-61],[7,-17],[10,-46],[-16,-25],[-12,7],[-25,-68],[-31,-25],[-31,-69],[-37,-53],[-11,-36],[-62,-81],[-24,2],[-17,-2],[-26,-34],[-5,-68],[-11,9],[-12,-2],[-6,-22],[-9,-3],[-23,20],[-27,-11],[-21,15],[-27,100],[-14,35],[-26,12],[-6,-22],[-10,-20],[-25,41],[-18,153],[0,37],[26,129],[64,116],[-21,4],[-56,-81],[6,20],[9,20],[19,33],[29,31],[39,17],[27,3],[18,17],[27,30],[5,16],[-24,-18],[-39,-18],[10,23],[10,13],[209,208],[42,34],[84,44],[12,28],[-12,19],[33,-17],[-3,-23],[-5,-18],[-2,-29],[3,-28],[34,-14],[27,-52],[-13,71],[25,40],[96,54],[80,6],[25,25],[-68,17],[-81,-9],[-50,19],[-70,-12],[-73,11],[-22,-15],[-19,-34],[-23,15],[-12,3],[-11,11],[24,58],[74,87],[46,75],[12,15],[10,31],[-24,-5],[-22,-12],[-15,34],[-27,47],[-2,-20],[13,-57],[-51,-101],[-34,-7],[-44,-47],[-62,-41],[-73,-78],[-95,-66],[-19,-1],[-43,55],[12,24],[11,34],[-11,-10],[-7,-14],[-25,-24],[21,-45],[-11,-17],[-30,-22],[-27,-32],[-25,-22],[-20,28],[-54,-35],[-46,-9],[-10,17],[-3,28],[-16,7],[-30,-8],[-11,15],[-2,-18],[8,-29],[6,-57],[-9,-26],[2,-34],[26,-10],[6,-10],[1,-13],[-57,-88],[-48,13],[-26,-24],[-27,-6],[-12,-40],[-15,-8],[-20,3],[-18,11],[-13,-6],[-19,-70],[-16,6],[-6,-26],[-8,-11],[-12,-9],[-10,31],[-7,30],[-9,6],[-13,8],[-13,0],[-9,-5],[-11,-19],[-16,-16],[-12,13],[-9,23],[-8,-36],[-12,-38],[2,-44],[-5,-26],[-11,7],[-11,23],[-31,18],[-25,-1],[5,24],[24,35],[-8,7],[-11,-5],[-5,5],[8,32],[1,35],[-10,-12],[-14,-37],[-31,-30],[1,-49],[-30,-102],[-1,-43],[-19,-34],[-25,-30],[-33,9],[-25,-26],[-13,-29],[-11,-5],[-5,38],[-5,11],[-9,-55],[-9,-4],[-4,40],[-4,26],[-13,-23],[-9,-59],[-9,5],[-2,22],[-7,7],[-2,-25],[3,-36],[-5,-19],[-8,10],[-9,17],[-15,-13],[-14,-5],[0,17],[3,22],[-27,-12],[-32,-39],[-26,-55],[9,-9],[10,-17],[-44,-84],[-44,-76],[-34,-123],[-14,-15],[-11,-22],[-13,-75],[-14,-66],[8,-30],[5,-30],[13,-30],[11,-3],[11,5],[9,-1],[5,-13],[-2,-15],[-13,-4],[-26,-26],[-22,-11],[-11,-32],[-16,-37],[-32,-58],[13,-18],[50,-20],[22,-21],[34,-109],[-8,-10],[-3,-20],[30,-28],[9,-78],[25,-27],[36,-16],[45,24],[37,32],[-1,27],[-24,61],[-5,29],[-18,19],[-6,-16],[-11,21],[-2,12],[11,5],[12,-2],[14,-11],[36,-67],[10,-89],[3,-56],[-4,-19],[-11,4],[-20,-4],[-96,-29],[-21,-25],[-49,-28],[-3,14],[3,28],[-3,59],[-10,3],[-75,-96],[-30,-6],[-24,-28],[-6,16],[-4,71],[15,61],[-8,-1],[-26,-36],[-11,22],[-5,24],[-8,14],[-9,5],[7,-53],[-17,-40],[-5,-104],[-22,-43],[-68,-27],[-45,6],[-40,-9],[-53,-20],[-29,12],[-30,-21],[-103,-6],[-21,11],[-28,-39],[-44,-24],[-111,-88],[-25,-33],[-29,-50],[-21,-27],[-16,-9],[-10,-22],[-11,-15],[10,50],[12,43],[10,82],[-3,66],[-12,28],[-12,18],[14,-66],[2,-80],[-5,-47],[-27,-91],[-12,-21],[-13,-19],[-10,-8],[-10,-15],[-11,-23],[-10,-45],[6,-42],[53,-15],[15,13],[7,-30],[4,-42],[-4,-45],[-9,-45],[-7,-57],[-5,-86],[-9,-78],[-1,24],[5,94],[-9,-10],[-6,-22],[-16,-121],[-22,-65],[-21,-45],[-21,7],[5,-36],[-6,-18],[-5,-39],[-13,-26],[-12,3],[-17,-18],[-6,-13],[-1,-26],[-11,-23],[-42,-119],[-35,-35],[-9,5],[10,56],[6,57],[-22,24],[-21,13],[-23,-1],[-27,44],[-34,32],[-47,86],[1,24],[-1,41],[14,63],[14,45],[19,23],[56,23],[14,36],[8,30],[-28,-52],[-41,-17],[-22,-19],[-18,-29],[-10,-37],[-24,-44],[2,-29],[4,-21],[-2,-44],[15,-43],[30,-70],[5,-109],[23,-72],[35,-85],[27,-24],[1,-32],[-12,-52],[-17,-24],[22,5],[10,-12],[10,-43],[0,-44],[-4,-25],[-6,-10],[0,25],[-5,9],[-7,-11],[-5,-13],[-2,-49],[-5,-25],[-18,-7],[-19,-66],[-17,-37],[-67,-249],[2,-42],[-12,-14],[-19,-11],[-19,-25],[-12,-27],[-12,-74],[-22,-84],[-14,35],[-4,30],[7,77],[24,128],[26,79],[21,37],[16,76],[-21,12],[-32,-1],[6,35],[9,31],[-16,31],[-10,4],[-10,12],[12,26],[5,27],[-3,34],[5,25],[-9,-4],[-13,-27],[-8,-10],[-5,23],[-6,-5],[-4,-16],[-9,-9],[-18,22],[-26,25],[-15,43],[-8,34],[8,61],[18,10],[24,-9],[31,0],[-4,13],[-11,-2],[-33,49],[-11,30],[-18,8],[-8,-29],[-9,-7],[11,62],[15,3],[22,17],[-6,36],[-14,16],[-25,-20],[0,26],[5,32],[19,0],[16,-10],[14,52],[1,24],[-24,-34],[-5,73],[23,72],[22,31],[27,-1],[28,5],[-17,13],[-18,7],[13,28],[12,5],[11,24],[-27,-3],[3,46],[-13,-9],[-16,-5],[-6,-19],[1,-33],[-4,-21],[-13,-18],[-20,-13],[-2,23],[-7,11],[-3,-50],[-5,-17],[-15,47],[-5,-10],[1,-13],[-4,-23],[-13,-12],[1,-29],[-5,-16],[-42,25],[-1,-8],[24,-56],[17,-18],[2,-30],[-15,-25],[-20,21],[-4,-1],[11,-37],[7,-33],[-7,-27],[1,-33],[-1,-30],[-5,-26],[10,-121],[12,-33],[12,-32],[6,-29],[-12,-5],[-20,25],[-17,18],[-21,59],[-4,24],[-5,19],[3,-43],[7,-48],[65,-107],[12,-42],[9,-32],[-2,-31],[-17,22],[-15,28],[-38,32],[-49,19],[-28,74],[1,-31],[-7,-26],[-16,32],[-11,27],[-4,29],[-20,-2],[-22,-25],[-22,6],[-2,50],[5,27],[24,62],[23,33],[10,41],[-4,64],[-4,-65],[-13,-33],[-20,-24],[-27,-44],[-6,-41],[-8,-77],[11,-25],[11,-7],[34,17],[18,-8],[39,-91],[72,-37],[27,-23],[22,-48],[32,-27],[25,-40],[1,-27],[-9,-30],[-3,-42],[-11,-27],[-26,-3],[-15,7],[-84,147],[-10,14],[-31,77],[-36,41],[-11,-1],[52,-76],[21,-53],[37,-75],[26,-32],[20,-50],[18,-23],[50,-33],[-18,-24],[28,-20],[4,-37],[-3,-42],[-38,16],[-1,-31],[3,-18],[-16,-15],[-24,20],[-61,113],[1,-15],[5,-18],[35,-72],[31,-44],[27,-20],[21,-36],[7,-22],[5,-34],[-15,-22],[-18,-13],[-17,23],[-12,24],[-27,40],[-8,46],[-20,-3],[-84,58],[-68,7],[7,-12],[8,-8],[54,-14],[22,-26],[44,-24],[26,-6],[11,-73],[35,-49],[5,-37],[25,-4],[43,36],[28,-13],[40,-10],[9,-30],[7,-55],[14,-63],[37,-246],[55,-202],[7,-34],[-13,30],[-41,134],[-23,96],[-23,170],[-7,38],[-8,16],[-5,-13],[-2,-21],[4,-17],[-9,-56],[4,-26],[14,-26],[17,-67],[13,-89],[-18,36],[-19,19],[-29,15],[-25,26],[1,-37],[-2,-40],[-20,12],[-14,13],[12,-42],[-26,13],[-17,-3],[-11,-38],[-15,-23],[-23,-7],[-33,34],[-11,42],[-4,47],[-2,-55],[6,-58],[-2,-43],[32,-9],[30,8],[40,-2],[26,8],[16,14],[38,-12],[3,-53],[-4,-52],[-3,-56],[11,0],[12,18],[6,100],[35,37],[12,-3],[11,-32],[4,-32],[4,-45],[-9,-68],[-53,-80],[-38,-74],[-20,-15],[-28,8],[-32,19],[-15,4],[-12,-6],[-8,22],[-4,42],[-13,14],[-9,-2],[-7,-44],[-29,-13],[-41,19],[-42,37],[18,-40],[105,-74],[12,-14],[11,-20],[-15,-32],[-11,-36],[-2,-28],[-4,-18],[-42,-48],[-23,9],[-58,86],[27,-75],[21,-31],[43,-17],[80,28],[26,-31],[-22,-54],[-21,-37],[-28,-5],[-25,-10],[-7,-26],[-18,-2],[-27,-1],[-43,-2],[-23,6],[-33,-54],[-12,-7],[-18,10],[-7,43],[-8,21],[0,-80],[3,-22],[6,-16],[-38,-43],[-37,-54],[-13,-15],[-15,-27],[-30,-78],[-8,-57],[-11,-64],[-1,29],[2,48],[-8,55],[-5,-101],[-12,-47],[-109,3],[-47,-25],[-74,-86],[-22,-38],[-60,-145],[-16,-94],[-12,40],[3,29],[0,24],[-15,-51],[15,-76],[-13,-28],[-40,-54],[-22,-8],[-25,-16],[-8,-52],[-33,-49],[-19,-22],[-36,13],[11,-46],[-13,-36],[-23,-27],[-28,-18],[-16,2],[-13,-9],[-11,-23],[-26,-21],[-28,12],[-30,7],[-18,-12],[29,-21],[16,-31],[-3,-41],[-8,-15],[-18,-22],[-8,3],[-5,20],[-6,40],[-9,-9],[-1,-18],[-8,-7],[-25,64],[1,-49],[9,-37],[9,-19],[8,-12],[3,-17],[-18,-42],[-9,-10],[-16,-7],[-10,-26],[3,-22],[-14,-49],[-34,-30],[-10,1],[-9,-9],[5,-22],[9,-16],[-1,-14],[-9,-20],[-17,-6],[-10,-23],[3,-21],[6,-12],[-1,-21],[-21,-20],[-4,-21],[10,-6],[7,6],[6,-4],[-12,-34],[-11,-21],[-10,-37],[-24,-11],[1,-12],[13,-11],[12,-28],[-22,-53],[-13,4],[-8,12],[-5,-42],[2,-22],[-5,-46],[-8,-55],[-6,-22],[1,-42],[4,-41],[13,-52],[20,-214],[13,-74],[24,-200],[41,-194],[57,-235],[93,-284],[11,-40],[-12,-35],[-4,-35],[-1,-54],[3,-52],[11,-64],[22,-98],[-12,20],[-31,140],[-4,82],[5,117],[-7,-3],[-6,-38],[-3,-44],[-8,-18],[-11,68],[1,31],[11,36],[-3,13],[-18,18],[-4,29],[2,29],[-10,15],[-8,-1],[5,-70],[9,-43],[11,-104],[17,-63],[10,-52],[118,-561],[28,-72],[10,-51],[11,-107],[2,-138],[-19,-252],[-5,-171],[-2,5],[-2,18],[-5,2],[-16,-78],[-23,-71],[-8,-110],[-10,-56],[-33,-58],[-20,1],[-50,-43],[-35,11],[-42,-25],[-27,3],[-16,52],[3,23],[6,24],[11,5],[36,-54],[7,23],[-11,27],[-21,15],[-16,17],[-31,125],[-33,85],[-6,57],[-56,35],[-41,53],[-27,94],[-15,166],[-18,19],[-8,13],[18,62],[19,51],[-15,-13],[-11,-19],[-14,-45],[-10,-7],[-9,7],[-11,87],[3,108],[15,40],[-23,2],[-23,-16],[3,-36],[-3,-20],[-18,6],[-13,12],[-17,38],[-25,71],[-49,197],[-10,27],[-17,29],[8,9],[14,6],[32,88],[25,54],[9,37],[-2,16],[-11,23],[-14,-20],[-7,5],[-16,47],[-16,13],[-11,-10],[12,-38],[10,-14],[-4,-56],[-4,-18],[-10,-16],[-15,9],[-7,-14],[-9,15],[-9,24],[-10,40],[26,225],[24,144],[3,163],[2,24],[-2,44],[-33,94],[-145,231],[-112,273],[-97,103],[-74,-23],[-12,-21],[-6,-26],[5,-31],[-7,-13],[-20,2],[-26,-7],[-70,-72],[-25,3],[-22,-19],[-17,-14],[-43,-8],[-37,-15],[-16,8],[-10,42],[0,43],[8,-33],[13,-26],[6,10],[2,23],[-13,45],[-41,58],[-48,84],[14,-3],[4,18],[-15,24],[7,27],[10,29],[-20,-4],[-18,-21],[-1,-24],[-3,-20],[-10,3],[-18,24],[-89,68],[-77,39],[59,17],[32,-14],[-3,21],[-8,13],[-26,17],[-32,-7],[-21,8],[-21,-16],[-22,-25],[-21,-12],[-80,-18],[-65,-19],[11,20],[11,13],[38,20],[6,41],[-9,39],[-10,-9],[-11,-31],[-13,22],[-14,0],[-4,-49],[-19,-33],[-8,-33],[-54,-26],[-7,9],[16,31],[-1,18],[-19,-15],[-30,-60],[-106,-19],[5,13],[23,3],[32,19],[-7,32],[-12,34],[-11,4],[-8,21],[1,64],[-7,38],[-18,39],[-6,-8],[-12,-66],[-11,-87],[-5,-28],[-32,-2],[-28,6],[-95,-11],[-35,30],[-15,6],[-9,-1],[-41,-27],[-48,-21],[-11,7],[-16,1],[-34,-71],[-40,-33],[-102,60],[-25,47],[-22,10],[-28,6],[-29,-58],[-23,-79],[36,-44],[30,-21],[50,18],[28,38],[23,-1],[11,8],[10,20],[19,-16],[1,-16],[-14,-22],[-17,-19],[-11,-22],[20,-45],[31,-15],[12,7],[7,50],[19,32],[26,-7],[-3,-20],[3,-19],[12,-33],[-1,-47],[2,-11],[-28,-20],[-21,-8],[-17,-27],[9,-15],[-17,-14],[-11,6],[-6,-6],[-2,-16],[-9,-16],[13,-46],[26,-30],[19,-38],[74,-50],[18,1],[18,-50],[14,-18],[14,-8],[-1,-35],[-25,-25],[-7,-31],[-6,-17],[-11,22],[-11,15],[-26,-47],[-13,-10],[6,51],[-10,20],[-15,52],[-21,31],[-16,11],[-12,20],[-14,8],[-13,-2],[-21,12],[-1,27],[-6,20],[-16,25],[-78,45],[-1,-19],[6,-14],[11,-9],[13,-19],[0,-54],[-6,-23],[-2,-33],[-5,-34],[-10,-26],[-21,-18],[-10,15],[-15,72],[-22,23],[-34,2],[-23,-16],[-25,-70],[-21,-11],[-70,36],[-80,55],[2,18],[13,6],[24,-7],[-1,19],[-25,61],[-4,28],[3,34],[-8,-1],[-15,-28],[-51,24],[-14,28],[-30,81],[-42,3],[-19,49],[-35,-20],[-17,-23],[-15,-35],[6,-19],[15,-29],[-7,-14],[-49,-21],[-114,24],[-34,21],[-44,46],[-62,37],[-30,6],[-29,-7],[-86,-4],[-19,-10],[-17,-16],[-11,18],[-5,31],[10,5],[11,19],[10,36],[1,22],[-7,15],[-13,1],[-29,-95],[16,-53],[-1,-19],[-58,-11],[-132,-107],[-51,-58],[2,19],[62,75],[-21,12],[-36,-19],[-13,7],[15,62],[-4,55],[-26,1],[-16,-43],[-11,1],[-14,19],[-11,-6],[8,-98],[16,-41],[13,-52],[-36,-64],[-34,-53],[-3,-51],[-34,-66],[-32,-38],[-74,-88],[-22,-19],[-33,-42],[-47,-30],[-44,-49],[-15,-8],[28,42],[34,41],[-29,-6],[-44,19],[-28,1],[0,-15],[-21,-21],[-21,31],[-9,21],[-5,18],[-9,4],[-9,-8],[32,-127],[14,-5],[15,-13],[-19,-29],[-20,-23],[-32,-15],[-27,47],[-6,-59],[-3,-58],[-9,-14],[-15,-22],[-7,16],[-4,23],[-9,-20],[-14,-15],[-22,-3],[-17,-8],[0,-24],[4,-24],[30,19],[-11,-62],[-27,-62],[-23,-14],[-34,9],[-8,-6],[-8,-13],[40,-96],[-25,-145],[-17,-52],[-11,-7],[-12,-2],[-44,47],[-24,36],[21,-98],[58,-29],[3,-37],[-1,-31],[-11,-38],[-11,-49],[8,-35],[9,-85],[8,-39],[8,-119],[10,-51],[52,-189],[18,-2],[2,-20],[-1,-40],[-5,-119],[-17,-97],[-55,-203],[-24,-126],[-44,-360],[-14,-236],[-3,-111],[-4,-15],[4,-17],[-10,-245],[5,-210],[-3,-32],[-17,-63],[-11,-88],[5,-39],[-1,-27],[17,-133],[5,-100],[50,-171],[28,-60],[34,-51],[13,-30],[-6,-72],[-14,-37],[-6,-59],[-7,49],[2,62],[11,34],[1,25],[-21,26],[-37,86],[-45,153],[32,-244],[11,-39],[9,-16],[14,-17],[4,-27],[0,-19],[40,-170],[45,-175],[3,-48],[18,-58],[114,-246],[70,-184],[25,-174],[15,-54],[7,-75],[46,-83],[14,-54],[24,-30],[20,-90],[38,-53],[-9,-1],[-33,27],[2,-18],[28,-37],[54,-37],[13,0],[-21,19],[-18,26],[6,4],[38,-32],[105,-11],[47,-75],[60,-32],[32,-96],[38,-100],[24,-5],[19,0],[56,17],[88,63],[30,30],[59,42],[90,8],[28,-12],[67,26],[33,32],[11,29],[5,22],[62,30],[13,6],[63,6],[31,11],[35,7],[26,-45],[0,-22],[-17,-21],[8,-20],[31,-34],[56,-13],[19,5],[26,49],[46,48],[-1,55],[-9,31],[-13,2],[-3,17],[9,40],[-2,14],[-29,-39],[-6,0],[3,18],[6,15],[83,85],[22,35],[28,31],[60,115],[13,218],[12,38],[40,67],[4,20],[3,45],[-1,114],[2,90],[-2,102],[7,90],[7,26],[23,145],[47,64],[82,76],[19,13],[261,80],[37,20],[45,52],[33,17],[60,-1],[18,7],[4,7],[0,7],[11,7],[34,-7],[65,-31],[24,-8],[58,-36],[63,-15],[10,6],[8,11],[6,22],[-6,18],[-6,-1],[-11,-10],[-13,-1],[-25,15],[5,13],[25,-1],[17,6],[24,22],[26,-16],[35,-75],[24,-24],[2,-108],[4,-19],[8,-29],[-12,-84],[-13,-69],[-17,-57],[-37,-89],[-45,-71],[-56,-159],[-13,-75],[1,-59],[9,-58],[-3,-21],[-6,-22],[-12,2],[-22,-28],[-28,-82],[-1,-25],[13,-23],[16,11],[21,1],[12,7],[12,-2],[-3,-47],[-13,-33],[-8,-11],[-15,-5],[-17,-19],[-9,-18],[1,-54],[9,-4],[20,40],[12,-2],[2,-17],[-26,-139],[-16,-143],[-23,-82],[-8,-121],[-11,-51],[-14,-51],[-8,3],[-21,96],[-23,25],[-4,23],[12,117],[-6,65],[-11,-3],[-15,-35],[-19,-31],[0,-45],[-22,-73],[-6,-25],[-15,-65],[15,-9],[14,7],[32,-3],[13,-71],[-4,-61],[-30,-158],[-4,-55],[-14,-81],[19,-54],[-18,-72],[-6,-46],[-1,-69],[9,-132],[-15,-190],[-25,-83],[-16,-32],[-28,-82],[-37,-25],[-51,-133],[-9,-35],[5,-38],[15,-12],[12,-4],[24,-32],[30,-25],[18,50],[-9,29],[-8,15],[1,14],[102,-128],[27,-16],[21,37],[12,12],[29,44],[9,10],[48,18],[23,-1],[21,-44],[16,-25],[30,21],[26,5],[105,-42],[42,19],[76,4],[35,-11],[49,59],[31,12],[37,27],[-5,29],[-9,12],[56,-12],[83,-60],[89,11],[32,32],[21,9],[91,-61],[24,-47],[19,-4],[14,10],[4,10],[-18,10],[-8,15],[72,-29],[135,-222],[3,-18],[-58,65],[-31,-5],[-8,-10],[2,-36],[3,-17],[13,-2],[10,10],[24,-12],[15,-24],[19,-36],[12,-40],[12,-1],[12,24],[23,3],[15,-26],[11,1],[-15,42],[-35,41],[9,1],[77,-74],[21,-92],[19,-21],[18,-29],[-7,-21],[-9,-14],[-18,-69],[-6,-6],[-1,51],[-10,7],[-13,-18],[-7,-26],[11,-35],[10,0],[11,-9],[31,-236],[-7,-42],[-19,-65],[-18,-56],[-18,-35],[-23,-148],[-20,-241],[14,-217],[-7,-200],[6,-48],[2,-59],[-15,-10],[-8,1],[-9,37],[1,31],[9,38],[4,50],[-5,27],[-9,-58],[-15,-26],[-10,-9],[-10,-29],[10,-55],[14,-40],[4,-29],[-5,-34],[-3,-117],[-5,3],[-5,16],[-14,1],[-2,-47],[1,-26],[-12,-21],[-4,-20],[10,-14],[11,-9],[13,2],[12,-58],[3,-47],[-26,-44],[-9,-36],[-14,-43],[-8,-43],[-3,-31],[10,-98],[18,-69],[15,-44],[20,-10],[7,-23],[8,-36],[3,-46],[36,-155],[28,-86],[62,-158],[26,-29],[45,-127],[16,-21],[9,-37],[46,-31],[13,-23],[18,-31],[36,-54],[2,-27],[-3,-26],[10,-74],[18,-10],[19,14],[5,-14],[-4,-13],[-9,-15],[-3,-64],[31,-30],[15,-26],[51,13],[19,-7],[13,7],[-14,51],[-19,38],[1,17],[15,-13],[11,-25],[25,-32],[46,-111],[53,-26],[42,3],[39,15],[63,43],[45,78],[36,34],[116,74],[42,77],[17,10],[17,10],[36,58],[20,46],[21,22],[62,-16],[39,-22],[28,3],[27,-15],[11,-33],[12,-14],[65,3],[54,-16],[117,-98],[70,-97],[37,-103],[90,-133],[8,-12],[23,-83],[37,-53],[38,-87],[16,-59],[12,-11],[11,-22],[-5,-16],[-12,-17],[-3,-35],[8,-19],[8,-12],[22,8],[12,40],[-8,178],[-13,89],[-15,27],[-13,35],[9,27],[24,12],[31,31],[115,170],[39,159],[30,58],[34,37],[41,-9],[33,20],[10,51],[-9,69],[-13,41],[12,61],[13,91],[-1,76],[16,46],[-6,18],[-23,-37],[-18,-16],[10,30],[33,76],[16,115],[13,48],[46,67],[10,32],[34,50],[56,108],[22,30],[108,-69],[34,4],[-6,-13],[-16,-4],[-23,-19],[-6,-41],[15,-44],[17,-12],[14,28],[14,80],[22,88],[6,92],[15,32],[24,11],[41,-18],[32,-19],[33,-3],[101,14],[164,240],[77,52],[47,50],[31,99],[8,74],[22,28],[24,0],[11,18],[3,23],[57,64],[33,8],[28,-1],[65,-56],[29,-98],[5,-68],[-40,-74],[-10,-32],[-9,-28],[-18,-34],[-20,-21],[-106,-53],[-11,-11],[-13,-22],[0,-50],[2,-39],[32,-129],[12,-32],[41,-70],[-9,-10],[-16,-1],[12,-92],[25,-63],[1,-39],[-19,-123],[-36,-74],[-25,-86],[-20,-34],[-44,-168],[34,-101],[4,-50],[29,-73],[19,-23],[12,-30],[-6,-49],[12,-67],[15,-35],[18,-14],[23,0],[67,44],[15,20],[10,36],[34,73],[2,93],[7,113],[-8,73],[-35,104],[-15,75],[-35,69],[-21,118],[-9,37],[-6,51],[-8,91],[23,32],[-2,74],[57,21],[123,120],[77,31],[87,64],[20,32],[17,52],[14,7],[45,-50],[22,17],[9,39],[-12,75],[-26,0],[-78,-27],[-8,32],[0,29],[-18,89],[11,68],[12,55],[22,22],[33,24],[25,-37],[15,-35],[8,-33],[6,-92],[13,-93],[14,-64],[23,-49],[17,4],[12,8],[81,11],[50,-33],[63,-17],[59,-71],[60,-85],[15,-63],[6,-59],[14,-40],[-14,-41],[7,-69],[18,-69],[26,-44],[74,-12],[81,30],[125,27],[40,23],[206,12],[39,-33],[4,-33],[0,-26],[67,-124],[54,-16],[46,-40],[48,-22],[52,-30],[30,4],[22,11],[26,2],[184,207],[98,-6],[15,14],[13,18],[-36,32],[-82,12],[-25,-21],[-14,53],[27,-2],[91,18],[105,-11],[85,38],[43,6],[24,-8],[68,25],[128,-29],[101,24],[-12,-34],[-33,-21],[-53,-7],[-41,-50],[-87,9],[-61,-18],[19,-14],[0,-51],[9,-11],[8,0],[21,-38],[6,-25],[7,-53],[-10,-56],[-12,-26],[25,9],[14,26],[-2,27],[2,31],[14,-10],[9,-14],[32,-148],[22,-78],[6,3],[5,3],[7,15],[10,36],[9,-23],[5,-9],[5,-3],[-5,34],[6,42],[-2,15],[10,3],[12,-5],[17,-12],[30,-49],[20,-51],[1,-28],[8,-16],[12,-16],[7,-26],[1,41],[-8,30],[-2,34],[40,1],[10,45],[21,-27],[56,-123],[21,-21],[62,-24],[38,-59],[23,-53],[-14,-56],[-36,-28],[-14,-35],[-9,-34],[0,-35],[-11,-40],[-1,-14],[-7,-56],[-15,-68],[-19,-72],[-104,-2],[26,-29],[23,-22],[39,-57],[30,45],[44,3],[48,49],[18,8],[88,-26],[22,36],[17,11],[48,-7],[42,-39],[10,-9],[40,-92],[23,-20],[4,0],[0,24],[21,-10],[52,-63],[77,-103],[108,-195],[31,-75],[20,-35],[33,-85],[9,-41],[-1,-166],[-28,-112],[-7,-84],[-2,-113],[-16,-64],[22,35],[6,101],[19,62],[24,67],[33,16],[35,-28],[28,-5],[24,-20],[53,-108],[52,-86],[18,-68],[55,-34],[32,-54],[10,-47],[7,-122],[-11,-185],[3,-9],[4,-12],[11,67],[2,53],[8,54],[14,63],[24,31],[140,-32],[64,-30],[82,-52],[12,-55],[0,55],[-4,56],[23,40],[50,14],[75,-19],[64,23],[87,-3],[133,-45],[59,-31],[25,-28],[4,-50],[-2,-64],[-10,-62],[-21,-82],[20,30],[27,152],[19,54],[20,7],[109,-126],[51,-11],[103,-68],[38,-88],[86,-145],[45,-45],[1,-39],[-10,-60],[29,53],[45,-84],[13,-41],[14,-76],[-5,-49],[-6,-25],[-1,-19],[14,27],[7,21],[3,51],[10,63],[15,1],[12,-38],[24,-163],[9,-33],[4,-52],[-2,-23],[2,-22],[26,99],[3,45],[24,2],[37,-52],[30,-75],[40,-243],[6,-225],[17,-118],[46,-245],[3,-45],[7,-55],[15,-58],[16,-96],[1,-18],[-11,-26],[16,-2],[14,-15],[9,-61],[11,-41],[21,-56],[43,-19],[33,-7],[37,-31],[27,-41],[21,-138],[-7,-87],[2,-61],[-11,-24],[-30,-40],[-7,-22],[-62,-103],[-14,-49],[-33,-65],[-33,-125],[-48,-114],[-17,-29],[-26,-7],[-16,-17],[-37,-93],[-51,-31],[-4,-54],[-29,-124],[-26,-67],[-16,-23],[-41,-122],[-5,-54],[0,-94],[-28,-57],[-28,-37],[-4,-80],[-12,-27],[-11,-18],[-58,21],[-91,-88],[-30,-21],[98,-5],[32,-46],[69,31],[83,110],[32,24],[65,75],[27,50],[48,60],[10,26],[27,29],[15,-36],[1,-23],[-22,-44],[6,-28],[14,-36],[5,-49],[2,-37],[9,-66],[30,-88],[1,-30],[-4,-38],[14,-32],[15,-19],[51,-95],[39,53],[25,15],[15,23],[33,14],[27,-22],[51,-32],[37,34],[75,78],[-23,-138],[-17,-127],[-13,-51],[-13,-138],[-13,-37],[-10,-42],[17,15],[14,20],[18,53],[14,92],[55,247],[16,22],[45,28],[78,197],[31,-1],[19,-45],[19,-27],[4,54],[27,22],[-28,27],[-5,24],[-2,40],[19,55],[-12,48],[40,61],[-3,45],[14,38],[18,39],[21,19],[3,33],[13,14],[10,4],[20,-37],[22,44],[21,17],[9,-7],[12,-20],[12,-8],[10,4],[26,28],[24,-46],[15,-10],[-4,26],[-8,23],[6,20],[11,12],[36,-11],[19,-20],[21,-38],[28,-3],[23,4],[14,-21],[23,1],[11,-33],[35,-46],[7,-31],[28,-16],[27,-19],[28,-5],[28,5],[1,-40],[21,-11],[26,9],[21,-48],[53,-37],[38,-56],[24,10],[27,-15],[30,-121],[6,-87],[13,12],[12,39],[16,71],[29,23],[14,-27],[30,-44],[25,-47],[11,-31],[19,-5],[-16,-38],[16,4],[19,27],[17,-55],[13,-60],[2,-62],[-12,-35],[-10,-22],[-12,-44],[-13,-7],[-14,-14],[16,-32],[10,-30],[24,82],[16,23],[23,13],[13,-59],[2,-55],[-38,-23],[0,-44],[-12,-24],[-7,-29],[-6,-59],[-8,-50],[-23,-218],[0,-36],[27,38],[52,112],[16,118],[20,117],[22,37],[14,0],[20,-13],[1,-38],[-3,-22],[-22,-58],[-9,-32],[9,-32],[50,97],[22,33],[19,-6],[38,44],[76,9],[5,51],[16,22],[41,-6],[82,-45],[29,-37],[43,-35],[23,-41],[96,-76],[69,-8],[34,35],[43,-36],[23,-41],[44,-21],[45,-12],[35,29],[88,10],[112,42],[66,-10],[75,-28],[54,-71],[45,-41],[27,-40],[44,-41],[94,-111],[33,-64],[58,-88],[59,-37],[32,-91],[25,-42],[61,-154],[71,-108],[47,-109],[90,-69],[35,-115],[61,-14],[26,-17],[32,-49],[44,-27],[56,8],[63,-6],[50,23],[120,-43],[19,-21],[24,-49],[44,-182],[26,-202],[13,-154],[30,-120],[16,-226],[14,-71],[1,-54],[12,-13],[7,-152],[-3,-61],[-11,-80],[-1,-35],[2,-23],[-5,-33],[-2,-32],[12,-72],[0,-57],[-15,-70],[-21,-181],[-53,-302],[-51,-173],[-71,-178],[-47,-93],[-18,-10],[-17,19],[12,-50],[-11,-43],[-47,-131],[-46,-86],[-49,-150],[-4,-3],[-62,-58],[-37,-47],[-47,-85],[-43,-135],[-9,-18],[-16,10],[0,-69],[-37,-108],[-11,-16],[0,30],[7,24],[3,25],[-1,29],[-10,-21],[-22,-82],[7,-59],[-16,-90],[-60,-257],[-75,-217],[-17,-66],[-62,-146],[-45,-70],[-12,-1],[-15,6],[-7,112],[-36,68],[-10,12],[-15,-72],[-12,-20],[-18,-4],[19,-31],[6,-36],[-19,-73],[-1,-66],[-34,-72],[-20,-53],[-10,-67],[-7,-62],[16,17],[7,-13],[5,-19],[-3,-29],[-11,-54],[2,-134],[-4,-30],[11,-33],[12,56],[6,-16],[-32,-359],[13,-162],[4,-183],[15,-179],[16,-160],[1,-13],[-22,-185],[-28,-183],[-17,-150],[-11,-161],[-11,-78],[-4,-79],[13,-188],[4,-35],[-34,-84],[-37,-41],[-21,-40],[-45,-151],[-25,-224],[-1,-118],[12,-249],[-9,-102],[-14,-67],[-17,-45],[-44,-53],[-39,-131],[-17,-137],[-27,-50],[-5,-76],[-21,-83],[-56,-124],[-36,-36],[-18,-34],[-11,-72],[-35,-119],[-25,-154],[6,-53],[1,-8],[9,-178],[-3,-46],[-34,-49],[-128,-91],[-34,-39],[-77,-156],[-4,-36],[3,-53],[12,-30],[-13,-33],[-15,-59],[-22,4],[-127,0],[-69,-19],[-36,4],[-16,14],[-18,23],[-6,30],[10,46],[-6,27],[-19,-1],[-20,-13],[-4,-27],[1,-20],[8,-28],[4,-35],[-8,-30],[-40,-4],[-46,-28],[-56,-12],[-45,-20],[-21,26],[21,13],[29,-7],[32,21],[-7,25],[-45,32],[-51,-19],[-28,-39],[-61,4],[-75,-29],[-12,-30],[2,-57],[15,-13],[14,-26],[-14,-24],[-13,-11],[-79,-27],[-73,-112],[-31,-14],[-27,-49],[-3,-42],[-8,-25],[-18,-2],[-38,23],[-50,1],[-35,-18],[-183,-182],[-66,-72],[-75,-148],[-126,-166],[-67,-99],[-12,-26],[-11,-1],[-21,-21],[9,-17],[14,-2],[-6,-57],[-26,-40],[-50,-103],[-11,7],[16,54],[-25,2],[-36,20],[-15,-22],[9,-54],[-14,-22],[-24,-3],[-23,6],[-24,39],[11,-70],[51,-18],[22,-16],[8,-27],[-40,-126],[-34,-17],[-3,-17],[18,0],[10,-35],[-12,-141],[-16,-26],[-10,-1],[-10,-24],[14,-46],[13,-33],[-2,-65],[-5,-54],[0,-52],[17,-101],[6,-104],[7,-37],[4,-42],[-11,-39],[6,-63],[-19,-107],[10,-154],[-4,-144],[-8,-76],[-12,-59],[-29,-76],[-1,-77],[-62,-71],[-69,-99],[-63,-118],[-69,-166],[-80,-252],[-73,-360],[-89,-272],[-36,-98],[-48,-109],[-64,-128],[-86,-128],[-94,-114],[-34,-51],[-33,-73],[-8,30],[7,49],[-4,37],[-1,48],[19,9],[28,-30],[14,20],[11,21],[34,12],[65,125],[48,47],[28,79],[4,42],[-1,85],[16,22],[35,-8],[7,24],[-3,27],[6,59],[48,52],[22,63],[-7,160],[8,7],[20,-25],[9,11],[10,70],[-5,36],[-23,10],[-79,-79],[-26,3],[-4,62],[-39,29],[-15,52],[-4,35],[-14,14],[1,-61],[4,-59],[34,-69],[-8,-28],[-17,-32],[-11,-71],[1,-92],[-9,28],[-12,16],[-5,-99],[-23,-38],[-7,-38],[6,-43],[-12,-30],[-58,-80],[-58,-55],[-13,-26],[-6,-61],[-9,-63],[-26,-55],[-21,-110],[1,-47],[7,-69],[11,-46],[-18,-31],[-23,-59],[-19,-67],[-46,-251],[-40,-151],[-31,-74],[-44,-78],[-125,-196],[-13,-21],[-15,-41],[-17,-97],[-58,-133],[-12,-76],[-62,-78],[-44,-89],[-29,2],[-26,-38],[-149,-115],[-54,22],[-39,-1],[-37,51],[-84,19],[-53,-21],[-71,-56],[-21,1],[-15,3],[-39,23],[-21,50],[-108,57],[-88,129],[-104,2],[-79,-17],[-12,18],[-8,33],[-17,48],[-68,114],[-54,113],[-10,111],[7,121],[16,144],[-2,44],[19,26],[20,5],[19,37],[17,56],[3,43],[-13,78],[-10,110],[-10,55],[-6,-53],[14,-228],[-8,-32],[-14,-37],[-16,-2],[-19,6],[-13,-23],[-9,-100],[-25,-218],[4,-51],[21,-84],[7,-53],[6,-41],[5,-76],[-12,-34],[-11,-6],[-14,-19],[16,-93],[13,-43],[38,-87],[144,-122],[60,-72],[68,-97],[37,-100],[3,-83],[-54,-124],[-6,-103],[11,-73],[20,-68],[52,-88],[39,-32],[52,4],[9,-25],[5,-21],[8,-178],[-1,-67],[-15,-61],[-100,-282],[-86,-172],[-31,-94],[-11,-102],[-27,-48],[-148,-154],[-230,-137],[-186,-71],[-42,-24],[-299,-78],[-58,-11],[-75,7],[-61,-10],[-68,21],[-61,25],[-34,61],[-41,7],[-11,-30],[20,-78],[-9,-93],[11,-54],[24,-11],[23,-27],[21,-37],[-35,-4],[13,-29],[15,-18],[-2,-61],[-13,-148],[-34,-32],[-9,-8],[-11,-32],[-21,-142],[-7,-92],[9,-59],[41,-124],[-15,-81],[-26,-44],[-112,-90],[-45,-36],[-70,-25],[-114,-4],[-42,6],[-97,82],[-73,49],[-66,39],[-64,23],[9,12],[4,21],[-18,12],[-13,3],[-42,-43],[-18,-43],[-5,-38],[-1,-92],[8,-76],[30,-189],[3,-103],[-14,-130],[20,-76],[24,-34],[56,-34],[21,-23],[24,3],[7,-9],[-4,-16],[-14,-33],[1,-35],[42,-10],[43,7],[46,16],[11,24],[0,50],[-53,9],[6,18],[41,21],[53,33],[27,7],[18,-23],[12,-21],[16,-54],[9,-71],[1,-86],[-7,-81],[-7,-28],[-14,-35],[-95,-43],[-26,11],[-25,61],[-8,63],[-21,42],[-46,34],[-45,-10],[-45,-59],[-44,-19],[-15,-53],[110,-86],[52,-24],[17,0],[17,-11],[-15,-32],[-16,-20],[-79,-44],[-34,-31],[-41,-60],[-57,-132],[-17,-28],[-9,-34],[-6,-91],[19,-150],[-20,-63],[12,-70],[-6,-47],[-20,-67],[-80,-106],[-14,-78],[28,-45],[-2,-40],[-9,-36],[-33,0],[-120,24],[-44,-39],[-41,-49],[-11,-23],[-14,-14],[-83,-26],[-16,-17],[-88,-184],[-38,-115],[-45,-112],[-12,-47],[-3,-66],[7,-59],[6,-44],[16,-56],[33,-64],[170,-260],[35,-23],[181,-28],[40,-36],[23,-58],[9,-51],[-10,-128],[-11,-41],[-20,-36],[-43,-47],[-51,-25],[14,-18],[21,2],[46,16],[19,-16],[15,-50],[-28,-21],[-9,-24],[-20,-38],[-105,-148],[-56,-45],[-52,-59],[-70,-61],[-27,-34],[-37,-73],[-56,-79],[-61,-170],[-2,-33],[9,-22],[-34,-298],[-12,-35],[-24,-37],[-65,-62],[-31,-7],[-41,35],[-23,38],[-22,63],[-28,66],[-1,-23],[9,-40],[-6,-42],[-70,-19],[-18,-20],[63,9],[43,-13],[18,-15],[16,-32],[15,-38],[-12,-21],[-35,-18],[-44,-32],[-53,-58],[-29,-68],[-13,-48],[-14,-98],[-4,-64],[-22,-50],[-35,-44],[2,-11],[24,23],[18,7],[16,-59],[22,-119],[10,-82],[-2,-25],[-6,-33],[-45,-8],[-39,1],[-29,-15],[15,-15],[27,6],[37,-36],[41,15],[19,-23],[13,-22],[63,-172],[55,-106],[27,-63],[-13,-29],[-157,54],[-35,30],[-30,3],[-57,-36],[-32,-88],[-16,-25],[-40,-23],[-40,-5],[-134,-85],[-48,-7],[-33,-23],[-32,-32],[-12,-70],[5,-42],[-36,-152],[-9,-84],[0,-44],[10,-70],[-13,-120],[-25,-26],[-59,-34],[-41,24],[-69,22],[-50,46],[-63,33],[-21,20],[-56,92],[-6,31],[-4,39],[30,56],[16,4],[46,-2],[39,9],[25,-30],[6,-65],[-10,-34],[-10,-22],[3,-16],[28,23],[14,145],[94,72],[31,42],[30,66],[5,18],[2,25],[-20,20],[-44,27],[-142,-137],[-64,-36],[-42,-39],[-50,-71],[-9,-21],[-11,-46],[-5,-52],[-49,24],[-76,74],[-15,28],[15,38],[23,31],[2,107],[6,38],[16,30],[29,33],[14,7],[12,-14],[2,-25],[48,2],[93,94],[38,3],[51,-22],[57,13],[11,10],[11,22],[-42,26],[-41,13],[-115,10],[-25,-10],[-34,-51],[-11,13],[-7,25],[-39,18],[-19,-4],[-18,-24],[3,-37],[-10,-41],[-36,-39],[-25,-64],[1,-49],[-1,-26],[-9,-14],[-19,-16],[-60,11],[-34,52],[-13,35],[-38,39],[83,47],[29,27],[27,61],[20,39],[-14,27],[-17,0],[1,-43],[-18,-36],[-38,17],[-57,-52],[-35,14],[-56,-16],[-28,28],[-6,36],[10,38],[-10,63],[-16,15],[-16,-4],[-7,38],[-17,66],[-8,18],[-8,31],[9,7],[19,-8],[17,-20],[26,-3],[57,-43],[24,10],[13,10],[5,36],[0,34],[10,0],[32,-43],[21,4],[36,-12],[19,5],[34,16],[54,48],[27,49],[14,7],[16,-6],[12,-15],[0,-34],[12,-32],[17,-26],[5,-31],[-3,-32],[-31,-43],[-6,-16],[11,-16],[12,8],[18,21],[10,30],[2,16],[1,22],[-1,27],[-25,76],[-3,18],[0,35],[28,32],[8,25],[2,48],[-15,33],[-61,77],[-101,76],[-12,-8],[-8,-14],[10,-10],[13,-5],[90,-63],[24,-37],[15,-10],[19,-24],[-5,-36],[-91,-34],[-72,-76],[-55,-46],[-37,17],[-18,47],[-19,60],[-28,35],[-16,-4],[-13,7],[-11,18],[-21,-15],[-49,42],[-13,18],[35,58],[39,-22],[9,165],[-12,37],[-51,41],[-24,-5],[-34,5],[-23,19],[-26,8],[-22,11],[-29,25],[-34,14],[-47,104],[-20,55],[-11,60],[72,2],[42,10],[10,25],[-15,47],[-20,38],[15,36],[21,27],[22,-12],[56,-61],[9,-41],[39,-126],[10,-12],[4,-11],[82,-71],[11,1],[-5,59],[23,81],[23,26],[11,0],[1,13],[-22,34],[11,44],[-7,1],[-19,-28],[-40,-140],[-24,-26],[-33,64],[-18,45],[-10,17],[4,71],[65,-14],[-22,23],[-77,42],[-19,20],[-14,7],[-25,49],[-32,41],[55,74],[27,52],[88,-27],[17,16],[-15,38],[-17,-12],[-27,24],[-43,72],[2,36],[7,67],[17,14],[36,14],[41,-22],[17,-17],[16,8],[-16,49],[-27,19],[-29,35],[3,39],[9,33],[8,35],[5,50],[-3,39],[8,17],[13,8],[1,15],[-26,-3],[-9,-49],[-3,-45],[-19,-35],[-7,-41],[-5,-48],[-10,-55],[-23,21],[-13,21],[-5,15],[3,28],[-6,175],[-1,147],[11,114],[32,45],[14,13],[13,-6],[20,1],[14,16],[-45,28],[-28,-16],[-20,-22],[-37,17],[-7,58],[-21,51],[-4,65],[2,93],[51,-8],[42,-18],[110,2],[90,-90],[40,12],[-2,18],[-30,22],[-19,51],[-11,14],[-6,31],[-1,35],[-23,129],[-9,-3],[-9,-44],[-18,-74],[-26,-36],[-40,-15],[-40,-8],[-34,14],[-8,31],[1,35],[-15,17],[-39,16],[-11,8],[-13,32],[19,49],[15,29],[18,-6],[18,-13],[23,-38],[22,-7],[25,30],[5,21],[-16,13],[-14,5],[-23,16],[-44,58],[22,59],[52,68],[16,16],[-14,57],[16,63],[-16,51],[-29,56],[-39,12],[-8,-16],[-2,-23],[6,-17],[-3,-12],[-9,0],[-50,12],[-33,37],[-54,34],[-7,26],[-6,39],[19,67],[-10,1],[-35,-52],[-53,-27],[-40,-9],[-17,-20],[-7,-18],[11,-10],[22,-2],[17,-65],[-4,-25],[-8,-16],[-19,-4],[-38,45],[-20,51],[0,40],[14,54],[61,74],[17,31],[36,34],[48,78],[41,43],[-20,36],[-21,53],[2,75],[84,30],[37,-13],[47,3],[26,18],[18,3],[40,21],[17,29],[4,22],[0,20],[-4,23],[-7,62],[7,21],[17,24],[22,8],[10,-2],[27,-22],[-6,-32],[-10,-39],[-22,-153],[-11,-35],[-17,-30],[12,-62],[-18,-44],[-76,-47],[-10,-2],[6,-17],[44,4],[34,10],[34,39],[11,60],[14,117],[18,17],[22,3],[11,-27],[-4,-62],[0,-60],[-28,-176],[-35,-71],[-4,-19],[2,-22],[27,3],[21,38],[15,49],[15,68],[-2,49],[5,30],[6,100],[11,50],[-1,71],[-19,26],[-26,16],[-7,43],[14,86],[50,-3],[48,59],[31,21],[18,-5],[62,-56],[12,-1],[-2,21],[-9,14],[-25,19],[-45,60],[-61,10],[11,78],[12,72],[30,9],[49,24],[94,107],[17,81],[4,91],[-45,23],[-48,60],[-39,31],[-35,40],[7,59],[5,97],[43,21],[20,132],[-29,102],[7,76],[38,64],[6,45],[11,49],[33,5],[1,27],[-3,49],[-22,58],[-1,80],[21,94],[33,-6],[6,4],[-23,57],[-19,63],[3,25],[18,21],[21,12],[23,-32],[33,-103],[5,27],[-13,104],[-11,130],[-35,-17],[-31,9],[-12,20],[-12,30],[11,35],[11,27],[23,33],[49,12],[35,42],[11,87],[-11,-9],[-19,-76],[-32,-26],[-16,4],[-19,14],[-38,67],[-21,15],[-20,2],[-17,-17],[-44,-117],[-19,-20],[-78,-9],[-28,14],[-31,17],[3,29],[10,31],[17,16],[1,17],[-24,5],[-28,32],[-13,41],[-5,73],[-25,116],[-5,83],[17,59],[38,232],[12,119],[20,104],[0,68],[52,63],[20,38],[45,211],[6,114],[-71,346],[-11,66],[-3,82],[17,136],[2,52],[-15,75],[-40,122],[-1,62],[17,64],[-16,80],[8,49],[9,39],[63,-21],[29,10],[15,23],[12,65],[6,103],[4,44],[5,64],[31,26],[11,61],[26,84],[26,238],[27,58],[27,68],[-11,100],[18,46],[15,34],[14,61],[19,58],[46,83],[11,101],[35,176],[7,112],[11,76],[-3,71],[21,86],[20,73],[7,40],[46,97],[8,76],[-17,52],[0,81],[-13,112],[30,41],[12,31],[39,179],[-3,70],[11,87],[-25,103],[-4,231],[-14,179],[-23,188],[2,105],[-15,131],[0,76],[11,171],[74,108],[15,121],[9,163],[-3,119],[-8,54],[-36,87],[-10,157],[7,41],[31,44],[21,61],[11,95],[23,75],[9,181],[18,144],[10,50],[30,63],[5,17],[5,48],[-2,113],[5,70],[23,136],[3,63],[26,141],[6,101],[12,53],[-5,60],[8,134],[-18,76],[-4,44],[22,137],[16,34],[24,64],[11,72],[2,45],[-32,227],[-4,78],[7,180],[11,116],[-3,93],[3,48],[6,60],[21,72],[5,52],[-7,21],[-26,27],[-21,66],[-2,65],[7,47],[2,67],[31,13],[17,37],[16,70],[20,169],[9,209],[12,125],[8,63],[7,130],[12,85],[2,78],[-2,60],[-30,304],[0,112],[13,174],[0,244],[-2,57],[-12,54],[-3,72],[-18,127],[-17,253],[0,134],[-7,114],[-16,30],[-20,39],[-91,130],[-34,69],[-32,33],[-78,111],[-8,36],[-9,114],[-11,32],[-26,41],[-68,55],[-26,28],[-27,50],[-40,36],[-44,72],[-26,59],[-29,38],[-91,54],[-45,54],[-85,76],[-38,49],[-91,59],[-27,28],[-90,138],[-62,46],[-51,77],[-153,166],[-24,53],[-23,81],[-34,49],[-38,112],[-57,66],[-54,87],[-20,80],[-36,101],[-11,54],[-32,53],[-2,107],[-22,49],[16,24],[17,11],[21,165],[-12,83],[-56,151],[-21,72],[-15,93],[-22,55],[-34,116],[-21,102],[-45,75],[-12,27],[-7,38],[-25,26],[-1,79],[-17,150],[-25,76],[-90,140],[-2,55],[-7,99],[-20,106],[-99,332],[-26,99],[-25,161],[-22,91],[-25,162],[-37,123],[-24,107],[-25,133],[-2,71],[-45,122],[-24,112],[-42,94],[-42,72],[-18,50],[-58,240],[-8,71],[-40,132],[-40,95],[-25,76],[-32,69],[-195,212],[-69,88],[-23,42],[-10,66],[4,38],[20,36],[28,-27],[17,11],[13,47],[1,72],[-17,92],[-63,177],[5,38],[12,42],[-24,86],[-27,68],[-13,53],[15,200],[14,51],[95,203],[26,86],[40,54],[42,82],[49,62],[6,8],[40,29],[17,29],[20,26],[18,41],[11,39],[28,180],[26,114],[-5,54],[-21,74],[-5,109],[2,33],[-3,25],[-14,-45],[4,-160],[-13,-72],[-17,-18],[-12,13],[7,117],[-13,-22],[-21,-79],[-34,-59],[-1,-19],[-9,-25],[-26,23],[-20,24],[-65,132],[-43,28],[-25,46],[-6,19],[-3,27],[26,27],[28,37],[2,82],[0,65],[-20,109],[9,144],[-5,56],[-23,119],[17,60],[60,44],[20,29],[13,95],[14,56],[27,-22],[21,2],[-28,21],[-24,85],[-3,40],[44,116],[24,30],[28,62],[25,93],[6,147],[-10,105],[-8,111],[15,28],[36,15],[30,36],[15,33],[36,-5],[41,51],[66,26],[91,58],[20,52],[-9,92],[-8,40],[-38,57],[19,74],[46,56],[60,-44],[7,87],[-22,76],[4,144],[7,29],[16,39],[20,26],[12,8],[21,-13],[13,29],[49,-13],[15,12],[10,20],[12,14],[15,35],[9,40],[7,16],[17,-6],[1,18],[9,23],[30,53],[-1,23],[-8,51],[2,19],[17,6],[21,15],[10,48],[14,42],[15,63],[17,4],[9,72],[22,64],[46,189],[-13,-4],[-11,-26],[-13,3],[-14,15],[4,85],[-8,10],[-23,-65],[-19,67],[-2,40],[8,40],[-1,27],[-31,-20],[2,25],[19,26],[9,27],[17,29],[7,44],[4,69],[7,74],[-5,36],[-9,31],[-8,137],[2,80],[-4,62],[-8,54],[-37,69],[59,80],[21,60],[-27,124],[-35,105],[-1,62],[10,-8],[11,2],[11,132],[-3,41],[-19,67],[-24,1],[-21,83],[-13,19],[-9,52],[-34,102],[-27,53],[-8,16],[-67,165],[-58,205],[-12,93],[15,6],[14,-3],[8,15],[9,27],[-7,63],[28,47],[11,32],[7,-3],[19,-55],[26,-31],[33,-46],[21,-10],[-26,47],[-44,63],[-13,42],[-12,57],[-17,-25],[-8,-21],[-9,-12],[-8,15],[-1,18],[-26,4],[-7,17],[-7,9],[3,-36],[5,-22],[-2,-27],[-9,-1],[-7,27],[-9,25],[-13,105],[-29,49],[-14,16],[-11,7],[-17,33],[-22,18],[-29,52],[-37,37],[-44,14],[-54,-9],[-19,-20],[-12,-27],[-6,-12],[-32,-30],[-12,-43],[-7,-37],[-16,-42],[18,-25],[-104,-142],[-21,-20],[-47,-15],[-11,-15],[-14,-28],[-2,-42],[2,-37],[14,-28],[12,-17],[29,-85],[52,-106],[9,-39],[8,-57],[-15,-27],[-12,-11],[-49,-5],[-17,-23],[-7,-35],[-18,-29],[-64,-28],[-49,-3],[-16,33],[-4,92],[-33,158],[-8,108],[-8,-13],[-18,-13],[-6,-27],[-5,-80],[-6,-27],[-14,2],[-28,29],[-37,26],[-48,170],[-5,32],[-9,38],[-37,16],[-32,29],[-34,4],[-17,-16],[-18,21],[-3,46],[-36,-21],[-47,7],[-41,20],[-28,-10],[-24,-33],[4,-85],[-7,-16],[-19,64],[-26,61],[-23,37],[-2,88],[-9,48],[-34,44],[-30,30],[-21,-6],[13,-50],[34,-65],[3,-25],[-1,-33],[-23,5],[-21,14],[-26,4],[-17,20],[-36,77],[26,66],[8,43],[-1,90],[-6,43],[-28,67],[-44,72],[-61,60],[-29,47],[-73,37],[-27,24],[-22,45],[-3,33],[8,50],[-20,63],[-86,125],[-48,46],[-11,26],[-7,9],[7,-86],[21,-52],[55,-48],[15,-28],[6,-37],[-32,-70],[-16,-18],[-5,-38],[-10,-12],[-11,22],[-45,110],[-86,53],[-16,32],[-32,101],[-14,91],[5,61],[35,96],[11,41],[-2,26],[1,37],[-13,26],[-33,35],[-21,27],[6,14],[38,37],[2,33],[0,11],[0,15],[-24,64],[-36,76],[-141,234],[-52,140],[-28,101],[-27,53],[-76,107],[-17,43],[-76,143],[-57,85],[-1,35],[24,45],[11,-2],[13,-32],[20,-36],[10,-1],[14,17],[0,17],[2,61],[-23,25],[-12,50],[-11,34],[3,21],[-1,24],[-31,19],[-30,-14],[-17,9],[-12,13],[-7,-8],[5,-58],[-16,-35],[-14,-25],[-26,-7],[-44,-2],[-66,28],[-48,39],[-26,0],[8,-13],[21,-8],[27,-27],[-8,-8],[-99,57],[-114,112],[-68,18],[-78,30],[-46,71],[-35,30],[-106,95],[-36,16],[-150,-2],[-64,37],[-73,72],[-50,66],[-115,182],[-8,13],[-74,157],[-78,172],[-30,56],[-29,43],[-40,79],[-104,174],[-54,80],[-50,95],[-45,53],[-45,34],[-20,20],[-17,26],[-10,2],[-5,-35],[16,-18],[19,-15],[14,-1],[16,-13],[46,-48],[7,-25],[-130,97],[-53,9],[-6,15],[27,50],[-9,18],[-9,3],[-28,-35],[-11,-2],[-2,23],[1,21],[-18,32],[-11,-1],[-10,-22],[-25,-42],[1,-17],[49,-18],[16,-10],[-3,-11],[-42,0],[-51,-19],[-92,-116],[-86,-50],[-122,-113],[-54,-5],[-29,-18],[-82,43],[-105,105],[-158,33],[-107,138],[-106,57],[-67,132],[-41,6],[-26,21],[-96,48],[-95,32],[-93,115],[-61,37],[-52,46],[-115,79],[-43,43],[-41,68],[-66,69],[-28,59],[-32,21],[-45,109],[-23,47],[-20,21],[-21,8],[-62,-9],[-91,48],[-43,12],[-88,72],[-118,80],[-39,91],[-32,86],[-60,113],[-37,48],[-64,57],[-36,46],[-55,35],[-93,91],[-29,77],[-18,68],[-49,83],[-55,156],[-14,57],[-10,88],[-13,51],[-15,39],[8,29],[27,36],[46,8],[33,39],[4,32],[-2,19],[-21,49],[-26,13],[-20,1],[-5,18],[15,20],[18,48],[25,58],[18,53],[4,75],[-3,76],[7,63],[-62,74],[-7,31],[-19,84],[-34,98],[1,195],[-41,173],[-42,86],[-22,30],[-59,134],[-46,77],[-46,146],[-45,93],[-58,156],[-41,78],[-189,262],[11,0],[55,-64],[9,5],[2,32],[-7,37],[-10,9],[-15,-8],[-20,8],[-10,12],[-29,8],[-38,44],[-16,45],[-1,52],[-54,110],[-20,62],[10,-5],[14,-25],[15,-7],[17,0],[12,10],[-4,18],[-12,15],[-78,58],[-26,41],[-64,68],[-15,24],[-10,65],[-16,3],[-13,-18],[-38,-18],[-10,21],[-1,20],[27,22],[24,61],[0,22],[-14,-25],[-20,-28],[-21,-15],[-32,-13],[-16,9],[-14,14],[-22,54],[-11,176],[20,61],[23,61],[20,35],[11,-27],[12,-3],[-9,31],[-19,28],[-7,29],[-1,26],[-9,48],[-57,102],[-54,-8],[-22,3],[-20,39],[-17,65],[-9,55],[-1,29],[-5,29],[-93,48],[-28,41],[-27,51],[-12,42],[-11,32],[-9,54],[-7,63],[11,82],[13,39],[-64,30],[-24,1],[-21,-16],[-18,21],[-37,24],[-45,85],[-53,155],[-57,50],[-19,54],[-24,48],[-20,60],[-4,26],[-6,15],[-29,42],[-32,71],[-9,57],[-8,87],[-22,31],[-21,14],[-5,41],[2,24],[-7,44],[-44,105],[-23,87],[-12,27],[-11,39],[-6,81],[-18,101],[-36,120],[-29,82],[-15,82],[7,83],[-5,51],[-4,12],[3,17],[10,-9],[8,15],[-1,53],[-10,16],[-29,17],[-12,11],[-70,22],[-39,30],[-3,70],[-19,32],[-16,20],[-52,41],[-9,-21],[-7,-39],[-21,-8],[-19,-2],[-32,27],[-79,103],[-17,17],[-25,9],[-12,16],[-53,55],[11,-29],[15,-30],[14,-87],[-16,-63],[-10,-220],[11,-44],[23,-70],[16,-112],[5,-82],[14,-66],[-4,-155],[5,-47],[22,-77],[41,-73],[9,-38],[53,-55],[33,-72],[65,-98],[20,-42],[58,-152],[2,-46],[11,-56],[33,12],[15,-42],[-2,-20],[4,-15],[17,3],[15,-11],[31,-166],[17,-22],[21,-10],[24,-18],[1,-42],[-1,-34],[21,-49],[-4,-66],[17,-56],[-3,-55],[7,-43],[50,-97],[62,-77],[13,-101],[26,-93],[25,-23],[27,-39],[-4,-40],[2,-24],[35,-73],[6,-94],[30,-61],[9,-4],[6,9],[-22,61],[-10,40],[-2,63],[8,8],[62,-99],[7,-74],[21,-42],[1,-56],[13,-34],[4,-49],[20,-80],[1,-112],[10,-82],[40,-125],[32,-26],[6,-61],[33,-159],[38,-87],[19,-73],[3,-45],[-14,-68],[-2,-47],[21,-143],[31,-73],[35,-18],[6,-10],[-3,-20],[12,-18],[13,23],[7,32],[-7,37],[-1,27],[6,19],[11,3],[67,-98],[11,-38],[25,-43],[23,-55],[9,-42],[19,-36],[9,-81],[46,-37],[25,-68],[2,-43],[-12,-110],[-11,-31],[-37,-47],[-27,-56],[-27,-34],[-27,-21],[-23,4],[-23,65],[-26,193],[-18,41],[-12,61],[-20,50],[-75,76],[-37,81],[-37,53],[-39,78],[-106,129],[-44,66],[-29,65],[-19,-1],[-14,-7],[-6,18],[-1,33],[-6,22],[-62,98],[-13,55],[-3,62],[14,162],[6,95],[-4,49],[-6,6],[-6,27],[-2,78],[-15,84],[-56,174],[-41,34],[-37,25],[-101,154],[-27,76],[-7,44],[-3,89],[-14,-52],[-19,-38],[-42,3],[-48,-43],[-29,40],[-15,46],[-24,55],[-26,11],[-17,2],[-31,68],[-26,21],[-36,9],[-32,34],[-9,38],[-5,53],[-12,32],[-49,62],[-39,69],[-38,45],[-11,36],[-1,25],[59,-7],[71,-27],[34,8],[21,25],[20,18],[3,-19],[-4,-37],[20,-33],[26,-27],[19,3],[-18,29],[-12,60],[5,22],[0,29],[-26,-6],[-4,15],[23,45],[25,120],[13,118],[-27,103],[-46,72],[-98,210],[-59,108],[-17,40],[-16,19],[-48,25],[-40,60],[-71,85],[-30,44],[-21,104],[-16,14],[5,71],[-7,127],[-12,32],[-38,31],[-9,86],[-2,82],[-8,57],[-65,96],[-3,46],[0,44],[-7,44],[-35,91],[-42,79],[-14,38],[-2,77],[-15,21],[6,5],[13,-2],[8,10],[1,54],[-63,84],[-18,116],[-34,61],[-8,23],[-18,109],[0,4],[-2,63],[-13,22],[-17,-14],[-7,82],[4,39],[-2,38],[-16,92],[-41,113],[-89,140],[-46,47],[-35,59],[-23,16],[-28,5],[-9,-27],[-32,18],[5,66],[-32,92],[-25,10],[-65,-6],[-87,50],[-25,30],[-9,54],[-41,47],[-53,46],[-30,-11],[-39,7],[-55,33],[-33,4],[-63,-9],[-23,7],[-22,41],[-24,21],[5,51],[-3,47],[4,36],[-11,79],[9,73],[-8,26],[-13,21],[-42,30],[-7,37],[7,52],[-11,35],[-35,32],[-32,73],[-40,39],[-17,67],[-25,42],[-8,36],[-56,131],[-59,102],[-9,58],[-2,81],[23,49],[12,43],[-1,39],[-4,29],[-20,51],[-79,30],[-64,124],[-4,96],[-25,98],[0,63],[-4,69],[19,15],[17,-6],[-1,-27],[5,-49],[20,-37],[19,-16],[18,-36],[13,-11],[13,-3],[-7,23],[-8,15],[-9,48],[-18,61],[-20,33],[-11,61],[-9,15],[-5,22],[20,27],[27,19],[36,6],[103,-9],[21,15],[19,-5],[13,2],[-28,16],[-16,-5],[-18,3],[-37,-3],[-15,7],[-16,19],[-11,2],[-34,-33],[-15,4],[-36,36],[-15,5],[-25,-20],[-4,-90],[8,-66],[-15,-7],[-17,27],[-27,17],[-22,25],[-32,46],[-16,17],[-18,-39],[-1,18],[9,45],[-3,75],[28,-60],[-8,42],[-22,47],[-17,16],[-20,83],[-47,50],[-38,80],[-77,134],[-5,117],[-28,148],[12,85],[-1,59],[-14,91],[-15,49],[-62,135],[-60,90],[-9,69],[-4,69],[13,62],[12,64],[8,17],[3,-7],[-2,-13],[8,-5],[3,29],[6,15],[-9,2],[1,9],[5,18],[18,85],[-1,107],[19,131],[-1,44],[-12,93],[-13,56],[-23,40],[10,58],[0,55],[-40,80],[-15,104],[-3,45],[4,116],[-11,50],[-27,82],[12,72],[12,43],[30,190],[7,15],[13,0],[22,32],[-10,8],[-16,-16],[14,75],[15,64],[10,24],[5,209],[9,160],[14,53],[-5,55],[6,74],[-4,74],[31,359],[-4,43],[9,59],[-9,153],[4,171],[-8,22],[-4,24],[8,3],[14,-25],[66,0],[42,24],[16,-8],[17,-31],[23,-7],[28,6],[-9,8],[-13,2],[-29,29],[-17,28],[-51,-1],[-11,18],[-58,-18],[-17,19],[-32,-13],[8,54],[-2,68],[2,66],[8,-48],[19,-52],[10,59],[6,72],[-19,29],[-32,20],[-11,68],[75,58],[-40,12],[-15,26],[-20,4],[-1,-20],[-6,-27],[-7,35],[-2,41],[-8,70],[-31,113],[-18,147],[-23,72],[-45,69],[-12,40],[-11,103],[7,77],[-9,54],[22,-3],[56,-42],[71,-34],[21,-24],[34,-19],[189,-28],[13,3],[24,17],[11,-2],[27,-40],[14,-4],[18,2],[14,7],[23,28],[3,-11],[-1,-25],[8,-36],[17,-47],[7,-29],[-34,-82],[-7,-2],[-1,28],[-4,5],[-64,-139],[-22,-66],[-2,-29],[0,-18],[9,-4],[21,7],[30,27],[1,6],[-28,-10],[-13,0],[1,31],[4,14],[18,47],[19,27],[28,30],[16,24],[11,35],[30,43],[6,11],[-2,35],[2,7],[15,-5],[6,-60],[-4,-27],[-26,-32],[-3,-12],[5,-44],[-5,-4],[-10,5],[-3,-3],[25,-48],[8,-38],[1,-33],[-7,-65],[-7,-10],[-12,3],[-17,21],[-3,-7],[-13,-50],[-5,4],[-8,60],[-4,4],[-25,-27],[-11,-26],[-8,-41],[-11,-20],[31,-4],[28,8],[23,-19],[8,-1],[21,19],[6,14],[17,62],[9,11],[13,1],[12,9],[19,34],[0,14],[-6,77],[2,43],[-4,14],[-8,14],[1,14],[6,23],[1,21],[-6,18],[3,21],[17,45],[3,20],[22,45],[-6,18],[-15,22],[-10,19],[-10,30],[-8,10],[-2,-4],[11,-50],[-3,-3],[-27,27],[-7,16],[-3,23],[2,17],[15,17],[18,6],[-2,15],[-22,46],[-15,21],[-11,10],[-15,3],[-7,7],[-2,11],[3,15],[9,4],[23,-6],[13,11],[-1,18],[-4,10],[1,66],[-9,53],[-5,9],[-5,1],[-6,-7],[-14,-2],[-10,18],[-10,34],[-18,80],[-11,21],[-27,26],[-10,0],[-11,-8],[-7,-12],[-6,-27],[-4,-8],[-4,1],[-3,7],[-8,37],[2,16],[9,20],[-1,7],[-20,-6],[-8,5],[-4,10],[1,42],[-11,23],[13,10],[32,8],[34,1],[9,18],[10,43],[-24,-40],[-14,-4],[-44,15],[-29,-2],[-4,8],[2,9],[6,9],[4,31],[7,85],[9,31],[3,16],[-2,4],[-38,-59],[-3,-19],[4,-16],[-4,-33],[-18,-10],[-10,5],[-20,-28],[-6,-3],[-91,50],[-10,6],[-15,23],[-23,40],[-7,34],[9,28],[8,14],[10,0],[10,-10],[21,-47],[8,-29],[22,4],[35,37],[8,14],[-35,-14],[-15,1],[-15,15],[-16,30],[-8,34],[0,107],[5,20],[17,16],[11,25],[-1,11],[-10,22],[-15,16],[-15,9],[-4,-3],[23,-46],[0,-18],[-26,-46],[-4,-13],[0,-45],[-3,-9],[-21,-13],[-23,-35],[-39,-12],[-36,4],[-20,17],[-61,86],[-22,36],[0,30],[-42,107],[0,23],[-14,33],[-16,5],[-4,32],[33,68],[21,58],[2,18],[-1,28],[-5,62],[5,27],[-21,-36],[-4,-26],[5,-27],[-3,-30],[-12,-43],[-21,-45],[-42,-21],[-74,12],[-8,6],[-5,15],[-4,66],[-5,-8],[-8,-35],[-7,-51],[-9,-11],[-15,-1],[-12,8],[-9,17],[-19,2],[-34,-14],[-17,6],[-19,0],[-40,15],[-47,4],[-12,11],[1,22],[8,11],[49,10],[48,23],[47,12],[-2,11],[-21,4],[-108,-26],[-34,4],[-6,4],[-1,26],[13,24],[21,23],[6,18],[-12,7],[-20,-5],[-9,14],[10,55],[-9,55],[-13,-52],[-19,-29],[-91,-13],[-15,-15],[-12,0],[-58,28],[-25,17],[-23,25],[-42,57],[-33,37],[-1,67],[7,43],[15,49],[59,104],[21,19],[18,7],[87,9],[65,13],[12,7],[-95,7],[-85,-5],[-29,-16],[-37,-67],[-9,-28],[-10,-21],[-7,0],[-12,7],[-4,9],[-6,22],[-19,34],[-9,40],[-5,59],[1,26],[10,34],[28,66],[-36,-2],[4,55],[13,61],[34,35],[34,26],[31,34],[55,22],[18,-46],[47,-14],[13,-21],[17,-38],[20,-36],[25,-35],[7,-3],[-11,30],[-40,65],[-2,23],[-10,25],[-52,36],[-10,14],[-9,36],[-4,24],[6,22],[53,69],[13,37],[0,17],[-5,19],[-11,34],[-3,0],[3,-51],[-2,-20],[-6,-22],[-8,-17],[-12,-11],[-114,-158],[-12,-9],[-42,-14],[-22,-17],[-12,-22],[-19,-58],[-25,-115],[-30,-93],[-25,121],[-46,92],[89,92],[2,14],[-8,49],[2,15],[8,21],[23,32],[-1,3],[-26,-12],[-41,-71],[-16,-22],[-8,-3],[-1,41],[22,109],[18,105],[6,30],[16,30],[-15,-2],[-72,-47],[-24,29],[-20,153],[-36,59],[-60,49],[-59,22],[-13,43],[-12,53],[16,62],[26,29],[23,14],[23,-7],[1,-22],[-15,-61],[20,-6],[81,-74],[17,-6],[34,28],[18,-1],[44,-23],[15,-28],[42,-54],[-6,32],[-46,66],[-25,22],[-45,4],[-28,-11],[-12,3],[-24,17],[-21,28],[-21,61],[-5,29],[1,21],[5,19],[9,17],[17,13],[26,7],[7,8],[-32,35],[-15,0],[-52,-51],[-10,-5],[-5,10],[-4,1],[-15,-25],[-12,-11],[-42,-79],[-7,-37],[-2,-57],[-5,-35],[-7,-14],[-50,-27],[-28,-55],[-34,48],[-38,45],[-25,80],[-45,14],[-52,45],[-20,41],[28,82],[41,63],[6,74],[6,16],[70,19],[46,37],[-47,4],[-29,-6],[-52,-26],[-57,51],[-29,47],[-10,40],[10,34],[2,34],[5,47],[5,20],[12,26],[25,17],[22,54],[9,37],[44,111],[16,48],[31,67],[61,105],[-20,-6],[-10,-9],[-9,1],[-9,11],[-9,24],[-8,35],[-5,-16],[-1,-66],[-6,-57],[-11,-39],[-30,-80],[-18,-31],[-12,29],[10,50],[17,40],[3,54],[-16,65],[-10,53],[-4,40],[-1,36],[3,33],[7,35],[11,39],[-1,4],[-14,-30],[-10,-32],[-7,-35],[-3,-37],[2,-40],[5,-35],[17,-65],[6,-39],[1,-27],[-38,-92],[-13,-45],[1,-19],[3,-46],[-40,-76],[-52,-38],[-11,12],[-11,12],[-65,10],[-24,82],[-12,64],[-19,55],[0,13],[17,37],[65,31],[1,12],[-24,8],[-6,13],[-7,60],[2,53],[-2,35],[-10,72],[-17,43],[-41,86],[-4,21],[18,27],[12,25],[-71,-43],[-96,-46],[-42,-32],[-9,-13],[-3,-11],[8,-30],[-1,-10],[-9,-18],[-10,-51],[-21,-53],[-10,-11],[-38,20],[-10,17],[-19,70],[5,19],[13,15],[19,34],[24,52],[45,133],[29,1],[52,26],[-82,13],[-12,7],[-11,18],[-9,29],[-17,33],[-31,11],[-13,12],[-21,39],[-14,18],[-7,22],[-1,26],[-6,13],[-21,5],[-12,9],[-3,67],[-42,17],[-18,15],[-28,42],[-7,21],[-3,17],[7,46],[-3,9],[-25,-5],[-153,72],[8,95],[-28,125],[-31,51],[6,19],[7,11],[13,0],[59,-37],[56,-44],[7,7],[-89,92],[-22,28],[-5,33],[-1,18],[7,10],[84,-9],[4,7],[-84,27],[-17,0],[-18,-39],[-9,-9],[-18,2],[-6,6],[-22,47],[-20,33],[-38,45],[-7,33],[-2,47],[5,45],[31,103],[13,18],[3,11],[-10,-1],[-9,-10],[-25,-48],[-27,-78],[-21,-27],[-14,6],[-20,32],[-43,39],[-50,10],[-31,40],[-46,111],[-6,55],[-6,14],[-25,18],[-16,26],[-24,135],[-31,93],[-8,50],[3,49],[-4,5],[-11,-38],[-3,-20],[-20,-5],[19,-39],[5,-19],[-10,1],[-19,-5],[33,-66],[14,-102],[21,-76],[14,-62],[7,-47],[9,-44],[25,-99],[3,-20],[-3,-16],[-8,-19],[-14,-7],[-45,13],[-17,25],[-24,44],[-34,21],[-84,-10],[-6,3],[0,37],[10,65],[-8,26],[-44,96],[1,19],[60,44],[-29,3],[-24,-17],[-9,11],[-14,62],[-9,23],[-5,4],[-2,-58],[10,-31],[1,-17],[-1,-25],[-7,-18],[-11,-11],[-11,-2],[-20,12],[-23,23],[-19,11],[-8,10],[-9,25],[-15,20],[-74,24],[-44,30],[-3,-8],[13,-31],[2,-19],[-11,-5],[-20,-30],[6,-4],[21,10],[23,-1],[39,-19],[35,-23],[12,-13],[6,-20],[4,-7],[34,-23],[2,-12],[-22,-35],[45,3],[27,-12],[34,-56],[11,-30],[2,-40],[-7,-11],[-14,-8],[-92,-13],[-34,-48],[-7,-1],[-25,13],[-46,38],[-58,36],[-131,108],[-3,5],[-3,20],[-9,11],[-17,9],[-25,27],[-32,45],[-19,36],[-8,25],[-18,29],[-59,61],[-31,23],[-28,13],[-24,3],[-6,8],[11,13],[2,8],[-53,13],[-50,28],[-127,80],[-65,50],[-39,24],[-16,13],[-7,11],[9,12],[26,12],[17,13],[27,51],[2,16],[-14,37],[-7,33],[0,19],[4,18],[4,12],[11,12],[9,6],[10,-4],[32,-46],[4,-17],[-1,-63],[9,-73],[3,5],[3,24],[2,47],[4,22],[6,22],[12,12],[36,-7],[17,4],[-71,33],[-44,62],[-8,7],[-24,3],[-26,-26],[-66,-82],[-19,-14],[-83,-46],[-57,-9],[-63,7],[-54,15],[-136,72],[-21,17],[31,44],[2,14],[-11,45],[-9,13],[-13,8],[-4,-6],[0,-13],[3,-25],[-10,-13],[-23,-14],[-39,-15],[-120,37],[-124,30],[-110,7],[-156,-25],[-83,-24],[-48,-2],[-47,4],[-4,17],[21,10],[-1,12],[-27,39],[-40,23],[-55,8],[-32,11],[-8,14],[-19,14],[-31,13],[-13,23],[10,71],[11,43],[10,30],[27,48],[-9,-3],[-39,-36],[-33,-37],[-32,-48],[-18,-22],[-24,-20],[-37,5],[-50,30],[-43,15],[-36,1],[-15,5],[25,27],[14,22],[19,34],[5,17],[-132,5],[-5,19],[0,13],[-4,11],[-19,8],[-27,-6],[-43,-22],[-19,17],[7,9],[14,7],[28,31],[-38,16],[-20,18],[-10,16],[1,55],[10,35],[87,34],[-27,13],[-56,-5],[-37,-29],[-43,-41],[-30,-16],[-15,11],[-20,3],[-25,-3],[-16,-11],[-9,-18],[-10,-12],[-11,-6],[-8,2],[-12,18],[-25,12],[-12,14],[-7,-9],[-9,-27],[-9,-13],[-42,-14],[-23,2],[-28,34],[-4,12],[10,29],[61,115],[-6,-1],[-20,-18],[-39,-46],[-18,-14],[-30,-1],[-14,5],[-17,-4],[-20,-12],[-13,-14],[-6,-15],[4,-2],[30,17],[17,4],[5,-8],[-24,-52],[-14,-50],[-13,-12],[-22,2],[-24,-5],[0,-14],[44,-39],[16,-6],[20,-14],[3,-14],[-7,-38],[-6,-15],[-9,-8],[-36,1],[-12,-4],[-24,-24],[-12,-19],[4,-2],[21,16],[31,9],[39,1],[30,9],[20,16],[19,-4],[18,-26],[6,-22],[-8,-19],[-15,-13],[-23,-9],[-15,-12],[-6,-16],[-3,-24],[-1,-32],[6,-58],[-5,-7],[-8,-5],[-13,0],[-12,-14],[-27,-76],[-9,-9],[-12,8],[-10,0],[-9,-10],[-19,-8],[-30,-5],[-25,2],[-45,16],[-18,12],[-15,19],[-40,-20],[-11,9],[-25,53],[-5,-3],[-5,-58],[-8,-20],[-25,-41],[-13,-71],[-4,-3],[-5,11],[-15,63],[-8,14],[-23,-36],[-2,-14],[6,-47],[-6,-7],[-45,25],[-11,2],[-3,-5],[15,-37],[-1,-13],[-65,-71],[-17,3],[-10,7],[-12,-1],[-41,-27],[-11,1],[-15,16],[-7,-1],[-4,-16],[-1,-32],[-15,-30],[-49,-49],[-13,-23],[-9,-31],[-8,-3],[-28,20],[-33,13],[-5,-6],[10,-19],[-2,-12],[-14,-4],[-18,2],[-22,7],[-31,-8],[-40,-25],[-33,0],[-46,41],[-12,3],[-4,12],[9,33],[13,25],[9,12],[44,32],[50,12],[31,19],[39,40],[20,30],[40,77],[-3,6],[-9,4],[-88,-73],[-13,-7],[-17,1],[-70,28],[-14,12],[-11,35],[20,80],[13,39],[35,60],[44,64],[15,41],[24,110],[-2,51],[-10,61],[-1,36],[10,12],[102,56],[49,43],[94,62],[25,0],[19,-22],[22,-17],[25,-13],[32,1],[39,16],[62,-6],[128,-41],[27,-2],[1,5],[-19,29],[-89,17],[-37,16],[-104,74],[-24,28],[10,14],[26,11],[8,10],[4,19],[15,25],[25,32],[39,31],[75,46],[-29,2],[-54,-8],[-19,-9],[-36,-33],[-14,-23],[-20,-46],[-8,-8],[-37,-7],[-101,-4],[-17,23],[-9,4],[-13,-4],[-92,-59],[-34,-30],[-23,-35],[-37,-25],[-49,-16],[-37,-20],[-39,-40],[-14,-30],[0,-14],[9,-45],[-10,-9],[-22,-3],[-36,-30],[-76,-89],[-10,-32],[0,-11],[12,-25],[-8,-17],[-22,-25],[-48,-41],[-31,-16],[-20,-1],[-20,6],[-35,26],[-28,2],[-2,-4],[39,-28],[39,-36],[24,-30],[10,-24],[0,-25],[-9,-25],[-27,-44],[-27,-13],[-70,-13],[-22,-11],[-7,-8],[48,-18],[4,-10],[-6,-37],[-13,-12],[-40,-22],[-35,-6],[-6,4],[7,29],[-2,7],[-13,6],[-19,-11],[-47,-43],[-5,-7],[17,-11],[-4,-10],[-26,-30],[-10,-21],[-17,-20],[-76,-64],[5,-15],[-19,-56],[-11,-49],[13,-20],[64,-24],[31,-6],[37,-17],[66,-45],[22,-30],[3,-14],[-2,-15],[-8,-21],[-21,-38],[-50,-58],[-22,-16],[-34,-13],[-12,-10],[-43,-54],[-12,-30],[2,-26],[-9,-18],[-56,-35],[2,-6],[20,-3],[-7,-31],[-3,-43],[-10,-8],[-36,1],[-44,-17],[-3,-5],[-1,-31],[-118,-23],[-25,-59],[-14,-18],[-45,-43],[-29,-18],[-32,-10],[-17,-15],[-1,-18],[-9,-17],[-28,-26],[-14,-34],[-10,-5],[-51,-8],[-11,-11],[-5,-46],[-9,-1],[-19,11],[-24,-9],[-53,-51],[-12,-18],[1,-10],[8,-10],[13,-31],[-1,-20],[-20,-58],[-8,-9],[-25,-14],[-10,-32],[-23,4],[-19,-6],[-12,-21],[-14,-12],[-14,-4],[-18,-16],[-22,-31],[-20,-19],[-18,-9],[-18,-2],[-18,5],[-16,-4],[-14,-11],[-13,-18],[-11,-50],[-14,-22],[-9,-4],[-17,4],[-27,10],[-28,-4],[-44,-30],[-14,-23],[28,-5],[14,-7],[-1,-7],[-14,-6],[-25,1],[-14,-6],[-19,-13],[-45,-14],[-17,-10],[-34,-58],[-4,-13],[4,-3],[19,6],[23,-10],[11,-12],[8,-15],[7,-29],[4,-4],[-43,-49],[-12,-21],[-8,-8],[-5,6],[-6,55],[-3,9],[-10,1],[-10,-17],[-22,-65],[-23,-32],[-178,-83],[-26,-19],[-5,-35],[-7,-31],[-12,-24],[-14,-16],[-3,11],[1,86],[-3,18],[-18,11],[-8,-2],[-11,-5],[-18,-18],[-10,-5],[-14,1],[-23,-18],[-55,-59],[-36,-15],[-10,-12],[-15,-32],[-10,-12],[-15,-1],[-20,10],[-16,-7],[-12,-24],[-13,-9],[-35,17],[-15,-11],[-20,-31],[-21,-20],[-22,-9],[-56,-11],[-23,7],[-5,9],[1,38],[9,28],[9,13],[11,12],[17,1],[31,-8],[-4,9],[-11,11],[-29,19],[-28,10],[-16,-6],[-23,-15],[-15,-17],[-8,-19],[-10,-63],[-6,-17],[-67,-111],[-26,-34],[-25,2],[-13,-13],[-17,-27],[-17,-13],[-14,1],[-12,5],[-8,9],[1,9],[11,8],[-4,22],[-19,37],[-13,19],[-24,3],[-4,-17],[8,-84],[-1,-19],[-15,-24],[-41,-27],[-12,2],[-37,53],[-34,11],[-2,-17],[7,-36],[-8,-32],[-25,-31],[-19,-15],[-13,1],[-1,21],[12,42],[3,35],[-6,28],[1,22],[7,15],[45,41],[20,7],[10,-11],[13,-1],[15,6],[10,14],[4,19],[20,26],[35,31],[40,57],[46,83],[53,72],[62,60],[66,48],[134,66],[10,-4],[-12,-21],[8,-14],[13,-1],[49,10],[20,14],[6,-13],[-7,-17],[-30,-17],[1,-14],[43,-67],[13,-10],[12,1],[4,9],[-3,48],[14,9],[30,2],[19,-6],[9,-15],[17,-12],[25,-10],[15,3],[6,16],[-10,19],[-48,40],[-13,18],[-3,23],[7,31],[14,45],[24,60],[21,42],[42,47],[29,23],[72,72],[140,73],[34,47],[47,52],[20,13],[0,-20],[6,-18],[32,-12],[20,-4],[10,4],[2,19],[-4,34],[-1,33],[2,30],[4,24],[21,43],[31,49],[43,57],[27,26],[25,14],[24,25],[42,58],[14,10],[30,11],[11,-5],[7,-14],[8,-10],[30,-8],[21,13],[-4,7],[-16,5],[-11,8],[-10,35],[-20,21],[-5,24],[4,37],[17,87],[3,90],[16,51],[31,19],[69,13],[-40,23],[-16,0],[-26,11],[-10,56],[0,40],[18,47],[64,80],[71,55],[-10,4],[-8,17],[32,110],[32,98],[-43,-84],[-50,-64],[-145,-74],[-99,-63],[-47,-14],[-31,15],[-24,60],[-14,22],[-18,39],[8,50],[14,35],[31,6],[34,-17],[31,-1],[-39,34],[-56,30],[-26,-9],[-19,-49],[-26,-34],[-23,12],[-14,14],[10,-41],[-18,-63],[-6,-43],[25,-115],[-5,-45],[-45,-21],[-37,37],[-76,145],[-27,41],[-60,69],[-20,-10],[-25,-34],[-24,-9],[-65,50],[-30,37],[-28,46],[-44,-25],[-38,-30],[-44,-48],[-30,0],[-81,-41],[-9,-1],[-11,-22],[-11,-10],[-10,-43],[-109,-33],[-108,19],[38,23],[42,19],[37,44],[-16,60],[-3,30],[1,38],[40,54],[-42,0],[-27,-19],[-25,40],[-12,79],[29,47],[13,36],[12,50],[1,43],[-23,72],[-63,153],[-29,115],[-50,60],[37,100],[41,91],[54,40],[-4,6],[-30,0],[-19,-5],[-18,-30],[-18,-22],[-56,-116],[-37,-56],[-23,-16],[38,-22],[6,-19],[7,-41],[-10,-51],[-10,-28],[-45,2],[-40,-41],[-95,-44],[-128,-26],[-63,3],[-65,52],[0,30],[3,26],[-94,90],[-54,89],[-38,2],[-33,23],[-39,37],[3,30],[6,21],[-24,15],[-31,-2],[-36,11],[94,114],[32,77],[27,11],[34,-12],[47,-30],[40,-14],[14,-14],[15,-27],[-16,-45],[-14,-31],[17,8],[50,49],[37,43],[17,-4],[12,-8],[20,-44],[25,-45],[56,43],[30,53],[-25,24],[-31,13],[-79,19],[20,15],[50,-2],[19,15],[-20,20],[-25,18],[-68,-60],[-124,3],[-87,35],[-87,-6],[-13,7],[-17,19],[49,45],[34,25],[2,14],[-20,2],[-38,-12],[-17,21],[3,36],[-6,-4],[-15,-19],[-21,10],[-18,16],[9,17],[19,24],[-8,3],[-17,-5],[-16,-31],[3,-25],[0,-36],[-28,-7],[-24,5],[-17,36],[-17,78],[-48,20],[-12,39],[30,51],[-13,26],[-32,8],[-37,-25],[-17,22],[-3,25],[-1,36],[10,3],[9,-7],[74,20],[7,10],[-59,30],[-16,31],[24,18],[44,2],[61,19],[-25,33],[-6,18],[-5,31],[10,51],[72,117],[71,98],[22,22],[32,12],[30,-9],[31,-21],[6,9],[-11,9],[-13,40],[43,15],[26,45],[2,13],[-28,-18],[-29,-31],[-7,31],[-7,71],[12,68],[10,30],[24,29],[69,11],[13,-6],[2,14],[-41,42],[17,34],[15,17],[84,27],[45,-9],[58,-31],[33,-39],[-5,-20],[-8,-12],[-17,-13],[-7,-10],[3,-8],[25,24],[40,28],[23,-12],[17,-23],[20,1],[63,19],[32,20],[39,53],[51,34],[73,108],[21,44],[25,7],[23,-4],[15,-37],[23,-10],[130,9],[67,16],[46,35],[48,59],[28,40],[13,52],[-17,66],[-18,56],[-23,127],[-64,83],[-46,25],[-30,-3],[22,53],[61,-6],[40,11],[33,26],[10,19],[16,40],[-5,42],[-9,23],[-22,26],[-27,37],[-18,12],[-16,-1],[-78,-74],[-46,-2],[-35,14],[-30,-42],[-85,-37],[-45,-38],[-84,-93],[-21,-43],[-26,-2],[-19,82],[-91,79],[-28,-27],[15,-25],[21,-17],[34,-8],[-15,-23],[-11,-32],[-34,30],[-61,43],[-63,22],[-164,-3],[-108,-44],[-10,9],[-10,4],[-18,-11],[-8,-17],[-11,-12],[-22,-4],[-45,7],[-85,27],[-194,41],[-50,24],[-44,59],[1,40],[19,17],[-1,58],[-38,15],[-77,82],[-28,35],[6,4],[14,-9],[26,-7],[64,11],[22,53],[48,16],[44,-8],[-10,15],[-11,11],[-114,27],[-16,-8],[-205,48],[-162,84],[-13,16],[-15,36],[22,35],[22,17],[1,-20],[3,-19],[93,45],[48,58],[92,10],[22,16],[28,31],[41,54],[58,28],[39,25],[51,15],[44,-25],[13,-3],[80,-5],[26,11],[11,8],[8,12],[-78,45],[8,25],[10,18],[91,52],[70,17],[37,-1],[108,68],[59,19],[112,13],[92,3],[25,-24],[-49,5],[-22,-4],[15,-9],[18,-17],[-5,-22],[-31,-66],[3,-53],[-20,-17],[-19,-24],[94,-76],[146,-5],[79,14],[45,-23],[38,-5],[103,12],[78,-16],[33,6],[72,113],[28,18],[31,-20],[40,-16],[25,12],[21,-29],[-10,61],[-14,23],[-118,41],[-78,-20],[-25,23],[8,47],[-84,115],[-35,24],[-42,1],[-21,40],[-18,51],[36,21],[33,10],[30,-17],[33,-67],[32,-10],[-9,-68],[39,-62],[89,-57],[70,21],[50,-1],[30,-12],[74,-52],[37,-6],[116,27],[1,51],[-9,37],[-28,23],[-78,-5],[-62,38],[-52,-10],[-96,-58],[-48,23],[-30,31],[-49,31],[-6,60],[41,69],[30,32],[-27,24],[-68,17],[-119,-18],[-5,24],[0,25],[-48,-49],[-50,10],[-66,-5],[-148,43],[-52,54],[-22,43],[-40,119],[-50,75],[-351,252],[-159,64],[-77,70],[-48,17],[-46,8],[-59,22],[40,28],[27,10],[-28,-30],[21,-7],[35,17],[18,20],[27,85],[28,129],[-7,51],[194,-10],[129,8],[43,12],[163,20],[43,14],[78,43],[92,77],[80,101],[12,27],[5,-7],[7,5],[9,38],[10,90],[39,85],[168,193],[77,77],[26,35],[27,25],[19,-24],[9,-7],[5,-11],[-16,-6],[-26,-25],[-36,-16],[-9,-9],[22,2],[63,18],[36,22],[179,41],[97,66],[3,15],[144,84],[20,-4],[23,-10],[-40,-55],[28,-14],[-25,-66],[52,-1],[12,-30],[3,26],[-1,37],[4,37],[8,25],[36,-11],[83,27],[-100,4],[-60,59],[-33,1],[111,87],[102,53],[23,-1],[11,-10],[2,-16],[-22,-10],[-21,-19],[10,-16],[15,-3],[48,14],[22,17],[105,-2],[30,13],[8,12],[134,2],[25,9],[85,46],[78,57],[36,31],[61,79],[53,51],[87,51],[21,-6],[-28,-10],[-20,-22],[27,-29],[183,-59],[46,-4],[18,-35],[-15,-34],[-47,-38],[-95,-39],[29,-15],[19,-35],[28,-4],[46,13],[35,21],[74,70],[24,39],[17,9],[62,-9],[35,-20],[40,-35],[-15,-34],[-16,-20],[52,-26],[57,-6],[55,-21],[77,44],[60,9],[57,-2],[73,24],[125,-32],[31,8],[50,-5],[53,-20],[19,-21],[-57,-44],[-9,-46],[20,-19],[36,-4],[4,-27],[23,-6],[112,2],[-9,-13],[-5,-15],[-35,-34],[200,-20],[27,19],[41,8],[88,26],[33,-12],[39,-26],[36,-6],[34,6],[78,38],[91,2],[37,-13],[39,6],[118,-44],[44,-5],[58,-57],[30,-1],[34,24],[29,-1],[29,-23],[47,-7],[22,-37],[24,-13],[178,-27],[88,13],[129,-4],[62,-17],[65,2],[107,-63],[56,-9],[11,-15],[161,-15],[56,33],[98,8],[88,28],[50,0],[59,-7],[22,3],[16,12],[142,-47],[79,-55],[35,-40],[166,-57],[48,-32],[33,-36],[19,-3],[14,10],[58,-3],[22,-5],[39,-9],[126,-19],[119,11],[221,-61],[137,-114],[111,-57],[45,-38],[72,-34],[169,-75],[53,-7],[98,-36],[61,5],[104,-9],[71,-28],[140,-79],[29,-7],[8,6],[-49,78],[-8,7],[-56,29],[-67,14],[-5,6],[-12,27],[4,11],[14,5],[50,-1],[29,5],[4,11],[-21,2],[-25,11],[-30,18],[-17,17],[61,115],[21,-11],[32,26],[58,-17],[10,10],[7,58],[9,14],[16,11],[80,10],[99,-10],[11,5],[-10,39],[-1,16],[6,35],[6,18],[12,10],[46,-8],[15,-17],[15,-30],[16,-17],[49,-17],[6,-11],[-19,-45],[-19,-24],[-41,-62],[-3,-16],[63,28],[71,38],[60,22],[51,4],[36,12],[22,21],[16,22],[31,70],[21,12],[87,-4],[21,2],[13,7],[-2,8],[-19,11],[-25,3],[0,5],[9,12],[14,6],[42,8],[29,-25],[19,-2],[63,28],[98,74],[39,21],[34,3],[29,-13],[22,4],[29,41],[12,23],[17,19],[73,43],[46,10],[29,-8],[33,-18],[28,-7],[37,5],[27,-2],[13,8],[47,50],[15,0],[14,-14],[24,-36],[0,-18],[-31,-44],[-225,-126],[-69,-54],[-34,-20],[-36,-11],[-69,-9],[-27,-11],[-46,-10],[-109,-17],[-21,-9],[-14,-10],[-39,-66],[-18,-22],[-38,-33],[-41,-20],[-58,-7],[-36,-31],[-42,-60],[-33,-42],[-39,-36],[-42,-46],[-11,-25],[13,-32],[7,-10],[42,-18],[16,4],[-15,17],[-35,25],[-5,9],[9,7],[166,-19],[36,19],[12,16],[-2,9],[-45,3],[-10,15],[-7,29],[-2,23],[4,17],[10,22],[49,35],[52,15],[40,20],[22,19],[60,32],[23,27],[13,20],[2,10],[-11,7],[9,18],[43,16],[20,1],[61,-15],[11,-12],[-6,-31],[8,2],[24,39],[13,13],[14,3],[13,-5],[14,-13],[8,-38],[1,-63],[3,-25],[16,43],[11,20],[59,93],[40,51],[46,50],[65,37],[152,61],[85,17],[43,15],[21,13],[14,17],[24,19],[4,-2],[-9,-39],[-6,-12],[-56,-24],[-5,-19],[6,-29],[9,-19],[13,-9],[23,6],[33,23],[41,34],[89,86],[8,16],[22,69],[51,31],[92,35],[22,22],[-80,19],[-17,13],[-3,8],[15,19],[-36,20],[-14,12],[1,36],[11,25],[24,24],[14,5],[36,-15],[30,-18],[104,-85],[42,-42],[25,-33],[58,-102],[26,-59],[21,-61],[21,-44],[20,-27],[100,-107],[52,-45],[44,-28],[49,-22],[57,-16],[38,-2],[60,46],[1,29],[-26,50],[-27,35],[4,21],[35,40],[-3,14],[8,42],[24,-8],[10,1],[13,15],[17,29],[22,24],[27,19],[7,12],[-26,9],[-16,0],[-12,4],[-8,8],[11,9],[57,22],[11,22],[19,14],[23,5],[15,-6],[16,-17],[1,-28],[-7,-46],[-2,-37],[18,-87],[16,-19],[63,-25],[-4,-22],[-72,-91],[-16,-23],[-7,-17],[2,-14],[13,-12],[24,-9],[63,-3],[18,8],[122,3],[22,6],[19,18],[28,44],[31,14],[10,12],[19,52],[10,61],[9,26],[14,16],[19,5],[48,-6],[22,5],[88,-5],[88,4],[92,-11],[58,-12],[54,-20],[104,-46],[41,-26],[145,-113],[43,-23],[79,-22],[274,-49],[34,-13],[72,-51],[50,-30],[59,-29],[73,-25],[144,-37],[24,-13],[26,-3],[30,5],[132,-22],[35,1],[25,-4],[31,-15],[45,-6],[-2,11],[-51,59],[2,9],[21,1],[64,-10],[15,17],[21,-1],[49,-8],[53,-18],[56,-28],[68,-24],[104,-60],[57,-50],[55,-62],[29,-43],[6,-24],[11,-12],[17,0],[7,-9],[-16,-53],[-9,-14],[-12,-9],[-49,-11],[-136,13],[-25,-43],[-76,-37],[-13,-16],[-4,-11],[6,-38],[-10,-12],[-62,-43],[-2,-12],[40,-18],[43,-30],[34,-7],[43,4],[54,-11],[65,-25],[45,-12],[25,2],[35,-4],[44,-12],[59,-4],[129,1],[39,-8],[54,-4],[105,1],[19,1],[33,21],[22,6],[38,1],[108,14],[38,0],[34,11],[45,23],[27,4],[10,-14],[19,-6],[27,2],[52,23],[120,71],[43,0],[32,22],[8,0],[8,-9],[30,-52],[9,-8],[20,-4],[20,-27],[20,-39],[16,-11],[113,-2],[39,-11],[12,-11],[13,-31],[7,-60],[5,-22],[16,-33],[11,-9],[10,9],[28,84],[10,13],[18,-4],[6,-5],[28,-62],[40,-46],[100,-84],[16,-31],[6,-23],[-6,-21],[-17,-18],[-27,-15],[-37,-11],[-34,4],[-32,19],[-10,1],[11,-17],[66,-70],[17,-28],[16,-18],[14,-10],[13,-15],[12,-21],[55,-56],[16,-27],[62,-84],[30,-33],[23,-19],[8,-1],[-5,15],[-79,111],[-41,70],[-5,17],[-3,26],[-2,85],[6,13],[28,11],[35,-39],[13,-5],[9,2],[5,10],[20,-9],[36,-29],[12,0],[-27,54],[-19,27],[-7,19],[18,28],[-10,14],[-45,41],[-24,42],[-21,65],[-2,25],[3,26],[-3,22],[-29,43],[-31,30],[-24,35],[-5,19],[3,50],[19,21],[36,29],[9,30],[-16,31],[-3,14],[10,-2],[70,15],[18,-5],[26,6],[35,19],[28,9],[36,-2],[20,5],[24,8],[13,9],[22,36],[12,6],[37,-4],[21,-8],[9,3],[-1,50],[7,18],[37,37],[39,4],[25,10],[30,20],[21,19],[21,29],[9,38],[-7,11],[-44,15],[-26,-8],[-59,-27],[-61,-34],[-24,-33],[-6,-41],[-12,-18],[-47,17],[-21,0],[-25,-7],[-27,-16],[-29,-25],[-42,-4],[-56,15],[-33,5],[-34,-26],[2,-20],[15,-28],[-15,-17],[-82,-6],[-21,4],[-44,-12],[-17,3],[-12,13],[-89,58],[-9,11],[22,47],[82,126],[9,8],[152,22],[91,23],[169,69],[32,6],[108,46],[45,12],[41,-8],[60,-24],[32,-21],[22,-26],[18,-37],[23,-81],[8,-69],[14,-26],[51,-48],[26,-18],[16,-6],[14,11],[9,2],[7,-4],[7,-31],[9,-3],[30,4],[32,-12],[5,-10],[-7,-37],[9,-16],[40,-34],[37,-12],[44,-6],[81,6],[68,16],[51,26],[42,-29],[84,-71],[50,-51],[41,-23],[84,-29],[19,-15],[31,-2],[43,12],[48,-5],[54,-21],[37,-9],[127,40],[20,2],[47,19],[31,6],[36,0],[27,5],[17,13],[68,-1],[122,-14],[84,-17],[49,-23],[41,-12],[32,-3],[31,4],[30,11],[32,20],[68,11],[11,5],[-1,11],[-14,17],[-39,32],[-27,31],[-5,20],[1,24],[8,14],[16,4],[26,-15],[34,-34],[98,-126],[24,-17],[13,-17],[90,-45],[42,-9],[50,29],[22,17],[11,17],[0,17],[4,24],[-5,14],[-13,20],[-36,26],[-59,34],[-53,10],[-48,-14],[-55,-29],[-23,12],[-68,81],[-17,31],[0,8],[31,-9],[2,9],[-19,40],[-12,13],[-39,62],[-5,18],[24,5],[11,7],[15,-1],[70,-37],[35,17],[83,23],[-33,36],[-7,35],[3,8],[27,5],[53,-29],[25,-4],[19,11],[19,1],[21,-10],[19,-15],[37,-43],[17,-26],[20,-39],[7,-6],[97,-3],[54,35],[-1,-12],[-12,-27],[-68,-105],[1,-13],[36,6],[17,8],[10,13],[9,29],[6,9],[101,49],[29,8],[-18,-53],[-37,-188],[-8,-65],[-8,-23],[-40,-72],[1,-25],[43,-61],[8,-17],[4,-50],[8,-9],[36,-1],[37,16],[44,11],[7,-11],[-24,-60],[1,-6],[42,16],[19,2],[8,-3],[31,-31],[3,-23],[0,-35],[-3,-24],[-11,-14],[-13,-6],[-16,-4],[-14,2],[-44,-5],[-26,6],[-25,19],[-18,5],[-21,-15],[-34,3],[-37,41],[-15,-4],[-5,-6],[0,-9],[17,-27],[132,-143],[20,-29],[4,-43],[3,0],[12,43],[-8,20],[-67,83],[-9,31],[3,8],[18,9],[96,-21],[38,4],[25,15],[13,18],[9,99],[17,63],[-10,57],[-26,90],[-21,54],[-47,53],[-5,20],[53,163],[9,14],[12,6],[42,2],[30,14],[47,-19],[26,-5],[33,17],[72,69],[28,21],[36,40],[43,59],[48,43],[76,40],[47,32],[10,12],[-44,2],[-10,6],[-9,30],[4,57],[-1,31],[-5,28],[-9,25],[-14,23],[-13,13],[-11,4],[-8,-2],[-4,-8],[-12,-54],[-15,-39],[-20,-21],[-43,-14],[-72,-10],[-30,19],[-4,16],[10,62],[25,27],[66,53],[42,42],[1,7],[-39,1],[-9,8],[-9,52],[3,20],[6,22],[27,16],[84,20],[65,23],[2,-8],[-52,-70],[-5,-16],[20,-16],[50,41],[32,34],[6,11],[-30,4],[-1,14],[5,26],[-2,17],[-33,22],[-40,-12],[-34,-23],[-28,-7],[-41,0],[-30,5],[-18,11],[-23,25],[-26,38],[-33,38],[-12,4],[-10,-4],[-22,-37],[-9,-4],[-130,52],[-56,28],[-26,22],[-34,13],[-39,4],[-32,11],[-24,16],[-19,23],[-15,31],[-27,38],[-62,77],[-16,49],[-2,19],[4,49],[58,82],[10,24],[20,17],[29,11],[21,4],[47,-11],[-28,26],[-3,13],[29,45],[-6,2],[-78,-34],[-20,2],[-28,21],[-52,75],[-1,47],[17,65],[5,38],[-15,33],[6,10],[16,9],[7,10],[-7,36],[11,20],[38,38],[36,33],[22,10],[19,-2],[19,-10],[21,-19],[34,-19],[26,-5],[19,10],[33,71],[11,18],[-11,8],[-63,0],[-28,5],[-16,7],[-11,27],[9,15],[62,50],[29,53],[86,73],[87,34],[43,11],[34,3],[15,-5],[18,-36],[4,-39],[47,-48]],[[27574,82227],[-19,-8],[-58,16],[-24,11],[-71,41],[-135,61],[-46,31],[-10,22],[25,48],[13,19],[15,12],[143,22],[55,-11],[65,-97],[38,-66],[15,-52],[0,-26],[-6,-23]],[[29549,90889],[-135,-1],[-74,4],[-29,9],[-26,13],[-29,45],[-19,45],[-1,20],[5,17],[7,11],[91,15],[74,-19],[64,-22],[83,-4],[25,-9],[9,-6],[7,-11],[9,-53],[1,-28],[-2,-21],[-60,-5]],[[28367,88404],[24,-25],[24,2],[14,-20],[32,-63],[3,-10],[-1,-21],[-17,-26],[-18,-13],[-37,-20],[-42,-9],[-23,14],[-64,58],[-59,68],[-19,38],[8,16],[25,11],[51,11],[83,-6],[16,-5]],[[27222,88107],[11,-17],[3,-24],[-4,-32],[-7,-30],[-10,-27],[-25,-44],[-76,-77],[-28,-42],[-22,-25],[-124,-111],[-16,-6],[-16,2],[-34,17],[-34,3],[-90,-45],[-4,8],[-4,48],[-9,27],[-40,57],[-2,13],[0,16],[3,13],[45,54],[101,193],[24,10],[49,-22],[24,-7],[17,1],[72,41],[68,-5],[63,24],[29,0],[23,-4],[13,-9]],[[27904,87794],[22,-16],[36,-52],[14,-26],[4,-36],[-10,-48],[-5,-44],[-13,-34],[-25,-42],[-22,-50],[-20,-56],[-15,-38],[-13,-18],[-14,-10],[-14,-1],[-23,21],[-30,42],[-24,25],[-31,18],[-17,23],[-3,23],[-1,76],[1,37],[4,32],[7,25],[16,34],[44,75],[26,29],[16,7],[43,-6],[18,2],[14,9],[15,-1]],[[20956,96279],[-43,-10],[-84,23],[-56,10],[-45,42],[-49,57],[-39,62],[-14,37],[-28,22],[-10,36],[-51,57],[8,9],[48,8],[77,-11],[36,-20],[47,-34],[60,-54],[18,-24],[4,-33],[11,-17],[51,-4],[63,-43],[12,-17],[13,-34],[-1,-16],[-10,-34],[-18,-12]],[[23476,96654],[70,-22],[76,11],[81,2],[182,-10],[120,6],[31,-3],[47,-14],[25,-18],[23,-28],[-59,-18],[-50,-89],[-7,-5],[-54,-1],[-27,-7],[-159,13],[-438,5],[-19,11],[-58,53],[-4,21],[11,24],[12,16],[14,8],[128,39],[55,6]],[[22558,97915],[6,-75],[-6,-38],[-14,-28],[-12,-7],[-17,0],[-76,21],[-23,13],[-1,11],[-8,21],[-50,27],[-95,-4],[-40,3],[-16,8],[-10,12],[-9,47],[2,17],[11,29],[7,7],[70,27],[20,2],[85,-10],[75,-1],[38,-7],[34,-17],[20,-26],[9,-32]],[[25046,96352],[-73,-33],[-37,1],[-212,67],[-43,33],[-8,23],[-2,32],[0,43],[9,30],[12,10],[25,10],[49,7],[46,-4],[70,-12],[70,-19],[92,-60],[34,-28],[7,-37],[0,-22],[-5,-17],[-10,-10],[-24,-14]],[[24016,95061],[18,-43],[3,-18],[1,-37],[-8,-49],[-5,-9],[-7,-4],[-4,-13],[0,-21],[-7,-12],[-15,-5],[-99,-10],[-62,2],[-91,-6],[-45,3],[-30,11],[-43,22],[-91,55],[-45,2],[-116,19],[-63,58],[-24,11],[-25,-18],[-7,4],[-6,12],[-7,20],[-12,10],[-48,-5],[-9,6],[-2,18],[0,15],[9,23],[51,65],[25,5],[31,12],[17,35],[-2,33],[48,49],[28,15],[51,34],[172,54],[48,4],[63,-4],[62,-17],[47,-28],[97,-70],[44,-43],[23,-43],[21,-25],[26,-54],[-9,-21],[-6,-28],[3,-14]],[[19495,97148],[49,-34],[17,1],[21,-6],[10,-9],[29,-43],[6,-21],[2,-27],[-5,-23],[-10,-19],[-27,-11],[-62,-8],[-87,11],[-75,-14],[-35,-2],[-93,9],[-24,7],[-52,26],[-40,11],[-16,-6],[-20,-23],[-37,-28],[-23,-7],[-68,4],[-103,48],[-118,-14],[-123,-28],[-48,-5],[-14,8],[-19,21],[3,11],[36,32],[82,33],[60,19],[118,28],[141,15],[52,17],[33,23],[92,37],[53,16],[73,13],[58,-1],[74,-30],[56,-15],[34,-16]],[[17131,95379],[-79,-37],[-57,4],[-75,27],[-61,10],[-21,9],[-3,9],[20,26],[26,21],[62,41],[105,78],[69,30],[67,21],[69,47],[38,21],[33,2],[33,-9],[4,-13],[-35,-64],[-25,-26],[-49,-67],[-93,-112],[-28,-18]],[[20753,93847],[-14,-3],[-26,14],[-39,29],[-63,60],[-75,59],[-12,36],[-19,26],[-96,63],[-62,26],[-48,13],[-7,17],[33,51],[37,41],[23,15],[70,13],[236,27],[54,1],[56,-13],[78,-56],[32,-6],[20,-13],[17,-21],[9,-21],[0,-44],[-8,-64],[-11,-25],[-47,-82],[-49,-46],[-10,-29],[-20,-23],[-35,-29],[-24,-16]],[[22221,94438],[235,-123],[33,10],[71,6],[73,19],[102,15],[63,27],[26,8],[45,5],[25,0],[70,-15],[29,-11],[15,-11],[16,-19],[28,-49],[4,-18],[-1,-5],[-26,-30],[-17,-13],[-36,-12],[-30,-4],[-27,-21],[-29,5],[-9,-19],[4,-12],[8,-6],[15,1],[17,8],[33,-4],[18,-13],[15,-21],[-11,-20],[-59,-27],[-87,-31],[-105,-98],[-56,-41],[-11,-13],[-6,-13],[2,-24],[2,-10],[16,-4],[51,34],[34,16],[33,9],[60,0],[25,-5],[44,-20],[41,-32],[9,-11],[-4,-11],[-17,-12],[-2,-8],[39,-15],[43,-43],[3,-26],[-19,-26],[-5,-18],[9,-8],[21,5],[51,29],[55,15],[22,-2],[14,-6],[14,-40],[12,-45],[2,-37],[-9,-31],[-13,-23],[-33,-30],[-30,-11],[-16,0],[2,-5],[35,-25],[15,-19],[6,-19],[-2,-18],[-5,-16],[-41,-57],[2,-9],[12,-3],[26,-33],[3,-78],[-93,-24],[-22,-18],[-25,-28],[-29,-22],[-67,-22],[-33,-3],[-167,19],[-17,11],[-11,19],[-7,29],[-1,22],[2,16],[0,9],[-5,3],[-19,-16],[-19,-29],[11,-33],[52,-91],[10,-39],[2,-16],[-3,-13],[-59,-53],[-34,-18],[-36,-9],[-33,7],[-32,22],[-24,10],[-51,-1],[-15,11],[-15,22],[-35,76],[-50,54],[-42,61],[-108,89],[-56,53],[-75,86],[-31,19],[-26,8],[-51,6],[-12,11],[-19,29],[-32,22],[-11,3],[-19,-6],[-50,-20],[-63,22],[-14,15],[-8,25],[-8,14],[-21,13],[-18,31],[-119,63],[-71,72],[-14,26],[-2,10],[7,35],[17,39],[21,39],[14,16],[46,33],[37,8],[51,-4],[27,-8],[24,-22],[11,-26],[12,-18],[38,-19],[20,-15],[30,-36],[24,-43],[21,-14],[52,-5],[53,7],[114,27],[5,4],[7,16],[13,98],[8,0],[39,-45],[11,-5],[16,9],[10,23],[-1,10],[-24,53],[-15,23],[-13,15],[-14,4],[-31,-4],[-24,10],[-5,15],[4,19],[13,21],[14,12],[27,6],[32,-6],[44,-25],[28,-6],[40,7],[-51,15],[-70,58],[-30,11],[-36,-25],[-25,-9],[-47,-12],[-37,-2],[-156,89],[-9,9],[-11,23],[1,11],[16,17],[38,22],[58,13],[39,3],[34,-17],[49,-44],[43,-26],[4,9],[-8,26],[-20,38],[-14,10],[-34,11],[-33,26],[-15,20],[-8,20],[-1,22],[7,15],[13,8],[120,22],[83,-24],[53,-4],[22,30],[-7,6],[-28,-8],[-32,0],[-19,17],[-1,9],[25,23],[37,10]],[[26411,89435],[10,-7],[11,4],[20,29],[44,82],[13,7],[18,-1],[65,-52],[24,-30],[13,-41],[14,-16],[51,-21],[49,-7],[65,-21],[23,-16],[51,-78],[6,-5],[59,-32],[89,-72],[23,-10],[87,-24],[32,-17],[30,-27],[34,-49],[39,-77],[31,-123],[2,-24],[-3,-14],[-12,-16],[-50,-50],[4,-9],[48,4],[105,31],[65,-23],[22,-3],[5,1],[24,39],[25,-6],[38,-38],[24,-30],[10,-23],[-2,-13],[-25,-5],[60,-22],[53,-35],[-11,-23],[-57,-51],[-57,-45],[-67,-66],[-17,-11],[-9,0],[-37,12],[-54,32],[-164,73],[-51,15],[-64,9],[-9,17],[-16,110],[-29,19],[-99,23],[-29,13],[-2,22],[7,38],[-14,19],[-33,-1],[-33,-8],[-53,-26],[-25,-24],[-9,-25],[-6,-55],[-7,-26],[-18,-35],[-82,-88],[-33,-27],[-33,-7],[-13,-9],[-22,-32],[-33,-80],[-14,-23],[-21,-24],[-46,-36],[-46,-29],[-77,-33],[-42,-11],[-29,11],[-20,76],[-41,223],[-7,15],[-8,9],[-10,4],[-138,-29],[-76,3],[-75,-50],[-19,-3],[-39,1],[-27,8],[-7,6],[-5,21],[2,23],[9,25],[34,66],[28,41],[13,13],[129,74],[31,24],[16,25],[0,25],[-6,33],[-23,80],[-5,73],[0,36],[8,55],[33,135],[11,66],[20,234],[11,67],[16,62],[15,37],[42,73],[31,30],[41,20],[8,-2],[8,-9],[15,-31],[56,-29],[18,-28],[12,-31],[7,-40],[-7,-18],[-26,-27],[-5,-11],[1,-9],[51,-42],[38,-102]],[[28979,91199],[145,-51],[14,-19],[7,-16],[4,-19],[0,-38],[-3,-15],[-14,-36],[-1,-12],[11,-123],[-1,-67],[-10,-56],[-21,-45],[-31,-34],[-24,-20],[-105,-48],[-75,-12],[-79,-2],[-100,-13],[-46,3],[-24,5],[-17,10],[-19,30],[-23,51],[-18,58],[-23,102],[0,12],[21,83],[29,56],[50,82],[57,81],[14,14],[26,14],[64,23],[54,-6],[23,3],[29,10],[33,3],[53,-8]],[[27906,94270],[47,-7],[300,14],[63,-11],[189,-64],[48,-21],[25,-28],[21,-45],[10,-10],[69,-26],[28,-32],[10,-17],[14,-38],[31,-22],[36,-12],[11,-11],[-5,-48],[15,-22],[33,-27],[13,-18],[-26,-22],[-61,-13],[-170,13],[-228,31],[-133,-9],[-67,-14],[-161,-49],[-51,-8],[-51,-1],[-89,40],[-32,22],[-11,16],[-21,49],[-17,58],[-9,48],[-10,37],[-31,12],[-90,14],[-30,20],[-14,17],[-13,27],[0,27],[7,25],[6,6],[11,1],[-25,29],[-9,33],[-1,46],[4,29],[7,13],[17,8],[39,5],[58,-1],[81,-33],[64,-4],[98,-27]],[[22861,95890],[3,-26],[-4,-19],[-9,-14],[-1,-17],[9,-18],[37,-45],[12,-25],[2,-25],[-2,-17],[-23,-32],[-10,-43],[-1,-22],[14,-35],[0,-16],[-26,-28],[-54,-25],[8,-13],[117,-30],[9,-7],[0,-70],[20,-76],[-8,-1],[-28,24],[-52,28],[-63,-53],[7,-90],[42,-40],[12,-23],[-4,-13],[-35,-6],[-12,2],[-35,19],[-21,27],[-7,-1],[-6,-13],[4,-14],[24,-24],[11,-29],[-11,-8],[-36,-8],[-48,0],[-76,-13],[-38,-2],[-36,7],[-49,1],[-41,-3],[-24,6],[-23,14],[-26,-3],[-57,-35],[-89,11],[-80,3],[-16,11],[-18,23],[-35,70],[6,18],[86,9],[2,6],[-61,25],[-70,18],[-32,15],[7,27],[-2,7],[120,32],[88,62],[54,25],[4,12],[46,13],[106,7],[4,18],[-200,-10],[-274,-35],[-85,-18],[-71,10],[-300,-54],[-13,0],[-31,17],[-27,33],[19,22],[88,43],[44,37],[-5,21],[35,35],[56,5],[96,-29],[49,-29],[45,-14],[39,3],[41,20],[-11,3],[-69,-11],[-8,3],[-35,33],[-15,20],[-10,21],[-1,15],[21,28],[-79,9],[-29,19],[-14,24],[3,11],[25,28],[67,39],[-8,10],[-97,-1],[-22,5],[-42,24],[9,27],[39,39],[30,23],[19,7],[31,0],[73,-15],[21,-8],[56,-38],[14,-21],[-2,-21],[11,-15],[43,-22],[186,-115],[35,-27],[23,-12],[43,-9],[26,2],[20,8],[3,10],[-80,40],[-20,22],[-17,29],[7,9],[24,4],[58,-4],[69,8],[-76,12],[-50,16],[-52,1],[-64,26],[0,8],[16,9],[87,11],[17,5],[1,7],[-29,18],[-26,9],[-132,21],[-47,24],[-15,11],[-4,11],[17,28],[71,35],[51,17],[89,12],[71,-1],[40,-5],[94,-59],[45,-39],[77,7],[-22,40],[-15,45],[23,17],[64,29],[51,-15],[66,-40],[15,-13],[75,-25],[44,-8],[23,-13],[7,-17]],[[21270,97531],[65,-11],[77,-37],[73,-79],[4,-10],[0,-13],[-3,-16],[-9,-21],[-13,-12],[37,-15],[4,-8],[-3,-17],[4,-12],[23,12],[19,19],[5,12],[4,32],[57,17],[60,23],[28,5],[47,-5],[112,-56],[43,-5],[16,-7],[14,-13],[1,-14],[-23,-32],[-9,-20],[6,-13],[58,-11],[134,22],[117,-53],[65,-63],[47,-21],[8,-11],[-14,-11],[-13,-29],[-39,-22],[-8,-10],[21,-26],[1,-17],[-2,-22],[7,-13],[53,-14],[119,-93],[22,-26],[14,-32],[1,-11],[-17,-18],[-19,-51],[-10,-12],[-49,-10],[-88,-9],[-83,-17],[-88,22],[-87,34],[-26,22],[-22,28],[-5,10],[-9,44],[-4,9],[-37,24],[-32,37],[-63,3],[-147,38],[-63,8],[-64,-2],[-89,-15],[-17,4],[-15,11],[-14,18],[-3,14],[14,23],[-262,-29],[-75,-35],[-105,6],[-53,14],[-69,33],[-32,29],[-30,38],[-3,29],[24,20],[25,11],[26,4],[142,-23],[125,-11],[54,11],[25,32],[-30,16],[-120,7],[26,17],[101,16],[53,26],[-10,8],[-30,10],[-137,-2],[-48,9],[-3,9],[11,10],[77,51],[-3,10],[-33,16],[-29,22],[-11,3],[-68,-20],[-95,-75],[-22,-11],[-22,1],[-21,12],[1,16],[21,19],[44,58],[-4,21],[-42,14],[-114,-10],[-63,-1],[-9,17],[-3,30],[3,29],[15,45],[22,35],[13,12],[151,-7],[245,21],[71,2],[78,-21]],[[24476,98578],[36,-48],[134,-115],[61,-42],[103,-51],[13,-19],[1,-8],[-3,-28],[30,-10],[88,-16],[99,-28],[18,1],[34,17],[42,5],[54,-4],[26,-12],[19,-18],[8,-13],[1,-10],[-19,-19],[2,-8],[12,-8],[2,-11],[-20,-41],[5,-15],[50,-37],[45,-19],[89,-20],[58,2],[36,-13],[1,8],[-17,23],[-34,34],[-65,18],[-9,19],[-5,34],[6,22],[33,18],[27,6],[84,1],[45,-8],[80,-25],[8,-14],[4,-27],[3,-54],[-2,-12],[-67,-30],[-15,-21],[17,-6],[58,-5],[90,-19],[35,-2],[35,-44],[27,-41],[-20,-52],[-26,-82],[-21,-19],[-21,-28],[15,-6],[88,12],[18,4],[59,28],[86,-7],[29,-7],[15,-10],[26,-31],[22,-41],[16,3],[40,51],[15,12],[20,12],[9,-2],[40,-47],[91,-82],[31,-34],[6,-26],[-39,-29],[-30,-15],[-223,-62],[-99,-35],[-50,-28],[-25,-9],[-54,5],[-12,-5],[-16,-44],[-18,-19],[-46,-30],[-65,-55],[-38,-24],[-68,18],[-17,25],[-10,58],[-1,24],[2,13],[9,20],[29,49],[-3,6],[-14,-5],[-45,-24],[-18,-13],[-16,-23],[-8,-38],[7,-70],[-6,-28],[-18,-14],[7,-11],[53,-15],[9,-7],[6,-12],[3,-17],[-3,-16],[-16,-25],[-30,-10],[-38,11],[-82,61],[-36,-3],[-9,-7],[8,-22],[25,-48],[5,-41],[-12,-33],[-23,-53],[-16,-29],[-9,-3],[-41,-1],[-35,14],[-104,93],[-51,39],[-76,78],[-19,15],[-12,4],[-10,-33],[20,-31],[68,-72],[41,-53],[29,-43],[4,-19],[-9,-7],[-15,4],[-20,16],[-62,25],[-26,15],[-16,16],[-31,13],[-45,8],[-45,2],[-45,-5],[-8,-8],[50,-23],[18,-12],[13,-17],[9,-19],[-17,-13],[-63,-7],[-84,5],[-137,17],[-136,28],[-125,44],[-91,44],[-36,23],[-11,17],[34,16],[119,19],[119,13],[-19,11],[-217,25],[-71,4],[-38,-6],[-44,4],[-34,20],[-45,37],[-23,25],[3,10],[17,5],[99,-4],[13,3],[-49,19],[-157,37],[-59,33],[-11,12],[-4,13],[1,12],[59,25],[183,59],[62,9],[63,1],[44,16],[38,56],[189,20],[146,25],[12,7],[-109,-4],[-155,5],[-65,37],[-45,7],[-49,0],[-57,-12],[-98,-35],[-47,-9],[-107,-36],[-29,3],[-15,4],[-5,7],[19,24],[28,17],[-5,5],[-42,4],[-48,-1],[-34,-6],[-122,-32],[-55,-23],[-17,-3],[-59,38],[-95,20],[-21,16],[20,63],[27,13],[73,11],[217,57],[13,11],[20,29],[-50,-7],[-109,-27],[-90,-14],[-71,0],[-51,4],[-33,8],[-40,17],[-128,83],[-36,39],[-4,36],[-9,26],[-38,65],[276,-40],[107,-8],[208,-2],[10,3],[3,11],[-4,17],[2,13],[7,9],[77,23],[12,8],[-91,4],[-168,-39],[-59,0],[-67,56],[-71,-10],[-34,4],[-53,14],[-26,12],[-16,15],[-7,13],[2,10],[14,12],[62,16],[28,1],[73,-10],[55,1],[-18,17],[-79,43],[-70,47],[5,80],[57,17],[60,2],[58,-20],[77,-2],[56,-23],[37,-44],[44,1],[69,-8],[155,1],[-28,15],[-49,14],[-109,18],[-53,63],[-114,33],[-88,17],[1,15],[67,79],[80,28],[128,-10],[85,14],[108,28],[106,-13],[28,2],[16,8],[14,17],[0,15],[-14,14],[-34,17],[-135,2],[-60,7],[-23,9],[-7,14],[-4,14],[0,15],[4,9],[11,5],[33,6],[126,0],[76,8],[83,-10],[173,-39],[55,-20],[60,-34],[31,-30]],[[23807,96147],[52,-5],[44,8],[38,-2],[56,-23],[53,-36],[40,-16],[13,-8],[5,-9],[6,-27],[0,-12],[-3,-10],[-18,-25],[-15,-30],[-30,-27],[-16,-20],[-14,-26],[31,15],[119,85],[77,-10],[117,7],[141,35],[67,5],[67,-3],[50,-10],[108,-47],[37,-22],[14,-16],[3,-11],[-22,-18],[-67,11],[-111,10],[-20,5],[-18,0],[-12,-6],[8,-25],[22,-5],[133,-6],[436,-78],[19,-25],[-5,-11],[-16,-12],[-31,-17],[-252,-18],[-143,16],[-120,26],[-41,-6],[35,-35],[72,-10],[61,-21],[25,-17],[128,-13],[21,-13],[40,-34],[33,-3],[33,-24],[27,-41],[13,-5],[39,7],[64,-36],[21,-19],[0,-14],[-15,-22],[-29,-31],[-73,-35],[-6,-11],[86,4],[16,-5],[101,-63],[13,-1],[8,6],[10,23],[-4,21],[-13,28],[4,21],[19,13],[19,7],[19,0],[21,-8],[102,-77],[131,37],[24,-17],[20,-30],[9,-5],[49,61],[30,15],[123,-73],[75,-16],[30,-15],[55,-18],[79,-6],[13,27],[-45,35],[26,15],[109,29],[58,-4],[107,42],[66,5],[40,0],[133,63],[31,10],[23,22],[52,-3],[141,-36],[40,3],[150,36],[56,8],[55,-1],[141,-21],[105,-22],[33,-12],[-12,-29],[6,-9],[13,-7],[35,-8],[131,-1],[57,-7],[46,-28],[10,-11],[-1,-11],[-45,-30],[7,-7],[45,-6],[100,-4],[22,-7],[21,-37],[21,-52],[0,-20],[-35,-35],[-95,-46],[-106,-39],[-7,-10],[34,-18],[35,-9],[27,2],[85,18],[19,-1],[38,-18],[18,-17],[17,-24],[-30,-22],[-121,-27],[-72,36],[-24,7],[-16,-3],[9,-15],[35,-28],[11,-18],[-12,-9],[-6,-18],[1,-26],[-3,-27],[-11,-42],[-5,-2],[-263,-8],[-32,-8],[-74,-29],[-56,-15],[-36,-2],[-36,5],[-96,31],[-64,-6],[-25,3],[-55,20],[-13,10],[-22,27],[-16,37],[1,22],[7,32],[-4,17],[-16,0],[-17,6],[-52,33],[-32,10],[-6,-6],[10,-25],[6,-8],[34,-19],[6,-21],[-14,-55],[-5,-8],[-34,-40],[-25,-12],[-68,-1],[-105,-28],[-50,-4],[-67,7],[-42,12],[-27,15],[-27,21],[-13,2],[-7,-46],[-13,-6],[-23,1],[-35,14],[-28,33],[-9,0],[-4,-19],[-7,-13],[-8,-6],[-74,-20],[-41,0],[-43,23],[-28,-2],[-36,-13],[-87,24],[-21,1],[18,-39],[-29,-6],[-62,1],[-103,13],[-64,-19],[-114,11],[-116,3],[-22,9],[-15,18],[-1,16],[6,23],[17,33],[28,45],[10,23],[-26,11],[-15,15],[-13,1],[-41,-17],[-27,-50],[-20,-14],[-9,12],[-7,30],[-9,15],[-11,-1],[-11,-8],[-11,-15],[-15,-6],[-22,4],[-7,-7],[6,-20],[2,-18],[-2,-16],[-18,-17],[-52,-24],[-31,-7],[-79,-4],[-48,7],[-96,29],[-53,1],[-64,48],[-51,11],[3,18],[22,32],[-1,9],[-69,-47],[-10,-15],[9,-34],[-10,-3],[-47,13],[-47,-10],[-12,3],[-32,25],[-57,26],[-25,28],[-39,90],[-20,59],[2,12],[29,16],[-4,13],[-36,34],[-39,28],[-12,19],[-5,20],[-5,28],[-1,21],[5,13],[22,42],[62,76],[8,14],[3,13],[-8,40],[-12,40],[-12,29],[-34,39],[-46,42],[-66,73],[-48,58],[-58,80],[-28,7],[-32,-3],[-70,-28],[-24,-13],[-5,-9],[-52,-2],[-148,7],[-56,9],[-42,-3],[-72,-20],[-77,4],[-48,56],[-110,31],[-33,17],[-22,24],[7,15],[63,14],[26,15],[12,12],[-62,-10],[-27,1],[-186,77],[-57,14],[-10,7],[-4,9],[0,11],[5,17],[55,-22],[25,-1],[39,6],[14,14],[-9,7],[-64,26],[-30,19],[-12,15],[12,20],[3,13],[21,8],[37,1],[48,10],[88,26],[59,10],[59,-2],[142,-27],[142,-34],[89,-26]],[[23276,97079],[66,-15],[113,7],[41,-11],[106,-39],[32,-23],[8,-17],[0,-9],[-35,-19],[-71,-28],[-17,-22],[63,-27],[32,-24],[15,-17],[0,-18],[-42,-48],[-31,-14],[-48,2],[-23,-5],[-60,-22],[-95,-21],[-129,-9],[-35,-13],[-65,-22],[-43,-3],[-14,12],[-6,18],[3,13],[9,15],[-21,15],[-92,28],[-54,39],[-8,13],[-2,11],[119,7],[52,8],[23,13],[4,7],[-23,3],[-82,26],[-138,16],[-7,19],[-57,36],[-6,35],[-12,10],[-39,15],[-6,5],[-12,22],[-1,12],[2,12],[71,23],[-10,16],[-54,61],[-14,34],[2,13],[34,18],[47,0],[124,-5],[59,-8],[59,-14],[65,-22],[97,-19],[31,-12],[58,-41],[7,-12],[-4,-13],[14,-12]],[[19317,96833],[223,-14],[9,-3],[1,-10],[-17,-33],[-25,-24],[-119,-30],[-153,-28],[-32,-13],[2,-8],[13,-10],[25,-12],[119,2],[29,-5],[10,-8],[6,-12],[4,-15],[0,-53],[-6,-30],[-17,-27],[-48,-20],[-86,-26],[-59,-11],[-46,4],[-46,-3],[-202,-48],[-62,-1],[-55,12],[-75,46],[-78,18],[-34,21],[-33,11],[-9,16],[-3,13],[6,11],[14,10],[4,9],[-13,25],[-6,24],[-22,35],[-4,20],[0,13],[4,14],[15,25],[8,5],[46,4],[60,13],[139,37],[305,47],[93,-4],[40,9],[75,4]],[[17902,96407],[21,-23],[2,-9],[-10,-9],[-33,-15],[-164,-51],[-32,-24],[12,-20],[59,-41],[60,-35],[13,-18],[-28,-17],[-55,5],[-20,-1],[-20,-8],[6,-16],[60,-52],[20,-28],[0,-14],[-11,-14],[-26,-19],[-40,-25],[-68,-19],[-148,-26],[-5,-21],[1,-15],[-3,-38],[-6,-18],[-17,-29],[-13,-14],[-22,-9],[-32,-6],[-40,0],[-67,26],[-30,16],[-42,35],[-8,24],[5,28],[11,45],[18,46],[25,46],[8,29],[-10,12],[-18,0],[-54,-19],[-35,-7],[-27,-13],[-20,-21],[-11,-22],[-6,-43],[-10,-23],[-29,-13],[-44,0],[-17,-7],[-8,-16],[6,-12],[43,-27],[6,-30],[-6,-18],[-46,-33],[-11,-11],[-29,-52],[-11,-13],[-24,-12],[-24,1],[-23,19],[-33,36],[-22,31],[-12,26],[-9,11],[-16,-8],[-19,-26],[0,-21],[4,-31],[-1,-19],[-28,-23],[4,-10],[49,-28],[6,-12],[0,-19],[-3,-9],[-20,1],[-16,-22],[-19,-17],[-49,-33],[-69,-4],[-57,-16],[-12,1],[-14,26],[-15,50],[-14,29],[-20,15],[-26,58],[-12,18],[-11,8],[-10,2],[-15,-12],[-33,-82],[-54,-21],[-29,-4],[-30,2],[-74,23],[-60,8],[-41,-9],[-68,-34],[-27,-9],[-37,4],[-16,13],[-14,21],[-1,12],[10,5],[17,24],[0,9],[-17,14],[0,11],[6,7],[-2,6],[-8,3],[-17,-3],[-61,-16],[7,17],[29,37],[71,72],[26,21],[16,6],[209,24],[15,7],[99,97],[28,22],[29,18],[143,58],[13,14],[22,40],[13,10],[31,16],[102,82],[94,59],[47,37],[65,37],[75,16],[227,28],[163,-37],[38,-2],[19,10],[17,17],[25,-7],[60,-5],[14,4],[25,19],[-17,11],[-73,19],[-5,10],[2,9],[26,23],[31,14],[90,11],[41,-3],[43,-15],[55,-32],[127,-56]],[[19919,95654],[35,-1],[41,6],[46,-4],[21,-13],[15,-23],[0,-13],[-3,-10],[-6,-9],[-60,-58],[-14,-20],[19,-5],[10,3],[59,44],[45,13],[34,4],[57,-9],[22,-8],[15,-8],[9,-11],[22,-41],[16,-54],[2,5],[1,31],[3,23],[55,16],[1,5],[-20,13],[-16,18],[-12,33],[4,12],[12,14],[35,28],[42,17],[36,4],[137,-29],[54,-25],[21,-12],[8,-9],[12,-28],[23,-78],[-1,-25],[-10,-40],[-44,-76],[-7,-51],[-44,-127],[-31,-35],[-33,-24],[-138,-43],[-104,-43],[-26,-7],[-27,-1],[-86,15],[-99,27],[-57,-7],[-56,-20],[-36,-6],[-33,3],[-33,7],[-44,19],[23,8],[10,10],[-9,10],[-46,14],[-48,-32],[-139,-73],[-187,-25],[-58,-15],[-44,-19],[-22,-16],[-35,-38],[-53,-28],[-96,-31],[-123,-48],[-220,-49],[-138,-8],[-138,16],[-44,13],[-46,21],[-93,49],[-26,17],[-31,39],[18,25],[50,30],[75,26],[150,36],[135,58],[49,11],[130,9],[66,-5],[48,3],[31,8],[47,20],[68,42],[50,39],[12,18],[-16,17],[-25,2],[-81,-40],[-41,-13],[-44,-1],[-61,-14],[-60,-5],[-11,0],[-62,39],[-33,6],[-16,-4],[-14,-10],[-26,-28],[-16,-10],[-27,-8],[-107,-8],[-104,-14],[-23,9],[-14,16],[-3,10],[-1,33],[-7,14],[9,28],[12,21],[14,15],[71,43],[10,11],[-34,-2],[-80,-21],[-11,7],[-18,24],[-9,2],[-11,-10],[-6,-14],[-13,-58],[-13,-30],[-32,6],[-40,18],[-15,3],[-9,-6],[3,-10],[41,-50],[0,-17],[-26,-31],[-114,-51],[-44,-13],[-16,5],[-14,14],[-13,22],[-29,31],[-18,7],[-19,1],[-18,-7],[-17,-13],[-10,-15],[-10,-26],[-20,-21],[-13,-3],[-115,42],[-93,75],[-101,-11],[-46,2],[-138,28],[-17,17],[-10,22],[1,12],[6,12],[17,25],[35,37],[15,12],[21,10],[29,8],[73,4],[189,2],[37,5],[206,72],[24,12],[30,23],[7,10],[-1,6],[-254,-57],[-109,-12],[-166,9],[-31,9],[-8,16],[35,42],[18,16],[48,15],[114,21],[154,19],[100,0],[84,15],[51,17],[-170,-1],[-204,-8],[-30,5],[-58,23],[-3,16],[23,19],[9,15],[-17,33],[5,13],[38,27],[68,29],[42,5],[81,-11],[230,-10],[45,4],[-28,13],[-40,9],[-178,17],[-37,7],[-7,10],[-3,15],[2,19],[13,20],[55,42],[162,35],[64,5],[65,-3],[65,-15],[29,-14],[15,-16],[7,-16],[1,-26],[3,-11],[12,-17],[37,-42],[28,-13],[128,24],[53,6],[54,-8],[78,-24],[101,-75],[130,-77],[-1,-16],[-49,-26],[-10,-11],[7,-7],[50,-5],[46,4],[45,-6],[10,-7],[16,-28],[23,-49],[27,-37],[31,-24],[31,-13],[45,-1],[46,8],[74,-3],[381,-28],[23,5],[16,15],[9,26],[4,22],[-5,29],[-8,14],[-236,94],[-21,38],[116,54],[8,12],[2,17],[-4,21],[-15,21],[-62,39],[-55,6],[-82,38],[-12,10],[-11,15],[-8,21],[1,16],[11,12],[80,39],[33,21],[100,98],[46,39],[33,19],[34,11],[74,5],[77,-36],[17,-2],[7,-10],[-3,-17],[-10,-16],[-27,-29],[-7,-12],[2,-13],[19,-29],[6,-19],[4,-32],[3,-5],[47,-27],[42,-36],[20,-55],[-16,-19],[-35,-27],[-21,-22],[-7,-18],[5,-10],[27,-6]],[[24119,94562],[109,-27],[53,-18],[26,-12],[50,-40],[25,-12],[97,24],[68,8],[151,-10],[127,-34],[48,-24],[28,-23],[-7,-26],[-24,-41],[-27,-38],[-56,-61],[-47,-31],[-11,-14],[-8,-21],[-18,-29],[-50,-65],[-14,-11],[-71,-28],[25,-12],[11,-11],[-10,-29],[-45,-69],[-46,-63],[-33,-39],[-59,-55],[-32,-15],[-44,-5],[-263,48],[-66,-1],[-176,-25],[17,-12],[64,-19],[41,-20],[55,-63],[8,-16],[3,-18],[-2,-36],[-4,-9],[-87,-97],[-29,-71],[-18,-58],[-29,-16],[-98,24],[-32,0],[-110,-17],[-52,8],[8,88],[-8,95],[-16,90],[-82,161],[-9,29],[-6,31],[-3,33],[0,33],[6,67],[0,34],[-4,88],[-11,132],[-1,47],[1,19],[3,14],[18,19],[34,13],[17,2],[108,-40],[50,-13],[33,0],[2,5],[-30,8],[-27,18],[-46,51],[-20,44],[-5,14],[-1,16],[3,15],[6,15],[23,22],[18,10],[68,26],[69,15],[151,11],[42,-8],[66,29],[38,6],[67,-10]],[[22933,91959],[9,-7],[16,6],[12,19],[8,4],[12,-4],[39,-34],[29,-35],[32,-25],[50,-23],[110,-73],[32,-49],[34,-77],[31,-58],[26,-41],[29,-32],[46,-36],[41,26],[18,7],[15,-11],[14,-27],[-7,-12],[-18,-16],[-29,-17],[-42,-2],[-20,-5],[-32,-28],[-26,-35],[-36,-11],[-67,-57],[-37,-22],[-55,-5],[-114,44],[-71,-6],[-58,9],[-64,48],[-51,26],[-97,39],[-6,6],[-4,13],[-2,20],[-5,14],[-6,7],[-16,-1],[-15,-14],[-30,-11],[-46,2],[-20,9],[-15,12],[-8,15],[-1,17],[-5,13],[-7,9],[-16,0],[-26,-8],[-10,-11],[5,-13],[-4,-8],[-46,0],[-18,8],[-34,24],[-15,24],[-19,43],[2,11],[12,26],[16,19],[103,10],[48,11],[53,29],[61,52],[13,15],[1,11],[-4,12],[-19,30],[-7,20],[6,9],[25,1],[-13,12],[-11,16],[-4,10],[1,16],[19,4],[24,-8],[47,-47],[18,-9],[32,-7],[-34,32],[-35,67],[-4,24],[1,13],[9,36],[8,14],[11,10],[33,21],[53,14],[28,2],[27,-11],[24,-23],[54,-37],[8,-15],[-1,-7],[-20,-10],[-3,-9],[8,-14]],[[18188,93659],[18,-7],[32,6],[47,19],[60,15],[74,13],[19,-15],[12,3],[22,24],[4,16],[-3,18],[1,40],[12,23],[44,50],[23,18],[37,9],[89,-6],[84,-28],[112,-28],[165,-71],[52,-30],[5,-26],[-29,-55],[-71,-79],[-57,-28],[-22,-18],[37,-12],[24,-20],[36,29],[27,33],[38,27],[13,3],[3,-6],[-7,-14],[-2,-14],[1,-13],[4,-8],[23,-4],[13,5],[50,38],[49,59],[75,38],[20,19],[65,16],[-1,12],[3,44],[-22,19],[-77,40],[-37,48],[8,37],[42,-5],[115,-4],[24,-5],[111,-62],[39,-39],[31,-19],[65,-28],[22,-23],[16,-9],[5,-10],[-5,-10],[-2,-23],[12,-8],[42,-9],[12,-9],[16,-30],[19,-50],[17,-55],[27,-103],[54,-137],[18,-86],[7,-16],[12,-11],[34,-16],[27,-22],[31,-7],[7,2],[8,19],[20,31],[94,59],[5,9],[-11,14],[-3,9],[1,7],[20,5],[-66,75],[-43,71],[-27,89],[-4,25],[-4,55],[-9,15],[-15,13],[-6,17],[2,21],[-3,18],[-17,37],[-67,261],[0,26],[9,19],[24,11],[38,2],[13,6],[-15,10],[-25,27],[-3,13],[17,26],[86,-11],[62,-24],[106,-55],[11,3],[12,28],[22,17],[34,-6],[96,-40],[112,-71],[74,-36],[53,-48],[35,-45],[23,-35],[1,-13],[-5,-14],[5,-19],[16,-22],[8,-20],[7,-43],[15,-56],[3,-28],[99,-250],[19,-45],[12,-20],[69,-97],[37,-70],[3,-48],[5,-13],[2,-22],[-2,-30],[-8,-25],[-14,-22],[-14,-30],[-22,-67],[-1,-16],[15,-23],[97,-79],[59,-95],[28,-16],[74,-59],[81,-34],[27,-15],[26,-21],[7,-1],[16,4],[4,6],[1,9],[-22,45],[-2,17],[11,3],[83,-76],[45,-31],[61,-32],[105,-74],[15,-6],[57,7],[15,-5],[10,-7],[4,-10],[2,-44],[16,-21],[90,9],[25,-2],[16,-7],[13,-14],[20,-47],[17,-92],[1,-33],[-8,-56],[-13,-20],[-17,-7],[-48,7],[-33,17],[-18,23],[-16,48],[-7,10],[-7,-10],[-16,-45],[-10,-19],[-13,-14],[-24,4],[-35,19],[-66,50],[-23,12],[-15,-2],[-31,-17],[-49,-31],[-20,-23],[8,-15],[6,-19],[3,-22],[-2,-17],[-6,-10],[-16,-13],[-34,-2],[-49,9],[-39,18],[-68,46],[-15,6],[-21,-10],[-8,-14],[13,-19],[34,-24],[42,-41],[11,-8],[11,0],[4,-7],[5,-22],[-2,-38],[-21,-76],[-2,-18],[9,4],[57,75],[29,21],[65,32],[27,24],[82,7],[30,-13],[18,-23],[1,-10],[-21,-27],[-4,-14],[-1,-17],[2,-15],[5,-13],[14,-13],[26,6],[8,-4],[14,-13],[9,-20],[0,-29],[-19,-62],[-34,-21],[-105,-37],[-36,-20],[-70,-14],[-26,-18],[-17,-5],[-74,2],[-85,-11],[-98,23],[-69,10],[-79,36],[-30,-9],[-31,-24],[-148,28],[-18,20],[6,14],[35,42],[2,9],[-1,8],[-68,7],[-75,23],[-75,11],[-57,-3],[-37,8],[-36,19],[-19,17],[-4,16],[0,17],[3,34],[-5,24],[-16,18],[-34,17],[-33,-2],[-28,-18],[-26,-35],[-50,-96],[-24,-16],[-65,-70],[-24,-17],[-117,-27],[-140,-11],[-52,-22],[-49,-40],[-60,-39],[-146,-48],[-135,-27],[-142,-12],[-105,-18],[-31,9],[-47,-3],[-51,-27],[-57,-5],[-219,-10],[-100,-17],[-55,-5],[-44,2],[-30,8],[-28,23],[-30,37],[-60,97],[-17,41],[6,70],[-4,40],[-20,88],[-4,7],[-105,33],[-70,10],[-104,2],[-128,-4],[-127,10],[-68,12],[-67,19],[-114,51],[-7,5],[-8,17],[-12,28],[-28,37],[-78,82],[-31,49],[-5,13],[-7,36],[-10,59],[-3,36],[9,22],[7,5],[162,43],[284,47],[261,32],[118,-3],[69,-15],[70,-7],[126,-3],[160,-22],[31,2],[72,15],[21,12],[113,-2],[22,8],[20,13],[-26,25],[-108,55],[-286,97],[-70,21],[-100,22],[-58,3],[-74,-12],[-28,0],[-72,-19],[-69,-12],[-131,-12],[-189,-8],[-26,2],[-39,15],[-28,4],[-185,-11],[-165,15],[-188,149],[-32,46],[7,18],[23,20],[93,58],[34,13],[139,31],[138,38],[110,35],[53,12],[52,2],[42,11],[-9,11],[-34,13],[0,18],[18,9],[69,9],[72,-11],[37,3],[10,13],[-10,9],[-69,21],[-331,-59],[-155,-5],[-107,-26],[-59,1],[-70,25],[-10,8],[-1,10],[22,34],[75,20],[38,57],[-41,1],[-134,-12],[-59,5],[-79,22],[-23,26],[-10,18],[-2,23],[3,63],[6,34],[5,8],[98,105],[62,22],[43,33],[1,13],[-10,14],[-40,34],[-17,17],[-9,17],[7,25],[23,36],[67,57],[162,114],[82,48],[79,26],[110,55],[284,91],[254,92],[93,-24],[27,-19],[12,-16],[10,-23],[9,-29],[12,-63],[1,-32],[-2,-33],[-6,-29],[-9,-27],[-19,-32],[-29,-38],[-60,-65],[-7,-19]],[[16740,94534],[2,-2],[71,53],[44,3],[30,-5],[10,-6],[6,-11],[3,-23],[2,-58],[4,-7],[9,3],[16,14],[78,85],[33,23],[23,7],[96,13],[65,0],[71,-8],[54,-12],[88,-35],[69,-40],[63,-43],[212,-161],[90,-47],[35,-27],[15,-20],[13,-25],[4,-23],[-5,-21],[-10,-15],[-21,-13],[-130,-54],[-69,-16],[-67,-24],[-162,-84],[-111,-40],[-144,-78],[-272,-126],[-32,-25],[-15,-18],[-77,-143],[-29,-33],[-71,-34],[-89,-9],[-25,-9],[-5,-50],[-32,-82],[-15,-55],[-22,-148],[-5,-15],[-16,-28],[-28,-29],[-86,-35],[-64,-18],[-86,-15],[-21,10],[-21,24],[-22,2],[-13,-4],[-114,-103],[-109,-41],[-47,-38],[-33,-18],[-27,-5],[-44,3],[-32,17],[-29,27],[-22,28],[-56,118],[-24,40],[-21,20],[-55,72],[-15,14],[-209,91],[-101,51],[-25,18],[-23,11],[-130,-7],[-18,2],[-4,8],[15,27],[6,16],[2,17],[-2,27],[2,4],[49,27],[-8,5],[-5,10],[-4,15],[5,11],[15,6],[17,24],[21,43],[15,24],[22,16],[38,41],[27,17],[23,21],[1,9],[-10,8],[-3,16],[5,50],[-1,25],[5,22],[8,17],[11,11],[97,37],[4,10],[2,12],[-3,14],[-5,9],[-15,8],[-26,2],[-23,21],[-5,10],[9,29],[44,45],[14,22],[48,101],[86,63],[23,67],[65,72],[0,10],[-21,24],[-60,17],[-29,26],[-19,29],[-87,170],[-15,13],[-5,20],[-18,13],[4,12],[341,51],[235,16],[243,44],[68,2],[52,-8],[52,-23],[69,-40],[90,-39],[170,-58],[106,-12],[-42,-45],[-6,-14],[0,-10]],[[34402,78779],[-6,-5],[-19,8],[9,18],[7,5],[9,2],[4,-5],[-1,-13],[-3,-10]],[[23742,95477],[-27,0],[-35,12],[-10,12],[-8,17],[-5,22],[-7,18],[-10,13],[-2,10],[6,9],[11,5],[27,2],[57,22],[11,-2],[8,-12],[7,-31],[9,-19],[22,-34],[10,-22],[-2,-6],[-7,-6],[-55,-10]],[[27949,81769],[-12,-4],[-26,4],[-22,15],[-13,18],[86,51],[18,-6],[0,-10],[-13,-27],[-3,-18],[-6,-14],[-9,-9]],[[28103,84184],[-14,-8],[-10,1],[2,19],[14,38],[8,34],[2,28],[6,25],[10,22],[11,11],[15,-1],[4,-70],[-5,-32],[-10,-28],[-14,-22],[-19,-17]],[[28073,84254],[-23,-58],[-18,-56],[-25,-106],[-15,-3],[-13,25],[37,123],[1,14],[-1,12],[-11,18],[-11,-21],[-52,-139],[-13,-22],[-11,-13],[-9,-2],[-22,3],[-44,-40],[74,165],[1,13],[-14,8],[-6,-5],[-60,-104],[-34,-40],[-23,13],[-6,10],[2,13],[59,104],[54,75],[22,48],[9,44],[4,33],[0,36],[3,10],[3,-2],[3,-14],[1,-38],[-12,-77],[-10,-38],[-12,-32],[5,-7],[22,18],[18,38],[15,57],[9,50],[10,80],[3,-3],[4,-16],[10,-11],[15,-7],[9,-10],[6,-26],[7,-12],[23,-10],[9,-8],[6,-29],[-1,-16],[3,-9],[7,-5],[-8,-31]],[[27814,84547],[-7,-10],[-14,11],[0,29],[13,22],[10,-1],[10,-12],[-3,-15],[-9,-24]],[[27856,84974],[-4,-5],[-12,4],[-5,-38],[-4,-3],[-9,23],[7,20],[-1,14],[2,10],[12,23],[7,5],[4,-2],[4,-29],[-1,-22]],[[27784,84220],[-14,-4],[-17,8],[9,42],[14,18],[36,17],[7,11],[11,6],[17,0],[19,15],[21,32],[7,4],[-14,-46],[-16,-34],[-80,-69]],[[27698,86188],[-9,-2],[-2,7],[7,24],[12,3],[13,26],[12,-9],[-4,-15],[-16,-22],[-13,-12]],[[27795,82548],[-1,-17],[-18,3],[-9,10],[-8,15],[-2,12],[7,11],[21,-7],[10,-27]],[[27760,86273],[-29,-4],[13,34],[10,16],[12,11],[24,4],[16,-14],[-15,-25],[-31,-22]],[[27911,84479],[-9,-7],[-7,0],[7,51],[-8,18],[-1,9],[4,9],[5,2],[11,-16],[6,-17],[2,-16],[0,-16],[-4,-11],[-6,-6]],[[23116,93857],[-45,-6],[-41,40],[-2,38],[3,21],[5,18],[15,16],[43,18],[19,-13],[7,-17],[6,-6],[28,-14],[13,-16],[-2,-19],[-8,-28],[-10,-18],[-11,-8],[-20,-6]],[[22957,94772],[-84,-34],[-18,13],[-8,12],[65,53],[28,14],[27,-16],[7,-13],[-3,-9],[-14,-20]],[[22702,94394],[-80,-13],[-36,6],[-20,-16],[-15,-7],[-44,-3],[-90,29],[-24,10],[-9,9],[4,9],[16,9],[69,12],[25,10],[11,13],[17,11],[24,8],[65,8],[146,41],[72,5],[28,-3],[9,-11],[2,-10],[-4,-11],[-22,-28],[-30,-21],[-79,-46],[-35,-11]],[[24944,91831],[6,-36],[-24,-49],[-8,-8],[-10,-4],[-9,6],[-28,38],[-8,24],[10,12],[22,15],[15,7],[20,-6],[6,10],[8,-9]],[[24863,91716],[-23,-6],[-14,24],[-12,5],[-5,16],[-24,3],[2,25],[7,12],[22,10],[17,-4],[17,-25],[8,-20],[7,-25],[-2,-15]],[[29444,87913],[-15,-5],[-55,7],[-69,27],[-35,25],[2,8],[15,4],[18,-4],[29,-17],[80,-9],[25,-10],[8,-16],[-3,-10]],[[29199,91214],[-21,-4],[-32,36],[-66,40],[-25,30],[-1,14],[2,22],[8,27],[23,30],[24,5],[35,-7],[25,-21],[27,-59],[19,-29],[5,-21],[-9,-10],[1,-10],[4,-6],[-1,-11],[-8,-16],[-10,-10]],[[28185,86824],[-38,-6],[0,8],[16,24],[59,20],[44,6],[-10,-20],[-26,-16],[-45,-16]],[[28060,91124],[-23,-6],[-30,30],[0,17],[6,41],[55,10],[24,-24],[11,-24],[-43,-44]],[[28700,88360],[-29,-6],[-38,13],[-38,25],[-85,80],[64,54],[102,-63],[31,-40],[-7,-63]],[[31993,87879],[53,-6],[33,2],[14,-9],[13,-28],[-17,-40],[-19,-16],[-31,-4],[-50,13],[-17,8],[-16,22],[7,15],[25,5],[4,7],[-6,12],[0,10],[7,9]],[[32588,90469],[-34,-15],[-19,19],[13,6],[19,23],[26,20],[11,17],[43,8],[15,-1],[5,-6],[-24,-26],[-55,-45]],[[31046,86544],[-25,-5],[-12,12],[0,35],[8,26],[29,55],[25,62],[15,14],[31,-10],[18,-17],[18,-30],[8,-22],[-7,-34],[-22,-29],[-25,-21],[-61,-36]],[[30462,87873],[-20,-2],[-37,4],[-40,12],[-23,14],[-19,29],[-4,33],[-38,48],[-42,16],[-23,33],[24,3],[34,-8],[49,-14],[45,-19],[64,-42],[21,-40],[21,-28],[7,-22],[-6,-10],[-13,-7]],[[31991,87192],[-7,-7],[-6,2],[-21,30],[-28,13],[-10,12],[-84,63],[-9,28],[-2,22],[28,11],[56,10],[49,-1],[46,-13],[9,-14],[24,-26],[-6,-30],[-2,-40],[-10,-19],[-15,-14],[-12,-27]],[[31134,91901],[-7,-4],[-72,26],[-6,21],[36,24],[29,12],[22,2],[22,-4],[21,-25],[-25,-23],[-20,-29]],[[27936,92043],[11,-33],[7,-11],[-11,-15],[-41,-31],[-92,-13],[-46,14],[22,-44],[4,-19],[-6,-8],[-20,2],[-31,13],[-19,15],[-4,18],[-7,4],[-9,-10],[-8,2],[-19,27],[-14,9],[-92,16],[-4,7],[5,12],[14,18],[20,5],[52,-7],[4,4],[4,22],[4,9],[36,-3],[22,5],[13,-11],[12,-26],[17,5],[26,-4],[28,9],[43,23],[33,9],[46,-13]],[[28325,92001],[14,-29],[3,-15],[-20,-17],[-74,-33],[-46,-28],[-22,-7],[-31,7],[-37,-14],[-15,2],[17,23],[58,67],[49,7],[16,14],[14,-5],[8,12],[1,17],[17,13],[16,0],[32,-14]],[[28432,88704],[-20,-26],[-59,9],[-8,8],[-2,10],[9,12],[61,12],[26,1],[14,-4],[1,-4],[-22,-18]],[[26910,90024],[28,-7],[21,1],[4,-9],[-22,-28],[-13,-5],[-25,20],[-18,25],[-5,15],[-2,16],[4,3],[28,-31]],[[27997,91500],[-19,-4],[-23,11],[-8,19],[-4,19],[4,10],[10,9],[13,21],[18,32],[27,22],[60,21],[8,7],[27,58],[9,9],[30,6],[3,8],[-10,14],[0,14],[10,15],[15,12],[39,10],[35,-2],[9,-4],[7,-10],[11,-27],[1,-6],[-16,-24],[-42,-36],[-26,-31],[-5,-10],[-3,-13],[-9,-15],[-31,-38],[-20,-36],[-21,-20],[-56,-19],[-43,-22]],[[28612,91672],[-35,-7],[-26,4],[-17,13],[-13,19],[-16,46],[6,22],[2,38],[3,15],[6,7],[37,14],[21,-2],[32,-15],[69,-4],[18,-14],[4,-8],[-1,-10],[-4,-12],[-34,-35],[-17,-24],[-12,-29],[-23,-18]],[[31936,87487],[6,-5],[7,6],[6,-5],[4,-16],[6,-12],[17,-14],[5,-11],[0,-11],[-14,-16],[-9,0],[-66,37],[-18,39],[-1,19],[7,18],[10,8],[13,0],[16,-10],[11,-27]],[[25857,92230],[32,-4],[30,5],[22,-5],[13,-16],[9,-17],[5,-18],[-12,-13],[-49,-11],[-34,6],[-35,15],[-17,-7],[-41,11],[-20,14],[-17,21],[0,13],[43,14],[17,12],[54,-20]],[[26743,89744],[35,-23],[36,-13],[57,-6],[8,-5],[0,-11],[-8,-16],[-19,-22],[-14,0],[-31,15],[-12,7],[-13,17],[-6,2],[-9,-6],[-2,-7],[4,-10],[-5,-2],[-39,6],[-6,6],[3,18],[27,27],[-23,8],[-8,10],[-35,-17],[-19,-4],[-30,12],[-4,60],[-3,23],[-14,15],[-9,16],[-13,12],[-27,12],[-23,30],[-4,14],[3,10],[13,14],[79,-30],[48,-29],[46,-36],[23,-26],[2,-17],[-5,-17],[-14,-17],[11,-20]],[[25945,90861],[-11,-1],[-19,9],[-43,35],[-9,15],[-4,17],[0,21],[3,20],[14,42],[-26,33],[-6,19],[3,10],[14,26],[4,16],[14,22],[37,44],[37,-10],[32,-36],[9,-24],[-3,-26],[3,-37],[8,-49],[3,-36],[-4,-22],[-14,-41],[-12,-20],[-16,-18],[-14,-9]],[[26479,89616],[-15,-6],[-15,3],[-13,17],[-11,30],[-17,22],[-39,28],[-7,11],[-11,37],[-2,37],[-9,34],[0,16],[7,25],[33,6],[26,-10],[5,-7],[8,-14],[6,-18],[31,-47],[18,-38],[25,-78],[0,-15],[-7,-16],[-13,-17]],[[24154,87467],[-11,-1],[-26,29],[-5,15],[33,9],[23,-26],[-2,-12],[-12,-14]],[[21603,95630],[58,-35],[3,-9],[-11,-6],[-75,-19],[-29,-15],[-25,-35],[-19,-16],[-101,-10],[-103,1],[20,33],[56,56],[-44,22],[-158,-38],[-60,24],[51,60],[-51,5],[-71,0],[-46,36],[16,42],[94,24],[122,20],[131,31],[103,-3],[40,-14],[14,-49],[12,-59],[18,-5],[55,-41]],[[21881,95955],[-72,-2],[-33,6],[-2,11],[29,13],[95,22],[57,39],[21,5],[73,6],[43,-1],[55,-10],[-132,-49],[-134,-40]],[[21105,95957],[13,-3],[43,12],[27,2],[30,-22],[8,-14],[110,-36],[38,-16],[5,-10],[-13,-15],[-33,-20],[-31,-13],[-44,-11],[-222,-2],[-24,5],[-14,18],[-28,65],[-19,36],[-8,24],[5,14],[24,13],[82,21],[36,0],[23,-5],[9,-11],[-3,-14],[-14,-18]],[[21388,96858],[-32,-12],[-37,7],[-6,7],[0,9],[3,10],[42,36],[38,12],[23,3],[18,-13],[10,-18],[-59,-41]],[[21752,96599],[-39,-6],[-69,3],[-83,21],[-22,24],[-5,38],[1,22],[7,4],[51,5],[96,6],[78,-5],[88,-22],[36,-14],[18,-10],[22,-20],[8,-8],[5,-16],[-110,-4],[-52,-6],[-30,-12]],[[25076,95914],[-13,-8],[-42,4],[-14,-8],[-22,5],[-31,16],[-36,32],[-41,48],[-32,41],[-1,12],[10,19],[32,13],[76,15],[52,0],[48,-31],[14,-11],[8,-13],[1,-12],[-4,-11],[-22,-24],[-10,-16],[0,-17],[5,-23],[9,-16],[13,-8],[0,-7]],[[23311,95339],[-21,-19],[-23,-1],[-30,18],[-32,-7],[-45,-36],[-16,-22],[-12,-7],[-37,-7],[-16,6],[-15,19],[-14,32],[10,24],[35,16],[93,27],[26,13],[3,14],[6,9],[8,4],[62,-23],[29,-16],[22,-18],[-2,-8],[-31,-18]],[[23526,94760],[-13,-2],[-25,3],[-93,26],[-16,10],[-4,8],[21,9],[8,10],[23,12],[42,0],[44,-29],[21,-27],[1,-12],[-9,-8]],[[18380,96632],[-76,-19],[-51,0],[-89,28],[-103,84],[-14,30],[39,5],[28,9],[17,13],[34,15],[76,21],[10,-8],[-2,-18],[6,-16],[28,-4],[26,-11],[53,-36],[36,-7],[13,-8],[6,-12],[22,-21],[0,-11],[-30,-22],[-29,-12]],[[16368,95475],[-22,-3],[-24,6],[5,15],[54,41],[3,11],[0,9],[-7,11],[14,15],[22,5],[7,-5],[2,-12],[-5,-36],[-6,-18],[-10,-14],[-14,-14],[-19,-11]],[[18455,96049],[-42,-18],[-289,27],[-15,9],[-8,12],[52,33],[64,14],[146,11],[51,-13],[34,-15],[19,-12],[8,-24],[-20,-24]],[[21078,95066],[-53,-3],[-90,18],[-54,33],[-17,16],[2,8],[9,7],[13,22],[31,63],[12,17],[48,36],[36,10],[75,-3],[44,-19],[18,-12],[13,-15],[13,-32],[3,-21],[22,-24],[7,-14],[0,-14],[-6,-14],[-12,-13],[-29,-21],[-85,-25]],[[34594,81530],[-20,-58],[-14,-28],[-13,-9],[-28,-8],[-59,-9],[-25,-8],[-3,-39],[4,-20],[8,-16],[11,-4],[24,9],[9,-1],[7,-8],[6,-15],[3,-20],[0,-25],[-4,-31],[-20,-73],[-25,-40],[-33,-33],[-7,-12],[-5,-15],[-4,-48],[-16,-38],[-52,-96],[-20,-22],[0,-17],[-8,-46],[-16,-36],[-43,-85],[-10,-30],[-5,-24],[1,-33],[-2,-15],[-10,-28],[-14,-27],[-3,-13],[6,-23],[5,-8],[1,-22],[-4,-34],[18,22],[40,78],[31,47],[20,16],[15,21],[15,46],[20,44],[19,15],[9,-9],[7,-21],[-1,-28],[-10,-33],[0,-10],[24,24],[41,21],[15,-3],[30,-30],[26,3],[40,18],[7,-8],[-7,-27],[-15,-26],[-37,-36],[-90,-72],[-28,-49],[5,2],[20,21],[20,11],[21,2],[9,-7],[-3,-14],[-3,-37],[-54,-74],[13,3],[62,33],[39,-46],[52,16],[31,16],[0,-10],[6,-20],[0,-33],[3,-5],[15,11],[3,12],[-1,58],[5,6],[10,-9],[6,-15],[2,-42],[-7,-43],[-9,-39],[-23,-57],[3,-24],[-6,-27],[5,-1],[23,25],[1,10],[-2,24],[3,11],[19,26],[31,31],[11,4],[4,-7],[-2,-19],[10,5],[20,28],[18,16],[17,6],[18,19],[19,32],[20,27],[21,21],[9,2],[-3,-35],[4,-40],[1,-34],[4,-7],[17,36],[9,13],[11,6],[12,-3],[87,13],[27,-9],[30,-24],[37,-36],[14,-33],[3,-42],[-4,-29],[-27,-37],[-24,-24],[-14,-24],[-5,-25],[-5,-15],[-16,-20],[-72,-59],[17,-2],[41,13],[28,3],[1,-9],[-11,-16],[-21,-17],[-2,-8],[1,-11],[22,-12],[29,6],[24,-9],[-3,-14],[-19,-46],[-5,-28],[-26,-25],[-50,-37],[-13,-15],[3,-3],[46,28],[24,7],[14,0],[17,27],[26,9],[26,-17],[39,46],[14,6],[24,-5],[15,8],[26,32],[20,15],[4,-1],[4,-13],[2,-36],[-5,-32],[-6,-21],[-21,-45],[-13,-16],[-12,-6],[-21,2],[-9,-7],[-20,-35],[-35,-36],[-22,-14],[14,-20],[5,-37],[-8,-12],[-37,-12],[-2,-6],[-13,-8],[-31,-13],[21,-6],[39,9],[4,-6],[-5,-27],[-11,-27],[-46,-70],[0,-7],[7,-35],[9,-26],[11,-18],[26,-1],[19,8],[27,47],[62,146],[55,41],[45,45],[11,-9],[5,-11],[-2,-11],[-23,-37],[-12,-31],[-31,-94],[-12,-45],[-6,-47],[1,-81],[4,-14],[9,-19],[19,17],[31,40],[20,38],[15,63],[10,24],[10,-1],[10,-13],[2,-30],[8,-42],[6,-41],[-4,-46],[-5,-25],[-63,-186],[6,-33],[2,-20],[-2,-22],[-20,-89],[-19,-55],[-11,-24],[-12,-15],[-15,-5],[-13,8],[-11,21],[-10,11],[-9,1],[-17,-4],[-42,-45],[-9,-3],[-6,6],[-8,24],[6,120],[4,40],[-9,30],[9,52],[1,19],[-6,7],[-10,-4],[-17,-26],[-22,-47],[-23,-42],[-42,-57],[-18,-11],[-8,2],[-8,8],[-12,24],[1,22],[5,29],[17,68],[34,101],[28,72],[5,31],[-7,13],[-7,27],[-11,78],[-13,64],[-16,28],[-41,32],[-7,-8],[-4,-43],[-48,-124],[-8,-54],[-6,-20],[-9,-14],[-21,-17],[6,29],[22,64],[-3,6],[-28,-51],[-21,-29],[-26,-7],[-16,2],[-15,-8],[-65,-121],[-3,-41],[-11,-33],[-32,-60],[-17,-21],[-24,-4],[-21,11],[-15,-2],[-33,-19],[-38,-8],[-16,4],[-10,7],[-19,24],[-2,16],[1,10],[10,25],[22,32],[18,11],[45,16],[33,24],[25,35],[12,21],[47,110],[60,39],[29,31],[21,40],[3,14],[-30,-20],[-15,-5],[-25,7],[-11,14],[-34,-4],[-47,6],[-7,-10],[-6,-54],[-6,-28],[-7,-9],[-11,-6],[-21,-6],[-55,19],[-11,11],[-14,8],[-60,-18],[-13,2],[12,12],[60,40],[6,112],[-3,18],[-17,-16],[-28,-16],[-20,5],[-9,10],[-8,-9],[-19,-59],[-12,-7],[-17,-3],[-38,-21],[-73,-15],[-14,-15],[-49,5],[-145,33],[-52,-3],[-62,20],[-12,8],[-87,-3],[-26,4],[2,25],[-3,6],[-25,-27],[-23,-18],[-29,-15],[-91,-26],[-49,-6],[-28,18],[-11,19],[-17,59],[-12,74],[0,13],[6,26],[19,36],[87,94],[69,96],[30,49],[28,18],[46,41],[2,5],[-45,-5],[-32,11],[-32,5],[-62,-11],[-62,0],[0,21],[29,40],[62,68],[6,1],[-19,-32],[-5,-24],[8,-16],[9,-10],[36,-4],[8,14],[12,73],[27,85],[14,61],[25,47],[13,7],[11,-9],[37,-11],[38,-43],[12,-3],[4,3],[-14,13],[-11,20],[-5,19],[14,59],[16,17],[3,12],[-32,0],[-26,16],[-8,27],[1,47],[9,28],[21,37],[25,25],[15,-6],[30,-34],[18,10],[-3,10],[-27,53],[-9,39],[1,19],[59,187],[29,100],[40,153],[9,24],[20,45],[9,12],[25,0],[16,6],[-23,19],[-8,14],[-1,15],[6,15],[9,12],[31,24],[22,40],[13,48],[-2,16],[-7,16],[0,9],[17,10],[42,56],[5,11],[16,75],[19,33],[17,17],[28,21],[86,52],[51,46],[34,-3],[10,-32],[49,-21],[9,23],[-12,28],[10,11],[40,10],[7,-4],[12,-16],[-2,-14]],[[34573,81059],[-9,-6],[-9,0],[-8,7],[-1,11],[8,23],[21,12],[17,-3],[-1,-12],[-9,-19],[-9,-13]],[[34846,80408],[-43,-34],[-10,-13],[-12,-7],[-9,11],[-12,35],[2,12],[12,2],[7,-5],[1,-11],[5,-6],[9,0],[32,35],[16,5],[6,-6],[-4,-18]],[[34622,81733],[-14,-1],[-3,7],[6,22],[15,26],[20,7],[-6,-38],[-18,-23]],[[34974,80497],[20,-37],[11,-10],[-72,-41],[-8,-2],[-5,4],[-1,38],[4,29],[5,5],[16,-18],[17,36],[13,-4]],[[34370,78823],[-24,-25],[-9,14],[2,17],[13,39],[-1,11],[-14,76],[2,13],[4,5],[21,-16],[3,-21],[-10,-46],[7,-31],[9,-23],[-3,-13]],[[34937,79171],[-14,-20],[-14,0],[2,18],[17,34],[8,24],[1,15],[3,11],[13,13],[11,23],[-5,-43],[-22,-75]],[[22162,91478],[-9,-18],[-11,-6],[-22,-21],[-8,-3],[-13,14],[-11,22],[-4,3],[-7,0],[-14,-15],[-7,1],[-5,9],[-3,19],[0,29],[7,43],[1,16],[-4,12],[3,12],[10,10],[12,4],[30,-4],[23,-17],[12,-23],[23,-18],[7,-13],[-10,-56]],[[22223,91597],[-6,-34],[-34,9],[-15,12],[-13,28],[-2,8],[3,10],[14,25],[9,9],[23,-11],[10,-14],[8,-23],[3,-19]],[[22136,92451],[-3,-5],[-60,22],[-23,12],[-8,10],[-5,19],[-3,28],[12,14],[27,-1],[28,-11],[44,-31],[-12,-10],[-1,-20],[5,-20],[-1,-7]],[[23468,91920],[37,-39],[0,-19],[-5,-31],[-11,-24],[-16,-16],[-23,-8],[-29,-1],[-13,7],[10,24],[7,8],[1,21],[-5,35],[-6,22],[-16,12],[-12,1],[-3,-12],[5,-23],[-4,-30],[-13,-38],[-9,-17],[-18,9],[-8,14],[2,23],[-4,22],[4,22],[12,34],[17,22],[21,12],[26,-1],[29,-13],[24,-16]],[[21897,91818],[-23,-5],[-4,1],[2,16],[-2,8],[-6,5],[20,13],[3,10],[-7,7],[-27,14],[-8,13],[2,11],[10,10],[19,-2],[41,-18],[19,-26],[8,-20],[-13,-3],[-11,-8],[-11,-16],[-12,-10]],[[21709,91351],[-11,-1],[-16,10],[-90,35],[-11,11],[10,15],[33,19],[22,19],[17,30],[51,-16],[19,-14],[8,-12],[3,-17],[-3,-41],[-17,-9],[-15,-29]],[[20961,91247],[-16,-2],[-28,9],[-43,21],[-31,21],[-21,23],[-3,16],[16,9],[24,4],[57,-3],[28,-8],[36,-34],[7,-19],[2,-12],[-5,-11],[-23,-14]],[[20028,90668],[-14,-48],[-6,5],[-9,23],[-20,11],[-21,25],[0,55],[8,25],[-2,35],[22,21],[16,-25],[5,-42],[-4,-20],[16,-22],[7,-5],[4,-17],[-2,-21]],[[19676,91003],[31,-6],[23,4],[17,-23],[7,-23],[-2,-8],[-8,-4],[-49,26],[-18,16],[-6,14],[5,4]],[[19974,90440],[35,-5],[45,1],[-8,-44],[-17,-29],[-14,-8],[-6,16],[-26,35],[-9,34]],[[19632,91008],[-10,-2],[-38,34],[8,30],[35,-31],[5,-18],[0,-13]],[[33057,84123],[3,-14],[-43,10],[-15,9],[-1,9],[2,15],[8,17],[20,13],[11,-7],[23,-17],[3,-11],[-11,-24]],[[32849,84996],[23,-17],[6,-63],[-44,4],[-50,42],[-10,31],[1,5],[7,5],[13,-7],[12,11],[13,3],[29,-14]],[[30789,85852],[-17,-42],[-23,5],[-8,-8],[-6,-1],[10,39],[1,27],[-5,27],[8,13],[30,1],[0,-31],[4,-11],[7,-6],[-1,-13]],[[56159,86618],[35,-13],[15,5],[17,-30],[-29,-20],[-2,-24],[12,-14],[4,-22],[-29,0],[-13,18],[-6,23],[-13,16],[-18,13],[9,16],[5,24],[13,8]],[[55958,86710],[-4,-27],[-19,3],[-19,-5],[-15,27],[-9,45],[3,9],[12,10],[9,-24],[42,-38]],[[56064,86486],[-28,-20],[-10,5],[3,33],[16,15],[28,2],[-9,-35]],[[32109,86616],[-10,-40],[-32,15],[-50,30],[-20,20],[-7,22],[0,30],[15,5],[37,3],[32,-42],[9,-6],[26,-37]],[[85047,71849],[-4,-14],[-12,4],[-12,40],[-5,31],[-13,18],[20,27],[25,-49],[1,-57]],[[70136,47593],[-6,-23],[-12,-10],[-5,58],[-17,41],[7,0],[15,-21],[6,-56],[5,17],[-1,17],[3,16],[-2,18],[-9,28],[3,5],[13,-23],[2,-19],[-2,-48]],[[11234,46693],[-18,-5],[-3,29],[6,15],[8,7],[13,-9],[8,-12],[-1,-11],[-13,-14]],[[93789,46797],[0,-20],[-16,6],[-36,31],[-1,14],[20,5],[15,-4],[12,-18],[6,-14]],[[55725,86428],[-2,-13],[-23,-3],[-10,12],[-21,-2],[-3,6],[8,12],[17,8],[22,-3],[12,-17]],[[56007,86467],[-24,-6],[-15,17],[6,12],[17,14],[18,-2],[4,-16],[-6,-19]],[[56902,89280],[-42,-19],[-33,12],[-1,37],[21,18],[37,7],[52,-18],[7,-10],[-29,-7],[-12,-20]],[[58321,92048],[-53,-17],[-6,14],[11,22],[14,44],[22,-2],[22,-17],[17,-20],[-27,-24]],[[51377,87030],[-25,-8],[-19,6],[7,55],[10,9],[15,4],[16,-30],[-4,-36]],[[52250,88327],[-27,0],[-32,9],[-21,19],[-3,16],[38,21],[37,12],[18,-23],[1,-37],[-11,-17]],[[52352,88517],[-31,-1],[-20,13],[46,25],[72,25],[6,15],[9,2],[12,-19],[2,-26],[-8,-13],[-88,-21]],[[53474,89805],[-22,-2],[0,23],[13,22],[20,14],[26,4],[29,2],[9,-12],[-17,-16],[-58,-35]],[[53449,89886],[-25,-4],[4,26],[21,24],[8,16],[4,20],[18,14],[26,-19],[1,-31],[-13,-30],[-44,-16]],[[55490,92290],[15,-7],[14,4],[11,-6],[23,-30],[25,-12],[2,-15],[-23,-15],[-31,-4],[-32,5],[-9,19],[-10,31],[-27,31],[-4,27],[23,5],[23,-33]],[[56511,92635],[-6,-18],[-9,-18],[-23,-18],[-66,-74],[-38,-11],[-13,-12],[-15,-7],[-48,10],[-14,-15],[-14,-10],[-34,-4],[-21,4],[-53,27],[-31,29],[-17,26],[49,-1],[17,6],[33,-5],[19,26],[42,-3],[80,18],[29,-10],[67,60],[21,-2],[32,17],[13,-15]],[[55771,92217],[-15,-14],[-23,-5],[-12,8],[-17,6],[-20,-3],[-16,25],[1,20],[23,28],[45,16],[36,-6],[10,-9],[-12,-66]],[[57107,92823],[74,-22],[25,0],[37,-41],[19,4],[-3,-25],[-37,-12],[-58,-7],[-9,-5],[-49,4],[-28,33],[-47,9],[0,11],[30,25],[46,26]],[[56559,92482],[5,-27],[2,-23],[-26,-32],[-59,-42],[3,-11],[-20,-11],[-31,-8],[-17,8],[2,36],[-5,11],[-23,-15],[-24,19],[-1,18],[7,16],[23,25],[37,16],[25,-6],[83,65],[9,-14],[10,-25]],[[56671,92492],[-53,-23],[-31,20],[-13,20],[-1,45],[7,27],[25,15],[16,-11],[4,-8],[29,-9],[34,-28],[-17,-48]],[[53853,91166],[17,-10],[43,3],[8,-4],[-6,-16],[-19,-18],[-39,-11],[-18,-27],[-12,-9],[-34,-1],[-20,-6],[-25,-24],[-20,18],[-5,-13],[-4,-23],[-11,-6],[-34,-9],[-8,53],[16,20],[12,22],[19,4],[17,-2],[30,50],[42,14],[26,1],[25,-6]],[[53603,90941],[-41,-31],[15,56],[22,56],[30,32],[16,-12],[-7,-27],[0,-27],[-7,-13],[-28,-34]],[[54861,91933],[34,-33],[15,10],[29,3],[22,-11],[18,-21],[22,-1],[13,-27],[7,-36],[-16,-27],[-22,-12],[-6,-31],[9,-44],[-49,-15],[-58,-7],[-22,21],[-45,-38],[-46,-60],[-21,-7],[-2,19],[-32,13],[-42,1],[1,14],[8,10],[36,15],[7,30],[-7,54],[7,26],[1,19],[23,21],[77,-10],[9,20],[-6,13],[-39,22],[6,15],[28,14],[28,2],[8,22],[1,10],[4,6]],[[55348,92203],[25,-31],[22,3],[6,12],[15,6],[30,-17],[-4,-28],[-42,-36],[-30,-50],[-38,-12],[-18,6],[-35,-29],[-27,-31],[-28,-38],[-2,-20],[-5,-15],[-104,-15],[-37,-10],[-40,12],[-19,26],[6,14],[40,5],[1,24],[10,14],[13,8],[9,30],[16,8],[30,-7],[20,22],[11,3],[14,-18],[6,25],[-6,23],[3,15],[38,40],[17,29],[24,19],[22,-3],[7,28],[-7,28],[3,18],[20,45],[22,2],[11,-40],[1,-65]],[[54377,91336],[4,-4],[38,56],[41,17],[3,19],[16,19],[-2,31],[9,24],[21,7],[13,8],[15,5],[27,-20],[15,-22],[19,-50],[-8,-48],[-50,-38],[-40,-17],[-41,-43],[-20,-35],[-17,-8],[-11,3],[-10,9],[-21,0],[-22,-31],[-68,-25],[-27,7],[-1,31],[-16,-3],[-26,-36],[-25,-12],[-16,-4],[-31,14],[-83,-63],[-78,-11],[-25,7],[0,38],[50,49],[41,34],[142,23],[88,101],[21,109],[21,39],[-10,23],[-24,4],[-1,34],[12,37],[47,51],[25,22],[42,62],[20,14],[23,0],[23,-16],[-4,-33],[-34,-60],[-50,-51],[6,-37],[20,-30],[5,-51],[1,-50],[-38,-66],[-9,-33]],[[54224,91556],[36,-58],[16,-34],[-13,-64],[-35,-32],[-54,-6],[-38,3],[-24,16],[-3,17],[-14,5],[-37,-22],[-25,-3],[-32,17],[-9,28],[34,35],[16,27],[38,-3],[10,-8],[21,-5],[13,32],[-3,23],[10,15],[46,-11],[0,61],[17,5],[8,-3],[13,-13],[9,-22]],[[53119,89208],[-14,-16],[-33,13],[-63,-10],[-26,15],[20,31],[58,32],[31,-2],[31,-39],[-4,-24]],[[51412,86582],[1,-68],[-25,5],[-12,26],[-3,17],[2,39],[-6,41],[7,20],[10,3],[16,-36],[10,-47]],[[53324,89646],[-18,-18],[-35,5],[-3,15],[9,31],[21,13],[27,-3],[9,-13],[-10,-30]],[[28038,95579],[3,-34],[-20,1],[-65,-22],[-52,-3],[-26,10],[-17,23],[41,43],[47,31],[57,47],[47,30],[23,-6],[22,-16],[-28,-47],[-30,-23],[-2,-34]],[[30092,96385],[-99,-5],[-97,22],[-34,17],[2,27],[14,9],[53,9],[44,2],[29,-4],[70,-16],[50,-16],[33,-5],[-9,-24],[-56,-16]],[[37537,99126],[-56,-10],[-118,61],[-186,61],[-164,40],[-154,107],[-12,38],[21,33],[135,5],[108,15],[274,-66],[138,-56],[46,-45],[-7,-92],[-25,-91]],[[44815,98989],[-29,-18],[-73,7],[-94,52],[-62,43],[-5,50],[32,22],[50,4],[69,-43],[71,-58],[41,-59]],[[45107,97825],[-117,-66],[-174,5],[-103,31],[-30,45],[40,51],[125,41],[156,25],[142,-15],[20,-51],[-59,-66]],[[44723,96758],[-37,-20],[-25,61],[-22,81],[-5,92],[57,45],[29,11],[20,-11],[-5,-40],[0,-82],[19,-55],[-31,-82]],[[44838,95646],[-32,-16],[-108,239],[0,87],[7,66],[49,5],[42,-36],[20,-137],[22,-208]],[[44999,95280],[22,-61],[10,-56],[35,-35],[73,5],[29,-66],[-53,-26],[-214,10],[-88,-5],[-61,41],[2,71],[8,71],[61,41],[51,-36],[62,26],[63,20]],[[45012,96567],[-54,0],[-20,15],[13,27],[75,85],[25,7],[37,-9],[11,-44],[-24,-44],[-63,-37]],[[41679,99979],[267,-35],[141,-40],[30,1],[191,-15],[182,-19],[302,-51],[42,-16],[-32,-14],[-75,-9],[-386,-16],[-700,-21],[-401,-39],[-127,-2],[-11,-59],[54,-3],[89,8],[314,59],[117,9],[219,-5],[285,-22],[114,8],[205,-6],[239,17],[283,37],[77,-82],[104,-81],[83,9],[70,-5],[24,-26],[39,-12],[80,6],[245,-23],[168,-42],[63,-19],[30,-28],[18,-22],[-27,-28],[-105,-49],[-133,-45],[-179,-34],[-207,-22],[-1588,-73],[-54,-17],[-31,-44],[21,-57],[74,-9],[173,32],[300,31],[221,-2],[527,-26],[155,-68],[82,-105],[183,24],[39,18],[29,31],[22,33],[18,36],[19,24],[21,13],[45,11],[105,13],[274,13],[66,-4],[48,-49],[10,-28],[3,-38],[-1,-45],[-6,-55],[-24,-54],[-76,-94],[-61,-52],[-66,-37],[-126,-84],[-44,-23],[-138,-99],[-35,-45],[-2,-34],[24,-6],[40,31],[15,23],[26,23],[205,62],[44,17],[133,74],[86,28],[70,29],[37,20],[206,146],[107,43],[112,0],[20,-73],[135,-12],[59,3],[94,-18],[41,-14],[70,-8],[73,-17],[63,18],[19,12],[62,54],[83,47],[77,59],[26,15],[41,13],[42,5],[115,28],[29,2],[62,-9],[273,-5],[150,-14],[208,-40],[145,-21],[67,-20],[97,-41],[79,-43],[37,-13],[-2,-13],[-27,-19],[-195,-66],[-64,-45],[-185,-83],[-90,-29],[-98,-11],[-109,-2],[-71,-12],[-10,-12],[50,-34],[22,-25],[-3,-22],[-53,-32],[-20,-8],[-192,-24],[-97,-41],[-126,-5],[-89,5],[-123,-44],[48,-36],[44,-16],[137,-32],[1,-19],[-66,-38],[-89,-44],[-105,-31],[-40,-5],[-50,8],[-46,-2],[-101,-14],[-97,-2],[-173,20],[-93,23],[-49,8],[-62,-2],[-24,-9],[-98,-56],[-48,-38],[-31,-39],[-13,-42],[5,-46],[12,-32],[19,-17],[23,-10],[41,-6],[89,6],[35,-3],[11,-10],[19,-29],[-3,-28],[-17,-39],[-12,-45],[-9,-52],[5,-29],[36,-6],[17,2],[19,-9],[23,-21],[17,-22],[11,-23],[-6,-19],[-23,-15],[-52,-17],[-128,-33],[-13,-10],[-10,-21],[-7,-30],[-16,-28],[-23,-25],[-22,-15],[-42,-6],[-54,-1],[-61,-14],[-144,-84],[-2,-9],[54,-27],[-2,-24],[-67,-101],[-18,-50],[-14,-68],[-24,-58],[-33,-47],[-33,-55],[-31,-61],[5,-47],[41,-33],[56,26],[69,86],[74,38],[81,-12],[70,-17],[90,-34],[76,-21],[65,-28],[26,-23],[27,-33],[1,-20],[-48,-12],[-16,4],[-119,54],[-58,14],[-77,-16],[-67,-25],[60,-99],[65,-45],[117,-21],[62,-22],[44,-28],[35,-14],[47,6],[64,28],[88,1],[40,-13],[28,-26],[13,-47],[-3,-70],[-9,-52],[-16,-35],[-32,-47],[-27,-9],[-37,3],[-35,9],[-32,17],[-49,13],[-98,14],[-98,31],[-56,8],[-117,-4],[-127,-20],[-5,-25],[-182,-89],[-37,1],[-50,30],[-71,30],[-41,0],[-62,-38],[-15,-14],[1,-14],[45,-32],[18,-7],[24,-6],[80,-8],[36,-8],[33,-100],[52,-61],[23,-13],[19,-5],[65,3],[83,20],[28,-16],[61,-20],[36,-6],[43,1],[49,-7],[67,-57],[-26,-72],[42,-57],[67,-59],[15,-21],[7,-39],[1,-26],[5,-24],[9,-21],[9,-42],[9,-62],[-2,-51],[-15,-39],[-27,-29],[-42,-18],[-34,5],[-26,27],[-37,29],[-48,31],[-80,3],[-117,-90],[-52,-5],[-42,-9],[-46,-39],[-66,-24],[-59,9],[-103,46],[37,-30],[54,-36],[33,-19],[25,-4],[27,4],[39,15],[88,41],[23,6],[20,-3],[16,-12],[19,-35],[21,-58],[-3,-49],[-26,-41],[-23,-26],[-18,-12],[0,-9],[49,-10],[69,53],[22,66],[32,76],[56,25],[64,-25],[52,-71],[72,-131],[31,-14],[39,-31],[17,-39],[-4,-45],[-9,-33],[-12,-21],[-15,-13],[-27,-8],[-50,-7],[-111,14],[-58,0],[7,-45],[-117,-39],[-133,-15],[-125,30],[-104,47],[34,65],[20,72],[-51,48],[-11,1],[18,-74],[-15,-28],[-57,-35],[-40,-15],[-3,-10],[19,-8],[13,-15],[6,-23],[-7,-23],[-19,-24],[-11,-19],[-2,-16],[18,-20],[38,-22],[41,-11],[191,-5],[77,-13],[182,-53],[8,-17],[-31,-96],[-17,-92],[-35,-17],[-191,-4],[-62,-14],[-90,-42],[-87,-51],[-45,-1],[-178,45],[-68,29],[-147,84],[-110,128],[-51,-53],[-30,-26],[-32,-13],[-31,-2],[-30,9],[-34,20],[-56,47],[-68,46],[-47,22],[-1,-6],[27,-27],[41,-32],[103,-92],[37,-23],[-4,-16],[-65,-15],[-79,-31],[-39,-24],[-60,-56],[-20,-9],[-90,-14],[-29,3],[-67,32],[-99,20],[-59,18],[-82,33],[29,-36],[157,-55],[17,-17],[-32,-33],[-20,-12],[-37,-3],[-56,7],[-56,-1],[-58,-10],[-24,-12],[8,-15],[13,-14],[20,-12],[18,0],[44,38],[33,2],[88,-9],[89,29],[64,13],[48,3],[175,44],[37,50],[58,20],[131,15],[126,-8],[65,-6],[53,-47],[70,-34],[59,-37],[69,-13],[40,-50],[111,-57],[71,-12],[44,-27],[4,-114],[5,-49],[-19,-136],[-57,-31],[11,-72],[-15,-58],[-57,22],[-58,38],[-139,59],[-130,38],[-50,35],[-59,26],[-81,109],[-52,135],[-23,67],[-44,4],[-57,-18],[-49,-19],[-24,-32],[-168,-45],[-61,-30],[-35,0],[-125,-45],[50,-22],[23,-3],[51,12],[31,16],[114,44],[92,7],[33,19],[70,26],[48,8],[7,-7],[5,-12],[33,-165],[-14,-44],[-38,-19],[-80,-31],[-21,-15],[23,-27],[76,25],[50,27],[26,-10],[43,-41],[49,-21],[123,-64],[59,-35],[82,-34],[93,-47],[24,-17],[85,-24],[18,-8],[36,-83],[29,-10],[85,-5],[-15,-32],[-83,-72],[-43,-22],[-10,-15],[4,-25],[2,-42],[17,-78],[20,72],[13,34],[19,10],[17,2],[58,32],[58,-17],[15,-81],[8,-76],[-5,-66],[6,-101],[-2,-35],[14,-29],[14,-124],[14,-37],[-29,-33],[-88,-14],[-35,16],[-87,-6],[0,30],[-5,33],[0,24],[-6,21],[-4,122],[-25,-31],[-1,-24],[-7,-25],[-15,-132],[-22,-32],[-70,8],[-69,-5],[-38,5],[-129,60],[-50,54],[-44,82],[-28,76],[-10,71],[-31,57],[-51,45],[-61,36],[-70,28],[-62,35],[-53,44],[-58,33],[-64,25],[-90,10],[-133,-4],[-89,27],[-22,-2],[-21,-14],[16,-40],[103,-18],[79,-5],[105,3],[64,-10],[24,-23],[16,-42],[9,-59],[-21,-47],[-76,-52],[-39,-25],[-117,-47],[-39,-10],[-97,-4],[-75,5],[-98,23],[-55,5],[-115,3],[-27,-8],[30,-25],[49,-14],[34,-17],[4,-32],[-13,-48],[-13,-33],[-21,-25],[-75,-47],[-31,-15],[-141,-50],[-10,-10],[33,2],[89,17],[26,0],[146,-43],[116,2],[236,40],[19,-1],[16,-6],[15,-15],[16,-23],[-19,-23],[-54,-22],[-84,-22],[-36,-15],[-35,-22],[-64,-53],[-19,-56],[68,-21],[30,27],[36,59],[33,35],[76,24],[94,-12],[72,14],[148,58],[26,4],[217,-34],[197,-65],[103,-25],[138,-14],[246,7],[22,-11],[-8,-23],[-14,-20],[-41,-27],[-50,-18],[-31,-5],[-27,-13],[-59,-13],[-15,-10],[21,-45],[-10,-7],[-52,-1],[-88,-29],[-72,2],[-15,-5],[14,-10],[14,-21],[16,-32],[-9,-22],[-32,-13],[-24,-4],[-85,18],[-14,-3],[13,-13],[7,-20],[2,-28],[-21,-23],[-43,-18],[-81,-51],[-35,-15],[-74,-12],[-15,-7],[30,-39],[-4,-16],[-49,-42],[-76,-27],[-10,-14],[-7,-38],[-6,-15],[-20,-22],[-71,-42],[-51,-21],[-25,-17],[-31,-28],[-40,-16],[-47,-1],[-45,-11],[-74,-30],[-51,-10],[-163,-53],[-76,-8],[-66,-19],[-137,-50],[-64,-16],[-45,-19],[-49,-5],[-80,12],[-43,1],[-27,-8],[-24,-15],[-40,-42],[-34,-4],[-112,34],[3,-15],[29,-36],[-1,-26],[-67,-26],[-36,-7],[-52,11],[-70,28],[-90,59],[-109,89],[-53,30],[4,-29],[12,-28],[20,-27],[5,-20],[-13,-12],[-16,-6],[-20,0],[-3,-7],[33,-43],[25,-44],[-2,-41],[-31,-39],[-26,-23],[-22,-7],[-130,-98],[-37,-13],[-16,-12],[-14,-18],[-38,-81],[-15,-25],[-30,-32],[-13,-6],[-4,-13],[6,-21],[-9,-34],[-22,-49],[-76,-133],[-61,-125],[-27,-41],[-20,-17],[-12,6],[-30,-3],[-15,-22],[-13,-40],[-15,-30],[-16,-21],[-122,-89],[-32,-17],[-28,11],[-34,-4],[-70,47],[-12,17],[-45,39],[2,-20],[8,-11],[6,-17],[16,-20],[34,-105],[-27,-22],[-25,-25],[-63,-42],[-68,-70],[-25,-19],[-5,57],[3,17],[-39,27],[1,-19],[-4,-19],[-27,-74],[-8,-13],[-14,3],[-30,-14],[-30,7],[-26,33],[-11,18],[-47,-48],[-23,1],[-4,-40],[-22,-37],[-30,-16],[-41,1],[-25,-21],[-55,23],[-13,44],[44,60],[12,25],[-8,30],[11,39],[84,125],[57,63],[-3,12],[-77,13],[-68,22],[-66,8],[-29,-8],[46,-36],[66,-35],[-33,-34],[-27,-36],[-29,-97],[-19,-40],[-72,46],[-33,16],[21,-51],[63,-48],[4,-16],[0,-57],[-121,-50],[-125,-8],[-91,-14],[-152,-18],[-59,0],[-5,-19],[149,-89],[22,-16],[-21,-30],[-31,-19],[-48,-65],[-25,-23],[-63,-31],[-115,35],[-59,-16],[-57,11],[-1,-38],[17,-27],[17,-69],[38,6],[48,21],[38,-52],[24,-87],[43,-45],[19,-34],[8,-33],[-27,-32],[-55,-46],[-62,-8],[4,-36],[-27,-26],[-56,7],[-26,18],[-28,9],[-112,10],[113,-70],[40,-32],[18,19],[39,5],[58,-18],[-10,-118],[26,-95],[3,-21],[-62,-57],[-1,-54],[-36,-15],[-40,4],[-2,-59],[-27,-36],[5,-23],[8,-20],[-25,-38],[-22,-45],[-31,-39],[-17,4],[-50,-3],[-60,3],[-49,52],[-20,17],[-23,11],[9,-33],[14,-20],[45,-37],[82,-46],[-2,-33],[-22,-14],[-52,-89],[-18,-1],[-23,-23],[-72,7],[-30,9],[-88,-5],[-30,7],[-26,-3],[24,-25],[51,-23],[57,-23],[87,-17],[-3,-32],[-22,-27],[13,-39],[-10,-29],[-4,-34],[-20,-78],[23,-54],[26,-26],[-3,-35],[12,-55],[-38,-50],[-33,2],[-45,-11],[-16,-22],[73,-20],[-7,-38],[-19,-46],[-21,-100],[-42,-172],[-20,-171],[-91,-141],[-32,-3],[-8,-6],[-45,7],[-69,33],[-54,10],[-36,1],[-5,-16],[30,-27],[46,-10],[37,-18],[66,-16],[23,-31],[16,-33],[-3,-19],[0,-21],[12,-117],[-31,-40],[-24,-37],[-82,5],[-15,13],[-79,38],[5,-18],[57,-52],[20,-26],[-13,-5],[-23,-2],[-33,-18],[-58,10],[3,26],[11,27],[-27,-4],[-29,-14],[-18,5],[-14,-1],[-8,13],[-12,53],[14,27],[48,69],[15,37],[-13,16],[-34,-39],[-36,-63],[-16,-38],[-22,-8],[-55,20],[-158,88],[5,53],[-2,45],[46,5],[34,20],[30,23],[33,43],[31,71],[-4,6],[-90,-91],[-56,-30],[-27,-6],[-14,14],[-44,29],[-29,13],[-67,22],[-12,11],[-19,9],[-27,93],[35,113],[23,32],[15,38],[9,50],[-6,22],[-20,-8],[-9,-17],[1,-27],[-11,-18],[-80,-43],[-79,-35],[-38,-33],[-24,-26],[-19,-25],[-29,2],[-41,-5],[-27,-16],[-41,10],[-26,24],[-32,3],[-35,-12],[-25,1],[2,-16],[16,-41],[-27,-3],[-52,-1],[-26,11],[-20,16],[-17,22],[10,28],[83,52],[38,30],[-24,10],[-80,-9],[-14,7],[-53,-4],[2,77],[-13,19],[-1,9],[-18,21],[-18,6],[-11,7],[-90,18],[-12,43],[-6,44],[-17,55],[-43,14],[-24,24],[19,24],[8,31],[-20,14],[-13,22],[2,14],[-16,38],[-5,30],[18,27],[51,32],[17,13],[9,14],[58,23],[-50,16],[-31,3],[-23,-8],[-21,-31],[-19,-20],[-77,-7],[-11,11],[-5,43],[4,34],[32,47],[-37,23],[-33,8],[-39,22],[-35,23],[-30,27],[-29,31],[-10,4],[11,34],[6,27],[1,58],[-12,25],[26,50],[36,54],[78,82],[-83,-39],[-68,-86],[-15,-4],[-5,16],[-26,55],[-19,15],[-9,17],[-39,29],[-17,23],[-24,44],[-34,52],[-48,103],[-78,119],[-20,67],[25,84],[-27,58],[74,27],[106,31],[55,25],[32,7],[68,5],[22,25],[-37,-6],[-25,3],[-2,12],[9,21],[6,27],[-13,-5],[-66,-46],[-97,-37],[-76,-21],[-13,1],[-26,-13],[-16,-3],[-11,3],[-27,36],[-8,23],[49,63],[36,86],[48,56],[33,7],[57,-3],[20,-5],[-7,33],[3,16],[46,20],[53,8],[38,-6],[24,-39],[31,-72],[41,-24],[-2,34],[-21,45],[-8,68],[-27,29],[-22,14],[-61,-7],[-36,50],[-9,19],[0,24],[-37,72],[-12,36],[-19,47],[-10,3],[13,-60],[17,-42],[24,-93],[12,-38],[-16,-29],[-31,-30],[-27,-17],[-64,-21],[14,46],[8,45],[-32,-16],[-30,-33],[-10,-45],[-20,-41],[-57,-101],[-23,-56],[-21,-27],[-24,-8],[-21,22],[-18,51],[-9,41],[-1,104],[3,49],[-10,65],[-31,153],[-7,54],[-52,29],[-1,9],[-14,31],[-10,31],[9,12],[12,8],[78,46],[58,51],[70,80],[28,25],[102,19],[45,3],[-1,14],[-15,6],[-68,-4],[-92,-32],[-16,-12],[-40,-50],[-31,-27],[-87,-62],[-56,0],[-58,74],[-65,-14],[-44,5],[-13,11],[-10,102],[36,119],[-38,1],[-8,5],[-20,27],[-13,8],[9,14],[94,56],[141,111],[61,43],[37,19],[29,21],[34,47],[11,20],[20,16],[40,19],[44,28],[72,63],[9,23],[-15,5],[-34,-21],[-68,-58],[-49,-32],[-166,-145],[-71,-52],[-38,-34],[-30,-32],[-32,-23],[-33,-14],[-71,-10],[-35,-12],[-21,9],[-10,69],[7,40],[-3,40],[18,58],[26,40],[11,22],[5,16],[55,42],[30,18],[21,42],[121,15],[31,-1],[16,5],[13,13],[-12,9],[-36,7],[-97,-2],[-89,8],[-40,7],[-20,-4],[-32,12],[-35,23],[-55,86],[22,110],[2,53],[69,46],[37,15],[53,35],[71,59],[84,36],[43,7],[36,-6],[131,-51],[68,-10],[60,13],[75,-18],[132,-74],[25,11],[-7,18],[-148,78],[1,23],[38,6],[40,22],[-22,14],[-98,-12],[-29,-18],[-95,-10],[-49,16],[-45,8],[-67,33],[-56,-11],[-35,-13],[-62,-13],[-23,-8],[-122,-106],[-51,-22],[-37,7],[26,69],[7,27],[0,30],[11,40],[62,77],[40,84],[16,53],[31,6],[42,-8],[126,-34],[105,-40],[77,-11],[51,-1],[22,13],[17,22],[7,15],[5,32],[6,12],[17,13],[34,49],[11,34],[-11,20],[-24,-2],[-45,-13],[-6,-6],[1,-10],[-44,-54],[-47,-12],[-110,-18],[-50,-1],[-89,25],[-13,9],[-9,19],[-109,-5],[-33,-5],[-26,2],[13,32],[34,35],[48,114],[41,29],[80,27],[84,-4],[145,-88],[44,-8],[40,7],[96,30],[18,12],[34,36],[40,63],[-2,15],[-61,-35],[-33,-10],[-28,0],[26,115],[10,87],[9,22],[82,-7],[111,12],[26,19],[0,9],[-45,11],[-21,25],[-38,-8],[-50,-16],[-62,2],[5,37],[46,79],[5,36],[18,72],[1,37],[24,36],[72,25],[31,16],[1,16],[-43,64],[11,18],[34,16],[13,11],[-9,8],[-31,7],[-49,-14],[-53,-7],[-47,21],[-37,10],[-24,-3],[-63,-36],[-23,-1],[-27,10],[-183,31],[-22,11],[-65,54],[-54,36],[-72,39],[-93,30],[-114,20],[-68,19],[-34,27],[-58,59],[-44,50],[-8,24],[26,30],[26,22],[50,18],[85,-6],[46,-8],[50,-17],[38,-3],[79,4],[80,-10],[48,-12],[63,-25],[172,-106],[72,-37],[32,-4],[129,-39],[20,0],[53,19],[6,12],[-18,11],[-57,10],[-67,43],[-42,34],[-4,57],[5,32],[10,15],[8,48],[-39,29],[-27,9],[-72,43],[-6,10],[34,5],[34,-3],[73,-21],[38,-3],[28,8],[3,9],[-44,24],[-56,44],[-115,6],[-75,-5],[-48,15],[-51,24],[-32,7],[-67,-16],[-34,-1],[-31,5],[-30,76],[8,23],[24,10],[18,25],[12,26],[40,25],[217,56],[55,42],[-2,7],[-37,-8],[-48,-19],[-31,-4],[-128,24],[-20,-5],[-52,-35],[-70,-38],[-32,2],[-44,23],[-7,16],[-3,19],[48,26],[15,14],[31,38],[-2,18],[-52,-10],[-7,17],[1,30],[-5,37],[-13,37],[-43,57],[-18,14],[-15,21],[-33,77],[10,19],[29,14],[5,7],[-69,-12],[-7,-13],[13,-20],[9,-26],[6,-32],[9,-29],[25,-31],[20,-16],[33,-43],[14,-48],[-4,-25],[-26,-26],[-40,-27],[-13,-23],[-5,-23],[-32,-21],[-19,8],[-16,1],[18,-37],[12,-39],[-14,-38],[-38,-24],[-20,0],[-41,-19],[-103,-10],[-36,4],[-66,20],[-78,10],[-31,26],[-40,47],[-21,42],[0,38],[11,27],[22,17],[27,109],[38,88],[96,91],[27,33],[9,17],[0,14],[-15,8],[-118,-112],[-73,-12],[-21,25],[6,45],[13,11],[59,-5],[23,25],[-37,38],[-39,10],[-9,9],[40,29],[93,-2],[21,20],[34,22],[37,40],[14,34],[3,29],[-8,23],[-1,23],[7,24],[-10,26],[-26,28],[-57,28],[-17,-31],[-18,-13],[-25,-3],[-24,13],[-24,5],[-24,12],[-24,3],[-10,10],[-6,26],[-1,34],[28,16],[39,13],[26,23],[17,34],[3,38],[-12,40],[-32,37],[-58,-36],[-23,-9],[-6,26],[-8,19],[-24,25],[-33,18],[-31,13],[-1,19],[7,21],[14,24],[18,52],[20,-5],[16,5],[-9,42],[-16,36],[-19,20],[-1,9],[-4,10],[-14,25],[-16,19],[-29,52],[-20,19],[-26,11],[-28,0],[-45,-13],[-83,-16],[-66,-8],[-11,4],[33,20],[49,21],[64,14],[19,34],[-7,29],[2,28],[-17,30],[17,16],[58,16],[27,3],[26,21],[-74,50],[-77,33],[-20,14],[-17,22],[-15,30],[-24,31],[-33,31],[-48,30],[-125,54],[-42,38],[-40,57],[-19,25],[-21,18],[-87,43],[-10,18],[89,50],[9,20],[-36,61],[-38,44],[-41,16],[-60,8],[-56,20],[-50,31],[-51,23],[-76,22],[-126,56],[-195,59],[-87,35],[-52,13],[-68,3],[-132,33],[-111,10],[-69,-4],[-22,5],[-51,33],[-79,19],[-41,-7],[-51,-36],[-62,-35],[-32,-4],[-49,32],[-24,22],[-23,8],[-23,-8],[-43,-29],[-41,-21],[-61,-25],[-49,-12],[-63,-3],[-16,-9],[-24,-1],[-32,8],[-31,17],[-28,24],[-25,14],[-22,2],[-50,-13],[-63,-37],[-29,-9],[-24,3],[-30,12],[-59,30],[-33,-3],[-24,-10],[6,-25],[56,-59],[50,-42],[-42,-5],[-368,57],[-46,14],[-68,34],[-56,21],[-96,54],[-74,30],[-24,22],[-6,16],[23,22],[149,72],[56,14],[116,18],[27,11],[9,8],[-30,16],[-151,-6],[-135,11],[-117,28],[-21,10],[-19,17],[-20,26],[5,28],[28,32],[16,22],[5,11],[-147,-77],[-60,-28],[-48,9],[-34,13],[-16,14],[1,16],[5,11],[10,7],[-78,33],[-35,25],[-4,26],[28,27],[27,19],[27,12],[72,11],[263,20],[188,-19],[64,64],[43,21],[127,21],[195,3],[138,-12],[64,-15],[88,-33],[5,10],[-21,30],[-2,25],[36,43],[16,27],[-11,29],[-38,29],[-69,38],[-36,3],[-41,-9],[-49,-21],[-102,-53],[-49,-11],[-80,-3],[-44,7],[-43,8],[-67,28],[-25,5],[-29,-12],[-35,-30],[-34,-21],[-32,-12],[-30,-5],[-43,2],[-173,47],[-40,21],[-2,31],[-53,30],[-60,5],[-8,11],[77,46],[57,19],[-10,6],[-82,1],[-56,-25],[-32,-4],[-74,-1],[-77,13],[-33,11],[-34,25],[-38,14],[-115,21],[-26,12],[-25,19],[-94,55],[-57,40],[-8,22],[66,49],[3,12],[-28,21],[-12,15],[10,22],[57,47],[22,13],[103,28],[104,40],[37,9],[34,3],[136,-3],[42,10],[36,20],[58,20],[123,30],[272,46],[18,6],[1,8],[-24,24],[-5,12],[55,21],[126,33],[86,16],[55,2],[45,7],[63,21],[35,4],[214,8],[95,-12],[46,1],[30,8],[40,24],[74,59],[38,36],[37,56],[48,88],[35,85],[24,83],[18,51],[13,18],[44,23],[47,18],[79,16],[-7,7],[-34,12],[-31,5],[-29,-3],[-53,-18],[-69,-13],[-67,2],[-48,-5],[-44,-17],[-71,-14],[-48,3],[-86,25],[-43,5],[-110,-3],[-32,10],[-28,17],[-23,25],[-16,32],[2,34],[40,60],[15,16],[107,68],[66,31],[66,24],[48,13],[45,7],[43,14],[80,47],[82,40],[102,75],[50,20],[173,32],[47,1],[40,-9],[38,-16],[106,-74],[9,2],[-19,28],[-39,84],[7,34],[61,37],[25,6],[64,-2],[103,-11],[70,-13],[52,-20],[63,-13],[32,1],[23,9],[33,32],[43,54],[17,66],[-8,78],[-13,58],[-16,36],[9,30],[52,36],[48,26],[114,38],[92,9],[55,-2],[72,-18],[100,-10],[91,-34],[146,-78],[97,-39],[81,-18],[79,-29],[117,-64],[62,-27],[36,-10],[32,-1],[-12,18],[-56,37],[-85,42],[-191,75],[-104,53],[-94,60],[-69,36],[-126,35],[2,14],[151,50],[278,44],[313,33],[105,-3],[184,14],[18,22],[39,9],[172,30],[49,0],[76,-15],[80,-27],[37,-24],[51,-42],[25,-59],[-4,-186],[1,-36],[10,-13],[35,20],[42,38],[37,26],[29,41],[20,56],[12,41],[-49,46],[-2,76],[24,41],[69,0],[284,-140],[111,-31],[127,-75],[149,8],[137,-9],[60,3],[30,11],[-42,32],[-195,85],[-88,67],[-62,84],[-15,45],[47,8],[217,-1],[327,-39],[418,-133],[205,-45],[369,-154],[111,-23],[45,-5],[34,19],[21,21],[1,27],[-18,35],[-10,39],[-3,46],[25,89],[60,30],[26,33],[-24,59],[-70,41],[-271,105],[-1,13],[55,14],[81,8],[671,-25],[116,-10],[50,-9],[21,-11],[28,-6],[144,15],[-3,26],[-18,16],[-779,45],[-145,16],[-74,1],[-77,-12],[-158,-6],[-73,2],[-95,54],[86,64],[72,-1],[137,-25],[82,35],[129,29],[128,10],[278,63],[52,5],[65,-3],[143,-16],[57,-15],[65,-33],[38,-10],[45,-2],[61,-15],[89,48],[81,52],[92,33],[131,-19],[83,-25],[75,-30],[107,-16],[182,-102],[34,0],[16,8],[17,19],[6,28],[22,38],[-16,14],[-152,42],[-29,17],[-29,26],[0,22],[28,18],[30,8],[98,-8],[32,6],[31,15],[37,27],[29,7],[66,1],[101,-18],[88,-1],[32,8],[5,17],[8,11],[10,5],[321,1],[79,4],[63,13],[76,2],[66,-8],[83,-17],[81,1],[122,27],[115,13],[634,-4],[208,-16]],[[0,42344],[99999,-29],[-4,-1],[0,11],[-99995,19]],[[0,42538],[9,15],[6,0],[-3,-13],[-12,-11],[0,9]],[[26147,61325],[-21,-33],[-4,15],[10,31],[13,17],[12,-1],[-3,-14],[-7,-15]],[[57056,73397],[-27,-3],[2,44],[10,11],[31,-22],[-1,-14],[-15,-16]],[[96376,51545],[-5,-20],[-6,3],[-3,13],[2,14],[7,6],[5,-5],[0,-11]],[[97120,55201],[-6,-17],[-6,1],[6,13],[4,18],[6,51],[14,19],[10,21],[-3,-22],[-15,-23],[-10,-61]],[[98046,53645],[-17,-19],[-6,3],[21,27],[0,-3],[2,-8]],[[98011,53600],[-20,-22],[-6,12],[8,0],[14,22],[16,1],[-2,-11],[-10,-2]],[[98060,52906],[1,-14],[-16,37],[-9,23],[0,10],[5,-6],[5,-12],[3,-9],[11,-29]],[[98063,52832],[-10,-3],[7,9],[2,11],[-1,36],[4,-3],[1,-15],[1,-21],[-4,-14]],[[98064,52426],[15,-23],[-2,-15],[-5,-18],[-20,-46],[-6,4],[19,42],[8,27],[-11,21],[-5,-5],[-1,0],[-4,20],[4,0],[8,-7]],[[98474,51381],[-9,-16],[-4,14],[5,18],[-8,73],[-12,10],[-8,22],[4,0],[12,-20],[10,-9],[6,-48],[4,-44]],[[98547,51145],[2,-30],[-7,4],[-2,11],[-2,30],[-7,30],[8,-8],[6,-23],[2,-14]],[[96896,56053],[-4,-9],[-27,5],[-12,11],[1,9],[22,-8],[20,-8]],[[97659,55903],[11,-13],[20,1],[19,-32],[-7,2],[-10,14],[-10,6],[-12,-2],[-6,5],[-5,19]],[[97527,55955],[35,-30],[46,14],[-7,-9],[-17,-8],[-12,-8],[-8,0],[-9,3],[-29,21],[-17,27],[4,9],[14,-19]],[[543,43595],[-16,-4],[-16,7],[-9,33],[4,14],[10,-7],[10,-24],[17,-11],[0,-8]],[[10886,41557],[2,-11],[-11,1],[-3,4],[1,20],[7,25],[6,21],[11,20],[21,19],[11,8],[3,-5],[-4,-2],[-35,-41],[-10,-29],[-5,-20],[1,-6],[5,-4]],[[12140,41160],[-5,-12],[-1,12],[-7,6],[-11,12],[-15,14],[-8,3],[-4,8],[6,4],[9,-6],[12,-13],[15,-13],[9,-15]],[[11952,41277],[0,-11],[-26,55],[10,-4],[16,-40]],[[11526,39828],[-8,-11],[3,15],[-6,32],[-6,5],[6,9],[9,-25],[2,-25]],[[10921,41255],[3,-21],[-6,10],[-22,20],[-2,17],[27,-26]],[[10880,41365],[2,-16],[-10,11],[-10,29],[-17,36],[-4,15],[13,-14],[9,-21],[17,-40]],[[10413,42571],[-5,-7],[7,46],[7,6],[-9,-45]],[[10155,42269],[15,-28],[-20,19],[-25,8],[9,5],[15,0],[6,-4]],[[10119,42260],[-11,-3],[-27,34],[11,0],[15,-21],[12,-10]],[[9708,42709],[-2,-26],[-5,25],[-17,40],[-7,18],[8,-3],[23,-54]],[[9587,42436],[1,-10],[-6,1],[-10,29],[-4,25],[-6,29],[-9,21],[-1,19],[0,30],[10,-46],[9,-37],[8,-31],[8,-30]],[[98065,52616],[-7,-2],[5,11],[31,13],[3,4],[5,-7],[0,-7],[-2,-3],[-16,-1],[-12,-6],[-7,-2]],[[2846,84466],[36,-11],[21,7],[18,-6],[3,-13],[-31,-30],[-13,2],[-37,36],[3,15]],[[29815,63385],[12,-13],[-5,-17],[-28,10],[-29,19],[-9,-5],[-6,2],[-17,18],[15,14],[15,4],[17,-1],[35,-31]],[[56812,73228],[-11,-9],[-17,13],[5,32],[11,13],[13,-10],[2,-14],[-3,-25]],[[89496,67175],[-5,-1],[-18,61],[5,3],[10,-9],[12,-36],[-4,-18]],[[86365,73432],[-13,-18],[-15,18],[-2,18],[8,15],[18,10],[9,-14],[-5,-29]],[[0,0],[99608,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0]],[[0,3253],[447,8],[89,-8],[94,-25],[207,-2],[194,-11],[50,-33],[65,-20],[137,17],[110,9],[89,1],[823,-46],[843,-81],[172,-26],[154,-61],[162,9],[957,-47],[148,0],[586,-50],[1026,-114],[89,-4],[97,3],[-51,62],[-96,56],[-129,40],[84,12],[184,1],[-37,29],[-101,16],[-366,19],[-1463,144],[-32,9],[-21,12],[-38,13],[-60,14],[-223,8],[-61,13],[-29,16],[15,7],[17,-3],[340,13],[38,16],[2,11],[-18,8],[-59,10],[-137,48],[-44,21],[23,33],[28,14],[105,11],[31,22],[-20,40],[-241,80],[-162,29],[-107,-20],[-203,-1],[-251,-10],[-68,11],[-70,32],[-82,57],[-42,15],[-80,47],[-106,46],[-561,111],[-98,30],[-702,175],[-29,30],[-18,32],[324,-71],[61,0],[72,18],[55,-5],[75,18],[84,9],[219,-55],[442,-89],[118,-31],[63,-22],[52,-7],[51,-16],[63,9],[38,-8],[92,5],[419,10],[166,-8],[195,-43],[75,-71],[56,-32],[107,25],[90,30],[173,25],[56,-10],[93,-37],[105,-62],[445,17],[187,-3],[133,-28],[485,93],[75,20],[111,65],[-91,20],[-65,7],[-25,33],[44,13],[140,18],[272,28],[161,27],[86,70],[369,109],[117,48],[108,79],[-242,157],[-232,136],[74,42],[73,33],[35,26],[29,37],[-76,45],[-71,33],[-117,32],[-440,77],[-150,33],[60,51],[80,39],[169,17],[1079,60],[1087,74],[27,37],[-144,44],[-123,11],[-45,13],[-17,28],[-1,38],[-14,6],[-46,4],[-196,44],[-41,17],[-65,41],[-17,32],[39,82],[60,35],[104,19],[75,7],[225,-1],[88,10],[37,11],[-7,39],[-25,18],[-1,24],[38,14],[47,-1],[13,29],[-26,47],[-67,25],[-176,43],[-400,65],[-155,49],[-89,38],[-74,44],[-75,21],[-52,23],[11,28],[-24,44],[-29,8],[-127,-19],[-227,10],[-278,41],[-192,47],[-251,127],[-99,63],[73,44],[80,28],[334,65],[50,22],[68,58],[-112,24],[-95,-2],[-84,16],[-342,4],[-193,-8],[-162,72],[-121,71],[-34,36],[-26,64],[41,94],[34,67],[-4,83],[9,113],[58,38],[45,7],[105,-87],[90,-7],[131,17],[83,45],[44,17],[81,4],[156,-20],[71,8],[80,-4],[251,-58],[55,-27],[30,-21],[9,-30],[31,-31],[107,-15],[299,17],[78,-7],[212,-85],[180,-91],[62,-23],[102,-15],[36,13],[31,34],[97,42],[218,52],[52,52],[-29,28],[-84,30],[-51,10],[-28,34],[2,47],[17,45],[57,11],[104,-61],[130,-57],[45,-8],[35,2],[65,20],[78,15],[149,-122],[88,-8],[110,-1],[21,19],[-13,32],[-18,35],[-23,5],[-3,32],[48,30],[33,13],[-13,22],[-53,33],[-31,6],[-28,14],[9,23],[35,10],[49,34],[-15,39],[2,51],[-20,27],[-116,53],[-169,87],[-157,39],[-350,-31],[-124,20],[-81,23],[-88,30],[103,32],[108,22],[32,20],[41,40],[48,29],[39,8],[128,-15],[289,-108],[61,-12],[198,-49],[55,-3],[68,11],[-55,48],[-61,34],[-145,96],[16,46],[94,76],[245,6],[107,27],[139,58],[179,96],[154,12],[192,30],[65,-22],[164,-93],[103,-32],[35,-3],[37,3],[-97,116],[63,14],[80,13],[66,29],[49,24],[168,111],[150,31],[426,48],[146,-44],[123,-5],[27,13],[25,59],[65,115],[55,41],[185,43],[145,-2],[104,-47],[97,-31],[89,-14],[90,1],[134,27],[178,9],[83,14],[96,-26],[236,-9],[183,-37],[113,0],[153,36],[83,5],[299,58],[234,12],[177,-26],[286,16],[290,-12],[117,-21],[652,13],[518,55],[71,19],[111,60],[61,55],[41,17],[87,6],[149,-12],[205,-41],[176,15],[337,-23],[32,19],[32,104],[55,165],[47,49],[77,-13],[233,-94],[5,-40],[-24,-29],[-38,-11],[-11,-80],[31,-23],[52,7],[33,-35],[-73,-60],[-52,-34],[-33,-15],[-23,-115],[-31,-38],[-4,-42],[50,0],[50,18],[44,4],[140,30],[255,35],[84,17],[48,6],[31,23],[-43,57],[-14,47],[26,39],[-7,67],[-24,68],[49,50],[46,-11],[79,8],[45,-25],[69,-22],[66,-11],[63,-45],[21,-98],[-19,-100],[-65,-73],[-121,-66],[-137,-105],[29,-50],[71,17],[309,-5],[199,8],[125,-12],[158,-27],[125,-39],[149,-8],[93,15],[87,-20],[339,84],[138,48],[79,-24],[128,20],[71,-18],[133,30],[84,3],[97,-12],[296,-6],[22,-55],[90,-83],[73,-32],[93,14],[67,25],[106,-9],[153,35],[153,-11],[64,6],[29,23],[25,51],[-47,28],[-134,36],[-123,74],[-55,16],[-88,-9],[-41,13],[-44,24],[57,29],[70,93],[-29,84],[-33,18],[-81,-3],[-98,-30],[-39,21],[-64,11],[-25,78],[-68,146],[-36,42],[-108,38],[-93,19],[-90,24],[-27,58],[17,79],[108,17],[104,-8],[58,-15],[67,-6],[77,-16],[50,-23],[40,-13],[75,0],[260,21],[35,15],[31,28],[55,7],[51,-4],[74,17],[-85,23],[-91,44],[-137,53],[-115,29],[-209,20],[-107,-7],[-67,11],[-239,-6],[-65,21],[-46,58],[-65,138],[-18,72],[44,27],[29,30],[71,3],[103,-12],[34,-14],[25,-43],[-25,-44],[-33,-23],[20,-21],[105,-6],[52,-13],[45,-5],[97,20],[142,8],[71,-20],[85,-15],[125,24],[445,-13],[54,-6],[54,-40],[46,-24],[49,10],[145,-46],[77,-36],[79,-18],[67,-5],[75,9],[98,30],[81,12],[58,-11],[123,-6],[94,-36],[73,15],[77,41],[244,29],[163,-8],[298,-74],[69,-7],[136,44],[44,72],[-6,81],[39,19],[33,-9],[60,56],[82,-5],[51,-10],[31,36],[28,77],[97,6],[70,-12],[92,-49],[0,-41],[-38,-43],[-63,-107],[39,-63],[59,6],[75,-13],[91,27],[58,1],[101,-93],[68,-5],[53,5],[172,84],[50,9],[61,-38],[89,-89],[78,-51],[114,-32],[99,-9],[116,-42],[64,-35],[146,0],[62,-15],[176,-72],[160,36],[83,33],[40,61],[-20,91],[-7,92],[24,38],[42,7],[191,-103],[-12,62],[-16,47],[-49,82],[7,61],[41,19],[80,-32],[96,-16],[79,-36],[155,-128],[50,-112],[105,-28],[73,5],[83,18],[111,16],[86,-5],[79,21],[24,-61],[-74,-88],[-29,-57],[24,-15],[45,13],[37,18],[129,-9],[104,40],[89,14],[84,42],[69,-4],[53,-7],[72,-33],[69,18],[41,-7],[56,-2],[297,145],[67,-3],[85,9],[107,34],[83,15],[68,-1],[121,53],[193,-7],[98,28],[191,32],[128,37],[228,98],[92,58],[100,129],[63,129],[70,171],[-34,111],[-37,49],[-31,54],[-73,111],[-20,139],[7,131],[-26,123],[-26,91],[-54,152],[-66,99],[-77,133],[0,121],[-19,95],[-46,68],[-20,54],[36,11],[33,17],[89,21],[213,-37],[19,54],[54,40],[38,50],[-13,77],[-47,31],[-56,65],[26,52],[45,0],[22,57],[-17,56],[21,70],[41,90],[28,33],[-51,54],[-48,70],[12,54],[24,57],[29,80],[40,57],[26,20],[-7,19],[-61,20],[-56,4],[-101,-36],[-16,7],[-5,19],[-6,39],[10,95],[16,90],[14,13],[40,11],[38,69],[35,4],[22,-23],[7,-91],[12,-21],[-4,-44],[18,-15],[22,28],[41,14],[16,-31],[15,-15],[7,26],[-5,74],[-7,30],[-5,48],[9,23],[10,37],[-17,78],[6,29],[37,47],[18,9],[35,0],[63,-31],[30,-2],[22,14],[14,30],[11,98],[-27,35],[0,31],[16,20],[28,68],[42,4],[41,-6],[40,13],[-14,28],[-12,43],[45,21],[29,6],[77,-27],[30,-15],[28,35],[-9,34],[-30,19],[-5,30],[7,39],[48,-20],[11,8],[13,34],[-8,17],[-6,22],[63,5],[9,9],[13,27],[19,9],[56,-1],[12,14],[6,30],[-31,7],[-39,29],[-6,80],[9,57],[35,50],[42,34],[78,-30],[60,7],[24,-30],[33,-8],[8,34],[-15,30],[-10,49],[96,59],[31,-10],[38,14],[-14,45],[21,57],[27,8],[19,-50],[26,-10],[29,12],[71,58],[35,9],[35,3],[36,34],[9,40],[20,28],[62,38],[25,27],[55,95],[-10,24],[16,20],[163,86],[80,8],[133,52],[81,61],[51,25],[45,68],[55,11],[128,47],[96,77],[133,53],[62,-5],[25,-16],[16,-63],[26,-77],[40,-38],[-15,-34],[-38,4],[-41,-8],[-9,38],[15,28],[-15,25],[-37,-6],[-49,-13],[-33,-19],[-43,-41],[-34,-23],[-113,-61],[-74,-88],[-53,-93],[-32,-63],[-47,-5],[-11,-23],[19,-18],[15,-8],[35,-7],[-6,-27],[-24,-7],[3,-22],[25,-32],[5,-46],[-29,-7],[-44,49],[-50,5],[-39,23],[-25,33],[-24,-7],[-18,-47],[11,-52],[-21,-31],[-24,14],[-9,62],[-23,11],[-32,1],[-77,-67],[-28,-2],[-14,-34],[-45,-38],[-29,-31],[-71,-102],[-40,-43],[-76,-24],[-30,3],[-18,10],[-27,7],[-28,1],[-9,-27],[44,-88],[-24,-30],[-53,2],[-26,25],[-21,-24],[-17,-23],[-17,-34],[26,-72],[41,-32],[30,-6],[11,-27],[-65,-11],[-44,-63],[-20,-44],[-23,-38],[3,-44],[34,-66],[46,-47],[46,-4],[60,15],[14,13],[59,7],[26,46],[19,3],[17,-8],[27,-2],[15,30],[20,11],[28,-8],[54,1],[15,-27],[-17,-30],[-33,-42],[-31,23],[-27,-4],[-15,-22],[29,-47],[-11,-42],[-24,-42],[-29,27],[-4,45],[-40,27],[-39,12],[-26,-47],[-41,-13],[-6,-54],[-17,-50],[-24,15],[-9,62],[-67,50],[-35,7],[-70,-13],[-24,1],[-28,-11],[-20,-42],[29,-31],[10,-42],[-1,-31],[-6,-12],[-5,-26],[32,-37],[1,-50],[-25,1],[-21,15],[-81,130],[-51,58],[-22,51],[-53,12],[-38,1],[-46,-21],[18,-24],[9,-36],[-28,-15],[-35,-56],[-23,-48],[-14,-10],[-18,-28],[75,-61],[11,-24],[4,-41],[-24,-22],[-56,-9],[-99,43],[-43,1],[-15,30],[-22,-4],[-13,-51],[-16,-45],[-24,-30],[7,-46],[19,-11],[-15,-19],[-31,-15],[-21,-18],[46,-17],[9,-15],[2,-22],[-72,-16],[-47,-4],[-28,18],[-26,-9],[-17,-29],[-5,-39],[5,-48],[9,-34],[7,-13],[8,-29],[-43,-74],[-5,-16],[-3,-34],[21,-31],[16,-46],[-23,-23],[-25,-47],[26,-9],[44,-2],[48,6],[72,41],[20,7],[9,-16],[6,-25],[-18,-24],[-130,-68],[-24,-29],[33,-16],[67,-3],[26,-22],[-16,-24],[-24,-23],[-28,-54],[23,-20],[72,-32],[131,-42],[97,-14],[-22,49],[-3,60],[68,49],[35,16],[162,29],[44,-1],[34,-13],[-13,-25],[-37,9],[-65,-16],[-100,-54],[-18,-23],[7,-42],[85,-34],[27,-27],[-37,-81],[6,-52],[43,-57],[57,-65],[28,-43],[43,-25],[70,-61],[38,-61],[12,-140],[57,-116],[67,-53],[8,-46],[-22,-46],[-57,27],[-32,-27],[-12,-49],[40,-34],[64,-42],[138,4],[4,-46],[-32,-27],[-25,-34],[-31,-19],[-52,-12],[-13,-41],[22,-58],[72,26],[53,3],[55,-10],[17,-77],[65,-95],[16,-45],[-12,-43],[-40,-13],[-25,-34],[-36,-29],[-41,-16],[-76,-79],[-33,-8],[-14,-16],[65,-8],[45,-2],[97,64],[37,-14],[24,-42],[12,-49],[-24,-42],[-169,-25],[-82,-23],[-88,-66],[101,-31],[74,11],[37,-12],[51,-23],[56,12],[44,24],[33,-1],[31,-12],[4,-41],[4,-72],[7,-54],[-18,-36],[-88,-26],[-64,1],[-2,-76],[96,-57],[60,30],[53,-15],[0,-91],[41,-101],[36,-6],[30,46],[38,0],[15,-54],[-17,-91],[-29,-50],[-78,21],[-44,16],[-35,-34],[-58,-29],[-51,-4],[-45,45],[-52,34],[-83,17],[-78,8],[26,-39],[35,-23],[14,-69],[28,-72],[65,19],[90,-41],[56,-43],[24,-57],[-31,-91],[-51,-34],[-32,-16],[-56,35],[-39,0],[-41,-16],[-14,-42],[-27,-20],[144,-3],[45,-11],[33,-38],[-52,-50],[-95,8],[-41,-19],[-35,-36],[142,-22],[59,12],[93,38],[22,-38],[-37,-38],[-48,-61],[-100,-19],[-75,-1],[-98,22],[-26,13],[-41,7],[3,-37],[26,-26],[66,-94],[11,-36],[-21,-50],[-58,-37],[-65,-14],[-54,32],[-39,91],[-50,27],[-51,8],[-30,-4],[3,-46],[12,-49],[-20,-35],[-44,18],[-57,-16],[-53,-27],[-48,-30],[98,-14],[65,-3],[46,-46],[-17,-23],[-88,-10],[-86,-20],[-117,-50],[86,-21],[81,1],[57,-5],[47,-9],[13,-27],[-29,-30],[-192,-74],[-201,-91],[-74,-29],[-77,-16],[-179,-78],[-113,-36],[-318,-55],[-497,-139],[-169,-99],[-50,-76],[-32,-11],[-95,-26],[-95,-12],[-251,-8],[-257,37],[-208,8],[-113,-12],[-386,66],[-49,-3],[-60,-12],[-48,0],[-36,9],[-78,4],[-263,-26],[-27,-41],[33,-76],[96,-92],[160,-162],[86,-35],[53,-37],[100,-43],[224,-2],[306,-34],[174,-31],[-6,-60],[-105,-115],[-65,-44],[-155,-80],[-213,-40],[-163,12],[-289,65],[-362,60],[-538,57],[-118,26],[-139,26],[-79,-27],[-60,-25],[-133,-2],[39,-23],[537,-155],[458,-113],[54,-29],[65,-20],[-6,-72],[-26,-57],[-90,-50],[-234,-3],[-293,-40],[-146,-1],[-145,39],[-309,113],[-189,84],[-132,96],[-91,76],[-102,75],[7,-47],[18,-47],[50,-58],[73,-63],[5,-25],[-35,-4],[-53,30],[-45,-28],[-16,-33],[19,-44],[28,-42],[93,-94],[80,-25],[106,-57],[258,-106],[44,-36],[78,-78],[16,-59],[76,-58],[52,-9],[47,2],[16,50],[-3,61],[20,15],[74,15],[193,-21],[821,-12],[78,-35],[31,-45],[21,-93],[-87,-112],[-59,-48],[-97,-29],[-88,-23],[-133,-9],[-275,8],[-269,0],[209,-54],[203,-44],[282,8],[112,12],[97,21],[41,-37],[77,-78],[45,-25],[31,-26],[43,-85],[17,-50],[42,-58],[30,-49],[44,-33],[75,-15],[82,28],[159,13],[154,-45],[99,-14],[132,37],[105,52],[221,47],[41,20],[60,16],[91,-4],[36,-12],[46,-51],[43,-70],[63,-35],[67,-25],[38,-3],[126,-22],[164,21],[73,-21],[12,-40],[39,-32],[49,-11],[665,-180],[229,-35],[353,-18],[274,-2],[38,-11],[53,-35],[-105,-24],[-112,-3],[-169,9],[-60,-5],[-129,10],[-67,-7],[-61,11],[-91,-25],[-166,-19],[37,-27],[62,-6],[126,-10],[172,5],[15,-43],[-158,-10],[-336,-9],[-35,-7],[-26,-22],[50,-11],[31,-12],[16,-31],[-36,-79],[56,-55],[39,-9],[41,8],[71,-22],[69,-30],[146,-2],[173,40],[85,-1],[228,25],[207,-4],[289,48],[48,-1],[44,-6],[-80,-44],[-355,-110],[-127,-21],[-51,-14],[29,-54],[46,-56],[94,-60],[59,-89],[57,-19],[110,41],[27,-31],[5,-61],[-29,-49],[-37,-28],[-26,-27],[-17,-36],[46,-31],[123,-19],[163,-7],[151,-1],[93,-9],[341,194],[137,94],[67,39],[56,29],[288,119],[67,36],[76,53],[141,8],[193,86],[171,66],[68,13],[51,5],[60,14],[150,-5],[107,11],[190,42],[145,27],[154,23],[174,4],[463,44],[132,-19],[146,-46],[95,1],[125,14],[86,18],[39,-53],[20,-69],[-42,-64],[-70,-40],[-19,-66],[95,-33],[108,10],[206,32],[164,42],[45,28],[64,-8],[109,35],[136,146],[171,147],[144,94],[93,110],[77,63],[86,48],[58,24],[132,5],[189,76],[275,87],[211,-42],[223,-63],[110,51],[87,9],[74,23],[74,17],[53,45],[71,38],[54,55],[271,27],[284,36],[38,13],[37,-7],[98,10],[125,30],[172,10],[90,-3],[82,81],[164,17],[175,32],[73,24],[57,6],[1413,63],[61,31],[124,25],[47,61],[-190,25],[-58,26],[-65,7],[-38,-9],[-164,7],[-1303,94],[-27,8],[-45,57],[9,105],[-39,81],[-91,22],[-94,-2],[-119,-10],[-314,-44],[-125,-4],[-335,68],[-221,77],[-145,25],[-104,52],[-97,40],[-7,91],[23,85],[187,246],[117,118],[78,9],[71,53],[73,119],[59,56],[135,66],[59,17],[212,81],[58,2],[95,-13],[108,73],[329,156],[75,59],[91,35],[266,132],[238,64],[118,19],[144,39],[160,59],[139,57],[497,109],[298,29],[203,32],[144,-19],[143,6],[123,29],[57,23],[83,59],[276,-28],[178,40],[74,4],[78,18],[-31,21],[-28,3],[-28,28],[-37,58],[37,73],[28,36],[82,45],[43,64],[40,94],[135,185],[38,26],[86,8],[73,-5],[83,2],[210,-48],[39,19],[67,54],[56,68],[120,100],[23,30],[-10,49],[-180,-21],[-136,-33],[-131,18],[-17,28],[28,21],[49,8],[19,34],[-45,28],[-81,16],[-36,21],[3,51],[20,75],[44,21],[36,31],[96,105],[57,32],[164,29],[190,-44],[44,12],[46,59],[-47,90],[-36,34],[0,30],[100,-14],[93,-20],[109,4],[129,90],[181,75],[88,31],[78,18],[42,76],[62,144],[46,75],[-1,45],[-14,38],[-47,-11],[-43,-5],[-101,38],[-125,61],[-38,68],[-18,61],[39,33],[38,20],[41,5],[73,-25],[93,-62],[46,-24],[53,-46],[40,4],[47,64],[38,85],[32,26],[49,28],[54,41],[-24,40],[-58,21],[-8,24],[25,27],[47,6],[59,-59],[80,-39],[55,-13],[47,-32],[74,-108],[89,-179],[41,-2],[78,16],[84,7],[56,51],[12,128],[22,58],[-8,59],[-38,60],[-33,44],[6,33],[28,24],[37,8],[64,24],[99,-28],[54,-5],[81,16],[84,35],[86,25],[67,-19],[29,-64],[-33,-65],[-54,-48],[-49,-59],[-13,-64],[2,-35],[47,-9],[416,8],[55,-6],[72,0],[78,-21],[132,8],[118,23],[56,0],[97,-21],[69,-44],[143,13],[40,14],[39,59],[41,11],[48,-48],[15,-110],[22,-52],[61,-47],[60,40],[39,48],[94,93],[107,71],[82,42],[200,70],[99,44],[194,60],[250,32],[446,108],[147,12],[240,28],[123,30],[125,23],[77,80],[175,-61],[60,-7],[82,48],[90,119],[131,-49],[75,-77],[93,-60],[208,-104],[66,-24],[138,-21],[37,17],[65,69],[67,100],[42,42],[61,35],[69,55],[-18,30],[-39,10],[-36,16],[9,29],[122,7],[64,-101],[66,-33],[80,-33],[186,26],[159,2],[138,-20],[68,3],[61,76],[99,28],[56,-34],[35,-112],[127,-31],[266,-51],[30,13],[33,59],[23,72],[54,12],[69,39],[37,-6],[52,-47],[-18,-114],[-29,-105],[35,-85],[31,-47],[40,-8],[67,-2],[82,6],[51,-4],[261,42],[32,94],[42,107],[103,136],[40,-10],[31,-14],[70,-67],[42,-34],[9,-49],[-46,-47],[13,-31],[46,-25],[148,-41],[48,8],[71,43],[72,85],[39,98],[61,-5],[59,-20],[41,-51],[0,-97],[57,-66],[46,-42],[120,-45],[128,-11],[90,-27],[146,10],[71,30],[46,8],[80,24],[84,57],[52,23],[192,52],[145,57],[154,102],[150,61],[230,31],[64,13],[88,-1],[217,73],[82,42],[46,15],[52,52],[28,102],[22,63],[-4,61],[-20,80],[-46,71],[-47,104],[21,119],[37,49],[96,54],[95,11],[108,-7],[94,-11],[8,-51],[-41,-55],[-52,-54],[-31,-23],[11,-46],[68,-7],[149,10],[43,-42],[106,-184],[26,-87],[37,-25],[58,12],[125,-1],[87,13],[71,1],[37,-9],[38,-42],[72,-49],[72,36],[52,17],[63,-4],[99,-57],[99,-133],[107,-67],[7,43],[-14,53],[44,47],[53,79],[77,103],[61,105],[15,145],[29,119],[49,57],[48,37],[75,38],[92,8],[88,86],[62,35],[130,47],[163,47],[114,131],[39,16],[58,21],[107,8],[173,42],[54,6],[91,33],[80,78],[58,22],[104,-3],[88,44],[74,2],[68,22],[10,49],[-32,33],[-1,43],[38,56],[30,21],[90,-4],[75,-48],[55,-2],[14,-27],[-48,-34],[-32,-61],[55,-53],[49,-36],[59,7],[71,32],[70,-23],[31,-49],[0,-76],[15,-41],[49,36],[27,76],[-8,97],[3,60],[117,97],[46,73],[-82,15],[-58,-10],[-32,27],[-37,73],[101,61],[116,-2],[67,-52],[144,-83],[80,2],[72,-13],[15,26],[-27,122],[3,68],[-60,38],[-17,87],[25,91],[71,51],[97,24],[208,140],[55,30],[137,29],[160,14],[199,50],[355,-34],[95,-21],[59,-28],[57,-45],[74,-74],[107,-94],[139,-30],[39,-29],[51,-80],[-55,-52],[-45,-5],[-87,31],[-60,32],[-42,-13],[41,-55],[45,-34],[7,-46],[-24,-66],[-164,-130],[98,-37],[59,30],[54,55],[55,25],[37,10],[130,2],[74,22],[56,-16],[55,-35],[81,-35],[116,-38],[143,-147],[111,15],[60,32],[171,10],[147,-65],[83,-24],[240,-20],[143,-42],[91,50],[61,20],[128,10],[65,-10],[178,-54],[315,-55],[217,-29],[191,-1],[91,-24],[166,-26],[63,-20],[159,16],[74,21],[70,47],[39,-11],[27,-59],[-15,-101],[29,-69],[23,-69],[33,-57],[21,-49],[-15,-41],[-46,-37],[-64,-79],[4,-69],[27,-44],[-32,-53],[24,-74],[4,-45],[-22,-36],[-50,-22],[-85,-3],[-44,-21],[-7,-55],[22,-41],[49,-22],[14,-44],[-7,-66],[-22,-56],[-45,-26],[-49,-6],[-91,12],[-66,37],[-42,-33],[-31,-34],[-95,-77],[-44,-52],[-41,-55],[108,-31],[79,-55],[172,6],[55,24],[73,26],[39,-5],[24,-56],[-14,-89],[-3,-69],[-87,-190],[-29,-32],[-41,-52],[-48,-41],[-39,-20],[-75,-60],[-46,-109],[-50,-90],[-73,-154],[-42,-165],[-18,-99],[-28,-103],[-62,-177],[-40,-30],[-69,-72],[20,-48],[54,-5],[66,-11],[89,-37],[118,76],[62,48],[13,96],[-13,97],[38,57],[87,78],[205,56],[42,6],[68,19],[60,70],[53,70],[93,44],[77,72],[12,51],[32,11],[96,50],[25,37],[30,28],[21,63],[8,118],[24,89],[47,118],[38,86],[37,54],[99,29],[43,33],[57,73],[39,44],[-5,90],[22,83],[61,50],[78,92],[98,13],[74,48],[79,-33],[95,-46],[161,14],[76,-21],[59,25],[52,71],[19,87],[61,50],[69,-1],[114,87],[118,77],[96,18],[77,60],[55,102],[59,79],[73,75],[20,133],[46,67],[85,59],[71,32],[298,100],[229,66],[231,82],[71,-1],[93,45],[153,2],[40,4],[53,93],[114,86],[71,28],[90,74],[73,7],[103,-13],[87,-20],[78,-1],[113,62],[176,10],[54,30],[38,26],[249,87],[93,-17],[132,15],[80,-4],[76,-11],[96,-3],[166,31],[70,20],[132,76],[146,18],[64,20],[82,17],[67,-29],[48,-27],[29,-6],[39,-5],[95,30],[79,-8],[101,-33],[67,-27],[35,0],[62,24],[76,60],[71,24],[67,-15],[46,-25],[81,-34],[126,5],[120,13],[101,28],[87,30],[80,-46],[92,-17],[149,81],[57,-18],[39,-21],[32,-10],[39,-68],[142,13],[126,57],[108,43],[105,28],[83,39],[122,148],[-2,46],[17,28],[26,12],[194,-1],[60,12],[79,39],[137,-30],[131,-47],[34,5],[53,1],[93,-29],[105,-57],[93,-15],[385,-142],[218,-35],[110,-47],[28,-16],[32,-48],[58,-5],[46,19],[61,-73],[148,-55],[154,-27],[100,43],[170,123],[52,55],[-10,122],[89,136],[151,67],[188,35],[116,30],[154,28],[74,-29],[38,-21],[57,-25],[68,-76],[106,-172],[79,-62],[69,-5],[60,-10],[63,-39],[90,-121],[-54,-108],[-46,-40],[-196,-46],[-86,-37],[-75,-23],[-21,-90],[31,-42],[81,21],[95,10],[74,18],[68,28],[59,40],[140,21],[91,34],[82,20],[57,35],[58,-5],[58,-34],[46,3],[124,-11],[58,25],[51,2],[52,-19],[54,-26],[54,-7],[70,16],[98,42],[125,46],[117,15],[28,-1],[24,-9],[-117,-53],[-187,-72],[-100,-69],[59,-29],[352,77],[160,58],[142,26],[35,19],[116,90],[42,24],[125,32],[163,34],[124,39],[84,40],[63,4],[49,-29],[63,-33],[62,8],[76,31],[53,72],[31,53],[57,18],[73,16],[59,-18],[96,-38],[67,-20],[58,-151],[136,-133],[49,-35],[119,13],[128,-52],[55,7],[52,15],[47,-10],[70,32],[73,167],[67,163],[66,72],[40,30],[50,14],[77,34],[104,10],[77,-14],[167,-12],[136,41],[154,-7],[76,48],[82,7],[111,-41],[32,-29],[61,-42],[15,-41],[16,-74],[30,-2],[103,73],[56,13],[106,117],[56,-30],[127,-50],[51,-15],[100,-85],[51,18],[42,40],[124,-4],[116,-35],[48,-29],[59,-50],[37,-12],[29,14],[240,-19],[104,-37],[79,-45],[278,-21],[107,-46],[64,22],[127,-7],[52,-39],[46,-43],[101,-37],[55,7],[78,30],[78,41],[78,0],[37,-35],[13,-88],[58,2],[64,40],[56,-10],[20,-61],[-30,-81],[-71,-114],[-29,-95],[-59,-86],[10,-41],[59,-20],[59,61],[132,42],[69,55],[119,20],[117,-19],[83,-73],[154,-123],[6,-44],[13,-46],[-5,-41],[-23,-47],[82,-55],[73,-9],[59,5],[247,-53],[118,21],[106,0],[126,8],[97,-2],[77,-9],[91,19],[74,26],[36,-16],[15,-137],[5,-81],[42,-30],[44,30],[32,41],[195,-19],[78,-2],[74,-22],[75,-51],[72,22],[43,31],[58,20],[17,51],[7,85],[-2,83],[34,15],[35,-15],[46,-39],[105,-125],[80,-81],[34,-38],[49,-31],[99,-75],[136,-31],[133,-60],[155,4],[121,-77],[82,60],[43,14],[63,-16],[76,-52],[60,-12],[205,-86],[110,-30],[41,-63],[54,-60],[0,-61],[24,-77],[123,-61],[48,-59],[59,-78],[107,-293],[56,-52],[81,5],[76,-76],[24,11],[3,30],[-69,198],[-5,107],[54,61],[127,17],[98,-114],[90,-69],[60,-12],[120,3],[113,73],[86,-26],[138,-9],[179,-43],[77,8],[137,-18],[167,-62],[95,-23],[20,-25],[44,-41],[22,-50],[24,-46],[58,-52],[58,-9],[115,-44],[241,-136],[87,-40],[51,-29],[25,35],[7,72],[44,15],[47,-107],[49,-81],[22,-71],[-51,-58],[-74,12],[-52,0],[-53,-96],[-22,-166],[49,3],[36,15],[8,-61],[-22,-51],[-44,-20],[-76,39],[-93,27],[-102,10],[-99,49],[-39,3],[-41,-3],[53,-51],[55,-46],[125,-40],[156,-62],[4,-38],[-37,-47],[-46,-100],[-142,-86],[-83,62],[-98,15],[-49,-37],[-98,4],[-194,-14],[-76,79],[-119,43],[4,-36],[102,-130],[109,-30],[108,-35],[26,-33],[-49,-31],[-66,5],[-83,-61],[-158,10],[-75,-3],[-44,-25],[-39,-9],[31,-22],[38,-60],[-54,-51],[-50,-25],[-51,12],[-56,-20],[-27,56],[-2,122],[-32,109],[-34,4],[-54,-13],[-17,-93],[38,-161],[26,-50],[-21,-45],[-36,-14],[73,-136],[62,-93],[38,-31],[3,-46],[-30,-20],[-83,18],[-41,-9],[-46,6],[-77,20],[-66,6],[-66,-26],[-56,2],[-50,85],[-44,20],[-36,-26],[-28,-101],[-57,-31],[-58,-46],[-41,-50],[-20,-198],[-34,-41],[-51,2],[-39,-16],[-49,16],[-64,10],[-214,-68],[34,-35],[54,6],[188,-11],[80,-36],[13,-89],[32,-38],[63,-41],[48,-20],[18,-30],[-20,-61],[-27,-56],[-59,-61],[17,-31],[64,-10],[27,-137],[-42,-61],[20,-51],[5,-51],[-43,-47],[-33,-24],[-11,-50],[64,-29],[47,-10],[66,-5],[45,-54],[58,-82],[42,-68],[3,-113],[41,-67],[77,-43],[-2,-45],[54,-14],[53,-4],[19,-41],[-17,-50],[-89,-61],[-37,-44],[89,-7],[92,-46],[117,52],[62,56],[40,50],[30,-13],[3,-52],[36,-87],[151,-84],[84,-27],[81,-14],[71,2],[20,-50],[-22,-46],[-56,3],[-90,-8],[-66,38],[-47,33],[-412,-19],[-93,-15],[-111,-50],[-110,-24],[-169,-50],[-71,-30],[-185,117],[-60,86],[-25,5],[-44,-20],[-2,-61],[86,-133],[39,-35],[0,-35],[-25,-18],[-35,0],[-53,26],[-99,21],[-88,-41],[-108,-87],[23,-58],[29,-33],[-7,-39],[-121,-74],[-40,-3],[-25,-15],[30,-27],[66,-1],[7,-33],[-23,-26],[-109,-30],[7,-40],[59,-19],[77,7],[48,-29],[0,-46],[-49,-26],[-57,-19],[-392,-118],[-57,-32],[3,-43],[137,-11],[410,10],[27,-14],[-10,-34],[-23,-43],[23,-31],[61,-21],[2,-33],[-30,-13],[-61,-15],[-67,-4],[4,-35],[92,-31],[31,-4],[3,-118],[-3,-50],[-49,-24],[-18,-17],[-2,-40],[122,-29],[187,-127],[41,0],[74,-24],[119,-65],[42,-39],[68,-19],[9,-32],[42,-27],[166,-88],[22,-38],[-348,-73],[-350,-54],[32,-48],[378,5],[102,-30],[45,9],[26,32],[204,38],[207,25],[65,-18],[278,-141],[129,-53],[82,-20],[60,-5],[44,-21],[43,-45],[-10,-42],[18,-19],[29,-8],[55,-28],[63,10],[73,32],[51,-7],[92,-45],[-35,-35],[-20,-17],[-24,-32],[-23,-11],[-74,-7],[-41,0],[-42,6],[-4,-23],[51,-25],[74,-27],[480,-21],[137,-46],[135,25],[61,-8],[51,-15],[19,-46],[69,-15],[106,-36],[148,-18],[118,1],[145,-49],[73,-2],[45,-28],[330,-17],[49,-22],[38,-36],[78,-16],[85,-3],[464,-59],[174,-31],[40,2],[40,-6],[125,-26],[127,-14],[61,-36],[-99894,-48]],[[0,92737],[99966,-10],[-65,-44],[-137,-11],[-81,-31],[-19,-2],[-40,103],[-6,26],[15,34],[41,42],[17,30],[96,54],[86,71],[47,11],[47,33],[-99967,8]],[[64077,78881],[-27,-32],[-15,-6],[-16,6],[-14,-2],[-32,-49],[-57,-57],[-28,-35],[-31,-23],[-35,-14],[-36,-2],[-13,-13],[-41,-4],[-25,-11],[-1,-19],[5,-43],[-21,15],[-22,-30],[7,-28],[4,-26],[-34,-5],[-4,-31],[-8,-23],[-75,-51],[-19,0],[-16,-8],[1,-33],[4,-30],[13,-32],[-6,-14],[-11,-5],[-14,10],[-14,17],[-14,4],[-14,-4],[-64,-91],[-27,-23],[-30,-9],[-61,-34],[-19,2],[-17,12],[-15,-17],[-4,-42],[-17,29],[-18,23],[-8,7],[-4,-4],[17,-45],[1,-41],[-4,-23],[-7,-21],[-10,-12],[-11,-7],[-6,-73],[-12,-44],[-15,-40],[-21,-72],[-16,-31],[-13,-37],[-9,-51],[-12,12],[-10,22],[-6,-29],[-7,-25],[-32,-37],[-24,-36],[-11,-55],[-2,-33],[3,-30],[9,-17],[46,-20],[29,-25],[28,-47],[30,-40],[21,-51],[15,-64],[19,-123],[9,-129],[28,161],[24,29],[-6,-46],[-16,-69],[-17,-101],[-5,-74],[6,-64],[0,-30],[-13,-106],[7,-20],[11,-19],[29,-36],[21,-54],[5,-75],[12,-20],[14,-18],[72,-150],[41,-100],[21,-58],[22,-73],[12,-17],[14,-11],[27,-34],[25,-34],[45,-90],[63,-147],[15,-42],[10,-48],[9,-59],[14,-52],[64,-130],[28,-48],[45,-63],[16,-14],[21,-3],[39,-1],[35,-24],[18,-17],[18,-25],[16,-28],[17,-77],[-62,25],[-62,-4],[-36,-16],[-34,-22],[-32,-32],[-21,-62],[-17,-142],[-25,-134],[0,-61],[12,-59],[-2,-29],[-11,-12],[-15,-25],[-19,-122],[-10,-25],[-12,-15],[-3,15],[0,32],[-27,28],[-14,-32],[-10,-67],[-20,-71],[-1,-13],[5,-219],[1,-25],[8,-143],[7,-74],[9,-72],[16,-66],[18,-62],[25,-39],[56,-47],[27,-13],[71,-9],[71,-21],[41,-22],[13,-15],[11,-23],[34,-110],[54,-78],[110,-117],[53,-39],[179,-74],[119,4],[328,142],[110,36],[41,0],[-25,-28],[-41,-17],[25,-20],[38,-3],[18,3],[13,18],[2,30],[-2,30],[-18,132],[-10,93],[-5,40],[-14,148],[-7,148],[1,69],[8,138],[-1,69],[-3,63],[3,61],[6,69],[4,71],[-5,49],[-15,39],[-25,49],[-4,29],[-2,33],[-24,3],[-22,34],[-17,18],[-39,20],[-19,1],[-18,-14],[-13,-30],[-9,47],[0,49],[31,102],[19,-30],[24,-12],[30,-2],[29,8],[-6,35],[-13,20],[-17,15],[-6,46],[2,48],[8,45],[-9,18],[-14,11],[-32,-1],[-42,12],[-42,5],[-10,-53],[23,-70],[-19,34],[-19,46],[-26,81],[-16,96],[-3,103],[14,85],[18,80],[11,102],[15,101],[15,-45],[17,-40],[24,-38],[13,-9],[39,-15],[25,6],[27,22],[26,-7],[22,-42],[20,-46],[29,-10],[61,33],[29,8],[25,-15],[13,-3],[13,2],[-11,42],[-5,40],[15,21],[48,-23],[31,16],[8,8],[7,10],[3,35],[-1,36],[-4,33],[-9,29],[-22,42],[-86,98],[-28,39],[-24,50],[-16,72],[-12,74],[-11,55],[-30,129],[-12,15],[-14,7],[-36,4],[-36,-10],[-58,-22],[-34,7],[-15,-13],[-39,-55],[-18,-46],[-25,-106],[19,-34],[0,-22],[-15,-157],[9,-76],[-3,-6],[-7,18],[-22,78],[-38,94],[-32,145],[-7,60],[-3,94],[1,30],[15,79],[16,54],[13,56],[5,73],[-11,118],[-13,26],[-16,9],[-17,2],[-30,-5],[-14,-9],[-25,40],[-30,6],[-16,-11],[-16,-6],[-17,11],[-15,24],[-10,25],[-7,29],[-23,57],[-24,31],[-28,7],[-46,-1],[-15,3],[-1,33],[6,72],[0,38],[-3,35],[-8,29],[-10,25],[-27,42],[-21,58],[-35,120],[-30,135],[-13,21],[-27,21],[-60,17],[-39,18],[-15,17],[-7,29],[1,32],[3,38],[9,31],[31,25],[67,5],[58,-3],[53,-56],[17,-13],[18,-4],[37,18],[19,5],[46,-6],[-14,27],[-17,14],[-18,-1],[-16,11],[-25,52],[-45,59],[-10,24],[-3,39],[8,34],[32,34],[26,47],[13,63],[11,28],[23,45],[34,-8],[54,32],[87,-6],[105,9],[29,-3],[67,-32],[39,-14],[46,-7],[34,14],[-32,44],[-69,51],[-17,44],[31,119],[43,109],[26,129],[-7,128],[-13,35],[4,42],[15,35],[11,35],[-9,42],[-19,65],[-10,22],[-33,35],[-66,2],[-54,19],[-17,-16],[-10,-24],[-13,-15],[-42,-32],[-14,-6],[-14,6],[-21,36],[-18,-4],[-56,22],[-26,49],[-10,7],[-90,38],[-32,8],[-71,-40],[-52,-52],[-15,-7]],[[0,89324],[99951,-19],[-49,-66],[-56,-57],[-83,-23],[-126,-87],[-49,-16],[-65,40],[-149,26],[-47,35],[-68,88],[-23,13],[-21,35],[-82,39],[-72,-25],[-58,19],[-20,-14],[30,-12],[54,-11],[82,5],[27,-9],[24,-31],[28,-49],[-21,-32],[-22,-11],[-66,36],[-76,-5],[-36,9],[-102,60],[-78,-67],[-107,-35],[-83,-4],[-152,-53],[41,-2],[111,38],[65,0],[96,21],[51,24],[24,23],[31,23],[31,-11],[22,-24],[14,-35],[14,-45],[-18,-24],[-18,-12],[-22,-33],[102,56],[62,-33],[31,5],[58,49],[93,32],[11,-6],[11,-16],[-15,-94],[6,-74],[71,-81],[73,-47],[26,-2],[24,9],[9,43],[18,32],[23,-29],[19,-31],[27,-76],[-1,-23],[-6,-45],[23,-20],[32,-6],[12,-71],[11,-101],[-14,-9],[-16,0],[-51,-26],[7,-18],[52,-10],[15,-21],[-11,-47],[3,-21],[18,-5],[12,28],[-3,39],[5,17],[35,-81],[0,-31],[30,-36],[85,-54],[15,-24],[5,-40],[-21,-12],[-20,-28],[12,-40],[22,-32],[36,-12],[17,-52],[0,-49],[-26,-43],[-53,-59],[-31,-24],[-12,-42],[-3,-44],[-21,2],[-23,19],[-262,110],[-99,21],[-87,2],[-16,7],[1,26],[5,24],[13,29],[-6,26],[-11,2],[-11,-20],[-24,0],[-23,23],[-19,-7],[-9,-32],[-7,-17],[0,-20],[12,-18],[50,-20],[-8,-18],[-70,-14],[-57,-18],[-74,-54],[-30,-38],[-198,-93],[-48,-32],[-21,-4],[-27,-11],[-21,-39],[-110,-55],[-23,5],[-29,-46],[-27,-26],[-63,-3],[-41,-13],[-88,-67],[-55,21],[-65,-91],[-72,-87],[-21,0],[-55,36],[-14,-19],[9,-35],[19,-37],[-11,-10],[-22,10],[-16,2],[-12,-11],[2,-27],[-31,-33],[-24,-3],[-28,-11],[-10,-29],[9,-32],[-50,-36],[-41,-48],[-19,-8],[-22,-21],[-24,-16],[-28,3],[-67,-67],[-150,-117],[-42,-15],[-53,-36],[-5,-23],[0,-30],[-21,-48],[-25,-122],[-8,-22],[-12,-25],[-55,12],[-48,46],[-15,22],[-8,25],[-3,40],[-9,19],[-11,9],[-55,99],[-95,68],[-14,23],[-121,-18],[-33,-1],[-58,17],[-90,-11],[-109,-37],[-33,-23],[-111,-36],[-73,-57],[-142,-208],[-34,-43],[-16,-9],[-24,-4],[-10,42],[-4,33],[9,63],[17,52],[17,96],[5,39],[12,41],[-48,-3],[-66,-71],[-100,-69],[-46,-18],[-36,-41],[-26,-5],[-30,-15],[-3,-89],[-15,-48],[-18,-10],[-28,-2],[-21,19],[-30,71],[-40,37],[-24,7],[-18,-9],[-35,-48],[-38,-44],[6,50],[-33,19],[-29,11],[-36,2],[-11,-7],[-14,-29],[-33,-37],[-22,-15],[-23,-30],[-13,-31],[-12,-44],[-14,-107],[1,-125],[-53,-99],[-20,10],[-10,-6],[-10,-13],[18,-55],[-10,-19],[-9,-13],[-25,-14],[-56,-81],[-53,-52],[-87,-151],[-25,-100],[-25,-113],[12,-55],[10,-36],[16,-25],[28,-27],[59,-29],[-5,-19],[0,-16],[21,28],[15,79],[37,26],[18,-1],[118,-63],[23,-27],[-4,-60],[-7,-28],[-22,-42],[-42,-50],[-49,-69],[-5,-43],[0,-23],[13,-81],[1,-46],[-6,-85],[3,-37],[13,-31],[20,-20],[35,11],[33,-9],[25,-22],[-4,-71],[15,-67],[11,-124],[-21,-34],[-20,-21],[-39,-54],[-21,-6],[-37,18],[-58,96],[23,57],[50,40],[23,28],[17,42],[-26,-8],[-18,-18],[-57,8],[-23,-20],[-28,-32],[11,-80],[-19,-15],[-35,-27],[-52,-34],[-17,-23],[-45,-143],[-41,-107],[-15,-92],[2,-79],[15,-88],[11,-38],[48,-82],[23,-64],[7,-77],[-38,-37],[-67,-89],[-28,-10],[-92,2],[-46,45],[-54,-11],[-45,-22],[-71,-63],[-63,-82],[-60,-57],[-18,-34],[-24,-71],[-22,-129],[8,-64],[12,-30],[11,-39],[-16,-61],[0,-38],[29,-61],[6,-84],[-21,-2],[-49,60],[-52,4],[-124,-69],[-52,-40],[-57,-80],[-17,15],[-12,46],[-21,20],[-26,-10],[-11,-43],[36,-20],[13,-28],[-21,-107],[-15,-36],[6,-95],[-2,-45],[-8,-45],[-37,-123],[-63,-162],[-78,-118],[-54,-41],[-27,-31],[-12,-41],[-80,-113],[-98,-119],[-28,-21],[-6,45],[-3,44],[-12,59],[-36,49],[-6,40],[-6,54],[-3,252],[-31,262],[-3,82],[-38,67],[-21,70],[-12,68],[-3,81],[-41,425],[-13,106],[-55,342],[-24,198],[-16,192],[-2,86],[24,257],[21,160],[74,359],[11,33],[12,17],[128,138],[56,75],[33,80],[36,101],[-4,55],[-4,31],[-14,36],[-30,41],[11,18],[12,14],[31,15],[64,-31],[65,13],[60,127],[86,-19],[65,22],[18,-9],[13,43],[36,46],[66,68],[97,82],[48,55],[27,52],[40,50],[39,62],[71,186],[140,154],[55,88],[45,31],[40,15],[101,126],[64,105],[85,72],[25,46],[44,108],[18,26],[55,41],[124,71],[72,71],[106,10],[31,28],[33,16],[35,23],[-43,63],[10,33],[8,16],[76,74],[31,60],[-4,25],[-5,19],[-47,24],[9,55],[13,48],[38,40],[13,94],[2,99],[37,142],[22,32],[87,71],[20,2],[60,-24],[66,-12],[23,-22],[5,19],[-3,24],[18,9],[38,-10],[-5,27],[-98,14],[-70,31],[-63,60],[-41,17],[-45,-5],[-257,-84],[-12,-23],[-12,-32],[16,-47],[-13,-21],[-12,-14],[-14,-31],[-12,-61],[3,-59],[-31,-92],[-3,-57],[55,-32],[14,-21],[-16,-32],[-17,-19],[-14,-24],[-11,-9],[-15,-6],[-20,31],[-18,62],[-29,4],[-10,-10],[-5,-24],[-25,-2],[-28,12],[-32,-5],[-57,-70],[-319,-333],[-34,-40],[-42,-80],[-79,-8],[-31,-18],[-23,-24],[-31,-16],[1,30],[6,22],[7,59],[43,111],[-27,12],[-27,1],[-50,-23],[-34,-37],[-26,8],[13,33],[31,66],[-9,61],[-9,33],[13,18],[65,123],[23,64],[20,84],[1,26],[-4,32],[-19,5],[-16,0],[-128,-83],[-47,-23],[-15,36],[-21,15],[-35,61],[-30,9],[-31,-4],[-70,-41],[-77,-23],[-59,8],[-51,-35],[-23,-6],[-75,24],[-91,2],[-28,-30],[-79,-41],[-54,-64],[-28,-20],[-31,-28],[-14,-120],[-41,-39],[-38,-29],[-80,-92],[-56,-126],[-38,-54],[-81,-76],[-126,-100],[-110,-162],[-38,-122],[-14,-4],[-27,-25],[-7,-60],[1,-41],[-17,-33],[-17,-42],[18,-26],[16,-5],[24,4],[63,34],[108,-52],[54,-52],[-4,-52],[2,-46],[-40,3],[-53,-4],[-34,-27],[-68,43],[-23,-16],[-36,-46],[-65,-19],[-33,23],[-55,63],[-93,-6],[-24,-71],[-21,2],[-33,-7],[-55,-82],[-18,-8],[-67,16],[-48,42],[-23,2],[-43,-19],[-21,-50],[-107,-25],[-105,5],[-57,119],[107,47],[63,-10],[72,8],[75,37],[-26,31],[-18,7],[-45,-4],[-40,23],[-87,116],[-38,21],[-49,13],[-38,1],[-14,-8],[-20,-28],[-13,-27],[-12,-9],[-26,5],[-31,22],[-37,-7],[16,17],[35,18],[-58,20],[-37,28],[-34,7],[-156,69],[-60,-6],[-37,-19],[-63,-56],[17,-41],[14,-19],[8,-22],[-20,-4],[-58,-4],[-35,33],[-25,-48],[10,-43],[40,15],[21,-18],[-14,-49],[-52,-15],[-65,3],[-65,87],[-107,-15],[-51,-56],[-49,-13],[-131,56],[-66,5],[-74,48],[-26,-15],[-47,-121],[-63,-29],[-32,16],[-29,76],[-20,25],[-56,23],[-298,-22],[-100,19],[-70,2],[-96,-39],[-92,15],[-170,-75],[-70,-50],[-84,-88],[-76,-147],[-42,-55],[-71,-70],[-100,-64],[-54,-65],[-30,-53],[-52,-200],[-14,-30],[-123,-72],[-39,-80],[-17,-20],[-51,-34],[-31,-56],[-17,-16],[-73,-40],[-60,-100],[-85,-70],[-123,-194],[-11,-23],[-10,-52],[-19,-38],[-106,-169],[-33,-16],[-53,-79],[-54,-47],[-49,-56],[-61,-59],[-92,-67],[-31,-39],[-48,-90],[-118,-111],[-59,-27],[-77,-98],[-8,-23],[-6,-36],[13,-63],[19,-14],[31,-9],[115,-62],[107,17],[95,0],[37,6],[23,-2],[8,-34],[-1,-63],[-14,-57],[-11,-168],[-13,-75],[10,-73],[23,-13],[23,33],[37,5],[38,-15],[28,117],[-23,18],[-22,42],[13,31],[66,57],[41,5],[39,-4],[-43,-73],[-17,-15],[-13,-4],[-18,-14],[38,-42],[41,-32],[59,-14],[-14,-25],[-39,-22],[-36,-91],[-56,-44],[-26,-30],[9,-19],[21,-4],[114,12],[59,25],[84,71],[35,105],[32,29],[9,0],[11,-7],[1,-74],[-45,-83],[-32,-47],[-12,-40],[19,0],[37,8],[16,19],[42,101],[11,72],[6,100],[-5,60],[3,43],[-16,43],[11,13],[113,-59],[60,-14],[108,48],[24,-12],[18,-29],[89,-89],[17,-29],[29,-108],[95,-125],[88,-59],[3,-23],[56,-69],[44,-24],[7,-62],[-20,-50],[-41,-48],[-82,44],[-13,-2],[10,-28],[59,-81],[47,-34],[3,-108],[-6,-59],[-31,-66],[10,-38],[44,-56],[22,-22],[22,-32],[-28,-70],[-5,-78],[-30,-35],[-36,-76],[-55,-62],[-26,-119],[-42,-105],[-5,-104],[-7,-37],[-34,-108],[-13,-146],[17,-239],[8,-14],[16,-14],[-3,-17],[-8,-11],[-33,-71],[0,-49],[13,-37],[2,-95],[-24,-153],[-9,-24],[-10,-39],[-4,-36],[-7,-22],[-4,-39],[7,-34],[12,-17],[-43,-110],[-15,-144],[-16,-58],[-31,-57],[-66,-83],[-24,-52],[-43,-66],[-41,-51],[-57,-145],[-46,-145],[-116,-188],[-15,-46],[-9,-50],[-30,-84],[-15,-116],[-35,-46],[-29,-122],[-94,-186],[-23,-63],[-72,-103],[-77,-142],[-96,-128],[-18,-53],[-37,-58],[-40,-90],[-58,-90],[-12,-60],[-19,-42],[-43,-28],[-31,-39],[-95,-231],[-12,-42],[-2,-37],[-62,-86],[-35,-92],[-60,-57],[-62,-78],[-149,-144],[-41,-54],[-83,-68],[-34,-1],[-72,-37],[-47,-38],[-28,14],[-17,50],[-21,-2],[-16,-7],[-43,48],[-37,-3],[-26,22],[-50,-15],[9,205],[-7,43],[-21,-40],[-57,-72],[-23,-14],[-22,0],[9,44],[31,62],[-10,10],[-10,3],[-40,-27],[-20,-30],[-58,-119],[-34,-100],[-28,-29],[-13,-43],[-24,-41],[-37,11],[-22,-7],[-53,23],[-13,-10],[35,-77],[-29,-113],[-12,-14],[-14,-16],[-19,10],[-31,6],[-39,-51],[-22,-17],[-16,-50],[-31,-30],[-17,-31],[-22,-54],[-14,-53],[-33,-54],[-20,-67],[-1,-58],[21,-59],[2,-51],[-15,-104],[9,-110],[-10,-43],[-102,-76],[-26,-37],[-38,-98],[-46,-36],[-28,-40],[-39,-24],[-26,-69],[-27,-39],[-33,-24],[-25,-30],[-55,-2],[-39,-21],[-27,-58],[-83,-66],[-12,-49],[6,-77],[0,-58],[-7,-49],[-18,14],[-10,-16],[-11,-44],[4,-51],[28,-17],[23,-20],[33,-11],[24,-24],[52,-107],[42,-47],[11,-17],[24,-24],[22,-37],[13,-33],[68,-258],[64,-166],[56,-121],[79,-232],[23,-124],[2,-77],[13,-106],[-11,-60],[3,-96],[-5,-49],[-9,-36],[-1,-70],[3,-37],[1,-49],[6,-19],[9,-7],[14,18],[18,7],[-3,-59],[-22,-150],[-18,-109],[-25,-95],[-32,-87],[-38,-34],[-27,-13],[-51,-4],[-43,15],[-36,-11],[-15,-18],[-11,-31],[8,-48],[-1,-36],[-16,3],[-31,21],[-34,2],[-16,11],[-16,51],[-17,-2],[-29,-31],[-44,-6],[-15,-17],[-5,-21],[6,-26],[22,-35],[-7,-36],[-23,-18],[-19,44],[-12,43],[-13,2],[-20,-12],[-4,-46],[10,-32],[15,-36],[-22,-42],[-5,-30],[-16,-21],[-42,47],[6,34],[18,33],[3,34],[-6,20],[-61,-86],[-37,-96],[-19,7],[-9,25],[-11,10],[-40,-63],[-8,-49],[-14,-2],[-7,21],[0,45],[-7,37],[-41,56],[-19,48],[10,27],[34,-15],[28,2],[-6,23],[-9,11],[19,12],[15,27],[-13,7],[-19,-15],[-16,7],[-6,63],[-20,65],[-10,63],[19,36],[10,56],[18,81],[9,27],[25,19],[9,21],[-14,11],[-22,9],[1,24],[15,12],[16,26],[32,32],[10,59],[-9,15],[-20,14],[5,30],[8,23],[-3,14],[-24,38],[-16,36],[5,40],[-4,60],[2,51],[-1,28],[-11,62],[-5,63],[-16,-10],[-12,-15],[-44,22],[-14,1],[-5,47],[15,57],[38,50],[21,6],[16,22],[26,7],[30,-34],[27,-7],[15,-59],[9,-12],[2,22],[22,25],[5,19],[-4,11],[-25,10],[-23,73],[-3,32],[-9,20],[13,59],[-26,67],[-13,21],[2,59],[-14,39],[-8,21],[-4,36],[4,16],[12,6],[3,15],[-3,5],[-14,4],[-56,47],[-46,-29],[-12,-37],[-12,-12],[-19,73],[-30,2],[-48,65],[-21,-13],[-5,-26],[-26,-60],[-37,-48],[-12,-7],[-13,3],[2,14],[-15,55],[-58,22],[-21,23],[-11,6],[57,61],[15,11],[-11,14],[-12,7],[-47,-9],[-24,20],[-36,-7],[-24,16],[51,60],[2,36],[-1,27],[26,80],[26,44],[67,62],[30,9],[21,-3],[17,6],[-18,24],[-18,11],[-35,-2],[-36,36],[-3,38],[70,240],[1,22],[-11,58],[-3,57],[-51,33],[-22,4],[-64,64],[-26,33],[-10,-10],[-2,-51],[-9,-12],[-17,-10],[-9,59],[-14,42],[-42,44],[-16,23],[8,52],[-4,4],[-3,5],[-23,-51],[-45,-48],[-96,-10],[-30,34],[-11,-24],[-9,-31],[-25,-11],[-39,-2],[-22,-21],[-12,-23],[-54,-8],[-20,-31],[-34,-11],[-140,-135],[-30,-57],[-29,-66],[-21,-34],[-18,-23],[-16,-10],[-17,-23],[-16,-3],[-17,11],[-19,-4],[-12,-28],[10,-36],[-5,-16],[-37,-19],[-55,-13],[-23,-24],[-8,-14],[-12,-7],[-12,47],[-4,62],[23,15],[20,8],[116,86],[-14,64],[10,28],[26,45],[17,23],[-10,8],[-75,-15],[-44,1],[-22,5],[7,39],[-4,38],[-5,15],[38,44],[18,11],[13,-1],[-1,27],[-11,40],[12,52],[79,61],[19,55],[31,51],[58,128],[4,22],[16,60],[3,24],[-26,35],[-11,49],[-78,89],[-7,76],[-7,-3],[-12,-53],[-10,-18],[-36,-1],[-18,20],[-100,13],[-25,-34],[-23,-53],[-22,-38],[-23,-20],[-19,-35],[-81,-206],[-31,-16],[-144,-124],[-72,-49],[-56,-87],[-19,-52],[-17,-58],[-10,-88],[-51,-107],[-18,-23],[-18,-9],[-23,3],[-21,-7],[-35,10],[-43,-34],[-48,-29],[-42,73],[-30,19],[-48,-21],[-23,-33],[-47,-162],[-17,-93],[1,-38],[27,-116],[31,-64],[69,-74],[147,-51],[34,18],[37,0],[39,-48],[24,-80],[3,-55],[0,-19],[9,-16],[5,-27],[-15,-23],[-12,-12],[-10,-84],[0,-94],[12,-31],[32,-44],[49,-36],[45,-8],[86,17],[35,57],[-2,24],[1,32],[76,83],[43,74],[-7,19],[-8,13],[8,8],[23,5],[106,76],[83,-62],[47,-72],[47,-13],[33,-36],[37,-32],[49,-2],[41,-7],[13,30],[13,19],[14,-4],[17,-38],[47,-30],[43,2],[30,11],[18,-14],[-26,-49],[4,-79],[-20,-25],[-19,-40],[11,-26],[10,-12],[-1,-32],[-17,-18],[-32,-48],[-19,1],[-9,9],[-6,18],[-4,27],[-12,18],[-31,7],[-33,-6],[-73,-71],[-71,-57],[-75,-45],[-25,-28],[-18,-8],[-30,22],[-19,-2],[-4,-14],[24,-40],[6,-31],[-3,-23],[-13,-11],[-20,18],[-18,-25],[-8,-42],[0,-99],[-12,-22],[-33,-12],[-35,-32],[-13,15],[-5,17],[4,46],[-4,22],[-16,-1],[-25,-13],[-18,-31],[-6,-18],[24,-58],[23,-6],[6,-13],[-19,-29],[-45,-42],[-8,-36],[-13,-34],[-19,-27],[-13,-28],[-15,-15],[-25,-17],[-31,-68],[-23,-65],[-27,-32],[-21,-109],[-38,-58],[-14,-94],[10,-58],[41,1],[21,-21],[44,-76],[52,-49],[53,-28],[66,-71],[19,-29],[15,-61],[29,-174],[20,-86],[2,-46],[31,-85],[33,-146],[37,-127],[8,-99],[-13,-46],[1,-59],[37,-55],[85,-63],[13,-18],[17,-31],[0,-95],[13,-31],[12,-18],[51,-41],[21,-33],[23,-54],[6,-48],[3,-65],[-29,-2],[-23,7],[-91,84],[-24,3],[-33,-12],[-48,16],[-51,93],[-36,28],[-39,15],[-93,-81],[-24,6],[-7,-9],[-11,-14],[44,-17],[43,26],[42,39],[60,-21],[10,-35],[10,-59],[42,-40],[33,-18],[41,-52],[41,-83],[86,-95],[35,-90],[13,-59],[12,-83],[-30,-27],[-26,-4],[-41,-13],[-30,-29],[-31,-52],[-86,-82],[-17,-51],[-11,-44],[-21,-22],[-54,21],[-50,-2],[-56,-60],[-14,-24],[9,4],[9,8],[25,-9],[40,32],[38,-98],[76,16],[71,82],[27,1],[23,-13],[25,-32],[69,-142],[37,-16],[37,-33],[20,-4],[18,-10],[-49,-52],[-64,-113],[-28,-27],[-19,-30],[51,15],[37,54],[18,13],[15,-12],[7,-67],[-14,-205],[-18,-3],[-17,56],[-20,17],[-18,-11],[-33,0],[-13,-25],[-11,-36],[20,-7],[40,-62],[4,-33],[-11,-22],[-28,9],[34,-46],[-9,-48],[-11,-19],[-20,-12],[-12,-42],[18,-69],[18,-89],[2,-43],[-28,18],[-43,-54],[-23,-4],[-16,71],[-19,-11],[-13,-21],[-18,-77],[-21,-69],[-19,-19],[-22,5],[-18,-2],[5,-18],[19,-23],[0,-27],[-41,-84],[-7,-33],[1,-28],[-21,-34],[11,-57],[-6,-40],[-19,-54],[-19,-36],[-24,-58],[-29,-33],[-39,-122],[-11,-61],[-3,-63],[-13,-21],[-20,-28],[-24,14],[-1,42],[-10,4],[-6,27],[-2,35],[3,28],[-10,-8],[-6,-33],[-16,-27],[-16,11],[-18,22],[1,-32],[9,-31],[4,-32],[24,-6],[17,-37],[13,-55],[2,-21],[10,-25],[1,-21],[-23,-20],[-29,-36],[-35,-63],[-29,-42],[-26,0],[-15,5],[-23,24],[-26,10],[35,-85],[19,-15],[24,3],[23,32],[33,-3],[8,-49],[-9,-55],[-18,-72],[-3,-62],[22,-88],[1,-27],[-9,-13],[-26,23],[-21,29],[-22,-7],[-22,12],[-23,-10],[-10,-21],[7,-34],[20,-28],[12,-43],[-14,-15],[-58,10],[-14,-8],[-17,-47],[11,-71],[-13,-43],[-24,-11],[-32,-35],[-19,-8],[1,-15],[14,-16],[8,-21],[-18,-72],[-26,-23],[-42,12],[-32,-17],[-28,31],[-30,1],[-20,-39],[-2,-45],[-20,-4],[-11,3],[-15,-3],[2,-24],[8,-21],[41,-10],[7,-30],[2,-47],[-43,-80],[-18,-54],[-27,1],[-20,-43],[-11,-60],[-14,12],[-31,-9],[-10,-28],[8,-12],[1,-20],[-13,-67],[-14,-18],[-6,27],[-4,42],[-11,3],[-18,-39],[-22,-28],[-18,-11],[-14,26],[-34,13],[-13,-112],[-29,-40],[-13,-13],[-23,-4],[15,-15],[5,-29],[-9,-28],[-23,-6],[-13,-22],[-5,-100],[-14,-35],[-35,-2],[-26,23],[-8,-19],[-4,-17],[-14,-18],[-26,-5],[-59,-45],[-26,13],[-32,17],[-23,-17],[-7,-34],[-10,-26],[-32,0],[-26,32],[-26,24],[-29,-20],[-22,-42],[-27,-14],[-5,-26],[-12,-13],[-29,5],[-11,65],[-16,9],[-16,-32],[-6,-26],[-8,-19],[3,-53],[-16,-1],[-21,32],[-23,6],[-20,-30],[7,-24],[-2,-24],[11,-12],[3,-23],[-12,-13],[-1,-28],[-6,-17],[-36,30],[-29,16],[-27,-6],[-9,18],[-2,18],[31,32],[2,16],[-23,11],[-29,44],[-20,73],[-26,39],[-12,35],[-4,62],[-5,29],[2,33],[7,29],[-28,-15],[-20,-27],[4,-34],[-5,-32],[-31,-16],[2,-14],[2,-14],[24,-43],[5,-36],[10,-20],[19,-56],[-1,-110],[11,-31],[-4,-30],[-8,-43],[-13,-12],[-23,-14],[-14,-8],[-11,-11],[-17,-32],[-33,-8],[-16,76],[-23,-51],[-6,-104],[-9,-18],[-14,-15],[-26,37],[-23,-25],[-18,-25],[-8,-22],[-13,-25],[-25,24],[-21,36],[5,27],[-2,17],[-10,14],[-10,-2],[5,-35],[4,-67],[-10,-19],[-14,-15],[-31,12],[-21,25],[-26,21],[-22,4],[-5,-42],[-15,-35],[-13,-4],[-14,6],[-18,-37],[-8,-27],[-22,-29],[-58,-13],[-21,-29],[-27,5],[-21,-7],[-13,2],[-10,15],[-13,0],[-5,-47],[-33,-20],[-30,-5],[-33,-62],[-24,-37],[-17,-4],[-13,13],[-7,56],[-6,6],[-4,-52],[-6,-43],[-12,-24],[-38,-54],[-11,-54],[7,-49],[51,-12],[7,-27],[-5,-22],[-13,-19],[-3,-28],[55,-88],[2,-34],[-9,-19],[-10,-41],[-29,-35],[-62,-18],[-51,18],[-16,40],[1,28],[13,-8],[14,3],[-4,26],[-6,15],[-24,23],[-19,62],[4,51],[-11,40],[-11,34],[-12,20],[-6,25],[12,78],[-7,45],[22,56],[6,63],[39,22],[3,60],[-29,2],[-19,44],[-5,-18],[-15,-2],[-26,84],[-8,11],[-12,2],[6,-90],[-30,-33],[-25,-15],[-35,-6],[-20,-10],[-18,8],[4,27],[10,33],[-9,27],[-20,20],[-30,-1],[-21,6],[-20,-2],[-8,12],[-19,42],[-17,26],[-7,26],[7,31],[-6,18],[-32,2],[1,-43],[3,-52],[9,-39],[-6,-22],[-16,-15],[-17,42],[-8,10],[-9,-2],[-6,-41],[-15,-37],[-28,4],[-22,-23],[-26,-10],[-13,-5],[-33,-1],[-28,-53],[-20,-22],[-30,-18],[-33,-30],[-9,-52],[-1,-38],[-5,-42],[-53,-61],[-15,6],[-10,23],[-15,-5],[-11,-11],[-12,1],[-14,-13],[-18,4],[-17,19],[-10,5],[-12,1],[-2,-23],[17,-89],[5,-41],[-56,-120],[6,-78],[-15,-59],[-34,-48],[-64,-123],[-29,-3],[-22,-28],[-47,-202],[-1,-70],[-7,-50],[2,-49],[-21,-96],[-22,-41],[-4,-52],[30,-108],[4,-19],[17,-58],[9,-41],[14,-41],[49,-107],[22,-33],[26,-23],[48,-96],[24,-62],[-11,-41],[6,-89],[-35,26],[5,-11],[40,-48],[61,-170],[53,-84],[54,-96],[17,-91],[48,-60],[54,-87],[-2,-19],[14,-24],[37,-46],[22,-49],[8,-46],[13,-7],[16,11],[15,4],[10,-3],[17,-51],[22,-46],[11,-41],[9,5],[7,-6],[2,-35],[4,-23],[30,-67],[14,-63],[37,-103],[26,-58],[20,-33],[21,-28],[22,-114],[11,-103],[23,-114],[18,-50],[0,-95],[14,-97],[15,-65],[5,-67],[4,-33],[6,-25],[16,-114],[-4,-52],[-11,51],[1,-152],[10,-80],[-5,-99],[11,-35],[19,-111],[13,-40],[-1,-137],[7,-69],[-18,41],[-13,47],[-17,-25],[-15,-36],[24,-147],[-28,14],[3,-197],[11,-46],[1,-22],[-3,-27],[-8,29],[-1,30],[-5,-6],[1,-16],[-10,-35],[-2,-43],[9,-36],[2,-28],[-7,-35],[-11,-37],[-26,-5],[-6,-71],[-9,-76],[-46,-12],[-33,-67],[-42,-25],[-37,-67],[-40,-61],[-27,-8],[-22,-13],[-26,-102],[-44,-12],[-78,-83],[-26,-40],[-24,-16],[-34,-35],[-7,13],[-12,30],[-29,15],[-15,33],[-4,43],[-4,17],[-6,-24],[-5,-102],[-5,-23],[-13,-10],[-25,29],[-23,59],[-34,-41],[10,-5],[16,3],[12,-10],[10,-39],[-1,-22],[-5,-25],[-32,-4],[-42,9],[-7,-3],[38,-39],[35,-22],[16,-24],[0,-20],[-20,-32],[-15,-40],[-1,-25],[0,-27],[-17,-24],[-11,5],[-30,41],[-86,163],[13,-46],[90,-185],[15,-61],[3,-43],[-10,-21],[-15,-26],[-29,-2],[-49,69],[-77,165],[-26,22],[78,-188],[13,-46],[13,-53],[-4,-31],[-7,-30],[-185,-174],[-28,-76],[-22,-93],[-36,-51],[-21,-48],[-62,-26],[-34,8],[35,86],[-22,32],[-1,221],[9,242],[16,121],[23,30],[30,19],[0,25],[-3,30],[-15,41],[-18,19],[-25,8],[-20,51],[-15,-2],[-24,-17],[-14,22],[-5,34],[-22,42],[-24,41],[-46,75],[-90,26],[-10,33],[-9,6],[-8,-43],[-50,-41],[-21,25],[-15,30],[2,37],[15,30],[24,22],[12,76],[-19,97],[-16,28],[-18,23],[-18,-37],[-15,-61],[-16,-32],[-23,-7],[-33,2],[-13,93],[-4,79],[4,90],[5,53],[-32,74],[-2,70],[-15,37],[-4,-19],[0,-20],[-6,-2],[-8,40],[-26,67],[-8,71],[-30,79],[-16,31],[-6,-26],[-9,-28],[-30,40],[-25,43],[-23,81],[-3,-19],[-6,-17],[-26,64],[-28,51],[-25,19],[-15,17],[-15,27],[-31,28],[-78,-40],[-98,31],[-38,-30],[-16,19],[-9,35],[9,59],[2,125],[12,88],[-6,67],[6,31],[4,43],[-15,17],[-70,34],[-15,27],[-18,-31],[-84,-17],[-31,-26],[-29,-49],[-8,-64],[17,-41],[11,-73],[-30,-158],[-5,-46],[12,-194],[-5,-106],[-16,-71],[-26,-63],[-11,-109],[-20,-50],[-28,-114],[-18,-143],[-13,-66],[-8,-122],[-56,-184],[-13,-104],[-20,-40],[7,-31],[1,-52],[-7,-139],[-2,-115],[8,-62],[27,-122],[-6,-36],[-3,-50],[22,-23],[17,-7],[91,58],[31,-15],[12,-54],[8,-47],[15,-254],[8,-48],[19,-45],[20,-47],[7,8],[1,18],[1,20],[19,-48],[14,-90],[48,-476],[14,-61],[11,-63],[-29,31],[-8,105],[-8,45],[-11,6],[-16,0],[-1,18],[12,35],[-2,41],[-17,34],[-27,-27],[1,-74],[12,-57],[46,-127],[15,-53],[18,-15],[27,8],[32,-54],[25,-50],[63,-77],[38,8],[41,19],[27,-5],[27,-20],[32,-64],[52,-161],[84,-134],[48,-22],[18,-18],[54,-178],[71,-126],[30,-46],[23,-23],[32,-67],[28,-84],[61,-237],[10,-105],[5,-159],[-14,-240],[-16,-119],[3,-57],[22,-86],[-6,-82],[4,-68],[-2,-189],[13,-55],[15,-36],[76,-112],[6,-41],[37,-143],[70,-310],[19,-139],[-2,-38],[-8,-15],[-21,-14],[-17,27],[-6,20],[2,24],[-7,24],[-16,28],[-10,26],[3,-42],[0,-55],[-21,-5],[-28,17],[-34,-15],[-40,-68],[-19,-2],[-15,58],[-8,39],[-12,28],[-127,142],[-47,37],[-50,107],[-112,119],[-71,116],[-30,71],[-73,64],[-31,74],[-16,15],[-15,27],[16,72],[-7,76],[-8,64],[-51,126],[-25,88],[-49,87],[-19,51],[-18,58],[11,21],[11,12],[-10,43],[-27,74],[-13,85],[0,160],[-39,226],[-34,313],[6,110],[-9,119],[-22,114],[-29,82],[-11,67],[-69,178],[-48,73],[6,132],[-14,26],[-18,2],[-14,37],[12,79],[-19,-15],[-26,3],[-21,21],[-16,109],[-11,33],[-22,58],[-29,0],[-10,27],[2,70],[-21,43],[-28,36],[-23,20],[-24,114],[-19,28],[-16,22],[-22,-15],[-7,-41],[-15,-39],[-16,5],[-16,22],[-18,114],[-4,69],[5,129],[23,116],[13,185],[20,117],[13,39],[20,159],[39,204],[-13,-7],[-26,-83],[-12,42],[-7,43],[8,98],[-16,186],[10,25],[9,13],[18,71],[21,70],[2,85],[17,61],[-4,52],[1,61],[4,49],[-2,41],[14,42],[24,32],[-10,11],[-10,23],[-31,-35],[-16,11],[-3,37],[4,39],[2,23],[12,27],[-1,52],[-6,46],[9,57],[-18,0],[-9,11],[5,32],[17,28],[-15,53],[11,57],[0,71],[-8,62],[0,45],[-11,79],[-6,101],[-24,76],[-19,110],[-48,144],[0,61],[-2,54],[-11,27],[-14,-192],[-11,38],[-3,107],[-7,50],[7,101],[-28,100],[-6,73],[-19,110],[6,25],[25,-25],[-23,64],[-19,-14],[-16,69],[-3,188],[-16,70],[9,71],[-18,257],[-35,82],[7,72],[9,63],[-2,118],[8,36],[17,28],[-16,-10],[-13,-8],[-32,-7],[-36,-2],[-12,86],[-18,41],[-16,86],[-9,98],[6,19],[-27,40],[-8,24],[-29,64],[-33,48],[8,-34],[9,-21],[-17,-59],[16,-99],[-14,-63],[-13,-82],[-12,-40],[-40,-84],[-32,-29],[-21,-5],[-19,9],[-23,44],[-5,36],[-4,61],[-8,9],[-9,-7],[14,-79],[0,-37],[24,-71],[-9,-20],[-44,-38],[-15,6],[-10,-8],[-3,-32],[-6,-18],[-69,-48],[-14,-56],[-9,-55],[-35,-80],[-46,-66],[-11,3],[-13,16],[2,71],[15,61],[-5,64],[-3,-37],[-30,-90],[-14,-29],[-27,8],[-38,-12],[-14,92],[0,34],[-3,29],[5,30],[-2,25],[-9,-47],[-3,-40],[-14,-35],[-38,-39],[-1,49],[-2,44],[8,39],[-1,63],[12,90],[-1,31],[-3,34],[-7,-50],[-4,-51],[-8,-16],[-13,-11],[-26,-60],[-15,-52],[-40,-50],[-20,5],[-3,63],[16,225],[15,32],[8,39],[12,131],[15,50],[6,104],[6,18],[19,82],[7,150],[-8,75],[-18,72],[-18,217],[-46,176],[-4,59],[-22,71],[21,5],[-43,62],[-6,26],[-9,146],[2,81],[-6,-11],[-6,-50],[-17,-21],[7,-87],[-1,-21],[-9,-33],[-36,35],[-26,38],[-30,93],[-29,104],[10,16],[13,2],[42,-77],[27,-16],[17,19],[21,33],[10,64],[-11,24],[-20,13],[-13,17],[-20,43],[-2,23],[-6,28],[-20,20],[-16,25],[14,45],[13,34],[-35,-2],[-39,58],[-9,16],[-13,12],[-31,7],[-26,-17],[12,-82],[-2,-27],[-17,4],[-36,124],[11,32],[15,30],[-7,4],[-15,-2],[14,111],[-9,16],[-4,-34],[-8,-34],[-30,-78],[-15,15],[-10,19],[14,41],[8,11],[5,22],[-11,43],[-18,32],[-14,53],[-7,1],[6,-63],[-2,-91],[-32,100],[-64,143],[-15,42],[-5,0],[-16,53],[-15,58],[-39,110],[-12,197],[-1,97],[-26,114],[-18,158],[-7,41],[9,51],[2,19],[-5,-4],[-14,-26],[-17,63],[-11,56],[-46,117],[-13,52],[-1,50],[-19,-50],[-27,-36],[-27,-54],[-18,-16],[-57,-10],[-33,72],[-47,175],[-7,40],[6,103],[-11,97],[0,52],[-3,34],[-8,-8],[-4,-23],[2,-36],[-3,-31],[-41,6],[-39,14],[34,-51],[36,-12],[19,-46],[3,-36],[-1,-40],[-19,-29],[-17,-17],[3,-39],[21,-47],[-26,-14],[-6,-31],[-1,-43],[13,-39],[5,-29],[-3,-26],[12,-29],[18,-60],[5,-42],[-7,-60],[-10,-23],[-16,-23],[-39,-75],[-19,-86],[-16,-40],[-20,-7],[-7,18],[-17,22],[0,42],[5,33],[33,81],[-18,-11],[-21,-23],[-31,-43],[-11,53],[-6,50],[0,61],[25,91],[-29,-45],[-8,-57],[4,-67],[-4,-47],[-11,-62],[-15,-37],[-25,-24],[-11,-37],[-17,-27],[0,54],[-5,71],[-18,168],[-4,-36],[9,-104],[0,-68],[-14,-54],[-27,-57],[-21,-8],[-12,8],[-19,36],[-20,51],[-4,82],[-8,45],[-7,-90],[-22,1],[20,-60],[6,-44],[3,-60],[-24,-7],[-16,7],[-14,52],[-7,-48],[-24,-44],[-9,22],[-5,23],[-1,41],[13,157],[-2,17],[-7,12],[-13,6],[-5,32],[-21,-167],[9,-68],[-4,-32],[-38,-26],[-39,63],[-5,20],[-3,-35],[-7,-43],[-36,8],[-19,33],[12,58],[23,137],[4,62],[-30,45],[-26,27],[-15,63],[6,-69],[14,-24],[20,-17],[21,-35],[-15,-43],[-15,-27],[-29,-101],[-34,-57],[-41,-42],[-132,-63],[-28,-25],[-41,-78],[-26,-74],[-5,-75],[15,-81],[12,-127],[10,-26],[-14,-47],[-25,-49],[-20,-66],[2,-37],[-5,-24],[-70,-82],[-15,-47],[-19,-48],[-23,27],[-14,0],[19,-38],[-3,-25],[-6,-14],[-18,-14],[-101,-60],[-77,-57],[-22,3],[4,17],[14,15],[-1,66],[-15,12],[-12,4],[-59,-79],[-23,-79],[5,-15],[13,4],[39,44],[19,-12],[1,-18],[-60,-68],[-126,-220],[-6,-44],[-17,-49],[-22,-46],[-41,-112],[-78,-167],[-21,-62],[-125,-128],[-23,-39],[-51,-125],[-53,-102],[-62,-85],[-106,-108],[-65,-102],[-20,-68],[-2,-25],[7,-33],[12,-30],[3,-25],[-6,-44],[-3,-24],[-19,-60],[-33,-43],[-105,-90],[-14,3],[-86,18],[-32,-17],[-13,-42],[-30,-174],[-28,-46],[-11,-42],[-4,-29],[-17,1],[-14,13],[-11,-10],[-12,59],[-21,12],[-17,4],[-73,-59],[-25,-47],[-53,-223],[-14,-144],[13,-159],[18,-127],[4,-57],[-2,-75],[-10,-36],[-6,-43],[8,-88],[23,-116],[5,-48],[1,-51],[17,-115],[-12,20],[-9,49],[-21,62],[-26,-62],[14,-44],[49,-53],[15,-44],[-32,-386],[-24,-138],[-29,-90],[-16,-34],[-34,-142],[-24,-172],[-5,-67],[11,-74],[-12,-43],[-16,-34],[30,15],[10,-40],[3,-42],[1,-246],[-3,-257],[-23,-11],[-25,-2],[-22,7],[-16,10],[-39,-14],[-21,-28],[-17,-47],[1,-81],[-72,-203],[-16,-67],[-6,-65],[10,-34],[18,-35],[24,-14],[47,-14],[23,-19],[15,-34],[-55,36],[-65,8],[-155,-95],[-41,-66],[-23,-57],[-15,-131],[-3,-88],[-18,-73],[-81,-112],[-51,-34],[-19,-30],[-60,39],[-66,98],[-27,53],[-97,253],[-18,32],[-19,108],[-4,41],[-5,16],[-9,11],[-5,16],[-21,124],[-9,130],[-14,144],[11,-10],[17,-47],[8,-70],[1,-96],[12,-11],[11,9],[-31,222],[-28,55],[-7,4],[-7,36],[-1,44],[2,22],[-21,72],[-8,44],[-48,220],[-22,157],[-33,175],[-22,62],[-34,135],[-28,63],[-30,84],[-24,38],[-9,19],[-70,292],[-21,162],[-18,76],[-9,58],[-25,247],[0,44],[-3,49],[-17,105],[-31,113],[-9,70],[1,28],[-20,110],[-4,50],[-13,47],[-15,42],[-16,34],[-37,112],[-14,27],[-25,72],[-18,134],[-23,52],[36,0],[-22,49],[-11,32],[-12,20],[17,50],[-27,-1],[-15,30],[-20,93],[-37,105],[-6,57],[-32,177],[-27,426],[-26,189],[2,54],[-30,165],[-15,110],[-6,93],[-8,61],[-7,121],[-12,39],[-1,23],[8,55],[22,85],[8,54],[-10,77],[-20,-80],[-18,-23],[-9,60],[0,80],[-2,20],[5,27],[49,-13],[-56,49],[-6,29],[-3,22],[12,40],[-20,33],[-8,103],[-6,24],[-2,19],[11,142],[48,280],[4,63],[-5,90],[-10,71],[-5,76],[-3,19],[-17,7],[-16,28],[-19,112],[17,36],[13,21],[-18,-9],[-15,3],[29,52],[25,39],[59,46],[25,30],[-37,-27],[-38,-10],[-83,6],[14,104],[14,35],[16,19],[-23,-6],[-27,9],[9,106],[21,22],[22,5],[28,15],[-30,17],[-31,9],[-37,-18],[-34,13],[-42,0],[17,-14],[17,-33],[-8,-57],[-9,-36],[-23,-24],[-18,-38],[-6,-32],[-10,-24],[18,-16],[19,-12],[11,-26],[13,-39],[-1,-75],[-49,-177],[-17,-39],[-124,-107],[-48,-58],[-104,-75],[-40,-14],[-44,15],[-66,57],[-99,147],[-26,48],[-79,189],[-57,99],[-44,93],[-54,88],[-51,118],[-10,54],[3,54],[19,30],[22,-12],[18,-46],[12,-21],[11,-8],[76,71],[29,-3],[20,35],[25,-7],[52,55],[22,3],[26,11],[42,140],[31,89],[20,19],[-1,22],[-5,28],[-16,-7],[-10,-27],[-8,-33],[-8,-19],[-24,18],[-17,-3],[-20,-11],[-75,-52],[-31,-47],[-20,-9],[-119,51],[-117,118],[-49,79],[-31,100],[-31,120],[10,33],[48,72],[42,56],[-37,-25],[-41,-35],[-20,-24],[-22,-51],[-31,-12],[-11,76],[-8,74],[-4,-34],[-10,-26],[-13,38],[-9,17],[-9,-13],[-14,2],[-26,42],[-11,-43],[-42,-9],[-5,32],[-1,30],[-23,-22],[-17,34],[-7,45],[-6,12],[-8,15],[-17,15],[-16,48],[-1,51],[-4,60],[-33,224],[-20,21],[-110,39],[-6,40],[8,105],[-3,66],[-36,88],[-10,61],[-29,52],[-29,15],[-30,-7],[-15,-20],[-9,-35],[63,8],[14,-13],[17,-23],[-18,1],[-21,11],[-26,-1],[-98,-26],[-56,-37],[-76,11],[-96,-36],[-79,-2],[-33,-71],[-18,12],[-14,18],[-109,56],[-7,23],[-18,17],[-20,-30],[-15,-5],[-59,25],[-46,-19],[-17,-32],[-1,-50],[-57,10],[-32,15],[-43,-17],[-98,23],[-25,-6],[-36,-33],[-15,-26],[-21,-10],[-18,36],[-14,16],[-13,-10],[-18,-30],[-50,-14],[-46,4],[-58,33],[-12,-24],[-22,-30],[-47,23],[-37,24],[-124,57],[-13,28],[-8,48],[-21,13],[-31,-72],[-104,42],[-36,-13],[-21,22],[-57,2],[-44,45],[-64,-31],[-50,-6],[-69,79],[-74,22],[-60,-7],[-31,6],[-50,29],[-24,29],[-39,-22],[-18,41],[-110,38],[-21,74],[-15,68],[-1,70],[-27,123],[-9,177],[-10,70],[-15,60],[-20,51],[-27,55],[-24,22],[-103,42],[-20,-6],[-46,-27],[-49,-61],[-81,-34],[-17,-26],[-20,-59],[-26,-35],[-36,9],[-39,-35],[-72,-97],[-38,-29],[-32,2],[-34,46],[-76,62],[-49,20],[-69,-14],[-32,11],[-56,72],[-14,53],[-32,35],[-99,79],[-81,105],[-15,39],[-10,59],[-35,71],[-79,58],[-45,61],[-52,14],[-49,-2],[-21,11],[-20,27],[-67,127],[0,51],[-41,124],[-10,45],[-9,123],[-11,32],[-43,51],[-7,33],[10,44],[0,34],[-23,31],[-33,17],[-8,38],[6,73],[-5,47],[-30,73],[-43,76],[-44,111],[-17,28],[-11,73],[-16,87],[-24,6],[-119,-104],[-35,59],[-104,102],[-8,15],[-7,23],[13,14],[13,5],[26,-18],[16,21],[-6,35],[-26,21],[-36,-2],[10,-32],[-34,-30],[-7,-41],[5,-49],[3,-70],[-14,-33],[-10,-16],[-45,-4],[-21,-31],[-14,-7],[-25,-14],[-28,11],[-59,48],[-19,2],[-25,-19],[-1,-16],[-2,-21],[9,-64],[20,-69],[17,-56],[2,-27],[-15,4],[-12,11],[-22,11],[-42,-75],[-26,-40],[0,-14],[34,-16],[25,1],[17,11],[15,-18],[10,-46],[4,-37],[23,-133],[19,-45],[24,-80],[9,-41],[5,-35],[15,-51],[15,-54],[7,-54],[29,-128],[41,-100],[9,-36],[7,-55],[-7,-21],[-3,-23],[30,-55],[51,-46],[19,-12],[22,-21],[-17,-31],[30,-74],[34,-74],[37,-17],[50,-113],[74,-73],[46,-96],[-4,-2],[-14,10],[-16,13],[-5,-12],[0,-40],[5,-47],[23,-41],[21,-29],[8,-56],[-17,-120],[-5,1],[-11,10],[-12,2],[-6,-7],[14,-86],[13,-66],[17,-52],[14,-77],[11,-32],[49,-82],[14,-68],[14,-127],[30,-70],[17,-55],[22,-46],[8,35],[3,22],[-19,167],[-6,128],[2,26],[11,30],[19,66],[9,65],[28,148],[29,57],[43,42],[35,-82],[43,-63],[8,-70],[-13,-57],[-11,-90],[7,-42],[2,-36],[12,-61],[11,-78],[2,-55],[-6,-51],[-15,-42],[-29,-129],[-9,-13],[-36,-22],[20,-24],[20,3],[2,-23],[-13,-31],[-17,-78],[24,-13],[22,-6],[17,-13],[9,0],[10,30],[5,-21],[12,-29],[19,7],[9,-5],[7,-103],[14,-37],[18,-15],[59,-8],[36,14],[73,67],[38,25],[105,-5],[84,-28],[131,-16],[26,4],[70,54],[44,48],[26,14],[17,46],[11,60],[10,39],[13,19],[12,33],[9,55],[25,54],[97,133],[57,113],[5,36],[32,55],[24,59],[117,171],[23,70],[14,79],[1,6],[24,83],[9,13],[8,-6],[22,9],[11,45],[9,25],[10,-3],[4,-14],[-3,-69],[0,-57],[-12,-175],[-13,-30],[-6,-25],[-2,-34],[18,-46],[2,-318],[5,-22],[28,-152],[42,-142],[37,-78],[38,-106],[59,-98],[27,-33],[108,-69],[60,-25],[82,-25],[57,-53],[19,-3],[29,15],[22,-1],[54,-73],[16,-69],[23,-36],[20,-57],[13,-60],[45,-92],[33,-103],[33,-76],[29,-47],[44,-19],[36,-21],[4,-51],[-4,-67],[-7,-49],[-33,-96],[-8,-59],[-37,-97],[-41,-163],[-18,-37],[-66,-84],[-48,-102],[-57,-176],[-43,-174],[-17,-56],[-35,-12],[-23,5],[-15,17],[6,47],[4,54],[-21,-6],[-19,-11],[-43,-131],[-24,-57],[-5,-73],[-12,-94],[-16,-86],[-8,-73],[0,-41],[13,-101],[1,-103],[7,-62],[6,-74],[-20,-23],[-18,-11],[-68,-8],[-70,-24],[-61,-43],[-37,-43],[-47,-95],[-29,-243],[-47,-103],[-31,-21],[-76,-9],[-106,-28],[-38,-25],[-62,-148],[-5,-47],[12,-34],[4,-37],[-5,-35],[-29,-94],[-30,-68],[-81,-43],[-30,25],[-27,13],[-53,2],[-86,-17],[-31,-50],[-50,-36],[-46,-55],[-87,-21],[-59,-43],[-140,-103],[-37,-45],[-33,-57],[-25,-70],[-18,-124],[13,-113],[-1,-60],[-36,-40],[-34,-29],[-37,-44],[-23,-11],[-19,-35],[-21,-25],[-78,-63],[-86,-50],[-135,-59],[-53,-64],[-47,-44],[-73,-13],[-99,-61],[-55,-48],[-69,-80],[-15,-25],[-12,-58],[-21,-51],[-42,-83],[-31,-42],[-20,-2],[-41,-23],[-47,-5],[-80,29],[-21,-20],[-17,-33],[-61,-56],[-63,-114],[-46,-30],[-74,-36],[-52,-47],[-35,-19],[-44,-10],[-83,5],[-79,-17],[-73,-32],[-34,-60],[-39,-96],[-64,-40],[-15,-34],[-20,-71],[-41,-18],[-38,-12],[-38,31],[-72,-85],[-27,-15],[-41,-3],[-30,-18],[-21,5],[-26,34],[-56,40],[-41,-26],[-3,80],[-68,247],[14,215],[0,30],[-13,96],[-40,87],[1,111],[-14,80],[-10,81],[3,22],[1,20],[-21,125],[-7,26],[-2,26],[6,20],[0,24],[-11,38],[-11,74],[-55,57],[11,54],[11,-19],[14,-16],[3,35],[0,26],[-23,163],[34,218],[-11,195],[-3,46],[-16,68],[-1,49],[-8,48],[-14,37],[-26,38],[-3,53],[-19,52],[-25,42],[-15,77],[-10,103],[-67,135],[-84,124],[-26,71],[-42,143],[-21,113],[-56,130],[-2,50],[-9,61],[-13,68],[-7,54],[-57,235],[-18,37],[-16,53],[-4,40],[-5,22],[-39,39],[-38,99],[-111,157],[-55,15],[-43,56],[-32,74],[-34,126],[-60,136],[-50,194],[16,71],[-1,49],[-16,84],[-17,64],[-12,61],[10,88],[3,98],[10,52],[7,57],[-9,115],[-17,61],[2,41],[-19,20],[-16,45],[16,-1],[-29,62],[-11,34],[-11,84],[-14,64],[-45,146],[-22,89],[-49,114],[-53,85],[-33,38],[-16,35],[-28,2],[-30,50],[-21,1],[-26,8],[-31,97],[-26,90],[-44,118],[11,31],[13,50],[-6,65],[-7,44],[-19,81],[-64,202],[-17,29],[-27,34],[-16,88],[-8,78],[-44,38],[-74,282],[-44,99],[-17,66],[-50,109],[-24,109],[-51,100],[-44,173],[-67,174],[-29,30],[-69,12],[-30,13],[-27,-38],[-2,48],[19,67],[26,140],[6,123],[42,364],[9,76],[-3,40],[-19,-44],[-15,-26],[-32,-93],[-33,-296],[-47,-231],[-5,-144],[-8,-52],[-23,-73],[-27,-72],[-49,37],[-79,126],[-46,120],[-49,77],[-47,103],[-13,73],[1,48],[-21,115],[-15,55],[-57,123],[-16,65],[-13,29],[-12,41],[-21,160],[-23,101],[-25,-28],[4,-43],[-22,-59],[-14,-68],[11,-56],[46,-85],[10,-37],[11,-80],[-2,-110],[7,-37],[35,-81],[13,-48],[7,-42],[12,-38],[34,-71],[50,-134],[47,-91],[35,-44],[14,-44],[3,-113],[-2,-55],[30,-101],[11,-52],[29,-42],[13,-48],[12,-78],[18,-231],[26,-56],[77,-303],[66,-192],[32,-144],[48,-174],[95,-383],[56,-118],[22,-66],[41,-51],[44,-74],[-42,7],[-10,-5],[-15,-12],[-7,-45],[-3,-37],[5,-194],[11,-98],[37,-188],[28,-56],[14,-36],[18,-27],[88,-63],[52,-136],[115,-170],[11,-47],[0,-11],[4,-132],[12,-105],[43,-150],[36,-81],[13,-44],[1,-21],[-1,-19],[-11,22],[-19,15],[-3,-70],[5,-50],[4,-94],[15,-101],[-11,-93],[2,-158],[19,-190],[-4,-120],[32,-283],[30,-156],[17,-39],[19,-20],[36,-14],[53,-79],[43,-85],[15,-44],[20,-48],[14,9],[9,12],[13,-39],[67,-84],[10,-39],[84,-333],[34,-196],[30,-206],[23,-308],[21,-157],[34,-78],[23,-146],[21,-6],[14,-40],[25,-138],[18,-51],[9,44],[-1,25],[-7,43],[7,54],[14,33],[31,-44],[18,-34],[5,-68],[7,-37],[33,-80],[28,-23],[37,-6],[30,-17],[25,-29],[46,-81],[104,-71],[85,-216],[49,-151],[163,-227],[28,-110],[15,-106],[34,5],[59,-117],[17,-89],[48,-32],[9,52],[23,-43],[9,-67],[4,-27],[47,-114],[15,-56],[16,-102],[-9,-56],[-12,-37],[-18,-33],[-62,-81],[-69,-52],[-44,-103],[-33,7],[5,-39],[12,-5],[19,8],[38,30],[34,14],[37,1],[33,-13],[23,-38],[54,-88],[53,-180],[62,-144],[85,-135],[33,-45],[30,-24],[155,4],[109,122],[100,89],[33,18],[58,-24],[64,-7],[57,-27],[29,7],[114,103],[71,101],[48,42],[20,1],[66,-36],[85,15],[117,87],[37,18],[28,1],[64,-39],[9,2],[35,7],[90,41],[71,63],[130,45],[99,114],[17,55],[30,70],[43,23],[111,-82],[18,-6],[-7,-50],[-3,-50],[-23,-88],[-15,-98],[11,-149],[5,-242],[-3,-35],[-7,-34],[-3,-28],[-12,-9],[-5,-16],[9,-6],[34,26],[0,29],[2,14],[28,-32],[21,-13],[5,-31],[-1,-20],[-32,9],[-17,16],[-48,-26],[-29,-29],[-9,-47],[-7,-190],[-11,-123],[-3,-162],[-38,-108],[-14,-76],[-57,-152],[-31,-130],[-9,-64],[-51,-178],[-70,-137],[-25,-174],[-25,-110],[-28,-99],[-62,-177],[-31,-122],[-40,-213],[-12,-135],[-111,-391],[-115,-312],[-72,-263],[-129,-305],[-176,-393],[-230,-467],[-62,-95],[-252,-288],[-163,-241],[-83,-164],[-88,-143],[-69,-136],[-210,-460],[-22,-43],[-20,-41],[-27,-77],[-18,-31],[-50,-131],[-31,-69],[-36,-67],[-14,-47],[-11,-55],[-12,-31],[-31,-130],[-28,-86],[-28,-67],[-40,-99],[-33,-45],[-45,-21],[-13,4],[-18,14],[-7,-24],[-5,-37],[-10,8],[-7,11],[4,-66],[5,-32],[-7,-44],[-22,-38],[-2,-32],[-47,-85],[-66,-10],[-35,-42],[-16,-34],[-12,-75],[5,-116],[-19,-88],[-3,-45],[-35,-57],[-15,-53],[-11,-54],[-10,-24],[-12,-120],[-16,-73],[-4,-25],[-4,-22],[-12,-43],[-8,-29],[-6,-20],[-41,-187],[-32,-85],[-24,10],[-17,-33],[-2,-15],[-5,-49],[-22,-117],[-1,-49],[-9,-58],[-8,-38],[-22,-165],[-19,-62],[-25,-145],[-5,-111],[15,-78],[5,-72],[30,-72],[23,-25],[17,-33],[28,-74],[17,-75],[51,-37],[20,-83],[-7,-58],[-24,-48],[-22,-77],[-18,-102],[-1,-155],[13,23],[27,-38],[3,-114],[-28,-134],[-8,-62],[-2,-53],[21,-160],[30,-81],[-2,-26],[-8,-21],[53,-144],[-5,-125],[20,-97],[9,-84],[13,-65],[2,-44],[-16,-50],[39,-12],[22,-41],[11,-39],[28,2],[15,-26],[22,-22],[47,-65],[13,-33],[5,-19],[3,-12],[15,-60],[26,-54],[-15,-31],[-19,-28],[30,-38],[-22,-57],[-3,-40],[6,-15],[5,-24],[-15,-65],[-20,-50],[-5,-38],[18,-68],[-9,-119],[17,-108],[4,-55],[6,-37],[-8,-67],[2,-111],[4,-46],[-10,-57],[17,-20],[9,-63],[-3,-71],[-5,-38],[-29,-46],[-4,-18],[1,-27],[36,-1],[2,-42],[-3,-33],[2,-63],[-5,-40],[8,-46],[-10,-51],[4,-40],[0,-51],[9,-130],[1,-160],[2,-25],[13,-18],[18,-9],[0,-44],[-21,-58],[-1,-35],[3,-50],[22,68],[14,-1],[12,-26],[-2,-39],[4,-20],[-2,-38],[7,-48],[-3,-42],[-16,-29],[-21,-50],[-4,-48],[2,-30],[-14,-10],[-7,-19],[10,-45],[-1,-39],[-25,-123],[-68,-167],[-30,-59],[-27,-65],[0,-27],[-3,-23],[-32,-92],[-34,-15],[-20,-25],[15,-81],[-22,-19],[-39,-64],[-106,-122],[-17,-29],[-27,-75],[-35,-19],[-20,-21],[-36,-8],[-12,6],[-12,-3],[-10,-16],[-70,-53],[-66,-42],[-16,-19],[-11,-26],[-58,-41],[-91,-103],[-74,-97],[-54,-98],[-14,-15],[-17,-33],[-5,-50],[-6,-28],[-40,-103],[-60,-121],[-11,-34],[-24,-67],[-2,-44],[-22,-14],[-18,42],[-7,-81],[-15,-6],[-16,17],[-40,-41],[-35,-46],[-56,-98],[-80,-191],[-116,-183],[-16,-5],[-10,0],[-37,64],[-20,5],[18,-38],[12,-32],[-3,-61],[1,-93],[-14,-181],[2,-40],[16,-51],[31,-62],[30,-79],[37,-224],[3,-115],[39,-147],[1,-64],[16,-159],[-1,-128],[-3,-79],[19,-33],[7,30],[-2,50],[5,80],[10,35],[11,-5],[3,-38],[7,-33],[3,-31],[0,-43],[-14,-162],[4,-66],[19,-110],[-22,-128],[-33,-301],[-1,-52],[7,-23],[18,-7],[6,38],[11,0],[5,-23],[-14,-139],[-15,-61],[-51,-149],[-27,-64],[-46,-63],[-106,-98],[-215,-142],[-85,-70],[-50,-42],[-108,-132],[-47,-88],[-19,-102],[-19,-47],[-18,-59],[16,-50],[16,-39],[18,-25],[10,-22],[12,-16],[13,80],[6,25],[11,2],[-6,-98],[-13,-333],[-1,-11],[-10,-133],[-40,-208],[-13,-95],[-34,-341],[-44,-172],[-25,-71],[-72,-126],[-20,-25],[-18,-17],[-31,-14],[-123,-254],[-46,-123],[-41,-178],[-40,-98],[-60,-210],[-53,-161],[-51,-147],[-88,-203],[-39,-59],[-27,-26],[-70,-118],[-99,-189],[-75,-168],[-113,-190],[-65,-84],[-99,-164],[-27,-24],[-111,-152],[-79,-93],[-129,-107],[-51,-30],[-122,28],[-51,-15],[-43,-65],[-4,-93],[-18,-14],[-27,4],[-85,39],[-46,-7],[-27,-50],[-22,-63],[-64,-3],[-115,65],[-135,40],[-31,4],[-65,-48],[-23,-7],[-95,10],[-53,31],[-51,0],[-38,-26],[-47,-8],[-127,-175],[-66,0],[-56,-21],[-28,1],[-53,24],[-19,-1],[-30,-11],[-30,-31],[-68,-13],[-26,-27],[-115,-159],[-26,6],[-22,11],[-59,1],[-68,86],[-26,-6],[7,26],[2,45],[-14,32],[-10,14],[-26,-3],[-14,39],[-41,3],[-14,-9],[-20,-2],[-1,39],[1,24],[-1,38],[-5,46],[-16,15],[-12,6],[-28,-3],[-20,-5],[-10,-14],[-10,-33],[0,-103],[-15,29],[-16,62],[-5,66],[6,78],[31,29],[-3,53],[-6,45],[-35,117],[-13,54],[-29,36],[-23,87],[-23,32],[-9,61],[-22,49],[-8,77],[12,44],[20,24],[20,-38],[24,15],[35,56],[21,85],[1,135],[-5,85],[-28,219],[-13,50],[-63,157],[-72,210],[-92,330],[-44,199],[-66,401],[-59,227],[-72,212],[-9,14],[-31,47],[-91,175],[-32,46],[-48,107],[-105,334],[-15,64],[-20,161],[-23,120],[-3,69],[11,39],[-6,53],[-12,47],[-36,62],[-10,208],[-24,134],[5,110],[-11,101],[-1,65],[5,123],[-19,141],[-39,138],[-35,199],[-5,88],[3,235],[-6,95],[0,113],[-14,117],[-6,63],[10,51],[6,-16],[10,-8],[7,67],[1,59],[-17,146],[-39,149],[-97,244],[-24,92],[-13,77],[-108,321],[-46,226],[-33,196],[-35,90],[-162,634],[-36,101],[-65,121],[-15,41],[-25,115],[-48,155],[-12,144],[-4,164],[6,125],[11,218],[11,96],[0,116],[-7,298],[-7,41],[-5,48],[27,37],[14,27],[19,50],[13,69],[16,153],[58,352],[27,345],[35,163],[13,183],[96,236],[24,145],[50,72],[70,75],[51,135],[24,94],[28,179],[-1,187],[18,250],[-4,72],[-26,99],[-5,71],[-24,70],[-27,53],[-12,94],[-45,149],[-13,99],[-21,71],[-4,88],[-11,93],[-22,92],[-22,105],[0,32],[14,40],[12,13],[-4,-20],[-8,-23],[2,-19],[84,184],[6,36],[-3,41],[-1,49],[4,57],[-80,340],[-64,316],[-10,159],[-84,210],[-33,137],[-19,96],[-15,36],[6,18],[21,5],[49,22],[65,24],[61,56],[17,24],[-19,17],[-39,-11],[-19,-13],[-31,-48],[-46,-25],[-17,2],[-12,8],[-27,53],[-20,50],[-8,28],[-4,16],[-12,57],[7,54],[7,41],[-8,82],[-18,74],[-20,93],[-6,18],[-4,13],[-10,16],[-21,51],[-20,63],[-5,29],[-6,17],[-1,64],[-30,75],[-77,135],[-8,40],[-65,124],[-27,51],[-24,95],[-27,58],[-58,94],[-15,69],[-66,153],[-95,152],[-69,133],[-10,29],[12,-3],[66,-66],[9,7],[7,15],[-28,34],[-27,28],[-26,17],[-26,-2],[-14,28],[-9,43],[-5,36],[-11,38],[-37,79],[-9,30],[-19,41],[12,6],[39,-40],[3,16],[-3,23],[-39,38],[-22,2],[-5,27],[3,30],[-28,115],[-29,85],[-4,41],[78,-186],[11,-4],[13,2],[33,21],[-6,25],[-15,26],[-14,-12],[-19,-2],[-9,11],[-5,19],[19,90],[-8,-4],[-6,-16],[-10,-8],[-16,-5],[-39,49],[-34,130],[-9,27],[-9,46],[-9,18],[-39,186],[15,-14],[18,-53],[35,11],[13,31],[12,-1],[12,7],[15,29],[45,128],[12,169],[-4,100],[-7,100],[15,32],[6,-21],[3,-36],[7,-26],[16,-23],[29,-7],[46,-36],[16,-24],[4,47],[53,40],[-16,14],[-47,-15],[-64,59],[-21,38],[-20,72],[-20,38],[1,34],[46,31],[12,-4],[5,-37],[12,-15],[5,5],[2,31],[0,86],[-14,122],[5,23],[2,13],[-25,35],[-18,3],[-16,11],[13,90],[17,80],[25,61],[13,14],[4,30],[20,99],[25,80],[-8,81],[6,136],[6,135],[12,113],[5,105],[18,93],[-9,93],[-11,40],[-57,131],[26,50],[-34,-7],[-7,49],[-17,58],[10,10],[10,32],[31,-10],[-1,16],[-27,49],[3,25],[11,27],[-6,12],[-19,-29],[-14,1],[-10,19],[-8,3],[5,-38],[-11,-33],[-10,-12],[-18,2],[-14,8],[-4,19],[-13,15],[-38,24],[-31,30],[-7,80],[-12,34],[-6,39],[-3,44],[5,69],[-8,11],[-9,3],[-14,-3],[-13,4],[-15,38],[-13,14],[8,-69],[-9,-20],[-23,6],[-9,26],[-2,20],[10,84],[-4,2],[-3,1],[-8,-19],[-23,13],[-11,39],[-14,6],[-25,57],[-5,-9],[26,-145],[-10,-57],[-73,-1],[-64,-19],[-43,1],[-22,21],[-10,54],[-3,-5],[-3,-30],[-13,-22],[-49,-5],[-22,37],[-17,42],[-19,18],[3,-17],[22,-41],[-3,-58],[-39,-67],[-25,-4],[-16,29],[-8,47],[-4,70],[-10,46],[-6,0],[5,-42],[2,-34],[0,-71],[19,-55],[-29,-17],[-11,-1],[-23,-1],[-4,20],[-5,46],[-6,12],[-7,-78],[-15,-5],[-10,1],[-46,-17],[-10,3],[-2,14],[6,22],[-2,35],[-15,-27],[-3,-54],[-9,-8],[-27,7],[-29,28],[-18,28],[-30,39],[-58,111],[-10,49],[-17,61],[-12,62],[-18,105],[5,8],[14,-9],[7,15],[-25,12],[-5,12],[-1,37],[1,45],[19,16],[18,8],[8,27],[5,28],[-45,-42],[-43,47],[-9,29],[4,22],[21,3],[29,-1],[17,21],[-10,8],[-19,-1],[-7,14],[0,34],[-6,-7],[-8,-31],[-29,-22],[-16,22],[-2,50],[-4,23],[-14,17],[-50,132],[-63,110],[-57,76],[-84,36],[-178,-2],[-10,11],[11,17],[16,12],[57,61],[-10,8],[-59,-38],[-21,-4],[-26,-74],[-156,-12],[-19,-3],[-116,-24],[-130,-39],[-55,-25],[-86,-41],[-35,-33],[-22,-22],[-16,-33],[-12,-50],[-16,-55],[-55,-29],[-22,-1],[-114,-1],[-108,-109],[-61,-39],[-38,-61],[-51,-44],[-36,-53],[-74,-25],[-122,-83],[-38,-33],[-38,-58],[-63,-68],[-24,1],[-49,63],[-37,32],[-90,49],[-67,18],[-33,21],[-8,4],[-37,15],[8,19],[36,-11],[19,1],[-2,12],[-11,4],[-29,26],[5,83],[-13,4],[-11,-11],[-20,-101],[-10,-17],[-146,52],[-31,42],[-38,9],[-66,-5],[-54,-12],[-16,-25],[137,15],[15,-3],[7,-16],[-173,-33],[-67,-19],[-19,5],[-15,32],[-72,4],[-15,-11],[-8,-23],[28,5],[44,1],[12,-18],[-139,-24],[-97,-45],[-41,-33],[-135,-110],[-83,-52],[-22,-20],[-37,-53],[-48,-34],[-54,-64],[-33,-14],[-32,9],[-94,82],[-73,47],[-242,267],[-68,108],[-77,160],[-173,322],[-39,51],[-50,25],[-31,28],[-21,30],[-18,89],[-43,53],[-80,75],[-60,126],[-11,23],[-52,82],[-54,55],[-116,91],[-39,25],[2,33],[13,59],[-22,69],[9,51],[-9,0],[-16,-31],[-36,9],[-23,44],[-19,15],[-9,22],[-12,115],[-9,52],[-17,32],[-36,8],[-15,69],[-19,54],[3,34],[16,-2],[13,-24],[20,-10],[25,58],[23,32],[5,28],[-3,15],[-14,-24],[-37,6],[-9,-21],[-17,-7],[-13,69],[1,40],[5,45],[38,7],[3,14],[-26,10],[-33,52],[-6,35],[-3,17],[10,53],[-8,28],[-28,55],[-2,27],[-9,34],[-36,71],[-35,-4],[10,59],[-1,79],[-11,43],[3,44],[-7,-2],[-11,-31],[-18,10],[-38,47],[-18,46],[-3,38],[-4,15],[-11,-8],[-24,1],[-71,69],[-51,174],[-1,39],[7,67],[-1,19],[-23,-45],[-5,30],[-18,70],[-5,40],[-17,17],[-14,4],[-10,-14],[-14,-81],[-11,0],[-10,18],[2,61],[-14,40],[11,76],[-12,-1],[-23,-61],[-12,-2],[2,72],[-13,3],[-15,-5],[-21,37],[-2,28],[1,40],[13,25],[-2,10],[-12,3],[-14,-6],[-8,11],[14,51],[49,43],[24,5],[26,9],[-14,37],[-30,15],[-24,-10],[-12,-27],[-15,-5],[-25,63],[1,31],[9,38],[14,16],[57,0],[22,21],[9,4],[8,19],[-2,12],[-9,1],[-21,-25],[-69,10],[-22,-15],[-38,-58],[-47,-31],[-34,13],[11,77],[-5,10],[-10,13],[-50,-25],[-38,35],[-15,43],[3,53],[17,36],[3,18],[-19,3],[-34,-22],[-77,86],[-9,26],[-11,42],[7,31],[23,20],[34,26],[19,-14],[10,0],[2,16],[-3,9],[-26,22],[-14,30],[-11,-17],[-10,-37],[-8,-10],[-12,-11],[-6,25],[-3,24],[5,19],[-2,104],[3,55],[-2,49],[-2,49],[-15,111],[21,48],[22,29],[15,-23],[5,-45],[12,-31],[39,-20],[40,14],[24,-6],[-1,25],[8,33],[48,15],[50,9],[52,20],[41,-1],[12,6],[-3,8],[-36,10],[-78,-23],[-80,-7],[-60,-60],[-24,6],[-25,60],[-9,74],[-7,59],[-17,47],[-27,40],[-6,37],[9,33],[26,26],[6,19],[-13,-2],[-21,-18],[-14,0],[-1,51],[-23,66],[-26,112],[-30,46],[-24,91],[-26,35],[-24,16],[-20,-3],[-7,-42],[-25,60],[34,21],[73,75],[85,215],[76,253],[9,60],[0,258],[15,97],[5,85],[33,187],[38,153],[36,204],[14,197],[-5,193],[-11,172],[-18,113],[-17,164],[-26,87],[-47,76],[-11,44],[11,16],[29,12],[18,59],[-38,-23],[44,181],[14,123],[-2,81],[9,50],[-35,108],[-26,136],[-14,22],[-14,11],[-1,-32],[-8,-29],[-17,18],[-29,99],[-41,161],[-15,17],[-12,-23],[-7,-21],[-14,-134],[-14,29],[25,300],[22,301],[38,149],[30,66],[47,35],[43,150],[16,138],[28,64],[9,50],[-11,38],[27,75],[32,114],[15,73],[38,113],[5,25],[-4,29],[-15,-25],[-16,-41],[-19,-33],[8,40],[15,60],[34,62],[53,69],[110,234],[42,41],[37,98],[14,88],[4,200],[13,106],[24,83],[29,150],[22,68],[15,136],[16,53],[28,24],[40,69],[60,42],[71,89],[33,53],[23,79],[24,158],[42,166],[23,127],[37,66],[26,83],[43,37],[90,18],[134,69],[120,104],[34,42],[37,83],[60,108],[114,130],[52,72],[79,182],[53,150],[44,97],[30,86],[21,87],[12,140],[-8,55],[-33,89],[-23,24],[-6,42],[12,75],[0,128],[7,204],[37,165],[91,217],[17,88],[10,142],[1,50],[114,200],[67,154],[23,37],[59,70],[205,154],[116,109],[68,80],[40,94],[112,371],[110,521],[9,61],[49,17],[35,7],[28,19],[34,40],[33,-16],[-16,-27],[0,-64],[23,-75],[41,-85],[75,-107],[58,-43],[83,-26],[96,47],[54,1],[27,20],[28,-30],[55,-9],[52,16],[40,45],[25,51],[4,-25],[1,-28],[8,-16],[15,-66],[9,-25],[30,4],[26,-13],[59,6],[57,-11],[56,-11],[29,5],[67,51],[52,69],[41,36],[37,75],[32,48],[48,52],[136,111],[21,1],[45,-25],[39,8],[27,39],[29,93],[44,57],[57,58],[76,54],[50,51],[80,43],[199,28],[102,24],[70,-5],[70,80],[35,26],[152,6],[72,58],[272,0],[33,-19],[33,-32],[56,-75],[27,-17],[36,16],[84,72],[94,37],[51,42],[22,62],[44,23],[25,-47],[98,-48],[60,13],[26,15],[-9,71],[63,-19],[49,-34],[51,-69],[33,-14],[60,31],[125,16],[68,35],[66,91],[23,22],[152,84],[19,-6],[22,-12],[-6,-31],[-9,-25],[13,-44],[18,27],[-4,18],[-1,23],[31,2],[28,-3],[30,-26],[-2,-100],[40,-97],[-11,-48],[33,-29],[29,35],[15,51],[54,29],[52,74],[28,8],[6,-61],[14,-54],[-19,-18],[-25,-57],[-47,-144],[-43,-42],[-33,-56],[-10,-39],[-3,-46],[8,-82],[23,-84],[28,-51],[26,-15],[61,-80],[-1,-47],[9,-57],[3,-68],[21,-55],[-45,-119],[-25,-86],[-49,-118],[-43,-77],[-93,-115],[-23,-38],[-15,-39],[-7,-41],[3,-49],[30,-119],[41,-70],[41,-38],[72,16],[-2,-46],[5,-55],[29,3],[20,8],[16,54],[36,-37],[18,-111],[30,-35],[3,-13],[-10,-9],[-9,-13],[9,-9],[29,-14],[17,9],[29,-24],[43,-37],[43,-14],[130,-136],[40,-17],[91,-16],[107,56],[40,10],[71,-52],[31,-15],[52,-4],[89,-47],[22,-17],[52,-75],[25,-23],[184,-69],[25,-46],[26,-87],[1,-109],[14,-79],[23,-102],[28,-72],[30,-61],[35,-37],[81,-56],[91,-21],[92,-8],[158,-76],[133,-89],[33,-44],[67,-43],[134,-208],[74,-72],[52,-14],[46,13],[83,72],[34,43],[84,180],[27,94],[11,66],[-3,67],[-10,61],[-23,63],[-17,84],[-9,151],[13,104],[16,63],[25,64],[69,122],[70,86],[122,113],[71,1],[30,12],[58,80],[24,3],[33,-20],[97,6],[42,-22],[51,-50],[64,-31],[45,-30],[48,-40],[11,-98],[-5,-29],[-1,-38],[50,-68],[142,-32],[28,-18],[39,-52],[25,-16],[97,-7],[57,11],[54,-18],[20,-18],[21,-40],[25,-99],[10,-33],[21,-70],[43,-12],[142,62],[157,-62],[86,-24],[133,-54],[81,-95],[23,-12],[58,2],[38,-56],[152,-27],[81,-62],[46,-50],[28,-15],[24,2],[33,19],[42,35],[45,48],[94,125],[33,22],[22,-6],[27,2],[11,33],[14,23],[8,27],[15,31],[48,9],[98,54],[-11,-25],[-89,-61],[38,-8],[39,21],[45,13],[8,26],[6,49],[9,6],[30,-9],[92,-74],[23,-2],[65,41],[13,9],[21,-23],[48,-93],[-17,2],[-51,80],[-4,-40],[-29,-70],[36,-30],[30,-11],[16,-39],[10,-35],[29,15],[21,47],[-11,27],[-8,27],[10,1],[20,-23],[58,-89],[20,-19],[22,3],[48,26],[13,-4],[63,33],[8,-25],[10,-24],[51,27],[80,0],[66,29],[76,71],[6,11],[52,92],[25,59],[2,4],[54,175],[35,173],[33,241],[23,122],[20,81],[9,67],[13,44],[13,57],[13,77],[24,64],[49,217],[28,87],[10,125],[43,109],[33,32],[15,31],[0,47],[-22,129],[-3,55],[1,65],[15,94],[-7,43],[-1,30],[-4,40],[-38,87],[21,160],[15,39],[17,47],[-19,93],[-21,86],[20,56],[41,67],[44,79],[0,48],[-3,37],[-12,25],[-24,34],[-40,-36],[-29,-40],[-18,-8],[-21,-23],[-10,-41],[-24,-32],[-40,-13],[-60,35],[-65,52],[-37,42],[-30,10],[-28,-18],[-84,-104],[-77,-152],[-19,-26],[-72,-65],[-48,-22],[-22,5],[-95,-29],[-48,-4],[-37,-34],[-72,37],[-44,48],[-26,48],[-42,105],[-31,49],[-67,45],[-119,108],[-31,12],[-80,16],[-85,10],[-18,-40],[-6,-156],[-15,-43],[-6,-81],[-10,-24],[-17,-15],[-25,26],[-18,11],[-41,-33],[-82,-47],[-28,-7],[-94,59],[-35,38],[-22,42],[-8,71],[-14,40],[-2,28],[-5,31],[-19,13],[-21,-24],[-22,1],[-27,15],[-65,59],[-50,5],[-30,-73],[-24,-23],[-25,-7],[-2,21],[20,47],[-78,-9],[-41,-35],[-32,5],[-24,16],[3,20],[25,7],[21,16],[84,13],[20,13],[21,51],[40,44],[5,19],[-31,0],[-129,-13],[-89,7],[-10,-21],[-14,-4],[-3,60],[14,27],[19,-3],[46,24],[-4,49],[-33,34],[-7,19],[-24,5],[-20,23],[-4,59],[-15,65],[-23,31],[3,17],[41,22],[8,90],[-6,56],[-20,4],[-60,44],[-18,-4],[-20,48],[-35,34],[-17,-12],[-11,-16],[-16,7],[-26,30],[-27,17],[-12,20],[15,53],[20,-1],[4,42],[-16,70],[2,36],[17,9],[20,-6],[21,-42],[6,-41],[-4,-39],[13,-38],[9,-10],[6,41],[9,7],[12,-17],[25,-9],[66,24],[12,21],[-48,-2],[-17,19],[-20,44],[-11,40],[-3,19],[-6,29],[7,15],[33,23],[29,64],[-12,18],[-14,9],[-15,-6],[-14,22],[-2,30],[12,25],[1,34],[-38,83],[-10,18],[8,28],[29,45],[27,57],[-4,19],[-20,7],[-95,-24],[-37,-21],[-66,-10],[-5,31],[2,28],[15,50],[-2,125],[9,67],[37,20],[45,100],[73,117],[76,-3],[30,33],[45,2],[9,-24],[5,-22],[40,-33],[70,5],[17,13],[16,18],[-32,57],[10,17],[29,2],[32,-14],[2,-13],[-9,-18],[-10,-32],[10,-6],[90,19],[95,-15],[30,8],[75,0],[13,19],[-22,25],[-22,9],[-15,12],[-15,18],[47,55],[27,11],[126,34],[94,17],[1,13],[-14,0],[-121,28],[-29,22],[-40,52],[-9,15],[-10,25],[6,55],[7,43],[15,25],[48,4],[166,-44],[119,27],[129,-65],[123,13],[26,29],[31,93],[174,156],[61,80],[66,45],[112,49],[94,65],[27,7],[225,-31],[155,-4],[71,62],[42,-21],[-4,-22],[-8,-19],[3,-38],[24,-55],[24,-38],[73,-55],[100,46],[16,-5],[21,-13],[35,-147],[28,-52],[35,-36],[29,-7],[21,37],[17,15],[36,6],[60,-50],[21,-53],[101,-40],[93,-20],[40,-45],[131,-44],[49,7],[82,46],[159,51],[106,-71],[29,-9],[25,6],[35,-20],[38,11],[117,84],[37,48],[39,12],[34,29],[92,93],[27,54],[53,108],[16,65],[1,39],[0,49],[-27,102],[-24,144],[-25,151],[-19,45],[-81,52],[-19,59],[-62,77],[-87,33],[-17,14],[-76,96],[-59,62],[-29,31],[-99,146],[-52,98],[-170,225],[-22,17],[-90,33],[-37,26],[-91,161],[-41,-22],[-37,6],[-21,14],[-24,23],[-16,30],[-19,68],[-22,38],[-72,56],[-82,33],[-6,14],[-3,20],[71,38],[19,22],[-36,29],[-14,5],[-11,13],[20,22],[20,10],[31,-25],[35,-46],[31,-18],[14,22],[106,39],[7,30],[0,34],[-11,-2],[-6,8],[0,38],[16,51],[48,84],[25,116],[23,27],[16,-18],[-1,-27],[3,-20],[15,39],[14,53],[36,0],[24,-9],[26,6],[-49,88],[-66,87],[-28,-6],[-18,13],[-29,73],[-12,60],[28,-2],[28,-9],[53,42],[20,6],[31,-13],[44,-8],[-3,39],[-14,47],[53,34],[47,19],[91,68],[40,12],[5,15],[1,20],[-13,54],[-14,40],[-48,2],[-26,-55],[-72,-19],[-33,4],[26,36],[25,13],[8,15],[-52,-13],[-25,-37],[-76,-48],[-10,-6],[-97,9],[-79,-13],[-56,-91],[-34,1],[-48,-24],[-32,-29],[-38,-64],[-29,28],[-36,0],[-36,-18],[-42,-42],[-24,-8],[-47,12],[-55,-24],[-118,-140],[-40,-102],[-15,-20],[-20,-25],[-21,-13],[-11,1],[56,73],[17,27],[3,20],[1,33],[-17,40],[-47,-100],[-26,-14],[-33,-30],[-2,-67],[4,-50],[14,-63],[32,-102],[66,-146],[31,-54],[24,-22],[28,-3],[53,46],[23,7],[50,-18],[18,31],[26,16],[33,2],[38,-13],[41,-23],[-17,-52],[-17,-41],[-7,-45],[-9,-51],[-46,-23],[-48,3],[-52,-15],[-18,20],[-12,18],[-23,18],[-30,10],[-27,-12],[-32,-69],[-56,-47],[-19,-54],[-56,12],[-47,-10],[-69,-49],[-52,-106],[-57,-66],[-46,-21],[-43,7],[-28,20],[-57,69],[4,25],[8,13],[10,35],[23,131],[-3,43],[-13,66],[-45,52],[-36,-9],[-21,13],[-75,89],[-40,6],[-45,-18],[-16,13],[-13,31],[89,109],[88,90],[38,9],[52,42],[55,63],[-8,49],[-12,37],[-26,-10],[-20,-13],[-46,40],[-17,29],[-72,-30],[-40,4],[-89,-28],[-41,27],[-82,76],[-30,15],[-27,-3],[-14,24],[18,13],[20,1],[21,9],[6,13],[-1,25],[-43,19],[-39,5],[-25,22],[-19,26],[44,0],[45,-19],[71,-7],[64,-20],[16,25],[37,42],[7,14],[-62,-29],[-63,18],[-23,26],[-20,39],[-8,43],[5,41],[-6,73],[-21,65],[-8,36],[-22,32],[22,-73],[8,-48],[13,-44],[-3,-118],[-8,-41],[-26,-11],[-34,6],[-35,13],[9,65],[-18,-22],[-27,-64],[-23,-9],[-50,7],[-95,-42],[-7,-45],[-14,-62],[-14,-36],[-4,-21],[-40,-93],[-5,-9],[-76,-128],[-10,-10],[-49,-30],[-30,-26],[-22,-12],[-38,13],[-15,-19],[-8,-23],[0,-47],[19,-34],[16,-114],[-6,-48],[-5,-38],[-3,-24],[-12,-99],[-8,-37],[-13,-42],[-142,-49],[9,23],[-3,42],[-6,31],[13,29],[-31,10],[-14,-15],[-11,-28],[9,-62],[-15,-35],[-6,-19],[-1,-46],[-9,-20],[-2,-21],[23,5],[-10,-39],[-43,-76],[-15,-45],[4,-180],[-19,-107],[-1,-32],[-7,-139],[-27,-65],[-40,22],[-52,-18],[-27,-73],[-16,-22],[-14,-26],[-9,-95],[-2,-156],[-19,-19],[-18,-6],[-75,-137],[43,-39],[19,-29],[32,-82],[44,-93],[9,-45],[-7,-65],[17,-73],[41,-100],[41,-51],[167,-126],[31,-11],[-7,-51],[-10,-46],[-11,-30],[-49,-20],[-135,56],[-34,6],[-24,-12],[-45,-40],[-49,13],[-69,-23],[-19,-77],[-48,-88],[-79,-71],[-56,-38],[-84,-136],[-39,-80],[-16,-15],[-19,-13],[6,39],[10,35],[-2,26],[0,38],[28,44],[26,31],[76,58],[20,47],[-60,-1],[-60,-11],[-38,7],[-33,-4],[-11,42],[-8,25],[-7,24],[-43,43],[-100,25],[-48,32],[-21,-6],[-40,36],[-28,-16],[-59,-63],[-31,7],[-34,38],[-22,7],[-26,-20],[-42,-73],[-42,-36],[-38,14],[-51,0],[-5,-41],[10,-28],[27,-48],[-13,-37],[10,-36],[18,-7],[28,2],[50,-47],[22,-50],[14,-54],[-30,39],[-21,37],[-28,14],[-40,32],[-25,5],[-26,-22],[-3,-25],[29,-47],[26,-29],[14,-23],[9,-52],[-5,-17],[-10,-17],[-31,33],[-47,116],[-66,23],[-11,-24],[13,-61],[9,-24],[58,-67],[-5,-14],[-8,-6],[-65,38],[-19,58],[-4,73],[-59,50],[-56,55],[-13,53],[12,19],[8,38],[-31,-7],[-19,-24],[-32,-23],[-1,-39],[5,-36],[-10,-52],[-10,-90],[6,-48],[68,-136],[23,-99],[16,-37],[35,-42],[36,-76],[15,-41],[11,-65],[-30,-41],[-18,-2],[-9,19],[13,44],[-2,28],[-47,42],[-20,-15],[-22,-27],[13,-51],[14,-34],[8,-46],[28,4],[-38,-52],[-35,-27],[-35,-1],[-23,-5],[-7,-13],[18,-10],[15,-1],[24,-28],[68,-34],[33,-42],[32,-4],[32,-78],[56,-21],[31,-79],[43,-16],[36,-29],[11,-27],[5,-50],[2,-107],[8,-79],[0,-25],[-2,-37],[-9,-19],[-14,0],[-26,58],[-40,61],[-42,73],[-12,13],[-10,1],[-23,-25],[-63,-19],[-29,-26],[-11,-6],[-4,-14],[14,-15],[17,-33],[0,-45],[14,-56],[18,-14],[24,1],[13,-10],[4,-22],[14,-26],[9,-19],[-1,-13],[-66,-37],[-13,-16],[-12,-9],[-17,18],[-1,44],[-22,23],[-21,21],[-25,9],[-21,30],[-14,-25],[11,-85],[24,-60],[40,-158],[18,-93],[4,-46],[-9,-75],[19,-56],[14,-57],[-15,2],[-13,20],[-21,24],[-42,92],[-15,57],[-17,4],[-30,-8],[-34,-122],[1,-70],[-18,17],[-14,22],[1,76],[-1,32],[-40,104],[-19,12],[-8,35],[-15,38],[-19,-8],[-16,-15],[-4,-56],[-2,-51],[-11,-38],[-43,72],[-43,126],[-1,68],[31,63],[-4,45],[-30,89],[-43,57],[-24,17],[-11,60],[-23,31],[-19,15],[-4,22],[6,16],[45,62],[27,97],[13,5],[27,-23],[31,6],[25,57],[21,31],[36,-4],[80,-76],[87,-44],[43,-38],[25,-38],[13,-8],[20,-5],[-1,28],[-6,25],[17,14],[46,-1],[9,14],[8,21],[-9,24],[-16,12],[-16,3],[-11,8],[-17,-8],[-28,19],[-14,16],[-8,16],[-47,32],[-45,54],[-10,-31],[-19,-16],[-25,-3],[-73,35],[-45,-27],[-24,-6],[-19,-1],[-23,-12],[-26,-7],[-23,50],[-9,39],[-7,7],[-1,-37],[-7,-29],[-33,-16],[-20,23],[-15,68],[-18,87],[-33,70],[-27,18],[-3,39],[3,30],[32,8],[50,-32],[11,6],[11,15],[-2,33],[-7,29],[-14,2],[-10,-4],[-31,6],[-39,-16],[-19,15],[-6,19],[-33,46],[-29,62],[-46,41],[-31,126],[-25,55],[-28,40],[-1,52],[-9,41],[-31,99],[-102,96],[-24,43],[-11,36],[-10,35],[10,1],[10,-9],[13,-11],[5,18],[-6,37],[-26,87],[-2,24],[13,74],[21,82],[-1,99],[7,75],[-8,49],[-3,60],[15,79],[14,20],[8,25],[1,85],[-31,39],[-35,8],[-43,46],[-18,64],[-63,109],[-73,74],[-4,12],[4,14],[4,11],[-15,1],[-11,-9],[-10,3],[-51,54],[-48,61],[-93,94],[-67,23],[-91,76],[-59,27],[23,6],[26,0],[140,-101],[-16,27],[-23,24],[-13,13],[-58,88],[-55,56],[-63,104],[-84,41],[-58,46],[-34,-7],[-39,-14],[-23,-1],[-17,9],[-12,28],[2,22],[-2,28],[-34,46],[-46,44],[-43,56],[-87,151],[-18,49],[17,9],[13,0],[15,10],[24,0],[28,-10],[-25,32],[-31,32],[-80,127],[-24,59],[-3,65],[6,88],[-14,63],[-62,82],[-23,43],[-45,25],[-21,-2],[-12,-32],[-9,-71],[-40,-93],[-14,-41],[-21,-52],[-18,-4],[-11,5],[-33,88],[-32,68],[-4,31],[-3,40],[-24,144],[17,20],[17,11],[23,30],[17,23],[-43,82],[-19,0],[-26,-35],[-72,36],[-14,-15],[-10,-28],[-25,-35],[-35,-15],[-40,-38],[-41,-27],[-32,-21],[-18,4],[29,44],[-13,1],[-38,-31],[-22,-27],[-7,-44],[-7,-74],[17,-19],[30,-97],[36,-41],[-7,-40],[-9,-31],[-22,-27],[-19,20],[-11,0],[-8,-64],[16,-168],[25,-119],[25,-51],[57,-81],[60,-42],[108,-136],[59,-42],[15,-24],[36,-104],[31,-121],[33,-189],[24,-94],[48,-105],[100,-151],[90,-111],[84,-68],[66,-12],[155,15],[27,-6],[29,-19],[6,-47],[-10,-32],[-33,-33],[-33,-46],[-4,-63],[31,-44],[150,-117],[153,-98],[48,-50],[55,-78],[134,-107],[22,-52],[82,-111],[36,-87],[7,-67],[-17,-67],[-8,-48],[-14,-48],[-35,18],[-39,49],[-59,197],[-108,20],[-22,15],[-39,34],[-2,22],[-10,28],[-9,10],[-42,6],[-28,-32],[-34,-76],[-38,-109],[-39,-160],[-2,-64],[21,-63],[63,-35],[48,-56],[32,-58],[3,-140],[14,-80],[-21,-45],[-41,11],[-54,-29],[-39,-51],[-16,-49],[4,-128],[-8,-48],[-73,-92],[-38,-94],[-10,-39],[-14,-45],[-93,-1],[-21,55],[-1,81],[16,50],[34,24],[22,104],[-7,75],[14,33],[12,23],[26,14],[37,13],[3,105],[-28,48],[-10,66],[-14,124],[-47,157],[-25,140],[-19,69],[-30,37],[-54,-1],[-27,10],[-96,98],[-6,15],[0,25],[16,40],[-10,52],[-12,50],[-18,43],[-21,22],[-43,-14],[-15,-10],[-27,4],[-21,-19],[-12,-1],[33,75],[-9,17],[-33,31],[-45,5],[-12,4],[-8,-20],[-8,11],[1,33],[-53,150],[-35,61],[-17,11],[-32,-13],[-54,27],[-32,6],[-17,-7],[-27,-19],[-13,12],[-5,20],[-48,63],[-61,35],[-118,197],[-36,74],[-75,81],[-47,119],[-39,43],[-56,35],[-13,-4],[-17,-13],[-13,-2],[-10,15],[10,16],[12,7],[-4,45],[-64,118],[-38,37],[-10,24],[-8,32],[-8,20],[-18,13],[-15,-3],[-21,8],[1,57],[4,43],[-3,37],[-20,96],[-36,82],[-20,195],[-17,55],[-39,42],[-88,46],[-122,126],[-26,2],[-74,49],[-46,8],[-59,-43],[-72,-121],[-59,-125],[-21,-25],[-75,-43],[-67,-20],[-64,-41],[-23,-21],[-88,-127],[-41,-38],[-8,-22],[-8,-42],[-24,-36],[-22,-17],[-52,-18],[-53,-38],[-23,16],[-62,-1],[-38,46],[-74,29],[-24,67],[-33,4],[-22,-2],[-13,10],[-4,23],[0,22],[-23,-10],[-18,0],[-11,-9],[-8,-10],[-10,7],[-6,-3],[1,-13],[-22,-3],[-23,8],[-61,35],[-9,5],[-42,13],[-17,14],[-14,35],[-11,10],[-6,7],[-39,-17],[-14,-27],[-21,-32],[-146,-155],[-27,-64],[-31,-96],[-2,-44],[13,-142],[30,-75],[4,-18],[7,-36],[14,-14],[5,-31],[-24,-17],[-15,-2],[-4,-54],[6,-16],[14,-14],[4,-16],[3,-80],[-28,-48],[-40,-54],[-193,-173],[-46,-84],[-17,-19],[-143,-53],[-101,-57],[-48,-20],[-60,-98],[-28,-40],[23,-11],[26,-47],[-9,-21],[-38,-32],[-17,-10],[-9,5],[-9,-4],[-64,-170],[-58,-123],[-32,-53],[-32,-79],[-70,-206],[-1,-59],[35,-204],[19,-54],[28,-45],[53,-38],[12,-38],[-18,-36],[-52,-64],[-91,-86],[-39,-68],[-8,-66],[-27,-30],[-10,-92],[-16,-61],[-4,-20],[-17,-47],[-2,-33],[28,-47],[-14,-20],[-14,-9],[-32,-5],[-108,-6],[-87,-100],[-44,-89],[-39,-165],[-48,-98],[-21,-18],[-33,43],[-41,7],[-40,-15],[-20,-33],[-33,-19],[-32,16],[-68,9],[-31,-2],[-48,-27],[-41,18],[-69,9],[-150,-21],[-18,-11],[-19,-41],[-48,-70],[-72,-3],[-66,-45],[-16,-29],[-28,-79],[-9,-58],[-5,-1],[-7,14],[-11,-4],[-5,-45],[-25,-20],[-20,-7],[-51,36],[-42,54],[-22,3],[-36,84],[-16,54],[-11,57],[2,22],[-3,19],[-32,23],[-8,53],[24,68],[19,30],[12,8],[-29,-3],[-21,-44],[-27,71],[-109,138],[7,31],[-1,18],[-18,-37],[-13,-10],[-56,6],[-64,-17],[-24,-6],[-95,-94],[-29,0],[-55,41],[-96,14],[-32,12],[-39,-27],[-30,1],[-25,-35],[-17,10],[20,77],[31,152],[-1,93],[7,81],[-8,80],[-16,50],[21,130],[-2,67],[-19,84],[59,-13],[-19,34],[-18,20],[-17,-4],[-15,1],[-50,-33],[-25,-10],[-8,6],[3,52],[-13,68],[20,18],[24,5],[20,29],[12,33],[-7,57],[18,55],[40,46],[-21,-7],[-24,-29],[-38,-104],[-12,-53],[-33,-17],[-29,-9],[-14,6],[-18,13],[-2,39],[2,31],[12,62],[4,88],[18,78],[-2,21],[-5,31],[16,30],[19,20],[28,68],[40,160],[47,170],[-4,21],[-10,15],[4,46],[28,200],[11,26],[13,59],[3,94],[5,65],[-1,33],[-4,39],[-18,75],[-18,159],[-2,53],[15,26],[-25,4],[-11,35],[2,38],[28,63],[-20,-8],[-8,12],[-2,91],[32,60],[22,37],[-10,7],[-24,-1],[1,29],[12,13],[11,31],[-13,14],[-10,20],[0,53],[3,22],[-3,23],[-49,-32],[-13,5],[0,40],[27,60],[3,18],[-32,9],[-24,30],[-14,26],[-16,38],[0,34],[16,79],[23,24],[20,14],[42,55],[57,-10],[36,11],[32,28],[19,7],[29,24],[-1,33],[-10,25],[9,23],[33,29],[37,37],[42,7],[43,34],[29,-22],[25,7],[29,-25],[38,-58],[56,-24],[45,19],[78,3],[40,-7],[70,14],[40,-5],[64,29],[51,-36],[97,-17],[58,-30],[162,-49],[59,-1],[82,28],[35,21],[32,-13],[47,24],[23,-4],[29,-35],[104,-46],[27,39],[20,9],[74,-24],[75,-49],[39,-3],[57,13],[46,32],[9,4],[45,17],[41,73],[39,263],[28,311],[20,58],[26,17],[-21,42],[-13,-21],[-5,-23],[-7,-12],[15,285],[11,105],[19,109],[39,-43],[32,-44],[17,-39],[21,-127],[15,-27],[24,-26],[-9,29],[-17,22],[-25,170],[-16,48],[-25,40],[-80,85],[-8,17],[-4,32],[27,-1],[23,-16],[-3,18],[-7,19],[-10,69],[-9,161],[1,28],[-4,34],[-26,7],[-20,2],[-22,13],[-110,95],[-37,98],[-39,72],[-9,32],[1,32],[20,67],[-18,43],[-17,8],[-15,21],[14,35],[11,23],[22,6],[30,-8],[28,-20],[21,-5],[-64,54],[-105,-18],[-23,7],[-19,12],[-7,40],[15,18],[13,34],[-15,23],[-20,9],[-31,-1],[-29,-7],[-7,14],[17,37],[-15,14],[-20,-7],[-29,-7],[-28,11],[-26,42],[-17,0],[-12,-5],[-18,16],[-19,4],[-13,-5],[-18,24],[-109,49],[-47,6],[-43,-22],[-24,7],[-18,32],[-14,52],[-70,41],[14,27],[32,6],[37,19],[14,23],[-29,28],[-22,7],[-9,10],[-9,24],[13,12],[9,-6],[26,-4],[45,6],[-16,25],[-18,6],[-8,6],[-36,3],[-17,-9],[-37,4],[-9,27],[-3,23],[11,51],[53,46],[131,51],[56,-7],[40,9],[47,31],[20,28],[67,16],[63,-29],[59,-109],[28,-37],[68,64],[102,-2],[21,-36],[8,30],[19,36],[15,-16],[8,-22],[107,6],[17,6],[-29,26],[-23,62],[-5,229],[-30,64],[-34,102],[-16,60],[-1,21],[5,30],[42,-1],[32,-8],[62,23],[30,-16],[-2,-47],[9,-60],[11,-28],[15,-33],[50,3],[54,-19],[68,-3],[99,-34],[42,20],[41,41],[78,27],[7,14],[-45,-6],[-42,26],[-5,29],[5,25],[16,58],[120,92],[85,28],[89,50],[45,52],[30,68],[10,14],[12,13],[-12,24],[8,256],[9,46],[17,38],[27,29],[40,32],[148,44],[22,17],[121,97],[73,50],[35,15],[21,9],[46,4],[35,-18],[46,-8],[36,24],[28,-21],[31,15],[-24,9],[-37,24],[-51,-20],[-36,24],[-29,2],[-19,19],[-19,31],[14,21],[13,7],[54,4],[40,-13],[71,-68],[18,1],[19,8],[-10,19],[-18,9],[-26,18],[-21,26],[49,8],[-7,13],[-6,23],[-52,79],[9,22],[13,46],[16,38],[13,10],[22,27],[46,80],[30,65],[22,76],[32,212],[10,36],[15,40],[20,-8],[13,-11],[48,30],[83,78],[24,68],[24,31],[95,62],[52,18],[81,5],[59,11],[70,4],[27,-38],[15,-28],[25,-15],[39,-11],[-13,26],[-27,28],[6,59],[9,45],[27,57],[22,15],[96,9],[105,-4],[44,-84],[-16,-44],[25,-20],[13,7],[9,38],[6,42],[9,13],[33,-32],[12,-21],[0,-69],[12,93],[-9,66],[6,63],[14,34],[12,21],[77,-23],[86,12],[32,-25],[73,-123],[24,-20],[31,-6],[-42,26],[-89,149],[-26,19],[-41,5],[-26,15],[-16,23],[-4,20],[1,150],[-16,22],[-20,8],[-12,-10],[-25,-1],[-5,34],[6,26],[51,17],[33,23],[2,41],[-22,32],[-25,58],[-30,56],[-6,112],[-6,34],[-18,51],[27,12],[-5,100],[-10,52],[-75,53],[-60,51],[14,174],[6,46],[-23,91],[3,105],[9,164],[19,7],[14,-1],[53,-30],[22,-3],[15,-26],[18,-11],[13,28],[5,48],[42,62],[30,23],[20,11],[20,-25],[16,-28],[4,61],[12,117],[-40,19],[-33,-16],[-32,-74],[-29,-94],[-47,-8],[-37,-27],[-34,28],[-22,24],[0,35],[5,22],[39,76],[54,73],[53,-1],[39,23],[24,3],[72,-5],[38,16],[33,34],[73,141],[41,59],[82,21],[76,68],[22,1],[-36,-51],[-6,-19],[-4,-30],[25,-66],[-5,-40],[2,-78],[-24,-41],[-28,-87],[-12,-13],[-2,-101],[3,-25],[-4,-92],[28,-38],[29,-20],[99,1],[10,-16],[13,-29],[-9,-49],[-11,-36],[-28,-31],[-37,-23],[-23,-1],[-31,44],[-15,-14],[-15,-23],[-26,-119],[-12,-81],[-6,-7],[-15,12],[-25,1],[-31,-19],[16,-17],[17,-30],[-7,-15],[-28,-16],[-24,-32],[-11,-25],[-31,-29],[-19,-37],[9,-46],[4,-40],[9,-45],[-8,-35],[-38,-51],[-14,-45],[32,1],[21,-10],[12,-13],[12,-19],[-8,-23],[12,-69],[40,-16],[17,-24],[19,-37],[2,-54],[-24,-38],[-20,-24],[76,9],[8,-22],[11,-24],[41,17],[103,-70],[63,34],[16,2],[14,-57],[-16,-57],[-55,-61],[13,-38],[17,-8],[52,8],[82,-37],[17,11],[67,86],[26,18],[88,14],[16,33],[35,33],[23,36],[55,70],[56,-13],[33,-13],[37,-7],[33,-74],[83,-81],[77,7],[27,-77],[12,-96],[24,-30],[20,-19],[63,-21],[66,-34],[26,-19],[-3,21],[-5,18],[3,27],[-2,40],[-57,20],[-50,9],[-34,-6],[-34,9],[-7,34],[6,34],[-14,22],[-13,14],[-2,19],[2,20],[59,-54],[48,-48],[11,-11],[37,-4],[92,54],[159,70],[170,66],[40,7],[40,14],[14,24],[15,17],[23,43],[51,68],[91,24],[34,32],[70,45],[162,50],[67,11],[66,1],[59,-39],[62,-49],[12,-30],[-34,19],[-49,44],[-18,2],[42,-134],[22,-47],[47,-36],[39,-11],[119,21],[43,28],[12,14],[43,49],[28,52],[23,67],[3,46],[6,52],[37,21],[80,-3],[35,25],[44,62],[46,74],[15,32],[32,66],[12,43],[8,61],[8,20],[0,-28],[-3,-46],[-20,-80],[-48,-96],[-74,-116],[23,-15],[27,-5],[32,-22],[30,-3],[53,18],[10,100],[3,94],[-9,42],[10,64],[-19,93],[-30,113],[-2,121],[-2,27],[-9,109],[5,217],[11,108],[51,63],[26,49],[15,65],[5,61],[10,49],[75,144],[60,15],[80,40],[90,33],[17,-42],[9,-32],[108,-117],[27,-40],[42,-135],[100,-68],[79,22],[34,33],[63,61],[28,45],[6,43],[-11,184],[-17,80],[6,50],[2,23],[37,113],[7,89],[13,13],[4,12],[-6,29],[-38,18],[-15,-3],[-14,-30],[-14,-22],[-34,-14],[-29,23],[-67,32],[-18,41],[-4,42],[-35,40],[-15,48],[6,33],[32,22],[9,19],[-40,-3],[-9,5],[-2,17],[-18,58],[16,23],[7,22],[-13,19],[4,22],[10,22],[-6,50],[40,27],[40,19],[83,10],[-8,46],[34,2],[57,56],[56,-10],[82,38],[157,0],[22,22],[-4,22],[0,24],[30,-7],[49,4],[186,-46],[45,0],[63,-47],[34,-13],[101,0],[154,-21],[31,32],[3,9],[14,40],[-5,54],[-9,44],[12,33],[21,3],[22,-36],[34,-18],[25,24],[8,46],[18,20],[24,-18],[40,-7],[33,3],[22,10],[10,15],[9,27],[18,34],[19,23],[145,-26],[126,-47],[9,18],[5,30],[-32,26],[-23,14],[-29,54],[-42,43],[-42,4],[-55,-15],[-84,9],[-71,81],[-47,25],[-34,62],[-8,33],[36,-28],[5,29],[3,40],[-20,24],[-18,14],[-93,-61],[-106,-20],[-10,-2],[-26,-20],[-40,-5],[-17,-14],[-61,42],[-11,3],[-36,-11],[-34,-31],[-64,-9],[-32,-10],[-20,-14],[-4,33],[9,43],[14,29],[1,18],[-10,-1],[-21,-42],[-11,-49],[-21,-25],[-48,-10],[-47,39],[-23,0],[14,-28],[10,-31],[-1,-17],[-25,3],[-28,-19],[-25,-27],[-11,0],[-17,38],[-30,-18],[-26,-24],[-52,-7],[-31,-31],[-55,-22],[-30,1],[-69,-25],[-23,-40],[-20,-14],[-29,12],[-88,-19],[-84,-25],[-36,1],[-36,11],[-38,-35],[-40,-47],[-45,-16],[-16,6],[13,24],[29,25],[21,35],[2,28],[-13,12],[-19,3],[-24,30],[-23,64],[-13,3],[-6,-17],[-7,-49],[-7,-14],[-12,-11],[-15,-12],[-14,-5],[-51,1],[-7,24],[0,11],[9,32],[-7,6],[7,26],[12,-2],[14,4],[7,13],[0,16],[-20,4],[-1,11],[18,45],[2,12],[-7,3],[-11,-5],[-73,14],[-90,57],[-22,3],[-14,51],[-21,-6],[-32,-30],[-24,22],[-25,15],[-7,24],[0,34],[-2,41],[-7,47],[-5,68],[5,53],[20,39],[8,25],[9,64],[3,74],[-6,26],[2,17],[16,0],[-4,14],[-7,8],[-8,17],[7,9],[19,0],[2,6],[2,8],[-15,43],[-2,21],[-21,62],[-23,60],[-36,43],[13,71],[14,64],[-3,31],[-5,37],[-44,41],[-7,58],[-10,63],[4,38],[7,29],[14,29],[73,92],[4,48],[50,4],[-23,42],[-6,24],[-1,29],[71,19],[27,-16],[62,20],[55,38],[-1,20],[-8,18],[-12,35],[8,10],[21,-7],[-10,17],[2,18],[22,-7],[36,51],[1,39],[63,21],[71,79],[33,25],[32,18],[69,80],[29,3],[15,54],[58,72],[17,9],[27,64],[71,75],[45,95],[25,33],[8,36],[28,3],[25,27],[54,18],[53,-5],[22,-12],[21,4],[-2,32],[-15,20],[12,19],[28,14],[-2,32],[-7,20],[-23,25],[12,58],[2,63],[11,73],[-29,39],[-112,65],[-21,-2],[-24,8],[-26,50],[11,43],[2,16],[-11,-1],[-16,-21],[-36,-23],[-46,18],[-23,-4],[-73,-13],[-56,26],[-27,-13],[-48,-1],[-55,-10],[-19,-21],[-14,-8],[-51,29],[-48,49],[-35,-37],[-23,-7],[-20,33],[-18,6],[-10,-12],[-8,-29],[-14,-24],[-3,-14],[-2,-60],[-4,-14],[-46,8],[2,-16],[10,-8],[5,-10],[-17,-13],[-47,2],[-4,-14],[13,-22],[-10,-19],[-10,-8],[-55,-12],[-32,3],[-9,-12],[-3,-16],[6,-16],[14,-9],[5,-10],[-1,-21],[-12,-4],[-33,38],[-10,-2],[7,-20],[19,-22],[11,-22],[10,-26],[-2,-21],[-41,-65],[-37,-41],[-27,-37],[-16,-39],[19,-20],[20,-29],[15,-55],[17,-49],[35,-46],[-7,-27],[-8,-21],[-58,-47],[-66,-70],[-71,-178],[-24,-24],[-62,-30],[-23,-30],[-46,-35],[-81,-29],[-37,-42],[-16,-43],[-19,-3],[-18,17],[-24,12],[-3,-28],[1,-21],[-39,31],[-19,-28],[-14,-47],[-56,-63],[-61,11],[-6,-11],[16,-8],[2,-10],[-11,-5],[-17,0],[-25,-12],[-17,1],[-8,-30],[-13,-37],[-34,-15],[-18,-3],[-9,-20],[53,-5],[-4,-17],[-1,-17],[-6,-19],[-60,-27],[-9,-21],[-12,-13],[-27,0],[1,13],[4,13],[-39,-1],[-12,31],[-8,-8],[4,-25],[11,-25],[11,-38],[-9,-24],[-10,-11],[7,-11],[21,-8],[9,-15],[-25,-13],[-32,-44],[-32,-1],[-20,-28],[-21,0],[-17,18],[-27,15],[-9,-27],[-2,-20],[16,-53],[29,-41],[28,-18],[-20,-12],[-15,-26],[-17,-83],[-10,-33],[-10,-57],[6,-49],[6,-24],[13,-32],[-36,4],[-39,19],[6,-39],[-24,-47],[4,-40],[5,-27],[-7,-44],[11,-14],[6,-26],[-10,-20],[5,-17],[1,-59],[8,-92],[-3,-20],[21,-80],[-5,-29],[-3,-36],[31,-34],[27,0],[27,1],[10,-9],[11,-24],[8,-29],[23,2],[36,24],[23,6],[16,-46],[42,-59],[24,-27],[42,-14],[43,-48],[-6,-58],[18,-20],[52,-22],[18,-31],[9,-27],[14,-21],[16,-66],[-6,-41],[-21,-14],[-49,-44],[-22,-32],[-17,-20],[-49,-44],[-18,-8],[-17,-22],[-16,-10],[-15,6],[-55,-41],[4,-18],[42,-7],[22,9],[17,20],[18,5],[16,-4],[18,16],[14,7],[14,-8],[16,-39],[-33,-20],[-23,-1],[-12,-64],[-14,-27],[-10,-13],[-52,-27],[-35,-35],[-40,-27],[-18,6],[-26,-29],[-59,-33],[-31,-45],[-68,-40],[-34,-32],[-95,-2],[-89,7],[-29,-16],[29,-4],[20,-16],[25,7],[57,-8],[29,-8],[38,-54],[-28,-19],[-48,-14],[18,-76],[15,-51],[-20,-31],[-1,-140],[-27,-2],[-12,-58],[9,-30],[-1,-69],[6,-42],[13,-39],[-6,-41],[-43,-95],[1,-44],[8,-27],[6,-42],[-20,-81],[-14,-69],[-16,-57],[-37,-69],[-18,-51],[-43,-160],[-21,-32],[-26,-24],[-29,22],[-27,13],[-32,-2],[-51,-18],[-77,12],[-74,-6],[-19,-16],[11,-58],[-28,-8],[-26,17],[-24,-20],[-20,-22],[-39,-51],[-13,-32],[-3,-59],[20,-54],[18,-62],[-46,-76],[-26,-2],[-76,20],[-135,-47],[-121,38],[15,40],[0,30],[6,45],[4,47],[-1,32],[-9,33],[-29,44],[-68,147],[-19,62],[-14,26],[10,1],[55,-33],[13,4],[13,13],[-16,47],[-14,22],[-10,32],[33,9],[23,-2],[17,37],[-10,58],[-25,19],[-21,7],[-40,93],[-42,48],[-75,184],[-27,127],[-26,-12],[-12,55],[-9,53],[-2,38],[-40,22],[-1,27],[-8,120],[-42,16],[-28,68],[-5,128],[-28,23],[-23,-7],[1,32],[5,30],[-13,117],[-4,108],[-11,32],[-6,38],[5,33],[8,19],[28,5],[26,-29],[-1,17],[-5,22],[-65,22],[-12,-1],[-25,13],[-15,4],[-31,8],[-25,64],[-28,54],[-3,22],[0,101],[-8,44],[-2,49],[-17,-39],[9,-63],[-21,-26],[-26,-13],[2,-37],[11,-7],[3,-38],[-7,-56],[-52,-126],[-11,-13],[-7,-17],[-27,11],[-34,-35],[-32,-5],[-12,39],[-46,53],[-22,-3],[20,-26],[19,-34],[-11,-22],[-11,-14],[-18,-8],[-67,-44],[23,-29],[-20,-34],[-23,-5],[-13,-15],[-4,-21],[-69,-61],[-113,-155],[-59,-44],[-40,-46],[-36,2],[-45,-39],[-114,-34],[-75,15],[-53,-13],[-28,26],[-4,19],[2,10],[5,13],[-10,5],[-21,2],[-9,-13],[-1,-29],[-10,-8],[-39,17],[-10,15],[14,30],[25,28],[-5,5],[-5,17],[-11,2],[-35,-4],[-29,5],[-93,62],[-21,33],[-75,52],[-34,56],[-19,61],[2,56],[9,87],[15,22],[68,-31],[68,-51],[10,3],[22,40],[41,32],[-12,9],[-61,-37],[-23,21],[-36,42],[0,21],[17,22],[5,29],[-8,28],[4,37],[27,40],[41,40],[30,39],[31,24],[-4,8],[-34,-15],[-34,-26],[-39,-44],[-48,-35],[-35,-13],[-17,-12],[-26,-11],[-27,-50],[-29,-21],[-53,-3],[-11,37],[15,131],[16,64],[17,45],[27,7],[20,34],[16,0],[13,-16],[54,-15],[26,43],[35,6],[62,42],[-1,8],[-42,-9],[-26,-2],[-37,-10],[-20,7],[-9,32],[15,29],[59,68],[21,30],[11,28],[-2,19],[10,39],[58,69],[47,32],[15,-28],[-13,-84],[0,-35],[38,123],[16,30],[19,20],[45,14],[13,20],[-53,-7],[-127,-47],[-54,-42],[-15,-32],[-37,-49],[-17,-31],[-8,-47],[-21,-25],[-29,-9],[-39,-59],[-17,-48],[-39,-37],[-25,-29],[-8,-11],[-14,-28],[-11,-2],[-10,16],[-1,37],[3,59],[19,42],[9,42],[-12,38],[9,24],[16,0],[31,-11],[33,1],[54,31],[-9,18],[-23,2],[-44,-2],[-36,29],[-29,59],[-13,79],[9,23],[105,81],[28,36],[-16,4],[-39,-45],[-57,-27],[-35,38],[-19,41],[-11,87],[4,45],[-4,59],[24,19],[27,-10],[26,-4],[61,5],[133,35],[85,-21],[35,2],[54,31],[46,3],[35,-23],[19,-27],[3,-36],[16,-23],[11,7],[-9,29],[-2,43],[140,50],[17,19],[-56,7],[-16,45],[30,68],[-3,9],[-31,-36],[-15,-51],[6,-40],[-6,-19],[-29,-9],[-64,-3],[-41,17],[-38,10],[-13,13],[4,29],[-7,6],[-16,-26],[-14,-52],[-30,-12],[-84,19],[-121,-11],[-54,-26],[-35,3],[-61,46],[-24,36],[-8,73],[3,33],[47,13],[24,-1],[22,17],[-19,12],[-28,22],[-19,44],[-29,14],[-19,38],[-5,57],[6,40],[15,13],[37,-9],[97,6],[91,-40],[62,-23],[125,12],[73,36],[-13,10],[-80,-21],[-73,1],[-130,40],[-53,14],[-57,-6],[-30,12],[-18,40],[13,77],[27,17],[15,-20],[18,-2],[18,32],[17,19],[14,41],[51,39],[22,3],[31,18],[20,-5],[12,-18],[16,-15],[35,2],[103,31],[11,10],[20,25],[-65,-11],[-54,-18],[-35,-5],[-5,22],[13,21],[20,21],[10,37],[22,16],[24,-1],[50,7],[35,9],[60,-6],[90,-14],[58,-34],[21,3],[23,9],[11,12],[-46,14],[-2,21],[5,15],[74,28],[81,6],[-14,23],[-177,-34],[-46,23],[-36,0],[-24,-13],[-68,-16],[-13,11],[13,40],[41,65],[3,16],[19,16],[106,37],[51,44],[23,6],[22,-3],[35,5],[67,-13],[30,-55],[28,-17],[87,-69],[-4,20],[-75,93],[-29,23],[-21,46],[7,43],[24,29],[86,15],[15,17],[2,29],[-13,19],[-32,-1],[-26,12],[-7,31],[10,21],[50,38],[27,13],[47,13],[81,-30],[6,-16],[-22,-38],[2,-21],[20,-3],[46,64],[55,9],[23,14],[26,9],[38,-58],[16,-19],[12,-7],[12,-48],[12,-3],[17,24],[30,13],[42,8],[69,-12],[32,9],[15,-1],[-14,43],[-10,12],[15,39],[15,15],[48,27],[46,12],[30,26],[40,24],[-6,18],[-12,22],[-26,2],[-10,12],[33,28],[45,32],[-8,12],[-34,14],[-26,-10],[-38,-25],[-45,-39],[15,-11],[22,-32],[-31,-43],[-166,-115],[-78,-34],[-37,5],[-9,32],[-16,23],[-18,48],[-31,-1],[-17,-11],[-8,16],[13,51],[26,40],[44,31],[20,36],[20,59],[63,55],[91,138],[75,44],[27,48],[44,21],[38,37],[29,4],[54,34],[30,40],[-20,2],[-47,-26],[-27,-10],[2,43],[13,44],[39,40],[186,117],[19,-19],[22,-35],[56,8],[64,66],[49,72],[-26,-12],[-29,-30],[-57,-41],[-26,-6],[-15,5],[-8,28],[-20,8],[-18,-6],[-18,20],[-3,48],[23,71],[19,47],[20,36],[78,101],[17,56],[36,29],[46,-7],[14,9],[-16,36],[-50,29],[-3,18],[167,47],[80,-1],[24,23],[43,15],[33,29],[-17,13],[-81,-26],[-51,-13],[-23,0],[-18,-9],[-64,-3],[-14,115],[10,63],[24,-2],[5,60],[28,35],[39,8],[19,15],[28,31],[46,-7],[48,7],[-12,14],[-59,19],[-14,32],[20,17],[23,13],[20,3],[40,62],[24,27],[26,-5],[38,28],[37,-10],[35,18],[49,12],[178,5],[5,25],[-38,6],[-132,7],[-67,-1],[-29,-7],[-10,9],[2,16],[24,24],[12,26],[49,65],[58,44],[44,-11],[46,-42],[34,-5],[15,-13],[25,-57],[11,-2],[-5,55],[32,44],[-8,13],[-49,-16],[-37,16],[-29,34],[-8,31],[18,30],[17,15],[-11,18],[-74,-48],[-51,-11],[-21,7],[11,43],[-6,34],[70,85],[23,9],[39,-6],[35,-24],[30,4],[32,12],[-5,23],[-69,9],[-18,19],[7,19],[47,19],[48,36],[54,10],[43,27],[8,-6],[8,-11],[15,-99],[39,-81],[15,-3],[-15,69],[14,20],[17,15],[6,17],[-20,6],[-17,24],[-24,79],[9,21],[51,41],[64,10],[68,-29],[24,-1],[40,8],[67,24],[40,10],[20,0],[5,12],[-19,8],[-6,7],[-15,5],[-62,-13],[-172,4],[-16,14],[-3,24],[18,34],[20,20],[65,34],[68,5],[72,61],[28,45],[15,71],[44,57],[111,32],[4,14],[-12,30],[1,53],[31,63],[20,21],[9,3],[24,-21],[29,-43],[45,-24],[59,-5],[16,12],[-46,25],[-35,32],[-3,33],[17,17],[25,-2],[33,4],[30,21],[4,16],[1,20],[8,22],[44,50],[136,33],[10,-14],[-7,-97],[-16,-63],[0,-46],[27,46],[35,126],[27,59],[30,34],[22,8],[21,17],[28,11],[9,-14],[9,-31],[-16,-110],[2,-35],[-17,-46],[-65,-104],[3,-13],[15,5],[25,17],[80,98],[70,-12],[1,8],[-22,29],[-28,28],[-8,34],[4,91],[21,37],[60,-4],[37,5],[17,-17],[36,1],[25,66],[50,6],[44,-44],[52,-29],[43,-42],[12,12],[-23,98],[-25,35],[-54,19],[-58,44],[-15,19],[3,15],[50,14],[68,-16],[59,36],[17,-10],[46,19],[28,-25],[17,7],[11,35],[73,21],[46,-20],[25,-20],[12,-39],[17,-78],[36,-42],[23,-21],[27,-5],[12,21],[-24,25],[-7,24],[12,59],[14,23],[78,87],[66,46],[39,4],[68,102],[20,18],[18,5],[-5,24],[-37,16],[-2,31],[50,38],[60,63],[30,4],[18,-17],[59,-29],[35,-33],[26,-16],[17,3],[14,25],[17,11],[37,-6],[22,-16],[18,-2],[15,-9],[4,-21],[-32,-23],[-55,-61],[-54,-69],[-18,-36],[-17,-95],[-43,-61],[-3,-43],[17,-20],[47,16],[57,57],[15,60],[143,164],[68,91],[76,75],[43,15],[21,-49],[-17,-65],[-32,-41],[24,-19],[-5,-50],[-7,-27],[-5,-28],[0,-26],[23,7],[89,52],[23,56],[21,42],[10,36],[35,34],[66,0],[3,14],[-80,47],[-9,22],[27,28],[73,55],[38,-6],[23,-13],[91,-9],[69,-39],[-2,-61],[-16,-26],[-15,-15],[-89,-47],[-15,-22],[28,-8],[60,23],[16,-21],[-19,-53],[-4,-78],[-7,-46],[0,-42],[8,-23],[24,90],[8,22],[36,34],[13,68],[34,81],[39,47],[23,13],[75,-2],[33,-18],[28,-39],[21,-16],[67,-17],[24,-21],[4,-12],[16,-3],[45,30],[30,5],[48,-46],[-10,-35],[3,-11],[58,2],[48,-13],[92,-71],[10,-33],[-5,-40],[-132,-44],[-57,-42],[-94,-16],[-318,28],[7,-31],[221,-66],[13,-19],[-7,-40],[-1,-33],[5,-22],[16,-20],[27,-10],[55,5],[27,-11],[19,17],[7,55],[16,12],[31,-16],[13,-59],[9,-6],[15,42],[31,-3],[33,3],[43,-7],[50,-8],[112,-46],[26,5],[34,13],[34,55],[25,9],[33,-12],[9,14],[-17,46],[4,22],[113,-48],[48,-36],[105,-32],[18,-17],[2,-30],[-5,-25],[-23,-14],[-44,2],[-161,39],[-23,-24],[19,-20],[47,-25],[13,-43],[72,6],[69,-16],[32,5],[6,-14],[-22,-36],[10,-9],[77,34],[36,10],[19,-9],[3,-29],[-13,-36],[-1,-28],[-24,-66],[-36,-21],[-16,-27],[54,17],[28,18],[53,92],[16,12],[152,1],[34,-5],[142,-44],[40,-3],[46,5],[16,20],[16,6],[158,-48],[211,-109],[309,-179],[174,-160],[20,-34],[63,-20],[14,14],[35,-12],[205,-146],[70,-7],[-9,31],[-12,29],[18,-7],[24,-21],[38,-57],[48,-42],[48,-64],[41,-24],[36,-9],[30,-18],[56,-17],[26,-155],[20,-34],[0,-68],[36,-28],[27,-5],[-1,-51],[-22,-119],[-24,-51],[-186,-219],[-116,-84],[-226,-97],[-176,-36],[-72,-3],[-138,18],[-75,20],[-93,55],[-86,27],[-60,12],[-110,5],[-239,54],[-41,19],[-150,105],[-60,-30],[-35,-5],[-24,36],[10,10],[5,12],[-85,30],[-70,2],[-37,26],[-46,19],[-20,-12],[-11,0],[-92,46],[-41,37],[-43,65],[10,23],[13,15],[-148,38],[-140,5],[25,-18],[60,-10],[39,-26],[44,-37],[-10,-50],[62,-50],[47,-48],[2,-14],[18,-10],[70,-14],[12,-44],[-11,-17],[9,-25],[53,-27],[31,-7],[38,-17],[-17,-33],[-32,-22],[-33,-10],[16,-8],[41,3],[152,-55],[80,-56],[81,-102],[26,-50],[2,-28],[-4,-27],[-12,-30],[-5,-31],[-28,-88],[-20,-31],[-38,-35],[36,-68],[37,-63],[37,-105],[7,-42],[1,-65],[33,-26],[-13,-10],[-13,-18],[3,-84],[46,-69],[70,-45],[41,-9],[59,18],[43,-25],[96,-84],[43,-89],[18,-18],[97,-34],[72,-20],[111,-54],[19,-2],[54,47],[92,32],[29,44],[-3,37],[-23,67],[-7,65],[-31,27],[-28,18],[-86,-14],[-39,3],[-30,17],[-40,47],[-75,113],[-40,37],[-13,24],[-14,32],[2,53],[33,-2],[37,30],[27,106],[46,14],[25,-1],[108,-50],[134,-132],[29,-14],[31,-2],[51,4],[9,-18],[27,-20],[20,-3],[123,-42],[142,-82],[53,3],[21,46],[4,20],[59,46],[40,8],[57,-17],[10,13],[-19,68],[-26,59],[-39,37],[-68,111],[-28,54],[-13,57],[9,50],[10,36],[142,89],[51,53],[50,69],[23,14],[83,19],[111,59],[85,78],[84,119],[36,31],[28,-2],[38,-19],[42,-35],[57,-6],[55,5],[64,-3],[88,-54],[14,-17],[14,-23],[-28,-45],[-3,-29],[23,14],[32,6],[29,-9],[28,-25],[20,-28],[25,-24],[7,32],[4,28],[-13,70],[34,99],[26,43],[48,110],[-14,71],[-2,82],[-7,38],[-31,55],[-61,39],[-61,13],[-20,38],[4,43],[17,63],[50,133],[52,188],[2,43],[-5,24],[4,24],[-7,57],[-9,42],[-213,163],[-13,15],[-7,22],[23,5],[16,-1],[160,-76],[35,-4],[251,21],[123,-18],[103,-39],[74,-108],[76,-99],[70,-86],[2,-70],[-73,-14],[-70,-4],[-180,-35],[-43,-39],[-120,-122],[-11,-37],[11,-36],[55,-38],[118,-57],[52,-113],[37,-57],[28,-22],[27,-5],[60,-1],[42,-13],[12,-11],[17,11],[38,4],[224,60],[44,26],[15,40],[16,133],[20,46],[19,57],[-7,35],[-2,40],[112,38],[104,26],[50,-8],[13,28],[-32,55],[-19,28],[16,12],[24,-15],[32,-9],[56,9],[215,113],[84,63],[50,25],[80,57],[38,19],[67,7],[71,23],[78,42],[105,36],[17,2],[21,-5],[43,-42],[-16,-24],[-12,-25],[21,-14],[17,-6],[21,7],[22,17],[54,26],[15,33],[-21,13],[-27,49],[-32,11],[-26,-2],[95,71],[202,105],[108,48],[107,4],[85,-6],[-32,-16],[-140,-22],[-21,-11],[0,-13],[34,-8],[14,-16],[-11,-18],[-11,-6],[-16,-54],[-21,-43],[44,-56],[4,-58],[-28,-31],[-39,12],[-34,-20],[-62,-14],[-14,-18],[-9,-26],[40,-6],[31,2],[110,-17],[15,-2],[37,18],[37,4],[45,6],[23,11],[23,-13],[44,-51],[40,10],[17,99],[63,62],[74,50],[72,5],[69,35],[33,7],[64,-14],[96,-3],[81,-30],[60,-8],[88,51],[203,143],[17,-33],[33,48],[157,50],[38,2],[1,-20],[14,-44],[30,-27],[42,-64],[-20,-17],[-21,-10],[-31,-43],[-3,-99],[59,-25],[81,-29],[34,1],[28,16],[9,9],[10,15],[8,29],[5,22],[-21,55],[8,58],[74,-4],[91,17],[41,33],[49,63],[33,52],[-21,92],[-53,-20],[-91,199],[-47,77],[30,36],[78,23],[71,74],[27,15],[29,3],[210,-51],[239,-12],[203,-39],[230,-81],[112,-57],[93,-63],[-9,-45],[38,13],[82,-40],[56,-16],[57,-24],[22,-32],[75,-23],[92,-51],[95,-32],[68,-11],[41,-69],[136,-100],[25,-38],[119,-63],[59,-52],[37,20],[91,126],[54,144],[32,77],[-60,3],[-45,-22],[-29,5],[-32,23],[-52,58],[-66,97],[-13,106],[-18,35],[-64,28],[-42,32],[-156,63],[-28,-22],[-8,-34],[-10,-25],[-16,32],[-10,29],[0,46],[8,59],[26,99],[40,-5],[21,15],[26,44],[-12,37],[-14,28],[3,43],[25,118],[11,138],[-21,34],[-19,23],[-89,-24],[-33,13],[-8,26],[-2,21],[25,35],[25,59],[-43,-13],[-15,23],[36,34],[42,82],[99,38],[74,37],[116,78],[86,77],[56,98],[38,93],[62,218],[58,160],[98,165],[61,15],[23,-3],[4,-12],[-14,-14],[-4,-20],[26,-7],[42,-1],[79,10],[134,-6],[234,14],[33,-7],[87,-48],[47,6],[96,-23],[52,-26],[50,-31],[-7,-120],[-10,-80],[-35,-152],[-14,-39],[-56,-110],[-26,-72],[-42,-50],[-60,-35],[-8,-21],[-5,-31],[59,-87],[140,-90],[34,-108],[8,-81],[-9,-210],[-13,-31],[-26,-34],[-25,-40],[16,-59],[20,-219],[4,-178],[-16,-61],[-8,-129],[0,-43],[14,-64],[28,-54],[37,-34],[105,-63],[99,-76],[7,-24],[5,-29],[-35,-30],[-55,-78],[-35,-65],[-3,-53],[12,-67],[-6,-63],[-23,-56],[-33,-41],[-99,-63],[-207,-334],[-50,-39],[-84,13],[23,-48],[29,-68],[-4,-45],[-54,3],[-77,-48],[-35,-32],[-60,-17],[-45,17],[-50,31],[7,26],[10,12],[35,19],[34,25],[-17,5],[-14,0],[-38,-32],[-45,-7],[-52,40],[-41,43],[-19,9],[-38,-18],[-146,8],[-38,-7],[-18,-16],[10,-13],[11,-24],[15,-48],[14,-36],[60,-39],[81,-15],[78,-48],[99,-34],[224,14],[59,-4],[58,-15],[97,-50],[42,4],[71,45],[17,101],[9,31],[257,142],[48,31],[77,77],[25,52],[29,140],[25,50],[167,161],[26,41],[5,76],[-3,51],[-10,50],[-30,84],[-34,49],[-33,67],[24,138],[28,53],[151,63],[129,23],[144,43],[58,9],[40,-7],[41,-47],[36,-69],[104,-105],[35,-72],[7,-89],[-4,-216],[-20,-94],[41,-24],[20,-22],[51,-31],[27,-31],[27,-11],[59,-7],[168,11],[92,6],[-9,14],[-14,11],[-78,4],[-110,23],[-159,42],[-19,91],[4,56],[36,106],[25,18],[31,7],[36,15],[-11,67],[-14,61],[-34,85],[-37,157],[-51,1],[-39,31],[-189,92],[-179,68],[-123,9],[-39,-7],[-102,-71],[-66,-15],[-125,31],[-107,-17],[-40,17],[-16,31],[32,127],[-17,49],[-47,66],[-28,51],[5,56],[70,214],[29,56],[75,100],[38,76],[-9,44],[-161,239],[-43,85],[-19,27],[-39,32],[-60,38],[-18,34],[163,231],[74,40],[103,25],[50,22],[87,47],[52,39],[17,31],[11,37],[2,91],[-11,73],[-14,41],[-31,52],[-31,59],[22,15],[22,9],[58,-1],[60,-32],[30,-64],[35,-60],[0,-40],[-3,-31],[15,-44],[13,-18],[14,-31],[-13,-25],[-14,-12],[-27,-35],[-43,-108],[-33,-14],[-8,-84],[71,-92],[-9,-69],[-14,-23],[-39,-37],[5,-30],[10,-21],[111,-44],[105,-27],[176,-9],[51,-43],[19,30],[165,-7],[133,-105],[70,-32],[57,-11],[116,13],[20,9],[19,30],[-54,-2],[-24,-14],[-22,1],[-38,11],[-27,18],[-29,35],[-48,104],[-84,33],[-57,-14],[-62,7],[-102,56],[-68,21],[-121,61],[-34,25],[-27,51],[-31,84],[-20,47],[26,9],[83,46],[124,15],[53,-16],[136,-94],[63,-3],[114,41],[13,26],[-26,53],[-34,27],[-66,13],[-80,-24],[-23,20],[8,28],[9,21],[43,5],[30,16],[65,58],[72,28],[71,10],[261,-8],[148,-91],[144,-41],[63,-31],[17,-5],[15,-21],[11,-48],[182,-129],[42,-17],[116,-6],[130,30],[59,3],[63,-9],[33,-16],[36,-30],[-19,-38],[-17,-23],[-36,-64],[-16,-18],[-118,-73],[-47,-19],[-13,-96],[-6,-21],[-5,-34],[22,-68],[5,-42],[-18,-58],[-30,-62],[6,-50],[10,-67],[5,20],[-2,30],[8,35],[54,85],[39,115],[40,30],[36,7],[40,-34],[11,-46],[2,-70],[-8,-65],[-30,-100],[-50,-70],[-16,-39],[23,-37],[25,-29],[29,-9],[33,3],[8,9],[6,28],[-10,36],[-6,33],[61,25],[57,14],[45,42],[11,28],[10,46],[-23,72],[-20,54],[-68,129],[-51,66],[32,99],[53,110],[20,27],[6,17],[6,30],[-5,31],[-6,20],[-54,83],[-39,27],[-123,16],[-31,13],[-90,85],[-11,19],[-20,61],[-7,15],[-25,16],[-83,35],[-58,15],[-84,4],[-51,18],[-76,56],[-8,19],[-22,73],[-17,37],[5,28],[27,58],[19,51],[-23,44],[-33,14],[-36,21],[-15,40],[-9,43],[-1,34],[-6,39],[17,33],[38,34],[-9,24],[5,31],[247,41],[96,11],[480,4],[34,12],[209,20],[89,24],[94,-25],[34,1],[69,7],[45,51],[102,20],[170,21],[84,-4],[19,-15],[19,-21],[-92,-62],[-92,-56],[-76,-24],[-74,-49],[-7,-19],[-2,-12],[2,-39],[5,-25],[77,-32],[59,-44],[57,-32],[45,-19],[11,11],[-165,104],[-42,23],[-17,25],[8,38],[17,17],[26,19],[17,9],[62,20],[206,27],[49,51],[21,30],[56,31],[-19,13],[-46,8],[-36,18],[-142,183],[-35,28],[-109,20],[-49,21],[50,62],[59,16],[40,-4],[35,-17],[65,-51],[92,22],[-35,23],[-58,26],[-54,42],[-77,37],[-86,24],[-90,10],[25,55],[50,-7],[16,17],[23,33],[125,-77],[59,21],[50,35],[104,93],[14,42],[-50,23],[-41,11],[-56,-2],[-5,25],[24,33],[45,13],[139,-36],[232,93],[63,45],[161,58],[79,-7],[164,77],[227,33],[132,1],[102,42],[156,15],[54,17],[263,43],[146,34],[23,27],[-131,-22],[-31,20],[-27,-13],[-20,-19],[-63,34],[-17,-9],[-13,-18],[-23,-6],[-27,4],[-9,41],[32,55],[37,-29],[43,42],[27,1],[81,-26],[54,27],[72,13],[79,-12],[33,3],[19,25],[129,-22],[89,15],[61,-2],[95,-13],[43,-18],[-25,-42],[-92,-68],[25,-11],[53,31],[159,46],[26,-9],[-18,-40],[-11,-17],[106,23],[91,50],[40,9],[41,-31],[39,28],[9,28],[69,6],[28,26],[49,19],[40,8],[89,36],[31,-11],[59,-9],[56,-17],[105,-40],[14,-15],[13,-3],[30,-28],[-22,-42],[-24,-60],[-45,-28],[27,-3],[19,8],[36,40],[32,28],[-8,119],[-57,60],[-44,20],[-102,63],[-34,27],[-46,28],[18,17],[196,-22],[100,11],[108,-7],[144,27],[61,-28],[69,1],[80,-23],[24,27],[-131,29],[-58,-3],[-21,15],[22,34],[25,51],[-25,44],[-24,24],[-4,45],[23,52],[54,22],[30,42],[63,55],[303,179],[145,68],[55,9],[64,-6],[126,57],[47,0],[175,-45],[42,-33],[96,-26],[111,-14],[51,-21],[25,-24],[21,-33],[-90,-22],[-97,-66],[-132,-36],[-163,-24],[-34,-18],[311,-5],[90,4],[19,-57],[30,-2],[90,27],[54,2],[102,-20],[21,11],[44,1],[94,-25],[42,-37],[-67,-60],[-69,-53],[-84,-90],[-26,7],[-44,2],[8,-45],[74,2],[40,-20],[92,25],[130,-8],[27,7],[50,28],[13,52],[22,33],[43,11],[47,-10],[80,0],[203,17],[170,-22],[136,27],[178,-20],[78,-21],[57,-37],[52,-11],[42,-29],[43,-42],[-21,-34],[-21,-23],[56,25],[43,6],[32,-15],[57,-15],[18,-95],[17,-18],[15,-33],[-21,-30],[-18,-14],[45,3],[63,32],[13,11],[16,24],[-24,23],[-21,14],[27,11],[52,-4],[26,-42],[17,-38],[38,-127],[81,17],[4,-38],[-34,-87],[-36,-64],[-14,-14],[-23,-3],[9,34],[-14,20],[-21,12],[-74,12],[-138,79],[-37,8],[-8,-4],[-4,-7],[77,-54],[63,-95],[57,28],[23,-5],[31,-45],[56,-18],[47,-30],[-31,-91],[-192,-160],[-203,-93],[-90,-65],[-158,-47],[-113,-64],[-144,-47],[-42,-51],[-107,-32],[8,-17],[12,-18],[-13,-30],[-15,-23],[-83,-47],[-121,-32],[-243,-195],[-121,-40],[-137,-2],[-29,-18],[-104,-123],[-32,-26],[-136,-13],[-142,-201],[-79,-68],[-69,-37],[72,7],[85,27],[99,65],[26,30],[14,34],[29,27],[45,19],[176,21],[72,-8],[106,6],[70,36],[41,13],[37,4],[19,26],[62,5],[143,34],[21,12],[46,51],[85,-19],[61,10],[159,91],[96,34],[26,24],[-19,17],[-22,12],[-92,-32],[-83,-10],[-94,8],[-13,13],[-11,32],[30,47],[26,28],[60,37],[49,13],[183,-40],[38,-5],[21,66],[58,-3],[58,-11],[-25,-14],[-64,-21],[20,-48],[28,-33],[112,-47],[95,-21],[70,1],[110,20],[17,14],[23,38],[-28,72],[27,-9],[27,-18],[42,-44],[40,-75],[25,-35],[-15,-37],[-57,-71],[33,-39],[59,-26],[0,-116],[-4,-56],[-29,-61],[-34,-26],[-33,-38],[8,-36],[8,-22],[35,-42],[98,-13],[13,11],[-23,13],[-66,20],[-26,16],[-23,38],[27,42],[29,31],[35,71],[11,50],[-7,52],[23,24],[35,25],[17,5],[16,11],[-25,13],[-23,6],[-48,32],[-8,41],[96,17],[57,29],[210,13],[144,55],[322,-15],[226,-45],[317,-5],[117,-30],[11,-11],[7,-22],[-50,-9],[-83,0],[-22,-56],[14,-70],[148,-74],[129,-31],[90,-49],[48,-4],[188,5],[110,-25],[100,19],[109,0],[38,-5],[40,-37],[64,-10],[77,-1],[43,7],[17,9],[-6,15],[-64,22],[7,27],[25,6],[107,-36],[44,-6],[39,27],[29,49],[16,33],[17,17],[14,2],[14,10],[-34,39],[-33,49],[-7,32],[-10,16],[-4,59],[30,60],[21,17],[85,-23],[38,36],[24,14],[102,24],[43,-2],[71,-23],[228,-110],[-5,-42],[54,12],[26,17],[61,11],[41,18],[11,-7],[14,-17],[-10,-25],[-14,-25],[9,-15],[12,-3],[61,-31],[79,57],[32,55],[22,11],[197,-38],[59,-21],[12,-12],[8,-20],[32,-22],[39,-12],[-5,-18],[-2,-19],[92,-3],[40,-16],[44,-25],[-5,-29],[11,-17],[41,-2],[11,3],[-13,-39],[-55,-42],[-33,-16],[-38,-28],[21,-5],[95,-8],[59,-56],[6,-41],[-37,-16],[-84,-52],[-50,-21],[-35,-2],[-25,-7],[36,-22],[158,-6],[46,-28],[36,-70],[0,-86],[-36,-43],[-97,-7],[-127,96],[-78,37],[-109,71],[-21,-12],[32,-60],[51,-34],[92,-93],[154,-192],[36,16],[21,24],[10,31],[-9,43],[25,-21],[23,-38],[46,-64],[-62,3],[-80,-21],[-29,-26],[22,-35],[59,-5],[25,-49],[46,-60],[103,-164],[73,-31],[71,-68],[71,-32],[37,-2],[25,42],[20,-15],[19,-76],[34,-33],[38,-2],[31,13],[45,36],[36,42],[58,116],[38,58],[36,24],[-13,28],[4,33],[26,77],[36,91],[27,49],[66,97],[25,18],[18,-32],[14,-42],[10,-18],[10,-7],[81,-85],[82,-67],[73,-33],[115,-32],[167,5],[30,42],[58,32],[94,16],[55,39],[91,11],[57,-6],[88,-28],[197,-89],[55,-33],[29,-35],[64,-52],[41,-25],[40,-18],[14,5],[-5,15],[-20,15],[-16,19],[47,19],[5,15],[17,12],[62,11],[-61,19],[-20,3],[-29,11],[2,27],[19,19],[15,36],[19,23],[32,18],[24,3],[57,-23],[41,42],[30,-3],[63,-43],[56,-64],[31,0],[87,26],[98,1],[-13,38],[-68,83],[8,106],[-47,24],[-54,14],[78,27],[58,87],[46,8],[48,16],[-15,11],[-143,9],[-31,-10],[-21,-26],[-71,0],[-8,59],[-2,37],[93,79],[35,17],[236,-2],[71,15],[104,39],[-27,25],[-3,50],[-89,73],[7,16],[9,11],[27,0],[140,-19],[58,-39],[151,-40],[404,-13],[45,-14],[174,-17],[73,-19],[175,-23],[80,-17],[63,-25],[103,-15],[47,-17],[-5,-53],[-213,7],[-71,17],[-88,2],[-33,-8],[-53,-44],[-63,-23],[-53,-4],[35,-38],[49,-10],[158,49],[432,24],[66,-4],[-7,-34],[-58,-65],[-55,-50],[-80,-52],[-30,0],[63,110],[-26,6],[-24,-3],[-70,46],[-11,2],[-14,-11],[0,-16],[-13,-64],[26,-27],[0,-46],[-97,-29],[-38,3],[-40,18],[-17,0],[-5,-15],[8,-27],[-1,-13],[-15,-22],[-8,-23],[24,-26],[31,-7],[171,29],[75,36],[82,65],[146,159],[65,54],[37,21],[48,8],[269,-17],[156,-34],[149,-51],[74,-42],[54,-57],[10,-24],[5,-32],[-37,-30],[-167,-10],[-64,-17],[-24,-19],[-3,-11],[-8,-17],[12,-14],[75,-2],[72,-13],[100,-36],[15,-12],[32,-35],[10,-6],[149,6],[10,-12],[9,-26],[-39,-40],[-39,-27],[-80,-64],[40,23],[161,55],[41,10],[49,-4],[121,-50],[50,-39],[92,-112],[-26,-12],[-66,-12],[208,-85],[80,1],[184,24],[93,1],[172,54],[171,35],[157,2],[83,33],[220,-1],[211,-11],[164,-20],[185,-60],[180,-83],[105,-82],[21,-25],[30,-57],[13,-48],[13,-65],[-6,-51],[-26,-36],[-16,-45],[2,-53],[-31,-69],[29,-49],[80,-32],[172,-42],[47,-29],[6,-85],[14,-71],[15,-136],[29,-35],[47,-32],[9,-45],[-59,-144],[-37,-27],[-39,-40],[69,14],[35,53],[38,97],[36,16],[19,31],[0,92],[-23,79],[0,57],[15,46],[114,95],[61,38],[58,22],[158,19],[72,19],[82,-13],[58,5],[67,20],[59,-10],[98,-63],[347,-14],[61,-22],[233,-27],[18,0],[52,31],[154,108],[64,-7],[26,-17],[27,-43],[28,-27],[23,-75],[20,-102],[33,-18],[46,-6],[100,-38],[101,-48],[29,-92],[54,-77],[126,7],[132,16],[127,126],[0,52],[-31,74],[-47,72],[-37,112],[-117,25],[11,33],[44,39],[40,61],[6,46],[-11,98],[106,-7],[106,-11],[201,-44],[163,-18],[86,-28],[52,-32],[62,-23],[21,57],[23,14],[82,-33],[60,-9],[103,4],[130,-15],[141,3],[127,25],[47,-5],[52,-20],[84,-53],[143,-71],[130,-20],[150,-66],[141,-25],[113,-38],[16,-14],[5,-21],[8,-18],[89,-20],[165,-143],[-99962,-16]],[[90522,76877],[4,-3],[5,0],[5,1],[2,-6],[1,-11],[-3,-1],[-7,-2],[-4,-1],[-2,8],[-1,6],[-4,4],[0,4],[4,1]],[[90654,76972],[-7,-3],[-12,3],[-4,3],[2,5],[8,8],[6,-3],[5,-2],[2,-11]],[[90567,76848],[-3,-1],[-2,7],[6,8],[11,9],[4,-5],[-4,-7],[-5,-4],[-7,-7]],[[5628,39602],[-9,0],[-12,4],[-7,3],[-1,5],[3,16],[6,9],[12,-2],[8,-11],[1,-19],[-1,-5]],[[2089,46900],[-1,-1],[-1,6],[-2,7],[-1,7],[0,1],[3,-6],[2,-7],[0,-7]],[[2448,46454],[0,-2],[-2,3],[-2,5],[-1,6],[1,1],[2,-4],[1,-4],[1,-5]],[[2163,49244],[1,-4],[4,1],[4,1],[-2,-4],[-8,-2],[-3,10],[4,8],[4,1],[1,-2],[-1,-2],[-1,0],[-3,-2],[0,-5]],[[2306,50249],[9,-11],[7,-15],[4,-20],[-1,-5],[-5,0],[-6,6],[-5,9],[-2,2],[-1,2],[6,-1],[6,-9],[5,-4],[-1,10],[-5,18],[-4,6],[-4,5],[-5,3],[-4,-3],[-1,-2],[-1,5],[1,3],[1,4],[6,-3]],[[2476,50037],[-1,-5],[-2,4],[1,6],[2,6],[1,-3],[-1,-8]],[[2435,49272],[-3,-3],[-3,1],[-2,4],[0,6],[3,4],[3,-1],[3,-6],[-1,-5]],[[1524,49150],[3,-8],[0,-4],[-1,1],[-5,2],[-1,5],[3,-3],[2,1],[-4,6],[-2,5],[-3,2],[0,3],[3,-1],[5,-9]],[[6957,49488],[-1,-4],[-4,5],[-6,9],[-6,9],[0,4],[8,5],[10,5],[2,-6],[-2,-9],[-1,-18]],[[7838,45252],[-2,-9],[-5,3],[-2,12],[-1,12],[2,11],[2,-1],[4,-12],[2,-16]],[[6704,48601],[-6,-2],[-8,0],[-3,7],[-1,6],[3,1],[2,-2],[11,-1],[3,-4],[-1,-5]],[[407,40802],[-3,-5],[-8,6],[-6,8],[-1,8],[3,10],[6,6],[3,-2],[-2,-3],[-3,-4],[0,-11],[5,-6],[4,-1],[2,-6]],[[56,40932],[0,-17],[-4,1],[-5,8],[-2,-4],[-2,-5],[-1,-12],[-1,-7],[-4,3],[0,11],[1,9],[2,12],[7,11],[9,-10]],[[358,39937],[0,-1],[-1,0],[-2,2],[-2,4],[0,4],[0,4],[1,0],[2,-4],[1,-4],[1,-5]],[[28110,32461],[-50,-12],[-2,3],[3,10],[11,18],[14,21],[3,1],[5,-2],[6,-4],[15,-14],[4,-10],[-1,-8],[-8,-3]],[[46009,47249],[-9,-1],[-3,5],[-2,14],[5,22],[4,13],[7,-2],[8,-15],[8,-13],[-4,-12],[-14,-11]],[[70216,58296],[-2,-4],[0,10],[2,17],[3,11],[1,-1],[0,-11],[-2,-15],[-2,-7]],[[70296,56606],[-4,-7],[-4,-3],[-3,1],[-1,7],[0,6],[4,-7],[5,6],[5,18],[1,6],[1,-3],[-1,-10],[-3,-14]],[[70393,53704],[-6,-1],[-4,10],[1,14],[5,10],[7,1],[4,-9],[-2,-14],[-5,-11]],[[70419,54242],[-4,-6],[-5,2],[-2,7],[3,10],[3,13],[3,14],[4,7],[3,-2],[0,-8],[-2,-11],[-1,-14],[-2,-12]],[[86436,53586],[-6,-3],[-4,2],[0,8],[4,9],[6,4],[4,-3],[0,-8],[-4,-9]],[[92123,56074],[-2,-7],[-17,3],[-2,4],[1,3],[8,4],[1,10],[-4,2],[4,6],[6,1],[4,-7],[2,-9],[-1,-10]],[[92188,56124],[-4,-3],[-3,3],[1,14],[2,5],[4,1],[8,-4],[1,-4],[-9,-12]],[[96357,58267],[-7,-4],[-5,4],[4,8],[8,1],[3,-2],[-3,-7]],[[99199,44639],[-10,-6],[-18,5],[-4,9],[6,2],[11,6],[14,-3],[3,-6],[-2,-7]],[[98507,39346],[-2,-7],[-8,2],[-2,13],[5,7],[7,-4],[0,-11]],[[99781,46932],[-4,-6],[-1,0],[1,13],[-1,14],[0,11],[2,2],[2,-13],[1,-15],[0,-6]],[[99636,47532],[0,-7],[-2,1],[-3,8],[-2,13],[2,-3],[4,-7],[1,-5]],[[99552,47208],[-4,-13],[-2,4],[3,8],[2,9],[1,-8]],[[97097,51339],[-3,-1],[-5,6],[0,7],[4,4],[5,-6],[-1,-10]],[[14364,37789],[-3,-9],[-6,8],[-6,16],[-2,18],[6,10],[7,-6],[4,-18],[0,-19]],[[3858,89992],[-10,-3],[0,9],[32,23],[58,29],[-2,-6],[-31,-23],[-47,-29]],[[25913,64077],[4,-28],[-4,4],[-7,21],[-4,26],[4,1],[3,-9],[4,-15]],[[65129,65923],[-3,-12],[-8,1],[-19,11],[-7,16],[13,19],[5,1],[8,-20],[11,-16]],[[27282,65981],[-7,-1],[-1,9],[12,11],[9,-1],[-1,-12],[-12,-6]],[[84650,73721],[3,-6],[0,-9],[-4,-4],[-6,-9],[-6,-7],[-11,3],[-9,11],[3,21],[7,-4],[16,9],[7,-5]]],"bbox":[-180,-89.999,180,83.599609375],"transform":{"scale":[0.0036000360003600037,0.001736003453784538],"translate":[-180,-89.999]}} diff --git a/data/majorEruption.csv b/data/majorEruption.csv new file mode 100644 index 0000000..ec91997 --- /dev/null +++ b/data/majorEruption.csv @@ -0,0 +1,429 @@ +Year,Name,Location,Country,Latitude,Longitude,Elevation..m.,Type,VEI,Deaths +79,Vesuvius,Italy,Italy,40.821,14.426,1281,Complex volcano,5,2100 +450,Ilopango,El Salvador,El Salvador,13.672,-89.053,450,Caldera,6,30000 +764,Aira,Kyushu-Japan,Japan,31.593,130.657,1117,Stratovolcano,4,80 +1362,Oraefajokull,Iceland-SE,Iceland,64,-16.65,2010,Stratovolcano,5,220 +1410,Nasudake,Honshu-Japan,Japan,37.125,139.963,1915,Stratovolcano,3,180 +1485,Asosan,Kyushu-Japan,Japan,32.884,131.104,1592,Caldera,2,1 +1510,Hekla,Iceland-S,Iceland,63.983,-19.666,1490,Stratovolcano,4,1 +1536,Etna,Italy,Italy,37.748,14.999,3357,Stratovolcano,3,1 +1538,Campi Flegrei,Italy,Italy,40.827,14.139,458,Caldera,3,24 +1568,Savo,Solomon Is-SW Pacifi,Solomon Is.,-9.13,159.82,485,Stratovolcano,3,1001 +1570,Mombacho,Nicaragua,Nicaragua,11.826,-85.968,1344,Stratovolcano,0,400 +1580,Sao Jorge,Azores,Portugal,38.65,-28.08,1053,Fissure vent,3,10 +1586,Kelud,Java,Indonesia,-7.935,112.314,1730,Stratovolcano,5,10000 +1595,"Ruiz, Nevado del",Colombia,Colombia,4.892,-75.324,5279,Stratovolcano,4,636 +1598,Asamayama,Honshu-Japan,Japan,36.406,138.523,2568,Complex volcano,2,800 +1600,Huaynaputina,Peru,Peru,-16.608,-70.85,4850,Stratovolcano,6,1500 +1629,Grimsvotn,Iceland-NE,Iceland,64.416,-17.316,1719,Caldera,2,4 +1630,Furnas,Azores,Portugal,37.77,-25.32,805,Stratovolcano,4,200 +1631,Dama Ali,Africa-NE,Ethiopia,11.28,41.63,1068,Shield volcano,0,50 +1631,Vesuvius,Italy,Italy,40.821,14.426,1281,Complex volcano,5,4000 +1638,Raung,Java,Indonesia,-8.119,114.056,3260,Stratovolcano,4,1001 +1640,Tungurahua,Ecuador,Ecuador,-1.467,-78.442,5023,Stratovolcano,3,5000 +1650,Santorini,Greece,Greece,36.404,25.396,367,Shield volcano,4,120 +1660,Long Island,New Guinea-NE of,Papua New Guinea,-5.358,147.12,1280,Complex volcano,6,2000 +1663,Toya,Hokkaido-Japan,Japan,42.544,140.839,733,Stratovolcano,5,5 +1664,Unzendake,Kyushu-Japan,Japan,32.761,130.299,1483,Complex volcano,2,30 +1669,Etna,Italy,Italy,37.748,14.999,3357,Stratovolcano,3,2 +1672,Fayal,Azores,Portugal,38.576,-28.713,1041,Stratovolcano,2,3 +1672,Merapi,Java,Indonesia,-7.54,110.446,2910,Stratovolcano,3,3000 +1677,La Palma,Canary Is,Spain,28.57,-17.83,2426,Stratovolcano,2,1 +1682,Vesuvius,Italy,Italy,40.821,14.426,1281,Complex volcano,3,4 +1684,Grimsvotn,Iceland-NE,Iceland,64.416,-17.316,1719,Caldera,2,1 +1711,Awu,Sangihe Is-Indonesia,Indonesia,3.689,125.447,1318,Stratovolcano,3,3000 +1716,Kirishimayama,Kyushu-Japan,Japan,31.934,130.862,1700,Shield volcano,3,1 +1717,Kirishimayama,Kyushu-Japan,Japan,31.934,130.862,1700,Shield volcano,3,1 +1718,Pico,Azores,Portugal,38.47,-28.4,2351,Stratovolcano,2,2 +1721,Asamayama,Honshu-Japan,Japan,36.406,138.523,2568,Complex volcano,1,15 +1727,Oraefajokull,Iceland-SE,Iceland,64,-16.65,2010,Stratovolcano,4,3 +1737,Vesuvius,Italy,Italy,40.821,14.426,1281,Complex volcano,2,2 +1755,Katla,Iceland-S,Iceland,63.633,-19.083,1490,Subglacial volcano,4,2 +1760,Kie Besi,Halmahera-Indonesia,Indonesia,0.32,127.4,1357,Stratovolcano,4,2000 +1766,Mayon,Luzon-Philippines,Philippines,13.257,123.685,2462,Stratovolcano,3,49 +1772,Gamalama,Halmahera-Indonesia,Indonesia,0.8,127.33,1715,Stratovolcano,3,35 +1772,Papandayan,Java,Indonesia,-7.32,107.73,2665,Stratovolcano,3,2957 +1775,Gamalama,Halmahera-Indonesia,Indonesia,0.8,127.33,1715,Stratovolcano,3,1300 +1778,Raikoke,Kuril Is,Russia,48.292,153.25,551,Stratovolcano,4,15 +1779,Aira,Kyushu-Japan,Japan,31.593,130.657,1117,Stratovolcano,4,153 +1780,Aogashima,Izu Is-Japan,Japan,32.458,139.759,423,Stratovolcano,3,7 +1781,Aira,Kyushu-Japan,Japan,31.593,130.657,1117,Stratovolcano,4,23 +1783,Aogashima,Izu Is-Japan,Japan,32.458,139.759,423,Stratovolcano,3,7 +1783,Asamayama,Honshu-Japan,Japan,36.406,138.523,2568,Complex volcano,4,1491 +1785,Aogashima,Izu Is-Japan,Japan,32.458,139.759,423,Stratovolcano,3,135 +1786,Dieng Volcanic Complex,Java,Indonesia,-7.2,109.879,2565,Complex volcano,2,38 +1790,Kilauea,Hawaiian Is,United States of America,19.421,-155.287,1222,Shield volcano,4,5405 +1794,Vesuvius,Italy,Italy,40.821,14.426,1281,Complex volcano,3,400 +1800,Hualalai,Hawaiian Is,United States of America,19.692,-155.87,2523,Shield volcano,0,2 +1801,Chokaisan,Honshu-Japan,Japan,39.099,140.049,2236,Stratovolcano,2,8 +1805,Vesuvius,Italy,Italy,40.821,14.426,1281,Complex volcano,2,4 +1808,Sao Jorge,Azores,Portugal,38.65,-28.08,1053,Fissure vent,1,9 +1812,Awu,Sangihe Is-Indonesia,Indonesia,3.689,125.447,1318,Stratovolcano,3,953 +1814,Mayon,Luzon-Philippines,Philippines,13.257,123.685,2462,Stratovolcano,4,1200 +1815,Tambora,Lesser Sunda Is,Indonesia,-8.25,118,2850,Stratovolcano,7,11000 +1816,Asosan,Kyushu-Japan,Japan,32.884,131.104,1592,Caldera,2,1 +1822,Toya,Hokkaido-Japan,Japan,42.544,140.839,733,Stratovolcano,4,50 +1822,Galunggung,Java,Indonesia,-7.25,108.058,2168,Stratovolcano,5,4011 +1822,Merapi,Java,Indonesia,-7.54,110.446,2910,Stratovolcano,3,100 +1832,Merapi,Java,Indonesia,-7.54,110.446,2910,Stratovolcano,3,32 +1833,Kaba,Sumatra,Indonesia,-3.522,102.615,1940,Stratovolcano,2,126 +1838,Gamalama,Halmahera-Indonesia,Indonesia,0.8,127.33,1715,Stratovolcano,2,4 +1840,Ararat,Turkey,Turkey,39.7,44.3,5165,Stratovolcano,3,1900 +1843,Lamongan,Java,Indonesia,-7.981,113.341,1641,Stratovolcano,2,4 +1843,Etna,Italy,Italy,37.748,14.999,3357,Stratovolcano,2,56 +1845,"Ruiz, Nevado del",Colombia,Colombia,4.892,-75.324,5279,Stratovolcano,3,1000 +1846,Taupo,New Zealand,New Zealand,-38.82,176,760,Caldera,0,63 +1848,Kelud,Java,Indonesia,-7.935,112.314,1730,Stratovolcano,2,21 +1853,Niuafo'ou,Tonga-SW Pacific,Tonga,-15.6,-175.63,260,Shield volcano,0,25 +1853,Mayon,Luzon-Philippines,Philippines,13.257,123.685,2462,Stratovolcano,3,34 +1854,Asosan,Kyushu-Japan,Japan,32.884,131.104,1592,Caldera,2,3 +1856,Awu,Sangihe Is-Indonesia,Indonesia,3.689,125.447,1318,Stratovolcano,3,2806 +1856,Hokkaido-Komagatake,Hokkaido-Japan,Japan,42.063,140.677,1131,Stratovolcano,4,25 +1860,Grimsvotn,Iceland-NE,Iceland,64.416,-17.316,1719,Caldera,0,1 +1861,Dubbi,Africa-NE,Eritrea,13.579,41.809,1625,Stratovolcano,3,106 +1861,Kie Besi,Halmahera-Indonesia,Indonesia,0.32,127.4,1357,Stratovolcano,4,326 +1864,Kelud,Java,Indonesia,-7.935,112.314,1730,Stratovolcano,2,54 +1866,Santorini,Greece,Greece,36.404,25.396,367,Shield volcano,2,1 +1867,Zaozan [Zaosan],Honshu-Japan,Japan,38.144,140.44,1841,Complex volcano,2,3 +1869,Lewotobi,Lesser Sunda Is,Indonesia,-8.542,122.775,1703,Stratovolcano,2,2 +1869,Lamongan,Java,Indonesia,-7.981,113.341,1641,Stratovolcano,2,8 +1871,Gamalama,Halmahera-Indonesia,Indonesia,0.8,127.33,1715,Stratovolcano,2,1 +1871,Mayon,Luzon-Philippines,Philippines,13.257,123.685,2462,Stratovolcano,3,3 +1872,Merapi,Java,Indonesia,-7.54,110.446,2910,Stratovolcano,4,30 +1872,Merapi,Java,Indonesia,-7.54,110.446,2910,Stratovolcano,4,170 +1872,Vesuvius,Italy,Italy,40.821,14.426,1281,Complex volcano,3,9 +1872,Merapi,Java,Indonesia,-7.54,110.446,2910,Stratovolcano,4,200 +1872,Asosan,Kyushu-Japan,Japan,32.884,131.104,1592,Caldera,3,4 +1873,Vesuvius,Italy,Italy,40.821,14.426,1281,Complex volcano,0,9 +1874,Miyakejima,Izu Is-Japan,Japan,34.094,139.526,775,Stratovolcano,3,1 +1875,Mayon,Luzon-Philippines,Philippines,13.257,123.685,2462,Stratovolcano,0,1500 +1877,Cotopaxi,Ecuador,Ecuador,-0.677,-78.436,5911,Stratovolcano,4,340 +1878,Rabaul,New Britain-SW Pac,Papua New Guinea,-4.271,152.203,688,Pyroclastic shield,3,1 +1883,Krakatau,Indonesia,Indonesia,-6.102,105.423,155,Caldera,6,2000 +1883,Augustine,Alaska-SW,United States of America,59.363,-153.43,1252,Lava dome,4,8 +1885,Semeru,Java,Indonesia,-8.108,112.922,3657,Stratovolcano,2,74 +1886,Tungurahua,Ecuador,Ecuador,-1.467,-78.442,5023,Stratovolcano,4,2 +1886,Okataina,New Zealand,New Zealand,-38.12,176.5,1111,Lava dome,2,153 +1887,Mayon,Luzon-Philippines,Philippines,13.257,123.685,2462,Stratovolcano,3,15 +1888,Bandaisan,Honshu-Japan,Japan,37.601,140.072,1816,Stratovolcano,4,461 +1892,Sorikmarapi,Sumatra,Indonesia,0.686,99.539,2145,Stratovolcano,2,180 +1892,Awu,Sangihe Is-Indonesia,Indonesia,3.689,125.447,1318,Stratovolcano,3,1532 +1893,Azumayama,Honshu-Japan,Japan,37.735,140.244,1949,Stratovolcano,2,2 +1894,Ambrym,Vanuatu-SW Pacific,Vanuatu,-16.25,168.12,1334,Pyroclastic shield,3,10 +1895,Karkar,New Guinea-NE of,Papua New Guinea,-4.647,145.976,1839,Stratovolcano,2,1 +1895,Kirishimayama,Kyushu-Japan,Japan,31.934,130.862,1700,Shield volcano,2,4 +1896,Kirishimayama,Kyushu-Japan,Japan,31.934,130.862,1700,Shield volcano,2,1 +1897,Mayon,Luzon-Philippines,Philippines,13.257,123.685,2462,Stratovolcano,3,350 +1899,Dona Juana,Colombia,Colombia,1.5,-76.936,4137,Stratovolcano,4,55 +1899,Manam,New Guinea-NE of,Papua New Guinea,-4.08,145.037,1807,Stratovolcano,2,2 +1900,Asamayama,Honshu-Japan,Japan,36.406,138.523,2568,Complex volcano,2,25 +1900,Kirishimayama,Kyushu-Japan,Japan,31.934,130.862,1700,Shield volcano,2,2 +1900,Adatarayama,Honshu-Japan,Japan,37.647,140.281,1728,Stratovolcano,2,72 +1902,Izu-Torishima,Izu Is-Japan,Japan,30.484,140.303,394,Stratovolcano,3,125 +1902,Santa Maria,Guatemala,Guatemala,14.757,-91.552,3745,Stratovolcano,6,2500 +1902,Merapi,Java,Indonesia,-7.54,110.446,2910,Stratovolcano,2,16 +1903,Okataina,New Zealand,New Zealand,-38.12,176.5,1111,Lava dome,1,4 +1905,Vesuvius,Italy,Italy,40.821,14.426,1281,Complex volcano,2,1 +1906,Vesuvius,Italy,Italy,40.821,14.426,1281,Complex volcano,3,350 +1907,Lewotobi,Lesser Sunda Is,Indonesia,-8.542,122.775,1703,Stratovolcano,2,1 +1909,Semeru,Java,Indonesia,-8.108,112.922,3657,Stratovolcano,2,221 +1910,Taupo,New Zealand,New Zealand,-38.82,176,760,Caldera,0,1 +1910,Toya,Hokkaido-Japan,Japan,42.544,140.839,733,Stratovolcano,2,1 +1911,Taal,Luzon-Philippines,Philippines,14.002,120.993,311,Stratovolcano,3,1335 +1911,Asamayama,Honshu-Japan,Japan,36.406,138.523,2568,Complex volcano,2,1 +1911,Asamayama,Honshu-Japan,Japan,36.406,138.523,2568,Complex volcano,2,2 +1912,Novarupta,Alaska Peninsula,United States of America,58.27,-155.157,841,Caldera,6,2 +1912,Nyamulagira,Africa-C,"Dem. Rep. Congo",-1.408,29.2,3058,Shield volcano,3,20 +1913,Colima,Mexico,Mexico,19.514,-103.62,3850,Stratovolcano,4,13 +1913,Asamayama,Honshu-Japan,Japan,36.406,138.523,2568,Complex volcano,1,1 +1913,Ambrym,Vanuatu-SW Pacific,Vanuatu,-16.25,168.12,1334,Pyroclastic shield,3,21 +1914,Aira,Kyushu-Japan,Japan,31.593,130.657,1117,Stratovolcano,4,28 +1914,Whakaari/White Island,New Zealand,New Zealand,-37.52,177.18,294,Stratovolcano,0,11 +1914,Ambae,Vanuatu-SW Pacific,Vanuatu,-15.389,167.835,1496,Shield volcano,0,100 +1917,Okataina,New Zealand,New Zealand,-38.12,176.5,1111,Lava dome,1,2 +1917,San Salvador,El Salvador,El Salvador,13.734,-89.294,1893,Stratovolcano,3,325 +1919,Kelud,Java,Indonesia,-7.935,112.314,1730,Stratovolcano,4,5110 +1919,Stromboli,Italy,Italy,38.789,15.213,924,Stratovolcano,3,4 +1919,Nasudake,Honshu-Japan,Japan,37.125,139.963,1915,Stratovolcano,0,2 +1920,Merapi,Java,Indonesia,-7.54,110.446,2910,Stratovolcano,3,33 +1921,Nasudake,Honshu-Japan,Japan,37.125,139.963,1915,Stratovolcano,0,1 +1923,Papandayan,Java,Indonesia,-7.32,107.73,2665,Stratovolcano,1,1 +1923,Tangkuban Parahu,Java,Indonesia,-6.77,107.6,2084,Stratovolcano,0,3 +1923,Kirishimayama,Kyushu-Japan,Japan,31.934,130.862,1700,Shield volcano,2,1 +1924,Kilauea,Hawaiian Is,United States of America,19.421,-155.287,1222,Shield volcano,2,1 +1926,Tokachidake,Hokkaido-Japan,Japan,43.418,142.686,2077,Stratovolcano,3,144 +1927,Esjufjoll,Iceland-SE,Iceland,64.25,-16.583,1620,Stratovolcano,1,1 +1928,Santorini,Greece,Greece,36.404,25.396,367,Shield volcano,2,48 +1928,Dieng Volcanic Complex,Java,Indonesia,-7.2,109.879,2565,Complex volcano,2,40 +1928,Paluweh,Lesser Sunda Is,Indonesia,-8.32,121.708,875,Stratovolcano,3,98 +1928,Etna,Italy,Italy,37.748,14.999,3357,Stratovolcano,1,5 +1929,Hokkaido-Komagatake,Hokkaido-Japan,Japan,42.063,140.677,1131,Stratovolcano,4,2 +1929,Etna,Italy,Italy,37.748,14.999,3357,Stratovolcano,2,2 +1929,Santa Maria,Guatemala,Guatemala,14.757,-91.552,3745,Stratovolcano,3,200 +1930,Asamayama,Honshu-Japan,Japan,36.406,138.523,2568,Complex volcano,3,6 +1930,Stromboli,Italy,Italy,38.789,15.213,924,Stratovolcano,3,5 +1930,Merapi,Java,Indonesia,-7.54,110.446,2910,Stratovolcano,3,1369 +1931,Asamayama,Honshu-Japan,Japan,36.406,138.523,2568,Complex volcano,3,3 +1932,Kusatsu-Shiranesan,Honshu-Japan,Japan,36.618,138.528,2165,Stratovolcano,3,2 +1933,Hakoneyama,Honshu-Japan,Japan,35.233,139.021,1438,Complex volcano,0,1 +1933,Kuchinoerabujima,Ryukyu Is,Japan,30.443,130.217,657,Stratovolcano,4,8 +1934,Hood,US-Oregon,United States of America,45.374,-121.695,3426,Stratovolcano,0,1 +1936,Asamayama,Honshu-Japan,Japan,36.406,138.523,2568,Complex volcano,3,2 +1936,Dona Juana,Colombia,Colombia,1.5,-76.936,4137,Stratovolcano,0,18 +1937,Llaima,Chile-C,Chile,-38.692,-71.729,3125,Stratovolcano,2,3 +1937,Rabaul,New Britain-SW Pac,Papua New Guinea,-4.271,152.203,688,Pyroclastic shield,4,507 +1938,Bandaisan,Honshu-Japan,Japan,37.601,140.072,1816,Stratovolcano,0,2 +1939,Izu-Torishima,Izu Is-Japan,Japan,30.484,140.303,394,Stratovolcano,2,2 +1939,Dieng Volcanic Complex,Java,Indonesia,-7.2,109.879,2565,Complex volcano,1,10 +1940,Karangetang,Sangihe Is-Indonesia,Indonesia,2.781,125.407,1797,Stratovolcano,2,1 +1940,Miyakejima,Izu Is-Japan,Japan,34.094,139.526,775,Stratovolcano,2,11 +1941,Asamayama,Honshu-Japan,Japan,36.406,138.523,2568,Complex volcano,2,1 +1943,Michoacan-Guanajuato,Mexico,Mexico,19.85,-101.75,3860,Cinder cone,4,3 +1943,"Azul, Cerro",Galapagos,Ecuador,-0.92,-91.408,1640,Shield volcano,3,1 +1944,Vesuvius,Italy,Italy,40.821,14.426,1281,Complex volcano,2,27 +1944,Cleveland,Aleutian Is,United States of America,52.825,-169.944,1730,Stratovolcano,3,1 +1944,Toya,Hokkaido-Japan,Japan,42.544,140.839,733,Stratovolcano,0,1 +1944,Toya,Hokkaido-Japan,Japan,42.544,140.839,733,Stratovolcano,2,1 +1944,Dieng Volcanic Complex,Java,Indonesia,-7.2,109.879,2565,Complex volcano,2,117 +1944,Toya,Hokkaido-Japan,Japan,42.544,140.839,733,Stratovolcano,2,1 +1946,Aira,Kyushu-Japan,Japan,31.593,130.657,1117,Stratovolcano,2,1 +1946,Semeru,Java,Indonesia,-8.108,112.922,3657,Stratovolcano,2,6 +1947,Asamayama,Honshu-Japan,Japan,36.406,138.523,2568,Complex volcano,2,11 +1947,Akagisan,Honshu-Japan,Japan,36.56,139.193,1828,Stratovolcano,0,699 +1947,Hekla,Iceland-S,Iceland,63.983,-19.666,1490,Stratovolcano,4,1 +1949,Villarrica,Chile-C,Chile,-39.42,-71.93,2847,Stratovolcano,3,54 +1949,Purace,Colombia,Colombia,2.32,-76.4,4650,Stratovolcano,2,17 +1949,Camiguin,Mindanao-Philippines,Philippines,9.203,124.673,1552,Stratovolcano,3,2 +1950,Semeru,Java,Indonesia,-8.108,112.922,3657,Stratovolcano,1,6 +1950,Camiguin,Mindanao-Philippines,Philippines,9.203,124.673,1552,Stratovolcano,3,68 +1950,Asamayama,Honshu-Japan,Japan,36.406,138.523,2568,Complex volcano,2,1 +1951,Lamington,New Guinea,Papua New Guinea,-8.95,148.15,1680,Stratovolcano,4,2942 +1951,Kelud,Java,Indonesia,-7.935,112.314,1730,Stratovolcano,3,7 +1951,Hakoneyama,Honshu-Japan,Japan,35.233,139.021,1438,Complex volcano,0,2 +1951,Camiguin,Mindanao-Philippines,Philippines,9.203,124.673,1552,Stratovolcano,3,500 +1952,Hakoneyama,Honshu-Japan,Japan,35.233,139.021,1438,Complex volcano,0,1 +1952,Kita-Bayonnaise,Izu Is-Japan,Japan,32.1,139.85,-360,Submarine volcano,2,31 +1952,Ambalatungan Group,Luzon-Philippines,Philippines,17.32,121.1,2329,Compound volcano,1,12 +1953,Merapi,Java,Indonesia,-7.54,110.446,2910,Stratovolcano,3,64 +1953,Asosan,Kyushu-Japan,Japan,32.884,131.104,1592,Caldera,2,6 +1953,Sirung,Lesser Sunda Is,Indonesia,-8.508,124.13,862,Complex volcano,0,5 +1953,Hakoneyama,Honshu-Japan,Japan,35.233,139.021,1438,Complex volcano,0,10 +1953,Izu-Oshima,Izu Is-Japan,Japan,34.724,139.394,746,Stratovolcano,1,1 +1953,Ruapehu,New Zealand,New Zealand,-39.28,175.57,2797,Stratovolcano,0,151 +1954,Midagahara,Honshu-Japan,Japan,36.571,137.59,2621,Stratovolcano,0,1 +1954,Camiguin,Mindanao-Philippines,Philippines,9.203,124.673,1552,Stratovolcano,0,2 +1955,Carran-Los Venados,Chile-C,Chile,-40.35,-72.07,1114,Pyroclastic cone,4,2 +1957,Unzendake,Kyushu-Japan,Japan,32.761,130.299,1483,Complex volcano,0,13 +1957,Izu-Oshima,Izu Is-Japan,Japan,34.724,139.394,746,Stratovolcano,2,1 +1957,Asosan,Kyushu-Japan,Japan,32.884,131.104,1592,Caldera,2,12 +1958,Mahawu,Sulawesi-Indonesia,Indonesia,1.352,124.865,1299,Stratovolcano,2,1 +1958,Taisetsuzan,Hokkaido-Japan,Japan,43.664,142.854,2291,Stratovolcano,0,2 +1961,Midagahara,Honshu-Japan,Japan,36.571,137.59,2621,Stratovolcano,0,1 +1961,Merapi,Java,Indonesia,-7.54,110.446,2910,Stratovolcano,3,6 +1961,Taisetsuzan,Hokkaido-Japan,Japan,43.664,142.854,2291,Stratovolcano,0,2 +1961,Asamayama,Honshu-Japan,Japan,36.406,138.523,2568,Complex volcano,2,1 +1962,Tokachidake,Hokkaido-Japan,Japan,43.418,142.686,2077,Stratovolcano,3,5 +1962,Merapi,Java,Indonesia,-7.54,110.446,2910,Stratovolcano,0,2 +1962,Gamalama,Halmahera-Indonesia,Indonesia,0.8,127.33,1715,Stratovolcano,2,5 +1963,Irazu,Costa Rica,Costa Rica,9.979,-83.852,3436,Stratovolcano,3,15 +1963,Agung,Lesser Sunda Is,Indonesia,-8.343,115.508,2997,Stratovolcano,5,1028 +1963,Semeru,Java,Indonesia,-8.108,112.922,3657,Stratovolcano,2,1 +1963,Agung,Lesser Sunda Is,Indonesia,-8.343,115.508,2997,Stratovolcano,3,120 +1963,Batur,Lesser Sunda Is,Indonesia,-8.242,115.375,1717,Caldera,2,2 +1963,Fuego,Guatemala,Guatemala,14.473,-90.88,3763,Stratovolcano,3,7 +1963,Irazu,Costa Rica,Costa Rica,9.979,-83.852,3436,Stratovolcano,3,40 +1964,Paluweh,Lesser Sunda Is,Indonesia,-8.32,121.708,875,Stratovolcano,2,1 +1964,Villarrica,Chile-C,Chile,-39.42,-71.93,2847,Stratovolcano,2,25 +1964,Dieng Volcanic Complex,Java,Indonesia,-7.2,109.879,2565,Complex volcano,1,114 +1965,Taal,Luzon-Philippines,Philippines,14.002,120.993,311,Stratovolcano,4,355 +1966,Kelud,Java,Indonesia,-7.935,112.314,1730,Stratovolcano,4,215 +1966,Awu,Sangihe Is-Indonesia,Indonesia,3.689,125.447,1318,Stratovolcano,4,39 +1967,Semeru,Java,Indonesia,-8.108,112.922,3657,Stratovolcano,3,3 +1967,Midagahara,Honshu-Japan,Japan,36.571,137.59,2621,Stratovolcano,0,2 +1968,Mayon,Luzon-Philippines,Philippines,13.257,123.685,2462,Stratovolcano,3,6 +1968,Arenal,Costa Rica,Costa Rica,10.463,-84.703,1670,Stratovolcano,3,80 +1969,Merapi,Java,Indonesia,-7.54,110.446,2910,Stratovolcano,2,3 +1969,Iya,Lesser Sunda Is,Indonesia,-8.891,121.641,618,Stratovolcano,3,2 +1969,Naruko,Honshu-Japan,Japan,38.729,140.734,470,Caldera,0,1 +1970,Campi Flegrei,Italy,Italy,40.827,14.139,458,Caldera,0,3 +1971,"Hudson, Cerro",Chile-S,Chile,-45.9,-72.97,1905,Stratovolcano,3,5 +1971,Fuego,Guatemala,Guatemala,14.473,-90.88,3763,Stratovolcano,3,10 +1971,Villarrica,Chile-C,Chile,-39.42,-71.93,2847,Stratovolcano,2,15 +1971,Kusatsu-Shiranesan,Honshu-Japan,Japan,36.618,138.528,2165,Stratovolcano,0,6 +1972,Hakoneyama,Honshu-Japan,Japan,35.233,139.021,1438,Complex volcano,0,2 +1973,Vestmannaeyjar,Iceland-S,Iceland,63.416,-20.266,283,Submarine volcano,3,1 +1973,"Hudson, Cerro",Chile-S,Chile,-45.9,-72.97,1905,Stratovolcano,0,2 +1974,Karangetang,Sangihe Is-Indonesia,Indonesia,2.781,125.407,1797,Stratovolcano,3,4 +1974,Aira,Kyushu-Japan,Japan,31.593,130.657,1117,Stratovolcano,3,3 +1974,Niigata-Yakeyama,Honshu-Japan,Japan,36.921,138.036,2400,Lava dome,2,3 +1974,Aira,Kyushu-Japan,Japan,31.593,130.657,1117,Stratovolcano,3,5 +1974,Merapi,Java,Indonesia,-7.54,110.446,2910,Stratovolcano,2,9 +1975,Marapi,Sumatra,Indonesia,-0.38,100.474,2885,Complex volcano,2,80 +1975,Arenal,Costa Rica,Costa Rica,10.463,-84.703,1670,Stratovolcano,3,2 +1976,Kusatsu-Shiranesan,Honshu-Japan,Japan,36.618,138.528,2165,Stratovolcano,0,3 +1976,Sangay,Ecuador,Ecuador,-2.005,-78.341,5286,Stratovolcano,3,2 +1976,Semeru,Java,Indonesia,-8.108,112.922,3657,Stratovolcano,2,119 +1976,Karangetang,Sangihe Is-Indonesia,Indonesia,2.781,125.407,1797,Stratovolcano,2,1 +1976,Merapi,Java,Indonesia,-7.54,110.446,2910,Stratovolcano,2,29 +1977,Klyuchevskoy,Kamchatka,Russia,56.056,160.642,4754,Stratovolcano,3,1 +1977,Toya,Hokkaido-Japan,Japan,42.544,140.839,733,Stratovolcano,3,3 +1978,Santa Maria,Guatemala,Guatemala,14.757,-91.552,3745,Stratovolcano,3,1 +1978,Semeru,Java,Indonesia,-8.108,112.922,3657,Stratovolcano,3,12 +1978,Toya,Hokkaido-Japan,Japan,42.544,140.839,733,Stratovolcano,3,3 +1978,Tangkuban Parahu,Java,Indonesia,-6.77,107.6,2084,Stratovolcano,0,3 +1979,Dieng Volcanic Complex,Java,Indonesia,-7.2,109.879,2565,Complex volcano,1,149 +1979,Karkar,New Guinea-NE of,Papua New Guinea,-4.647,145.976,1839,Stratovolcano,2,2 +1979,Etna,Italy,Italy,37.748,14.999,3357,Stratovolcano,2,9 +1979,Asosan,Kyushu-Japan,Japan,32.884,131.104,1592,Caldera,2,3 +1980,St. Helens,US-Washington,United States of America,46.2,-122.18,2549,Stratovolcano,5,57 +1980,Hood,US-Oregon,United States of America,45.374,-121.695,3426,Stratovolcano,0,1 +1981,Semeru,Java,Indonesia,-8.108,112.922,3657,Stratovolcano,3,1 +1981,Semeru,Java,Indonesia,-8.108,112.922,3657,Stratovolcano,3,372 +1981,Mayon,Luzon-Philippines,Philippines,13.257,123.685,2462,Stratovolcano,0,200 +1982,"Chichon, El",Mexico,Mexico,17.36,-93.228,1150,Tuff cone,5,1879 +1982,"Chichon, El",Mexico,Mexico,17.36,-93.228,1150,Tuff cone,5,33 +1982,Galunggung,Java,Indonesia,-7.25,108.058,2168,Stratovolcano,4,68 +1982,"Chichon, El",Mexico,Mexico,17.36,-93.228,1150,Tuff cone,5,1 +1983,Klyuchevskoy,Kamchatka,Russia,56.056,160.642,4754,Stratovolcano,2,1 +1984,Oku Volcanic Field,Africa-W,Cameroon,6.25,10.5,3011,Maar,0,37 +1984,Mayon,Luzon-Philippines,Philippines,13.257,123.685,2462,Stratovolcano,3,1 +1984,Ontakesan,Honshu-Japan,Japan,35.893,137.48,3067,Complex volcano,0,29 +1984,Etna,Italy,Italy,37.748,14.999,3357,Stratovolcano,3,1 +1985,Semeru,Java,Indonesia,-8.108,112.922,3657,Stratovolcano,3,70 +1985,"Ruiz, Nevado del",Colombia,Colombia,4.892,-75.324,5279,Stratovolcano,3,23080 +1985,Etna,Italy,Italy,37.748,14.999,3357,Stratovolcano,1,1 +1986,Akita-Yakeyama,Honshu-Japan,Japan,39.964,140.757,1366,Complex volcano,0,1 +1986,Stromboli,Italy,Italy,38.789,15.213,924,Stratovolcano,2,1 +1986,Oku Volcanic Field,Africa-W,Cameroon,6.25,10.5,3011,Maar,3,1700 +1986,Merapi,Java,Indonesia,-7.54,110.446,2910,Stratovolcano,2,1 +1986,Izu-Oshima,Izu Is-Japan,Japan,34.724,139.394,746,Stratovolcano,3,1 +1987,Etna,Italy,Italy,37.748,14.999,3357,Stratovolcano,2,2 +1988,Arenal,Costa Rica,Costa Rica,10.463,-84.703,1670,Stratovolcano,3,1 +1988,Semeru,Java,Indonesia,-8.108,112.922,3657,Stratovolcano,3,1 +1988,Lonquimay,Chile-C,Chile,-38.379,-71.586,2832,Stratovolcano,3,1 +1988,Akita-Yakeyama,Honshu-Japan,Japan,39.964,140.757,1366,Complex volcano,0,3 +1989,Asosan,Kyushu-Japan,Japan,32.884,131.104,1592,Caldera,0,1 +1989,Kirishimayama,Kyushu-Japan,Japan,31.934,130.862,1700,Shield volcano,0,2 +1990,Kelud,Java,Indonesia,-7.935,112.314,1730,Stratovolcano,4,32 +1990,Asosan,Kyushu-Japan,Japan,32.884,131.104,1592,Caldera,2,1 +1990,Asosan,Kyushu-Japan,Japan,32.884,131.104,1592,Caldera,2,1 +1990,Rabaul,New Britain-SW Pac,Papua New Guinea,-4.271,152.203,688,Pyroclastic shield,0,6 +1990,Santa Maria,Guatemala,Guatemala,14.757,-91.552,3745,Stratovolcano,3,4 +1990,Asosan,Kyushu-Japan,Japan,32.884,131.104,1592,Caldera,2,1 +1990,Nyiragongo,Africa-C,"Dem. Rep. Congo",-1.52,29.25,3470,Stratovolcano,0,1 +1990,Kelud,Java,Indonesia,-7.935,112.314,1730,Stratovolcano,0,4 +1991,Unzendake,Kyushu-Japan,Japan,32.761,130.299,1483,Complex volcano,1,43 +1991,Pinatubo,Luzon-Philippines,Philippines,15.13,120.35,1486,Stratovolcano,6,350 +1991,Mutnovsky,Kamchatka,Russia,52.449,158.196,2288,Complex volcano,0,1 +1991,Lokon-Empung,Sulawesi-Indonesia,Indonesia,1.358,124.792,1580,Stratovolcano,1,1 +1992,Karangetang,Sangihe Is-Indonesia,Indonesia,2.781,125.407,1797,Stratovolcano,2,2 +1992,Dieng Volcanic Complex,Java,Indonesia,-7.2,109.879,2565,Complex volcano,0,1 +1992,"Negro, Cerro",Nicaragua,Nicaragua,12.506,-86.702,728,Cinder cone,3,11 +1992,Karangetang,Sangihe Is-Indonesia,Indonesia,2.781,125.407,1797,Stratovolcano,1,6 +1992,Marapi,Sumatra,Indonesia,-0.38,100.474,2885,Complex volcano,2,1 +1992,Pinatubo,Luzon-Philippines,Philippines,15.13,120.35,1486,Stratovolcano,1,6 +1992,Spurr,Alaska-SW,United States of America,61.299,-152.251,3374,Stratovolcano,4,1 +1992,Semeru,Java,Indonesia,-8.108,112.922,3657,Stratovolcano,3,3 +1993,Galeras,Colombia,Colombia,1.22,-77.37,4276,Complex volcano,2,9 +1993,Wurlali,Banda Sea,Indonesia,-7.125,128.675,868,Stratovolcano,0,1 +1993,Mayon,Luzon-Philippines,Philippines,13.257,123.685,2462,Stratovolcano,2,75 +1993,Guagua Pichincha,Ecuador,Ecuador,-0.171,-78.598,4784,Stratovolcano,1,2 +1993,Kilauea,Hawaiian Is,United States of America,19.421,-155.287,1222,Shield volcano,0,1 +1993,Krakatau,Indonesia,Indonesia,-6.102,105.423,155,Caldera,1,1 +1993,Unzendake,Kyushu-Japan,Japan,32.761,130.299,1483,Complex volcano,1,1 +1993,Pinatubo,Luzon-Philippines,Philippines,15.13,120.35,1486,Stratovolcano,1,4 +1993,Pinatubo,Luzon-Philippines,Philippines,15.13,120.35,1486,Stratovolcano,0,14 +1994,Yasur,Vanuatu-SW Pacific,Vanuatu,-19.532,169.447,361,Stratovolcano,3,1 +1994,Semeru,Java,Indonesia,-8.108,112.922,3657,Stratovolcano,3,6 +1994,Asosan,Kyushu-Japan,Japan,32.884,131.104,1592,Caldera,1,1 +1994,Rabaul,New Britain-SW Pac,Papua New Guinea,-4.271,152.203,688,Pyroclastic shield,3,4 +1994,Rinjani,Lesser Sunda Is,Indonesia,-8.42,116.47,3726,Stratovolcano,3,31 +1994,Merapi,Java,Indonesia,-7.54,110.446,2910,Stratovolcano,3,60 +1995,Yasur,Vanuatu-SW Pacific,Vanuatu,-19.532,169.447,361,Stratovolcano,3,2 +1995,Yakedake,Honshu-Japan,Japan,36.227,137.587,2455,Stratovolcano,1,4 +1995,Pacaya,Guatemala,Guatemala,14.382,-90.601,2569,Complex volcano,3,1 +1995,Kelimutu,Lesser Sunda Is,Indonesia,-8.77,121.82,1639,Complex volcano,0,1 +1995,Melebingoy,Mindanao-Philippines,Philippines,6.113,124.892,1824,Stratovolcano,0,60 +1996,Popocatepetl,Mexico,Mexico,19.023,-98.622,5393,Stratovolcano,3,5 +1996,Kanlaon,Philippines-C,Philippines,10.412,123.132,2435,Stratovolcano,2,3 +1996,Maderas,Nicaragua,Nicaragua,11.446,-85.515,1394,Stratovolcano,0,6 +1996,Manam,New Guinea-NE of,Papua New Guinea,-4.08,145.037,1807,Stratovolcano,3,13 +1997,Merapi,Java,Indonesia,-7.54,110.446,2910,Stratovolcano,2,6 +1997,Karangetang,Sangihe Is-Indonesia,Indonesia,2.781,125.407,1797,Stratovolcano,1,3 +1997,Hakkodasan,Honshu-Japan,Japan,40.659,140.877,1585,Stratovolcano,0,3 +1997,Semeru,Java,Indonesia,-8.108,112.922,3657,Stratovolcano,3,2 +1997,Adatarayama,Honshu-Japan,Japan,37.647,140.281,1728,Stratovolcano,0,4 +1997,Asosan,Kyushu-Japan,Japan,32.884,131.104,1592,Caldera,0,2 +1998,Kilauea,Hawaiian Is,United States of America,19.421,-155.287,1222,Shield volcano,0,1 +1998,Kelud,Java,Indonesia,-7.935,112.314,1730,Stratovolcano,0,10 +1998,San Cristobal,Nicaragua,Nicaragua,12.702,-87.004,1745,Stratovolcano,0,1620 +1999,Guagua Pichincha,Ecuador,Ecuador,-0.171,-78.598,4784,Stratovolcano,3,2 +1999,Tungurahua,Ecuador,Ecuador,-1.467,-78.442,5023,Stratovolcano,3,1 +2000,Semeru,Java,Indonesia,-8.108,112.922,3657,Stratovolcano,3,2 +2000,Arenal,Costa Rica,Costa Rica,10.463,-84.703,1670,Stratovolcano,3,2 +2000,Kilauea,Hawaiian Is,United States of America,19.421,-155.287,1222,Shield volcano,0,2 +2000,Merapi,Java,Indonesia,-7.54,110.446,2910,Stratovolcano,2,1 +2001,Etna,Italy,Italy,37.748,14.999,3357,Stratovolcano,3,1 +2001,Merapi,Java,Indonesia,-7.54,110.446,2910,Stratovolcano,2,2 +2001,Stromboli,Italy,Italy,38.789,15.213,924,Stratovolcano,2,1 +2002,Nyiragongo,Africa-C,"Dem. Rep. Congo",-1.52,29.25,3470,Stratovolcano,1,100 +2002,Semeru,Java,Indonesia,-8.108,112.922,3657,Stratovolcano,3,3 +2004,Egon,Lesser Sunda Is,Indonesia,-8.676,122.455,1661,Stratovolcano,1,1 +2004,Tengger Caldera,Java,Indonesia,-7.942,112.95,2329,Stratovolcano,2,2 +2004,Manam,New Guinea-NE of,Papua New Guinea,-4.08,145.037,1807,Stratovolcano,4,5 +2005,Manam,New Guinea-NE of,Papua New Guinea,-4.08,145.037,1807,Stratovolcano,4,1 +2005,Santa Ana,El Salvador,El Salvador,13.853,-89.63,2381,Stratovolcano,3,2 +2006,Raoul Island,Kermadec Is,New Zealand,-29.27,-177.92,516,Stratovolcano,0,1 +2006,Bulusan,Luzon-Philippines,Philippines,12.769,124.056,1535,Stratovolcano,2,1 +2006,Merapi,Java,Indonesia,-7.54,110.446,2910,Stratovolcano,1,2 +2006,Tungurahua,Ecuador,Ecuador,-1.467,-78.442,5023,Stratovolcano,3,1 +2006,Tungurahua,Ecuador,Ecuador,-1.467,-78.442,5023,Stratovolcano,3,5 +2006,Mayon,Luzon-Philippines,Philippines,13.257,123.685,2462,Stratovolcano,1,1266 +2007,Manam,New Guinea-NE of,Papua New Guinea,-4.08,145.037,1807,Stratovolcano,4,4 +2007,Salak,Java,Indonesia,-6.716,106.733,2218,Stratovolcano,0,6 +2007,"Tair, Jebel at",Red Sea,Yemen,15.55,41.83,244,Stratovolcano,0,7 +2008,Chaiten,Chile-S,Chile,-42.833,-72.646,1122,Caldera,0,1 +2008,Tungurahua,Ecuador,Ecuador,-1.467,-78.442,5023,Stratovolcano,3,2 +2008,"Huila, Nevado del",Colombia,Colombia,2.93,-76.03,5364,Stratovolcano,0,10 +2010,Eyjafjallajokull,Iceland-S,Iceland,63.633,-19.633,1651,Stratovolcano,2,2 +2010,Pacaya,Guatemala,Guatemala,14.382,-90.601,2569,Complex volcano,1,1 +2010,Karangetang,Sangihe Is-Indonesia,Indonesia,2.781,125.407,1797,Stratovolcano,3,4 +2010,Sinabung,Sumatra,Indonesia,3.17,98.392,2460,Stratovolcano,0,2 +2010,Merapi,Java,Indonesia,-7.54,110.446,2910,Stratovolcano,0,367 +2011,Merapi,Java,Indonesia,-7.54,110.446,2910,Stratovolcano,0,1 +2011,Bulusan,Luzon-Philippines,Philippines,12.769,124.056,1535,Stratovolcano,2,1 +2011,Nabro,Africa-NE,Eritrea,13.37,41.7,2218,Stratovolcano,4,31 +2011,Lokon-Empung,Sulawesi-Indonesia,Indonesia,1.358,124.792,1580,Stratovolcano,0,1 +2011,Gamalama,Halmahera-Indonesia,Indonesia,0.8,127.33,1715,Stratovolcano,3,4 +2013,Merapi,Java,Indonesia,-7.54,110.446,2910,Stratovolcano,0,1 +2013,Mayon,Luzon-Philippines,Philippines,13.257,123.685,2462,Stratovolcano,0,5 +2013,Paluweh,Lesser Sunda Is,Indonesia,-8.32,121.708,875,Stratovolcano,3,5 +2013,Okataina,New Zealand,New Zealand,-38.12,176.5,1111,Lava dome,0,1 +2014,Sinabung,Sumatra,Indonesia,3.17,98.392,2460,Stratovolcano,0,17 +2014,Kelud,Java,Indonesia,-7.935,112.314,1730,Stratovolcano,0,7 +2014,Ontakesan,Honshu-Japan,Japan,35.893,137.48,3067,Complex volcano,3,55 +2014,Gamalama,Halmahera-Indonesia,Indonesia,0.8,127.33,1715,Stratovolcano,0,1 +2015,Sinabung,Sumatra,Indonesia,3.17,98.392,2460,Stratovolcano,0,1 +2015,Okataina,New Zealand,New Zealand,-38.12,176.5,1111,Lava dome,0,1 +2016,Sinabung,Sumatra,Indonesia,3.17,98.392,2460,Stratovolcano,0,1 +2016,Sinabung,Sumatra,Indonesia,3.17,98.392,2460,Stratovolcano,0,7 +2016,Yellowstone,US-Wyoming,United States of America,44.43,-110.67,2805,Caldera,0,1 +2017,Dieng Volcanic Complex,Java,Indonesia,-7.2,109.879,2565,Complex volcano,0,8 +2017,Campi Flegrei,Italy,Italy,40.827,14.139,458,Caldera,0,3 +2017,Merapi,Java,Indonesia,-7.54,110.446,2910,Stratovolcano,0,8 +2018,Kusatsu-Shiranesan,Honshu-Japan,Japan,36.618,138.528,2165,Stratovolcano,1,1 +2018,Kilauea,Hawaiian Is,United States of America,19.421,-155.287,1222,Shield volcano,1,1 +2018,Ambae,Vanuatu-SW Pacific,Vanuatu,-15.389,167.835,1496,Shield volcano,3,4 +2018,Fuego,Guatemala,Guatemala,14.473,-90.88,3763,Stratovolcano,2,201 +2019,Stromboli,Italy,Italy,38.789,15.213,924,Stratovolcano,2,1 +2019,Whakaari/White Island,New Zealand,New Zealand,-37.52,177.18,294,Stratovolcano,2,22 +2020,Taal,Luzon-Philippines,Philippines,14.002,120.993,311,Stratovolcano,4,39 +2020,Ijen,Java,Indonesia,-8.058,114.242,2769,Stratovolcano,0,1 +2021,Nyiragongo,Africa-C,"Dem. Rep. Congo",-1.52,29.25,3470,Stratovolcano,2,32 +2021,La Palma,Canary Is,Spain,28.57,-17.83,2426,Stratovolcano,3,1 +2021,Semeru,Java,Indonesia,-8.108,112.922,3657,Stratovolcano,4,51 +2022,Popocatepetl,Mexico,Mexico,19.023,-98.622,5393,Stratovolcano,2,1 +2023,Marapi,Sumatra,Indonesia,-0.38,100.474,2885,Complex volcano,0,23 +2023,Reykjanes,Iceland-SW,Iceland,63.817,-22.717,140,Crater rows,0,1 +2024,Ijen,Java,Indonesia,-8.058,114.242,2769,Stratovolcano,0,1 +2024,Marapi,Sumatra,Indonesia,-0.38,100.474,2885,Complex volcano,0,67 diff --git a/data/severity.csv b/data/severity.csv new file mode 100644 index 0000000..e8409cd --- /dev/null +++ b/data/severity.csv @@ -0,0 +1,7 @@ +Type,VEI,Deaths +Caldera & Complex,1.8235294117647074,289 +Cone Types,3,161 +Explosive & Crater,1.3846153846153846,147 +Other,1.3333333333333333,3 +Shield & Stratovolcanoes,2.294952681388013,231 +Submarine & Subglacial,2.3333333333333335,1 diff --git a/data/volcano.geojson b/data/volcano.geojson new file mode 100644 index 0000000..28af05e --- /dev/null +++ b/data/volcano.geojson @@ -0,0 +1,1516 @@ +{ +"type": "FeatureCollection", +"name": "volcano", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "NUMBER_": "0201-03=", "NAME_": "JALUA", "LOCATION": "Ethiopia", "LAT": 15.042, "LON": 39.82, "ELEV": 713, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 39.819999977207772, 15.042000017285872 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-04=", "NAME_": "ALID", "LOCATION": "Ethiopia", "LAT": 14.88, "LON": 39.92, "ELEV": 904, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 39.920000038564467, 14.879999930446559 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-041", "NAME_": "DALLOL", "LOCATION": "Ethiopia", "LAT": 14.242, "LON": 40.3, "ELEV": -48, "TYPE_": "Explosion", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Africa", "Type": "Explosive & Crater Features", "Last_eruption": "1900-1963", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 40.299999978687424, 14.241999945050168 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-05=", "NAME_": "GADA ALE", "LOCATION": "Ethiopia", "LAT": 13.975, "LON": 40.408, "ELEV": 287, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 40.40800003658029, 13.975000034491586 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-051", "NAME_": "CATHERINE", "LOCATION": "Ethiopia", "LAT": 13.92, "LON": 40.42, "ELEV": 100, "TYPE_": "Tuff ring", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 40.4199999267301, 13.919999927487282 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-06=", "NAME_": "ALU", "LOCATION": "Ethiopia", "LAT": 13.82, "LON": 40.55, "ELEV": 429, "TYPE_": "Fissure v", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 40.550000027424687, 13.820000075439509 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-07=", "NAME_": "DALAFFILL", "LOCATION": "Ethiopia", "LAT": 13.792, "LON": 40.55, "ELEV": 613, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 40.550000027424687, 13.791999982908422 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-071", "NAME_": "BORALE AL", "LOCATION": "Ethiopia", "LAT": 13.725, "LON": 40.6, "ELEV": 668, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 40.59999995344856, 13.724999985754309 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-08=", "NAME_": "ERTA ALE", "LOCATION": "Ethiopia", "LAT": 13.6, "LON": 40.67, "ELEV": 613, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 40.669999975467363, 13.600000066040138 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-09=", "NAME_": "ALE BAGU", "LOCATION": "Ethiopia", "LAT": 13.52, "LON": 40.63, "ELEV": 1031, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 40.629999992786452, 13.520000100678359 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-091", "NAME_": "HAYLI GUB", "LOCATION": "Ethiopia", "LAT": 13.5, "LON": 40.72, "ELEV": 521, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 40.719999901491235, 13.500000004683443 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-10=", "NAME_": "DUBBI", "LOCATION": "Ethiopia", "LAT": 13.58, "LON": 41.808, "ELEV": 1625, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 41.80800005833828, 13.579999970045222 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-101", "NAME_": "NABRO", "LOCATION": "Ethiopia", "LAT": 13.37, "LON": 41.7, "ELEV": 2218, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 41.700000000445414, 13.369999903988841 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-102", "NAME_": "MALLAHLE", "LOCATION": "Ethiopia", "LAT": 13.27, "LON": 41.65, "ELEV": 1875, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 41.650000074421541, 13.270000051941082 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-103", "NAME_": "SORKALE", "LOCATION": "Ethiopia", "LAT": 13.18, "LON": 41.725, "ELEV": 1611, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 41.725000068111854, 13.179999933927377 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-104", "NAME_": "ASAVYO", "LOCATION": "Ethiopia", "LAT": 13.07, "LON": 41.6, "ELEV": 1200, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 41.599999939088718, 13.069999929227691 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-105", "NAME_": "MAT ALA", "LOCATION": "Ethiopia", "LAT": 13.1, "LON": 41.15, "ELEV": 523, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 41.149999976947015, 13.099999968565584 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-106", "NAME_": "TAT ALI", "LOCATION": "Ethiopia", "LAT": 13.28, "LON": 41.07, "ELEV": 700, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 41.070000011585194, 13.279999995284072 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-107", "NAME_": "BORAWLI", "LOCATION": "Ethiopia", "LAT": 13.3, "LON": 40.98, "ELEV": 812, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 40.98000010288041, 13.300000091278974 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-11=", "NAME_": "AFDERA", "LOCATION": "Ethiopia", "LAT": 13.08, "LON": 40.85, "ELEV": 1295, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 40.850000002185823, 13.080000081879604 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-111", "NAME_": "MA ALALTA", "LOCATION": "Ethiopia", "LAT": 13.02, "LON": 40.2, "ELEV": 1815, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 40.199999917330729, 13.020000003203805 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-112", "NAME_": "ALAYTA", "LOCATION": "Ethiopia", "LAT": 12.88, "LON": 40.57, "ELEV": 1501, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 40.569999914110667, 12.879999959166213 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-113", "NAME_": "DABBAHU", "LOCATION": "Ethiopia", "LAT": 12.6, "LON": 40.48, "ELEV": 1442, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 40.480000005405884, 12.600000080399965 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-114", "NAME_": "DABBAYRA", "LOCATION": "Ethiopia", "LAT": 12.38, "LON": 40.07, "ELEV": 1302, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 40.070000025945035, 12.380000071000595 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-115", "NAME_": "HARARO MA", "LOCATION": "Ethiopia", "LAT": 12.17, "LON": 40.82, "ELEV": 600, "TYPE_": "Fissure v", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 40.81999996284793, 12.170000004944214 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-116", "NAME_": "GROPPO", "LOCATION": "Ethiopia", "LAT": 11.73, "LON": 40.25, "ELEV": 930, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 40.250000052663495, 11.729999986145472 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-12=", "NAME_": "KURUB", "LOCATION": "Ethiopia", "LAT": 11.88, "LON": 41.208, "ELEV": 625, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 41.207999899507058, 11.87999997352604 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-121", "NAME_": "BORAWLI C", "LOCATION": "Ethiopia", "LAT": 11.63, "LON": 41.45, "ELEV": 875, "TYPE_": "Lava dome", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 41.449999951708151, 11.629999924788777 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-122", "NAME_": "MANDA-INA", "LOCATION": "Ethiopia", "LAT": 12.38, "LON": 42.2, "ELEV": 600, "TYPE_": "Fissure v", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 42.200000097919997, 12.380000071000595 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-123", "NAME_": "MOUSA ALL", "LOCATION": "Ethiopia", "LAT": 12.47, "LON": 42.4, "ELEV": 2028, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 42.400000011324437, 12.469999979705378 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-124", "NAME_": "GUFA", "LOCATION": "Ethiopia", "LAT": 12.55, "LON": 42.53, "ELEV": 600, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 42.529999902710131, 12.549999945067157 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-125", "NAME_": "ASSAB VOL", "LOCATION": "Ethiopia", "LAT": 12.95, "LON": 42.43, "ELEV": 987, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 42.430000050662329, 12.949999981185016 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-126", "NAME_": "ARDOUKOBA", "LOCATION": "Djibouti", "LAT": 11.58, "LON": 42.47, "ELEV": 298, "TYPE_": "Fissure v", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 42.47000003334324, 11.57999999876489 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-127", "NAME_": "TIHO", "LOCATION": "Djibouti", "LAT": 11.53, "LON": 42.05, "ELEV": 500, "TYPE_": "Fumarole", "STATUS": "Pleistoce", "TIME_FRAME": "Q", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 42.049999901230478, 11.530000072741004 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-13=", "NAME_": "GARBES", "LOCATION": "Djibouti", "LAT": 11.42, "LON": 42.2, "ELEV": 1000, "TYPE_": "Fumarole", "STATUS": "Pleistoce", "TIME_FRAME": "Q", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 42.200000097919997, 11.420000068041318 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-14=", "NAME_": "BOINA", "LOCATION": "Djibouti", "LAT": 11.25, "LON": 41.83, "ELEV": 300, "TYPE_": "Fumarole", "STATUS": "Pleistoce", "TIME_FRAME": "Q", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 41.830000101140001, 11.249999984665834 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-141", "NAME_": "DAMA ALI", "LOCATION": "Ethiopia", "LAT": 11.28, "LON": 41.63, "ELEV": 1068, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "D5", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1500-1699", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 41.629999978426611, 11.280000024003726 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-142", "NAME_": "ASMARA", "LOCATION": "Ethiopia", "LAT": 11.27, "LON": 41.52, "ELEV": 500, "TYPE_": "Pyroclast", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 41.519999973726954, 11.270000080660736 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-15=", "NAME_": "GABILLEMA", "LOCATION": "Ethiopia", "LAT": 11.08, "LON": 41.27, "ELEV": 1459, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 41.26999992498969, 11.079999901290336 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-151", "NAME_": "YANGUDI", "LOCATION": "Ethiopia", "LAT": 10.58, "LON": 41.042, "ELEV": 1383, "TYPE_": "Complex v", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 41.041999919054092, 10.580000013124717 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-16=", "NAME_": "AYELU", "LOCATION": "Ethiopia", "LAT": 10.082, "LON": 40.702, "ELEV": 2145, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 40.701999961612046, 10.082000071765904 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-17=", "NAME_": "ADWA", "LOCATION": "Ethiopia", "LAT": 10.07, "LON": 40.84, "ELEV": 1733, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 40.840000058842861, 10.069999972307173 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-171", "NAME_": "HERTALI", "LOCATION": "Ethiopia", "LAT": 9.78, "LON": 40.33, "ELEV": 900, "TYPE_": "Fissure v", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 40.330000018025316, 9.779999940889013 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-172", "NAME_": "LIADO HAY", "LOCATION": "Ethiopia", "LAT": 9.57, "LON": 40.28, "ELEV": 878, "TYPE_": "Maars", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Africa", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 40.280000092001444, 9.570000084141554 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-18=", "NAME_": "DOFEN", "LOCATION": "Ethiopia", "LAT": 9.35, "LON": 40.13, "ELEV": 1151, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 40.130000104620819, 9.350000074742184 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-19=", "NAME_": "FENTALE", "LOCATION": "Ethiopia", "LAT": 8.975, "LON": 39.93, "ELEV": 2007, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 39.929999981907429, 8.974999896981799 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-191", "NAME_": "BERU", "LOCATION": "Ethiopia", "LAT": 8.95, "LON": 39.75, "ELEV": 1100, "TYPE_": "Unknown", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 39.749999955188969, 8.950000038624324 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-20-", "NAME_": "KONE", "LOCATION": "Ethiopia", "LAT": 8.8, "LON": 39.692, "ELEV": 1619, "TYPE_": "Calderas", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Africa", "Type": "Caldera & Complex", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 39.692000032628926, 8.800000051243742 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-201", "NAME_": "UNNAMED", "LOCATION": "Ethiopia", "LAT": 8.7, "LON": 39.63, "ELEV": 1300, "TYPE_": "Pyroclast", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 39.630000007146293, 8.699999989887047 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-21-", "NAME_": "BOSET-BER", "LOCATION": "Ethiopia", "LAT": 8.558, "LON": 39.475, "ELEV": 2447, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 39.475000048094216, 8.55799999904265 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-22-", "NAME_": "BISHOFTU", "LOCATION": "Ethiopia", "LAT": 8.78, "LON": 38.98, "ELEV": 1850, "TYPE_": "Fissure v", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 38.979999922291142, 8.77999995524884 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-221", "NAME_": "UNNAMED", "LOCATION": "Ethiopia", "LAT": 8.62, "LON": 38.95, "ELEV": 1800, "TYPE_": "Fissure v", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 38.950000092262201, 8.620000024525268 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-222", "NAME_": "SODORE", "LOCATION": "Ethiopia", "LAT": 8.43, "LON": 39.35, "ELEV": 1765, "TYPE_": "Pyroclast", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 39.349999919071138, 8.43000005446379 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-23-", "NAME_": "GEDAMSA C", "LOCATION": "Ethiopia", "LAT": 8.35, "LON": 39.18, "ELEV": 1984, "TYPE_": "Caldera", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 39.180000045004533, 8.350000089102011 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-24-", "NAME_": "BORA-BERI", "LOCATION": "Ethiopia", "LAT": 8.27, "LON": 39.03, "ELEV": 2285, "TYPE_": "Pumice co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 39.030000057623965, 8.269999914431295 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-25-", "NAME_": "TULLU MOJ", "LOCATION": "Ethiopia", "LAT": 8.158, "LON": 39.13, "ELEV": 2349, "TYPE_": "Pumice co", "STATUS": "Anthropol", "TIME_FRAME": "D2", "CONTINENT": "Africa", "Type": "Cone Types", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 39.129999909671767, 8.157999962924805 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-251", "NAME_": "UNNAMED", "LOCATION": "Ethiopia", "LAT": 8.07, "LON": 39.07, "ELEV": 1800, "TYPE_": "Fissure v", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 39.070000040304876, 8.070000001026841 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-252", "NAME_": "UNNAMED", "LOCATION": "Ethiopia", "LAT": 7.95, "LON": 38.93, "ELEV": 1889, "TYPE_": "Fissure v", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 38.92999999626727, 7.950000052984151 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-26-", "NAME_": "BUTAJIRI-", "LOCATION": "Ethiopia", "LAT": 8.05, "LON": 38.35, "ELEV": 2281, "TYPE_": "Fissure v", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 38.349999933430922, 8.049999905031925 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-27-", "NAME_": "ALUTU", "LOCATION": "Ethiopia", "LAT": 7.77, "LON": 38.78, "ELEV": 2335, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 38.780000008886702, 7.770000026265677 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-28-", "NAME_": "SHALA", "LOCATION": "Ethiopia", "LAT": 7.47, "LON": 38.55, "ELEV": 2075, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 38.550000056144313, 7.470000051504513 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-29-", "NAME_": "CORBETTI", "LOCATION": "Ethiopia", "LAT": 7.18, "LON": 38.43, "ELEV": 2320, "TYPE_": "Caldera", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 38.429999898792744, 7.180000020086354 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-291", "NAME_": "BILATE RI", "LOCATION": "Ethiopia", "LAT": 7.07, "LON": 38.1, "ELEV": 1700, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 38.10000009400261, 7.070000015386668 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-292", "NAME_": "TEPI", "LOCATION": "Ethiopia", "LAT": 7.42, "LON": 35.43, "ELEV": 2728, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 35.429999941872211, 7.419999916171705 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-293", "NAME_": "HOBICHA C", "LOCATION": "Ethiopia", "LAT": 6.78, "LON": 37.83, "ELEV": 1800, "TYPE_": "Caldera", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Africa", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 37.829999949270416, 6.779999983968494 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-30-", "NAME_": "CHIRACHA", "LOCATION": "Ethiopia", "LAT": 6.65, "LON": 38.12, "ELEV": 1650, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 38.11999998068859, 6.650000092582829 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-31-", "NAME_": "TOSA SUCH", "LOCATION": "Ethiopia", "LAT": 5.92, "LON": 37.57, "ELEV": 1650, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 37.569999957190134, 5.920000042365913 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-311", "NAME_": "UNNAMED", "LOCATION": "Ethiopia", "LAT": 5.65, "LON": 37.67, "ELEV": 1200, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 37.67000001854683, 5.649999897633734 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-32-", "NAME_": "KORATH RA", "LOCATION": "Ethiopia", "LAT": 5.1, "LON": 35.88, "ELEV": 912, "TYPE_": "Tuff cone", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Africa", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 35.879999904013971, 5.100000083444229 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-33-", "NAME_": "MEGA BASA", "LOCATION": "Ethiopia", "LAT": 4.08, "LON": 37.42, "ELEV": 1067, "TYPE_": "Pyroclast", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 37.419999969809567, 4.08000000180914 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0202-001", "NAME_": "NORTH ISL", "LOCATION": "Africa-E", "LAT": 4.07, "LON": 36.05, "ELEV": 520, "TYPE_": "Tuff cone", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 36.049999987389469, 4.07000005846615 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0202-01=", "NAME_": "CENTRAL I", "LOCATION": "Africa-E", "LAT": 3.5, "LON": 36.042, "ELEV": 550, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 36.041999990853242, 3.499999938972806 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0202-02=", "NAME_": "SOUTH ISL", "LOCATION": "Africa-E", "LAT": 2.63, "LON": 36.6, "ELEV": 700, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 36.600000010887868, 2.630000054027235 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0202-021", "NAME_": "MARSABIT", "LOCATION": "Africa-E", "LAT": 2.32, "LON": 37.97, "ELEV": 1707, "TYPE_": "Shield vo", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 37.969999993308022, 2.319999926614159 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0202-03=", "NAME_": "BARRIER,", "LOCATION": "Africa-E", "LAT": 2.32, "LON": 36.57, "ELEV": 1032, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 36.569999971549976, 2.319999926614159 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0202-04-", "NAME_": "NAMARUNU", "LOCATION": "Africa-E", "LAT": 1.9, "LON": 36.27, "ELEV": 817, "TYPE_": "Shield vo", "STATUS": "Tephrochr", "TIME_FRAME": "D7", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 36.26999999678884, 1.90000000381032 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0202-05-", "NAME_": "SEGERERUA", "LOCATION": "Africa-E", "LAT": 1.57, "LON": 37.9, "ELEV": 699, "TYPE_": "Pyroclast", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 37.899999971289219, 1.569999989711263 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0202-051", "NAME_": "EMURUANGO", "LOCATION": "Africa-E", "LAT": 1.5, "LON": 36.33, "ELEV": 1328, "TYPE_": "Shield vo", "STATUS": "Radiocarb", "TIME_FRAME": "D2", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 36.330000075464625, 1.499999967692474 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0202-052", "NAME_": "SILALI", "LOCATION": "Africa-E", "LAT": 1.15, "LON": 36.23, "ELEV": 1528, "TYPE_": "Shield vo", "STATUS": "Ar/Ar", "TIME_FRAME": "D7", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 36.230000014107929, 1.150000066907424 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0202-053", "NAME_": "PAKA", "LOCATION": "Africa-E", "LAT": 0.92, "LON": 36.18, "ELEV": 1697, "TYPE_": "Shield vo", "STATUS": "Ar/Ar", "TIME_FRAME": "D7", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 36.180000088084057, 0.919999904856141 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0202-054", "NAME_": "KOROSI", "LOCATION": "Africa-E", "LAT": 0.77, "LON": 36.12, "ELEV": 1446, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 36.120000009408216, 0.769999917475559 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0202-055", "NAME_": "OL KOKWE", "LOCATION": "Africa-E", "LAT": 0.63, "LON": 36.08, "ELEV": 1130, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 36.080000026727362, 0.630000082746889 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0202-056", "NAME_": "NYAMBENI", "LOCATION": "Africa-E", "LAT": 0.23, "LON": 37.87, "ELEV": 750, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 37.869999931951327, 0.230000046629044 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0202-06=", "NAME_": "MENENGAI", "LOCATION": "Africa-E", "LAT": -0.2, "LON": 36.07, "ELEV": 2278, "TYPE_": "Shield vo", "STATUS": "Tephrochr", "TIME_FRAME": "D7", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 36.070000083384343, -0.200000028826707 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0202-07=", "NAME_": "HOMA MOUN", "LOCATION": "Africa-E", "LAT": -0.38, "LON": 34.5, "ELEV": 1751, "TYPE_": "Complex v", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 34.499999978250855, -0.380000055545196 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0202-071", "NAME_": "ELMENTEIT", "LOCATION": "Africa-E", "LAT": -0.52, "LON": 36.27, "ELEV": 2126, "TYPE_": "Pyroclast", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 36.26999999678884, -0.520000099582788 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0202-08=", "NAME_": "EBURRU, O", "LOCATION": "Africa-E", "LAT": -0.63, "LON": 36.23, "ELEV": 2856, "TYPE_": "Complex v", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 36.230000014107929, -0.630000104282473 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0202-09=", "NAME_": "OLKARIA", "LOCATION": "Africa-E", "LAT": -0.904, "LON": 36.292, "ELEV": 2434, "TYPE_": "Pumice co", "STATUS": "Radiocarb", "TIME_FRAME": "D4", "CONTINENT": "Africa", "Type": "Cone Types", "Last_eruption": "1700-1799", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 36.292000039590562, -0.903999933319355 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0202-10=", "NAME_": "LONGONOT", "LOCATION": "Africa-E", "LAT": -0.92, "LON": 36.45, "ELEV": 2776, "TYPE_": "Shield vo", "STATUS": "Anthropol", "TIME_FRAME": "D3", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 36.4500000235073, -0.919999926391711 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0202-11=", "NAME_": "SUSWA", "LOCATION": "Africa-E", "LAT": -1.175, "LON": 36.35, "ELEV": 2356, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 36.349999962150605, -1.174999946800483 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0202-12=", "NAME_": "LENGAI, O", "LOCATION": "Africa-E", "LAT": -2.751, "LON": 35.902, "ELEV": 2890, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 35.901999946815693, -2.751000101663351 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0202-13=", "NAME_": "CHYULU HI", "LOCATION": "Africa-E", "LAT": -2.68, "LON": 37.88, "ELEV": 2188, "TYPE_": "Volcanic", "STATUS": "Anthropol", "TIME_FRAME": "D3", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 37.880000084603239, -2.680000001586691 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0202-15=", "NAME_": "KILIMANJA", "LOCATION": "Africa-E", "LAT": -3.07, "LON": 37.35, "ELEV": 5895, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 37.349999947790764, -3.070000094361561 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0202-16=", "NAME_": "MERU", "LOCATION": "Africa-E", "LAT": -3.25, "LON": 36.75, "ELEV": 4565, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 36.749999998268436, -3.249999911771113 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0202-161", "NAME_": "IGWISI HI", "LOCATION": "Africa-E", "LAT": -4.87, "LON": 31.92, "ELEV": 0, "TYPE_": "Tuff cone", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 31.91999994413419, -4.869999942928501 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0202-162", "NAME_": "UNNAMED", "LOCATION": "Africa-E", "LAT": -8.63, "LON": 33.57, "ELEV": 0, "TYPE_": "Pyroclast", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 33.570000014629443, -8.629999989403828 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0202-163", "NAME_": "SW USANGU", "LOCATION": "Africa-E", "LAT": -8.75, "LON": 33.8, "ELEV": 2179, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 33.799999967371832, -8.749999937446518 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0202-164", "NAME_": "NGOZI", "LOCATION": "Africa-E", "LAT": -8.97, "LON": 33.57, "ELEV": 2622, "TYPE_": "Caldera", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 33.570000014629443, -8.969999946845888 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0202-165", "NAME_": "IZUMBWE-M", "LOCATION": "Africa-E", "LAT": -8.93, "LON": 33.4, "ELEV": 1568, "TYPE_": "Pyroclast", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 33.399999931254001, -8.929999964164992 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0202-166", "NAME_": "RUNGWE", "LOCATION": "Africa-E", "LAT": -9.13, "LON": 33.67, "ELEV": 2961, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 33.670000075986138, -9.130000086878383 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0202-17=", "NAME_": "KIEYO", "LOCATION": "Africa-E", "LAT": -9.23, "LON": 33.78, "ELEV": 2175, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 33.780000080685852, -9.229999938926156 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0203-001", "NAME_": "RUSEKERE", "LOCATION": "Africa-C", "LAT": 0.73, "LON": 30.38, "ELEV": 1615, "TYPE_": "Tuff cone", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 30.380000087647488, 0.729999934794662 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0203-002", "NAME_": "FORT PORT", "LOCATION": "Africa-C", "LAT": 0.7, "LON": 30.25, "ELEV": 1524, "TYPE_": "Tuff cone", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 30.249999986952872, 0.699999895456756 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0203-003", "NAME_": "KYATWA VO", "LOCATION": "Africa-C", "LAT": 0.45, "LON": 30.25, "ELEV": 1430, "TYPE_": "Tuff cone", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 30.249999986952872, 0.450000056028415 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0203-004", "NAME_": "KATWE-KIK", "LOCATION": "Africa-C", "LAT": -0.08, "LON": 29.92, "ELEV": 1067, "TYPE_": "Tuff cone", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 29.919999972853816, -0.080000080784032 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0203-005", "NAME_": "BUNYARUGU", "LOCATION": "Africa-C", "LAT": -0.2, "LON": 30.08, "ELEV": 1554, "TYPE_": "Explosion", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 30.079999903577402, -0.200000028826707 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0203-006", "NAME_": "KATUNGA", "LOCATION": "Africa-C", "LAT": -0.47, "LON": 30.18, "ELEV": 1707, "TYPE_": "Tuff cone", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 30.179999964934098, -0.469999964249965 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0203-01=", "NAME_": "MAY-YA-MO", "LOCATION": "Africa-C", "LAT": -0.93, "LON": 29.33, "ELEV": 950, "TYPE_": "Fumarole", "STATUS": "Fumarolic", "TIME_FRAME": "?", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 29.329999966674507, -0.930000079043623 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0203-02=", "NAME_": "NYAMURAGI", "LOCATION": "Africa-C", "LAT": -1.408, "LON": 29.2, "ELEV": 3058, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 29.200000075288841, -1.40799992440752 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0203-03=", "NAME_": "NYIRAGONG", "LOCATION": "Africa-C", "LAT": -1.52, "LON": 29.25, "ELEV": 3469, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 29.250000001312713, -1.520000085222946 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0203-04-", "NAME_": "KARISIMBI", "LOCATION": "Africa-C", "LAT": -1.5, "LON": 29.45, "ELEV": 4507, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 29.449999914717182, -1.499999989228044 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0203-05-", "NAME_": "VISOKE", "LOCATION": "Africa-C", "LAT": -1.47, "LON": 29.492, "ELEV": 3711, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 29.492000053513806, -1.469999949890138 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0203-06-", "NAME_": "MUHAVURA", "LOCATION": "Africa-C", "LAT": -1.38, "LON": 29.67, "ELEV": 4127, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 29.669999924116553, -1.380000041185369 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0203-07-", "NAME_": "BUFUMBIRA", "LOCATION": "Africa-C", "LAT": -1.23, "LON": 29.72, "ELEV": 2440, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 29.720000059449347, -1.230000053804787 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0203-08-", "NAME_": "TSHIBINDA", "LOCATION": "Africa-C", "LAT": -2.32, "LON": 28.75, "ELEV": 1460, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 28.749999903838159, -2.319999948149729 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0204-001", "NAME_": "BIU PLATE", "LOCATION": "Africa-W", "LAT": 10.75, "LON": 12.0, "ELEV": 0, "TYPE_": "Volcanic", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 11.999999987383603, 10.750000096500202 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0204-002", "NAME_": "NGAOUNDER", "LOCATION": "Africa-W", "LAT": 7.25, "LON": 13.67, "ELEV": 0, "TYPE_": "Volcanic", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 13.669999944564893, 7.250000042105142 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0204-003", "NAME_": "OKU VOLC", "LOCATION": "Africa-W", "LAT": 6.25, "LON": 10.5, "ELEV": 3011, "TYPE_": "Maars", "STATUS": "Radiocarb", "TIME_FRAME": "D5", "CONTINENT": "Africa", "Type": "Explosive & Crater Features", "Last_eruption": "1500-1699", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 10.49999990426889, 6.25000005646497 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0204-004", "NAME_": "MANENGOUB", "LOCATION": "Africa-W", "LAT": 5.03, "LON": 9.83, "ELEV": 2411, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 9.829999932727787, 5.030000061425426 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0204-01=", "NAME_": "CAMEROON,", "LOCATION": "Africa-W", "LAT": 4.203, "LON": 9.17, "ELEV": 4095, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 9.169999904529675, 4.202999974716505 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0204-02-", "NAME_": "SANTA ISA", "LOCATION": "Africa-W", "LAT": 3.58, "LON": 8.75, "ELEV": 3007, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 8.749999981725836, 3.579999904334599 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0204-03-", "NAME_": "SAN JOAQU", "LOCATION": "Africa-W", "LAT": 3.35, "LON": 8.63, "ELEV": 2009, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 8.63000003368316, 3.349999951592224 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0204-04-", "NAME_": "SAN CARLO", "LOCATION": "Africa-W", "LAT": 3.35, "LON": 8.52, "ELEV": 2260, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 8.520000028983475, 3.349999951592224 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0204-05-", "NAME_": "SAO TOME", "LOCATION": "Africa-W", "LAT": 0.32, "LON": 6.72, "ELEV": 2024, "TYPE_": "Shield vo", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 6.719999971107569, 0.319999955333813 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0205-00-", "NAME_": "HARUJ", "LOCATION": "Africa-N", "LAT": 27.25, "LON": 17.5, "ELEV": 1200, "TYPE_": "Scoria co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 17.500000013059008, 27.24999996421748 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0205-001", "NAME_": "TOH, TARS", "LOCATION": "Africa-N", "LAT": 21.33, "LON": 16.33, "ELEV": 2000, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 16.329999944043351, 21.33000001573825 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0205-01=", "NAME_": "TOUSSIDE,", "LOCATION": "Africa-N", "LAT": 21.03, "LON": 16.45, "ELEV": 3265, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 16.450000101394949, 21.030000040977086 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0205-02=", "NAME_": "VOON, TAR", "LOCATION": "Africa-N", "LAT": 20.92, "LON": 17.28, "ELEV": 3100, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 17.280000003659637, 20.920000036277401 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0205-021", "NAME_": "KOUSSI, E", "LOCATION": "Africa-N", "LAT": 19.8, "LON": 18.53, "ELEV": 3415, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 18.530000038037088, 19.800000102594552 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0205-03-", "NAME_": "MARRA, JE", "LOCATION": "Africa-N", "LAT": 12.95, "LON": 24.27, "ELEV": 3042, "TYPE_": "Volcanic", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 24.269999959797843, 12.949999981185016 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0205-04-", "NAME_": "KUTUM VOL", "LOCATION": "Africa-N", "LAT": 14.5, "LON": 25.8, "ELEV": 0, "TYPE_": "Scoria co", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Africa", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 25.800000082250477, 14.499999990323616 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0205-05-", "NAME_": "MEIDOB VO", "LOCATION": "Africa-N", "LAT": 15.13, "LON": 26.17, "ELEV": 1000, "TYPE_": "Scoria co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 26.170000079030416, 15.129999979183836 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0205-06-", "NAME_": "BAYUDA VO", "LOCATION": "Africa-N", "LAT": 18.33, "LON": 32.75, "ELEV": 0, "TYPE_": "Cinder co", "STATUS": "Radiocarb", "TIME_FRAME": "D6", "CONTINENT": "Africa", "Type": "Cone Types", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 32.750000055707801, 18.330000058817731 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0205-07-", "NAME_": "UMM MARAF", "LOCATION": "Africa-N", "LAT": 18.2, "LON": 33.8, "ELEV": 0, "TYPE_": "Scoria co", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Africa", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 33.799999967371832, 18.199999958123144 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0303-001", "NAME_": "GRILLE, L", "LOCATION": "Indian O.", "LAT": -11.47, "LON": 43.33, "ELEV": 1087, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 43.329999974945792, -11.470000015600775 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0303-01=", "NAME_": "KARTHALA", "LOCATION": "Indian O.", "LAT": -11.75, "LON": 43.38, "ELEV": 2361, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 43.379999900969722, -11.750000103675944 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0303-02=", "NAME_": "FOURNAISE", "LOCATION": "Indian O.", "LAT": -21.229, "LON": 55.713, "ELEV": 2631, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 55.712999976924436, -21.228999897859254 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0303-03-", "NAME_": "AMBRE-BOB", "LOCATION": "Madagasca", "LAT": -12.48, "LON": 49.1, "ELEV": 1475, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 49.099999936044469, -12.479999944583938 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0303-05-", "NAME_": "ANKAIZINA", "LOCATION": "Madagasca", "LAT": -14.3, "LON": 48.67, "ELEV": 2878, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 48.67000006989764, -14.300000098454717 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0303-06-", "NAME_": "ITASY VOL", "LOCATION": "Madagasca", "LAT": -19.0, "LON": 46.77, "ELEV": 1800, "TYPE_": "Scoria co", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "Africa", "Type": "Cone Types", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 46.769999950665067, -19.000000051894418 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0303-07-", "NAME_": "ANKARATRA", "LOCATION": "Madagasca", "LAT": -19.4, "LON": 47.2, "ELEV": 2644, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 47.200000026120847, -19.400000088012277 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1803-01-", "NAME_": "LA PALMA", "LOCATION": "Canary Is", "LAT": 28.58, "LON": -17.83, "ELEV": 2426, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -17.829999917063873, 28.579999963956709 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1803-02-", "NAME_": "HIERRO", "LOCATION": "Canary Is", "LAT": 27.73, "LON": -18.03, "ELEV": 1500, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D4", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1700-1799", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -18.030000039777264, 27.729999965697118 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1803-03-", "NAME_": "TENERIFE", "LOCATION": "Canary Is", "LAT": 28.271, "LON": -16.641, "ELEV": 3715, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -16.641000039420106, 28.270999914601504 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1803-04-", "NAME_": "GRAN CANA", "LOCATION": "Canary Is", "LAT": 28.0, "LON": -15.58, "ELEV": 1950, "TYPE_": "Fissure v", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -15.579999897046264, 27.999999901120376 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1803-05-", "NAME_": "FUERTEVEN", "LOCATION": "Canary Is", "LAT": 28.358, "LON": -14.02, "ELEV": 529, "TYPE_": "Fissure v", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -14.01999994456466, 28.358000007750533 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1803-06-", "NAME_": "LANZAROTE", "LOCATION": "Canary Is", "LAT": 29.03, "LON": -13.63, "ELEV": 670, "TYPE_": "Fissure v", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Africa", "Type": "Other", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -13.630000061098713, 29.029999926098441 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1804-01=", "NAME_": "FOGO", "LOCATION": "Cape Verd", "LAT": 14.95, "LON": -24.35, "ELEV": 2829, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -24.350000024374367, 14.949999952465348 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1804-03-", "NAME_": "SANTO ANT", "LOCATION": "Cape Verd", "LAT": 17.07, "LON": -25.17, "ELEV": 1979, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -25.169999983296037, 17.070000081097305 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1804-04-", "NAME_": "SAN VICEN", "LOCATION": "Cape Verd", "LAT": 16.85, "LON": -24.97, "ELEV": 697, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Africa", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -24.970000069891569, 16.85000007169792 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0103-00-", "NAME_": "KULA", "LOCATION": "Turkey", "LAT": 38.58, "LON": 28.52, "ELEV": 750, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 28.519999951095798, 38.58000002966736 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0103-001", "NAME_": "KARAPINAR", "LOCATION": "Turkey", "LAT": 37.67, "LON": 33.65, "ELEV": 1302, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "D7", "CONTINENT": "Asia", "Type": "Cone Types", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 33.649999979991264, 37.669999952731956 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0103-002", "NAME_": "HASAN DAG", "LOCATION": "Turkey", "LAT": 38.13, "LON": 34.17, "ELEV": 3253, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 34.169999964151771, 38.1300000675256 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0103-003", "NAME_": "GOLLU DAG", "LOCATION": "Turkey", "LAT": 38.25, "LON": 34.57, "ELEV": 2143, "TYPE_": "Lava dome", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 34.570000000269658, 38.250000015568276 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0103-004", "NAME_": "ACIGOL-NE", "LOCATION": "Turkey", "LAT": 38.57, "LON": 34.52, "ELEV": 1689, "TYPE_": "Maars", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 34.520000074245729, 38.57000008632437 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0103-01=", "NAME_": "ERCIYES D", "LOCATION": "Turkey", "LAT": 38.52, "LON": 35.48, "ELEV": 3916, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 35.480000077205034, 38.519999950991547 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0103-011", "NAME_": "KARACALID", "LOCATION": "Turkey", "LAT": 37.67, "LON": 39.83, "ELEV": 1957, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 39.829999920550733, 37.669999952731956 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0103-02=", "NAME_": "NEMRUT DA", "LOCATION": "Turkey", "LAT": 38.65, "LON": 42.02, "ELEV": 3050, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D6", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 42.02000007120148, 38.650000051686135 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0103-021", "NAME_": "SUPHAN DA", "LOCATION": "Turkey", "LAT": 38.92, "LON": 42.82, "ELEV": 4434, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 42.819999934128248, 38.919999987109406 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0103-022", "NAME_": "GIREKOL", "LOCATION": "Turkey", "LAT": 39.17, "LON": 43.33, "ELEV": 0, "TYPE_": "Unknown", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 43.329999974945792, 39.17000003584667 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0103-03=", "NAME_": "TENDURUK", "LOCATION": "Turkey", "LAT": 39.33, "LON": 43.83, "ELEV": 3584, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 43.830000072420376, 39.329999966570256 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0103-04-", "NAME_": "ARARAT, M", "LOCATION": "Turkey", "LAT": 39.7, "LON": 44.28, "ELEV": 5165, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 44.280000034562079, 39.699999963350194 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0103-05-", "NAME_": "KARS PLAT", "LOCATION": "Turkey", "LAT": 40.75, "LON": 42.9, "ELEV": 3000, "TYPE_": "Volcanic", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 42.899999899490069, 40.750000084323176 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0104-02-", "NAME_": "KASBEK", "LOCATION": "Georgia", "LAT": 42.7, "LON": 44.5, "ELEV": 5050, "TYPE_": "Stratovol", "STATUS": "Tephrochr", "TIME_FRAME": "D7", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 44.50000004396145, 42.699999920270699 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0104-03-", "NAME_": "KABARGIN", "LOCATION": "Georgia", "LAT": 42.55, "LON": 44.0, "ELEV": 3650, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 43.999999946486923, 42.549999932890131 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0104-04-", "NAME_": "UNNAMED", "LOCATION": "Georgia", "LAT": 42.45, "LON": 44.25, "ELEV": 3750, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 44.249999995224186, 42.450000080842358 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0104-05-", "NAME_": "UNNAMED", "LOCATION": "Georgia", "LAT": 41.55, "LON": 43.6, "ELEV": 3400, "TYPE_": "Cones", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 43.599999910369093, 41.549999947249944 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0104-06-", "NAME_": "ARAGATS", "LOCATION": "Armenia", "LAT": 40.55, "LON": 44.12, "ELEV": 4090, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 44.120000103838549, 40.549999961609785 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0104-07-", "NAME_": "AGMAGAN-K", "LOCATION": "Armenia", "LAT": 40.275, "LON": 44.75, "ELEV": 3560, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 44.75000009269877, 40.275000054515033 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0104-08-", "NAME_": "DAR-ALAGE", "LOCATION": "Armenia", "LAT": 39.7, "LON": 45.542, "ELEV": 3329, "TYPE_": "Unknown", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 45.541999959089367, 39.699999963350194 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0300-01-", "NAME_": "SHARAT KO", "LOCATION": "Syria", "LAT": 36.53, "LON": 40.85, "ELEV": 534, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 40.850000002185823, 36.529999923054191 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0300-02-", "NAME_": "UNNAMED", "LOCATION": "Syria", "LAT": 36.67, "LON": 37.0, "ELEV": 0, "TYPE_": "Unknown", "STATUS": "Historica", "TIME_FRAME": "D6", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 37.000000047005756, 36.669999967091769 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0300-03-", "NAME_": "UNNAMED", "LOCATION": "Syria", "LAT": 33.308, "LON": 36.925, "ELEV": 945, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 36.925000053315443, 33.308000009927497 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0300-04-", "NAME_": "UNNAMED", "LOCATION": "Syria", "LAT": 33.15, "LON": 36.258, "ELEV": 1197, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 36.25799989733008, 33.15000002601073 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0300-05-", "NAME_": "ES SAFA", "LOCATION": "Syria", "LAT": 33.08, "LON": 37.15, "ELEV": 0, "TYPE_": "Volcanic", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 37.150000034386323, 33.080000003991955 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0300-06-", "NAME_": "UNNAMED", "LOCATION": "Syria", "LAT": 32.658, "LON": 36.425, "ELEV": 1436, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 36.424999955840917, 32.657999925072374 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0301-01=", "NAME_": "RAHAH, HA", "LOCATION": "Arabia-W", "LAT": 27.8, "LON": 36.17, "ELEV": 1660, "TYPE_": "Volcanic", "STATUS": "Anthropol", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 36.169999935432145, 27.799999987715921 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0301-02=", "NAME_": "'UWAYRID,", "LOCATION": "Arabia-W", "LAT": 27.08, "LON": 37.25, "ELEV": 1900, "TYPE_": "Volcanic", "STATUS": "Anthropol", "TIME_FRAME": "D6", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 37.250000095743019, 27.080000090150918 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0301-04-", "NAME_": "LUNAYYIR,", "LOCATION": "Arabia-W", "LAT": 25.17, "LON": 37.75, "ELEV": 1370, "TYPE_": "Volcanic", "STATUS": "Historica", "TIME_FRAME": "D6", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 37.749999983908651, 25.170000027575355 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0301-05=", "NAME_": "ITHNAYN,", "LOCATION": "Arabia-W", "LAT": 26.58, "LON": 40.2, "ELEV": 1625, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 40.199999917330729, 26.579999992676377 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0301-06=", "NAME_": "KHAYBAR,", "LOCATION": "Arabia-W", "LAT": 25.0, "LON": 39.92, "ELEV": 2093, "TYPE_": "Volcanic", "STATUS": "Historica", "TIME_FRAME": "D6", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 39.920000038564467, 24.999999944199871 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0301-07=", "NAME_": "RAHAT, HA", "LOCATION": "Arabia-W", "LAT": 23.08, "LON": 39.78, "ELEV": 1744, "TYPE_": "Volcanic", "STATUS": "Historica", "TIME_FRAME": "D6", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 39.779999994526861, 23.079999938281318 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0301-071", "NAME_": "KISHB, HA", "LOCATION": "Arabia-W", "LAT": 22.8, "LON": 41.38, "ELEV": 1475, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 41.379999929689347, 22.800000059515071 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0301-08-", "NAME_": "YAR, JABA", "LOCATION": "Arabia-W", "LAT": 17.05, "LON": 42.83, "ELEV": 305, "TYPE_": "Volcanic", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 42.830000086780217, 17.049999985102389 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0301-09-", "NAME_": "ARHAB, HA", "LOCATION": "Arabia-S", "LAT": 15.63, "LON": 44.08, "ELEV": 3100, "TYPE_": "Volcanic", "STATUS": "Historica", "TIME_FRAME": "D6", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 44.079999911848688, 15.630000076658376 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0301-10-", "NAME_": "MARHA, JA", "LOCATION": "Arabia-S", "LAT": 15.28, "LON": 44.22, "ELEV": 2650, "TYPE_": "Tuff cone", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 44.219999955886294, 15.279999966564418 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0301-11-", "NAME_": "HAYLAN, J", "LOCATION": "Arabia-S", "LAT": 15.43, "LON": 44.78, "ELEV": 1550, "TYPE_": "Volcanic", "STATUS": "Anthropol", "TIME_FRAME": "D7", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 44.779999922727711, 15.429999953944986 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0301-12-", "NAME_": "DHAMAR, H", "LOCATION": "Arabia-S", "LAT": 14.57, "LON": 44.67, "ELEV": 3500, "TYPE_": "Volcanic", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 44.669999918028054, 14.570000012342405 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0301-13-", "NAME_": "HAMMAN DE", "LOCATION": "Arabia-S", "LAT": 14.05, "LON": 44.75, "ELEV": 0, "TYPE_": "Cone", "STATUS": "Anthropol", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 44.75000009269877, 14.05000002818187 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0301-16-", "NAME_": "SAWAD, HA", "LOCATION": "Arabia-S", "LAT": 13.58, "LON": 46.12, "ELEV": 1737, "TYPE_": "Volcanic", "STATUS": "Historica", "TIME_FRAME": "D6", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 46.120000075118867, 13.579999970045222 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0301-17-", "NAME_": "BAL HAF,", "LOCATION": "Arabia-S", "LAT": 14.05, "LON": 48.33, "ELEV": 233, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 48.329999903146643, 14.05000002818187 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0301-18-", "NAME_": "BIR BORHU", "LOCATION": "Arabia-S", "LAT": 15.55, "LON": 50.63, "ELEV": 0, "TYPE_": "Volcanic", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 50.630000058497103, 15.549999901987661 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0302-01-", "NAME_": "DAMAVAND", "LOCATION": "Iran", "LAT": 35.951, "LON": 52.109, "ELEV": 5670, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 52.108999967559043, 35.950999938275743 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0302-02-", "NAME_": "QAL'EH HA", "LOCATION": "Iran", "LAT": 29.4, "LON": 57.57, "ELEV": 0, "TYPE_": "Maars", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Asia", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 57.570000088611437, 29.399999922878408 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0302-03-", "NAME_": "BAZMAN", "LOCATION": "Iran", "LAT": 28.07, "LON": 60.0, "ELEV": 3490, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 59.999999926038583, 28.069999923139179 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0302-04-", "NAME_": "UNNAMED", "LOCATION": "Iran", "LAT": 28.17, "LON": 60.67, "ELEV": 0, "TYPE_": "Volcanic", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 60.669999897579714, 28.169999984495874 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0302-05-", "NAME_": "TAFTAN", "LOCATION": "Iran", "LAT": 28.6, "LON": 61.6, "ELEV": 4050, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 61.600000070510021, 28.600000059951626 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0302-06-", "NAME_": "DACHT-I-N", "LOCATION": "Afghanist", "LAT": 33.95, "LON": 67.92, "ELEV": 3800, "TYPE_": "Lava dome", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 67.920000055107096, 33.950000098246448 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0302-07-", "NAME_": "VAKAK GRO", "LOCATION": "Afghanist", "LAT": 34.25, "LON": 67.97, "ELEV": 3190, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 67.969999981130968, 34.250000073007612 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0501-03=", "NAME_": "KARKAR", "LOCATION": "New Guine", "LAT": -4.649, "LON": 145.964, "ELEV": 1839, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 145.964000067188465, -4.649000064780196 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0501-05=", "NAME_": "LONG ISLA", "LOCATION": "New Guine", "LAT": -5.358, "LON": 147.12, "ELEV": 1280, "TYPE_": "Complex v", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 147.120000089938571, -5.357999940944325 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0501-06=", "NAME_": "UMBOI", "LOCATION": "New Guine", "LAT": -5.589, "LON": 147.875, "ELEV": 1548, "TYPE_": "Complex v", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 147.874999998512976, -5.588999971744556 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0503-00-", "NAME_": "DOMA PEAK", "LOCATION": "New Guine", "LAT": -5.9, "LON": 143.15, "ELEV": 3568, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 143.149999977406878, -5.899999967906581 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0503-001", "NAME_": "CRATER MO", "LOCATION": "New Guine", "LAT": -6.58, "LON": 145.08, "ELEV": 3233, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 145.079999926668449, -6.58000009209961 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0503-002", "NAME_": "YELIA", "LOCATION": "New Guine", "LAT": -7.05, "LON": 145.858, "ELEV": 3384, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 145.85799995610239, -7.049999940927322 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0503-003", "NAME_": "KORANGA", "LOCATION": "New Guine", "LAT": -7.33, "LON": 146.708, "ELEV": 0, "TYPE_": "Explosion", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 146.707999954361981, -7.330000029002505 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0503-004", "NAME_": "MADILOGO", "LOCATION": "New Guine", "LAT": -9.2, "LON": 147.57, "ELEV": 850, "TYPE_": "Pyroclast", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 147.570000052080331, -9.199999899588249 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0503-01=", "NAME_": "LAMINGTON", "LOCATION": "New Guine", "LAT": -8.95, "LON": 148.15, "ELEV": 1680, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 148.149999905607729, -8.950000060159908 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0503-011", "NAME_": "HYDROGRAP", "LOCATION": "New Guine", "LAT": -9.0, "LON": 148.37, "ELEV": 1915, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 148.369999915007099, -8.999999986183781 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0503-02=", "NAME_": "MUSA RIVE", "LOCATION": "New Guine", "LAT": -9.308, "LON": 148.13, "ELEV": 808, "TYPE_": "Hydrother", "STATUS": "Hot Sprin", "TIME_FRAME": "?", "CONTINENT": "Asia", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 148.130000018921749, -9.307999957481115 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0503-021", "NAME_": "MANAGLASE", "LOCATION": "New Guine", "LAT": -9.08, "LON": 148.33, "ELEV": 1342, "TYPE_": "Volcanic", "STATUS": "Anthropol", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 148.329999932326189, -9.079999951545574 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0503-03=", "NAME_": "VICTORY", "LOCATION": "New Guine", "LAT": -9.2, "LON": 149.07, "ELEV": 1925, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 149.069999925886123, -9.199999899588249 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0503-031", "NAME_": "SESSAGARA", "LOCATION": "New Guine", "LAT": -9.48, "LON": 149.13, "ELEV": 370, "TYPE_": "Unknown", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 149.130000004561907, -9.479999987663419 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0503-04=", "NAME_": "WAIOWA", "LOCATION": "New Guine", "LAT": -9.57, "LON": 149.075, "ELEV": 640, "TYPE_": "Pyroclast", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 149.074999897557632, -9.569999896368202 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0503-041", "NAME_": "GOODENOUG", "LOCATION": "D'Entreca", "LAT": -9.48, "LON": 150.35, "ELEV": 220, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 150.349999999601437, -9.479999987663419 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0503-05=", "NAME_": "IAMELELE", "LOCATION": "D'Entreca", "LAT": -9.52, "LON": 150.53, "ELEV": 200, "TYPE_": "Lava dome", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 150.530000026319954, -9.519999970344315 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0503-06=", "NAME_": "DAWSON ST", "LOCATION": "D'Entreca", "LAT": -9.62, "LON": 150.88, "ELEV": 500, "TYPE_": "Volcanic", "STATUS": "Hydration", "TIME_FRAME": "D6", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 150.879999927104961, -9.620000031701011 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0601-01=", "NAME_": "PULAU WEH", "LOCATION": "Sumatra", "LAT": 5.88, "LON": 95.33, "ELEV": 584, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 95.330000065470415, 5.880000059685017 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0601-02=", "NAME_": "SEULAWAH", "LOCATION": "Sumatra", "LAT": 5.425, "LON": 95.6, "ELEV": 1726, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 95.600000000893658, 5.424999916562868 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0601-03=", "NAME_": "PEUET SAG", "LOCATION": "Sumatra", "LAT": 4.925, "LON": 96.33, "ELEV": 2780, "TYPE_": "Complex v", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 96.330000051110574, 4.925000028397235 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0601-04=", "NAME_": "GEUREUDON", "LOCATION": "Sumatra", "LAT": 4.82, "LON": 96.8, "ELEV": 2590, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 96.799999899938257, 4.819999995369045 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0601-05=", "NAME_": "TELONG, B", "LOCATION": "Sumatra", "LAT": 4.77, "LON": 96.808, "ELEV": 2624, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 96.807999896474485, 4.770000069345159 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0601-06=", "NAME_": "GAYOLESTE", "LOCATION": "Sumatra", "LAT": 3.87, "LON": 97.6, "ELEV": 1500, "TYPE_": "Fumarole", "STATUS": "Fumarolic", "TIME_FRAME": "?", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 97.599999972173975, 3.869999935752759 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0601-07=", "NAME_": "SIBAYAK", "LOCATION": "Sumatra", "LAT": 3.208, "LON": 98.47, "ELEV": 2212, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 98.470000066428497, 3.207999960747827 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0601-08=", "NAME_": "SINABUNG", "LOCATION": "Sumatra", "LAT": 3.17, "LON": 98.392, "ELEV": 2460, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 98.392000047873523, 3.16999992487375 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0601-09=", "NAME_": "TOBA", "LOCATION": "Sumatra", "LAT": 2.58, "LON": 98.83, "ELEV": 2157, "TYPE_": "Caldera", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 98.829999910556523, 2.579999918694426 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0601-10=", "NAME_": "HELATOBA-", "LOCATION": "Sumatra", "LAT": 2.03, "LON": 98.93, "ELEV": 1100, "TYPE_": "Fumarole", "STATUS": "Fumarolic", "TIME_FRAME": "?", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 98.929999971913219, 2.030000104504921 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0601-11=", "NAME_": "BUAL BUAL", "LOCATION": "Sumatra", "LAT": 1.57, "LON": 99.25, "ELEV": 1819, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 99.250000042669285, 1.569999989711263 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0601-12=", "NAME_": "SORIKMARA", "LOCATION": "Sumatra", "LAT": 0.687, "LON": 99.537, "ELEV": 2145, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 99.537000049222797, 0.68699992724909 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0601-13=", "NAME_": "TALAKMAU", "LOCATION": "Sumatra", "LAT": 0.079, "LON": 99.982, "ELEV": 2912, "TYPE_": "Complex v", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 99.982000039692991, 0.078999981190591 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0601-14=", "NAME_": "MARAPI", "LOCATION": "Sumatra", "LAT": -0.38, "LON": 100.471, "ELEV": 2891, "TYPE_": "Complex v", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 100.470999906457791, -0.380000055545196 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0601-15=", "NAME_": "TANDIKAT", "LOCATION": "Sumatra", "LAT": -0.433, "LON": 100.317, "ELEV": 2438, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 100.317000025463585, -0.433000006433758 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0601-16=", "NAME_": "TALANG", "LOCATION": "Sumatra", "LAT": -0.978, "LON": 100.679, "ELEV": 2896, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 100.679000025707353, -0.978000058260704 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0601-17=", "NAME_": "KERINCI", "LOCATION": "Sumatra", "LAT": -1.692, "LON": 101.27, "ELEV": 3805, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 101.269999900635639, -1.691999906096328 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0601-171", "NAME_": "HUTAPANJA", "LOCATION": "Sumatra", "LAT": -2.27, "LON": 101.6, "ELEV": 0, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 101.599999914734667, -2.270000022125842 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0601-18=", "NAME_": "SUMBING", "LOCATION": "Sumatra", "LAT": -2.42, "LON": 101.73, "ELEV": 2508, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 101.730000015429255, -2.420000009506424 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0601-19=", "NAME_": "KUNYIT", "LOCATION": "Sumatra", "LAT": -2.592, "LON": 101.63, "ELEV": 2151, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 101.629999954072559, -2.592000039688727 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0601-191", "NAME_": "PENDAN", "LOCATION": "Sumatra", "LAT": -2.82, "LON": 102.02, "ELEV": 0, "TYPE_": "Unknown", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 102.020000046847429, -2.820000045624283 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0601-20=", "NAME_": "BELIRANG-", "LOCATION": "Sumatra", "LAT": -2.82, "LON": 102.18, "ELEV": 1958, "TYPE_": "Compound", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 102.179999977571015, -2.820000045624283 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0601-21=", "NAME_": "LUMUTDAUN", "LOCATION": "Sumatra", "LAT": -3.38, "LON": 102.37, "ELEV": 2467, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 102.369999947632493, -3.3800000124657 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0601-22=", "NAME_": "KABA", "LOCATION": "Sumatra", "LAT": -3.52, "LON": 102.62, "ELEV": 1952, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 102.619999996369756, -3.520000056503292 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0601-23=", "NAME_": "DEMPO", "LOCATION": "Sumatra", "LAT": -4.03, "LON": 103.13, "ELEV": 3173, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 103.130000037187301, -4.030000097320837 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0601-231", "NAME_": "PATAH", "LOCATION": "Sumatra", "LAT": -4.27, "LON": 103.3, "ELEV": 2817, "TYPE_": "Unknown", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 103.299999911253849, -4.269999993406188 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0601-24=", "NAME_": "LUMUT BAL", "LOCATION": "Sumatra", "LAT": -4.22, "LON": 103.62, "ELEV": 2055, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 103.619999982009915, -4.220000067382301 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0601-25=", "NAME_": "BESAR, GU", "LOCATION": "Sumatra", "LAT": -4.43, "LON": 103.67, "ELEV": 1899, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 103.669999908033788, -4.42999992412976 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0601-251", "NAME_": "RANAU", "LOCATION": "Sumatra", "LAT": -4.83, "LON": 103.92, "ELEV": 1881, "TYPE_": "Caldera", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 103.919999956771107, -4.829999960247619 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0601-26=", "NAME_": "SEKINCAU", "LOCATION": "Sumatra", "LAT": -5.12, "LON": 104.32, "ELEV": 1719, "TYPE_": "Caldera", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 104.319999992888938, -5.119999991665779 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0601-27=", "NAME_": "SUOH", "LOCATION": "Sumatra", "LAT": -5.25, "LON": 104.27, "ELEV": 1000, "TYPE_": "Maars", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Explosive & Crater Features", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 104.270000066865066, -5.250000092360381 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0601-28=", "NAME_": "HULUBELU", "LOCATION": "Sumatra", "LAT": -5.35, "LON": 104.6, "ELEV": 1040, "TYPE_": "Caldera", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 104.600000080964094, -5.34999994440814 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0601-29=", "NAME_": "RAJABASA", "LOCATION": "Sumatra", "LAT": -5.78, "LON": 105.625, "ELEV": 1281, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 105.624999924961742, -5.780000019863905 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-01=", "NAME_": "DANAU COM", "LOCATION": "Java", "LAT": -6.2, "LON": 105.97, "ELEV": 1778, "TYPE_": "Caldera", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 105.970000063384248, -6.199999942667731 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-02=", "NAME_": "KARANG", "LOCATION": "Java", "LAT": -6.27, "LON": 106.042, "ELEV": 1778, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 106.042000032209842, -6.269999964686534 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-03=", "NAME_": "KIARABERE", "LOCATION": "Java", "LAT": -6.73, "LON": 106.65, "ELEV": 1511, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 106.64999997826834, -6.730000079480192 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-04=", "NAME_": "PERBAKTI", "LOCATION": "Java", "LAT": -6.75, "LON": 106.68, "ELEV": 1699, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 106.680000017606233, -6.749999966166172 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-05=", "NAME_": "SALAK", "LOCATION": "Java", "LAT": -6.72, "LON": 106.73, "ELEV": 2211, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 106.729999943630105, -6.719999926828265 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-06=", "NAME_": "GEDE", "LOCATION": "Java", "LAT": -6.78, "LON": 106.98, "ELEV": 2958, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 106.979999992367368, -6.780000005504064 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-07=", "NAME_": "PATUHA", "LOCATION": "Java", "LAT": -7.15, "LON": 107.37, "ELEV": 2434, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 107.370000085142237, -7.150000002284017 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-08=", "NAME_": "WAYANG-WI", "LOCATION": "Java", "LAT": -7.208, "LON": 107.63, "ELEV": 2182, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 107.630000077222519, -7.207999924844088 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-09=", "NAME_": "TANGKUBAN", "LOCATION": "Java", "LAT": -6.77, "LON": 107.6, "ELEV": 2084, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 107.600000037884627, -6.770000062161074 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-10=", "NAME_": "PAPANDAYA", "LOCATION": "Java", "LAT": -7.32, "LON": 107.73, "ELEV": 2665, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 107.729999929270264, -7.320000085659515 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-11=", "NAME_": "KAWAHMANU", "LOCATION": "Java", "LAT": -7.23, "LON": 107.72, "ELEV": 2608, "TYPE_": "Fumarole", "STATUS": "Fumarolic", "TIME_FRAME": "?", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 107.719999985927302, -7.22999996764581 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-12=", "NAME_": "KAWAHKAMO", "LOCATION": "Java", "LAT": -7.125, "LON": 107.8, "ELEV": 1730, "TYPE_": "Fumarole", "STATUS": "Fumarolic", "TIME_FRAME": "?", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 107.799999951289067, -7.12499993461762 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-13=", "NAME_": "GUNTUR", "LOCATION": "Java", "LAT": -7.13, "LON": 107.83, "ELEV": 2249, "TYPE_": "Complex v", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 107.829999990626959, -7.129999906289115 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-131", "NAME_": "TAMPOMAS", "LOCATION": "Java", "LAT": -6.77, "LON": 107.95, "ELEV": 1684, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 107.949999938669691, -6.770000062161074 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-14=", "NAME_": "GALUNGGUN", "LOCATION": "Java", "LAT": -7.25, "LON": 108.05, "ELEV": 2168, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 108.050000000026387, -7.250000063640712 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-15=", "NAME_": "TALAGABOD", "LOCATION": "Java", "LAT": -7.208, "LON": 108.07, "ELEV": 1020, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 108.070000096021261, -7.207999924844088 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-16=", "NAME_": "KAWAHKARA", "LOCATION": "Java", "LAT": -7.17, "LON": 108.08, "ELEV": 1155, "TYPE_": "Fumarole", "STATUS": "Fumarolic", "TIME_FRAME": "?", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 108.080000039364279, -7.170000098278933 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-17=", "NAME_": "CEREME", "LOCATION": "Java", "LAT": -6.892, "LON": 108.4, "ELEV": 3078, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 108.399999900811395, -6.891999957010569 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-18=", "NAME_": "SLAMET", "LOCATION": "Java", "LAT": -7.242, "LON": 109.208, "ELEV": 3432, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 109.207999969583284, -7.242000067104541 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-20=", "NAME_": "DIENG VOL", "LOCATION": "Java", "LAT": -7.2, "LON": 109.92, "ELEV": 2565, "TYPE_": "Complex v", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 109.92000007992101, -7.199999928307903 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-21=", "NAME_": "SUNDORO", "LOCATION": "Java", "LAT": -7.3, "LON": 109.992, "ELEV": 3151, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 109.992000048746661, -7.299999989664599 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-22=", "NAME_": "SUMBING", "LOCATION": "Java", "LAT": -7.38, "LON": 110.058, "ELEV": 3371, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D4", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1700-1799", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 110.057999967842875, -7.379999955026392 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-23=", "NAME_": "UNGARAN", "LOCATION": "Java", "LAT": -7.18, "LON": 110.33, "ELEV": 2050, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 110.33000005938186, -7.180000041621923 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-231", "NAME_": "TELOMOYO", "LOCATION": "Java", "LAT": -7.37, "LON": 110.4, "ELEV": 1894, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 110.400000081400663, -7.370000011683402 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-24=", "NAME_": "MERBABU", "LOCATION": "Java", "LAT": -7.45, "LON": 110.43, "ELEV": 3145, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D4", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1700-1799", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 110.429999911429661, -7.449999977045181 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-25=", "NAME_": "MERAPI", "LOCATION": "Java", "LAT": -7.542, "LON": 110.442, "ELEV": 2911, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 110.442000010888364, -7.542000041865705 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-26=", "NAME_": "LAWU", "LOCATION": "Java", "LAT": -7.625, "LON": 111.192, "ELEV": 3265, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 111.19199994779126, -7.62500003209216 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-27=", "NAME_": "WILIS", "LOCATION": "Java", "LAT": -7.808, "LON": 111.758, "ELEV": 2563, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 111.757999964362057, -7.808000083675324 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-28=", "NAME_": "KELUT", "LOCATION": "Java", "LAT": -7.93, "LON": 112.308, "ELEV": 1731, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 112.307999987860512, -7.929999978524819 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-281", "NAME_": "KAWI-BUTA", "LOCATION": "Java", "LAT": -7.92, "LON": 112.45, "ELEV": 2651, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 112.449999978704909, -7.920000035181829 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-29=", "NAME_": "ARJUNO-WE", "LOCATION": "Java", "LAT": -7.725, "LON": 112.58, "ELEV": 3339, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 112.580000079399497, -7.725000093448855 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-291", "NAME_": "PENANGGUN", "LOCATION": "Java", "LAT": -7.62, "LON": 112.63, "ELEV": 1653, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 112.630000005423369, -7.620000060420665 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-292", "NAME_": "MALANG PL", "LOCATION": "Java", "LAT": -8.02, "LON": 112.68, "ELEV": 680, "TYPE_": "Maars", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 112.679999931447242, -8.020000096538524 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-30=", "NAME_": "SEMERU", "LOCATION": "Java", "LAT": -8.108, "LON": 112.92, "ELEV": 3676, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 112.920000036841543, -8.108000058436488 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-31=", "NAME_": "TENGGER C", "LOCATION": "Java", "LAT": -7.942, "LON": 112.95, "ELEV": 2329, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 112.950000076179435, -7.94200007798355 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-32=", "NAME_": "LAMONGAN", "LOCATION": "Java", "LAT": -8.0, "LON": 113.342, "ELEV": 1651, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 113.341999906452202, -8.000000000543608 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-33=", "NAME_": "IYANG-ARG", "LOCATION": "Java", "LAT": -7.97, "LON": 113.57, "ELEV": 3088, "TYPE_": "Complex v", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 113.569999912387743, -7.969999961205716 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-34=", "NAME_": "RAUNG", "LOCATION": "Java", "LAT": -8.125, "LON": 114.042, "ELEV": 3332, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 114.041999917331225, -8.124999920257792 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-35=", "NAME_": "IJEN", "LOCATION": "Java", "LAT": -8.058, "LON": 114.242, "ELEV": 2386, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 114.242000040044616, -8.057999923103679 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-351", "NAME_": "BALURAN", "LOCATION": "Java", "LAT": -7.85, "LON": 114.37, "ELEV": 1247, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 114.369999984623462, -7.85000001316304 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0604-001", "NAME_": "BRATAN", "LOCATION": "Lesser Su", "LAT": -8.28, "LON": 115.13, "ELEV": 2276, "TYPE_": "Caldera", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 115.13000007417827, -8.280000088618792 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0604-01=", "NAME_": "BATUR", "LOCATION": "Lesser Su", "LAT": -8.242, "LON": 115.375, "ELEV": 1717, "TYPE_": "Caldera", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 115.37499994193513, -8.242000052744714 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0604-02=", "NAME_": "AGUNG", "LOCATION": "Lesser Su", "LAT": -8.342, "LON": 115.508, "ELEV": 3142, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 115.508000067494379, -8.341999904792473 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0604-03=", "NAME_": "RINJANI", "LOCATION": "Lesser Su", "LAT": -8.42, "LON": 116.47, "ELEV": 3726, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 116.470000017260475, -8.419999923347447 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0604-04=", "NAME_": "TAMBORA", "LOCATION": "Lesser Su", "LAT": -8.25, "LON": 118.0, "ELEV": 2850, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 117.999999930404158, -8.250000049280885 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0604-05=", "NAME_": "SANGEANG", "LOCATION": "Lesser Su", "LAT": -8.18, "LON": 119.058, "ELEV": 1949, "TYPE_": "Complex v", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 119.058000047913367, -8.180000027262096 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0604-06=", "NAME_": "SANO, WAI", "LOCATION": "Lesser Su", "LAT": -8.68, "LON": 120.025, "ELEV": 903, "TYPE_": "Caldera", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 120.024999969350915, -8.679999915427715 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0604-07=", "NAME_": "POCO LEOK", "LOCATION": "Lesser Su", "LAT": -8.68, "LON": 120.48, "ELEV": 1675, "TYPE_": "Unknown", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 120.479999903164185, -8.679999915427715 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0604-071", "NAME_": "RANAKAH,", "LOCATION": "Lesser Su", "LAT": -8.62, "LON": 120.52, "ELEV": 2100, "TYPE_": "Lava dome", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Explosive & Crater Features", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 120.520000095153989, -8.620000046060838 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0604-08=", "NAME_": "INIERIE", "LOCATION": "Lesser Su", "LAT": -8.875, "LON": 120.95, "ELEV": 2245, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 120.949999961300819, -8.87500006646961 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0604-09=", "NAME_": "INIELIKA", "LOCATION": "Lesser Su", "LAT": -8.73, "LON": 120.98, "ELEV": 1559, "TYPE_": "Complex v", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 120.980000000638711, -8.730000050760523 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0604-10=", "NAME_": "EBULOBO", "LOCATION": "Lesser Su", "LAT": -8.808, "LON": 121.18, "ELEV": 2124, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 121.179999914043151, -8.808000069315497 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0604-12=", "NAME_": "SUKARIA C", "LOCATION": "Lesser Su", "LAT": -8.792, "LON": 121.77, "ELEV": 1500, "TYPE_": "Caldera", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 121.769999920222517, -8.792000076243141 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0604-13=", "NAME_": "NDETE NAP", "LOCATION": "Lesser Su", "LAT": -8.72, "LON": 121.78, "ELEV": 750, "TYPE_": "Fumarole", "STATUS": "Fumarolic", "TIME_FRAME": "?", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 121.780000072874429, -8.719999898108611 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0604-14=", "NAME_": "KELIMUTU", "LOCATION": "Lesser Su", "LAT": -8.758, "LON": 121.83, "ELEV": 1640, "TYPE_": "Complex v", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 121.829999998898302, -8.757999933982688 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0604-16=", "NAME_": "EGON", "LOCATION": "Lesser Su", "LAT": -8.67, "LON": 122.45, "ELEV": 1703, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 122.450000044415503, -8.669999972084725 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0604-17=", "NAME_": "ILIMUDA", "LOCATION": "Lesser Su", "LAT": -8.478, "LON": 122.671, "ELEV": 1100, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 122.670999922563851, -8.478000055216441 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0604-18=", "NAME_": "LEWOTOBI", "LOCATION": "Lesser Su", "LAT": -8.53, "LON": 122.775, "ELEV": 1703, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 122.775000086843079, -8.529999928047133 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0604-20=", "NAME_": "LEREBOLEN", "LOCATION": "Lesser Su", "LAT": -8.358, "LON": 122.842, "ELEV": 1117, "TYPE_": "Complex v", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 122.84200008399722, -8.357999897864829 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0604-21=", "NAME_": "RIANG KOT", "LOCATION": "Lesser Su", "LAT": -8.3, "LON": 122.892, "ELEV": 200, "TYPE_": "Fumarole", "STATUS": "Fumarolic", "TIME_FRAME": "?", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 122.892000010021093, -8.299999975304772 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0604-22=", "NAME_": "ILIBOLENG", "LOCATION": "Lesser Su", "LAT": -8.342, "LON": 123.258, "ELEV": 1659, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 123.257999903878499, -8.341999904792473 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0604-23=", "NAME_": "LEWOTOLO", "LOCATION": "Lesser Su", "LAT": -8.272, "LON": 123.505, "ELEV": 1423, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 123.504999927751101, -8.272000092082607 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0604-24=", "NAME_": "ILILABALE", "LOCATION": "Lesser Su", "LAT": -8.53, "LON": 123.42, "ELEV": 1018, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 123.419999990717827, -8.529999928047133 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0604-27=", "NAME_": "SIRUNG", "LOCATION": "Lesser Su", "LAT": -8.51, "LON": 124.148, "ELEV": 862, "TYPE_": "Complex v", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 124.148000094127894, -8.510000041361153 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0605-04=", "NAME_": "WURLALI", "LOCATION": "Banda Sea", "LAT": -7.125, "LON": 128.675, "ELEV": 868, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 128.674999939327449, -7.12499993461762 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0606-02=", "NAME_": "AMBANG", "LOCATION": "Sulawesi-", "LAT": 0.75, "LON": 124.42, "ELEV": 1795, "TYPE_": "Complex v", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 124.419999976357985, 0.750000030789579 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0606-03=", "NAME_": "SOPUTAN", "LOCATION": "Sulawesi-", "LAT": 1.108, "LON": 124.725, "ELEV": 1784, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 124.72499992279063, 1.1079999281108 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0606-04=", "NAME_": "SEMPU", "LOCATION": "Sulawesi-", "LAT": 1.142, "LON": 124.73, "ELEV": 1549, "TYPE_": "Caldera", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 124.730000103771033, 1.142000070371253 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0606-07-", "NAME_": "TONDANO C", "LOCATION": "Sulawesi-", "LAT": 1.23, "LON": 124.83, "ELEV": 1202, "TYPE_": "Caldera", "STATUS": "Fumarolic", "TIME_FRAME": "?", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 124.829999955818835, 1.230000032269217 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0606-10=", "NAME_": "LOKON-EMP", "LOCATION": "Sulawesi-", "LAT": 1.358, "LON": 124.792, "ELEV": 1580, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 124.791999919944715, 1.357999976848063 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0606-11=", "NAME_": "MAHAWU", "LOCATION": "Sulawesi-", "LAT": 1.358, "LON": 124.858, "ELEV": 1324, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 124.858000048349879, 1.357999976848063 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0606-12=", "NAME_": "KLABAT", "LOCATION": "Sulawesi-", "LAT": 1.47, "LON": 125.03, "ELEV": 1995, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 125.030000078532225, 1.469999928354568 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0606-13=", "NAME_": "TONGKOKO", "LOCATION": "Sulawesi-", "LAT": 1.52, "LON": 125.2, "ELEV": 1149, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 125.199999952598773, 1.520000063687377 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0608-01=", "NAME_": "DUKONO", "LOCATION": "Halmahera", "LAT": 1.7, "LON": 127.87, "ELEV": 1087, "TYPE_": "Complex v", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 127.869999895420221, 1.700000090405865 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0608-03=", "NAME_": "IBU", "LOCATION": "Halmahera", "LAT": 1.48, "LON": 127.63, "ELEV": 1325, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 127.629999999334871, 1.48000008100648 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0608-04=", "NAME_": "GAMKONORA", "LOCATION": "Halmahera", "LAT": 1.375, "LON": 127.52, "ELEV": 1635, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 127.519999994635157, 1.37500004797829 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0610-01-", "NAME_": "BOMBALAI", "LOCATION": "Borneo", "LAT": 4.4, "LON": 117.88, "ELEV": 531, "TYPE_": "Cone", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Asia", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 117.879999982361483, 4.40000007256522 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0700-01=", "NAME_": "BUD DAJO", "LOCATION": "Sulu Is-P", "LAT": 5.95, "LON": 121.07, "ELEV": 440, "TYPE_": "Pyroclast", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 121.069999909343494, 5.95000008170382 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0701-02=", "NAME_": "MATUTUM", "LOCATION": "Mindanao-", "LAT": 6.37, "LON": 125.108, "ELEV": 2293, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 125.108000097087199, 6.370000004507659 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0701-03=", "NAME_": "APO", "LOCATION": "Mindanao-", "LAT": 6.987, "LON": 125.273, "ELEV": 2954, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 125.272999999482238, 6.987000025160199 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0701-031", "NAME_": "LEONARD R", "LOCATION": "Mindanao-", "LAT": 7.393, "LON": 126.397, "ELEV": 800, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 126.397000036087661, 7.392999901698488 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0701-032", "NAME_": "UNNAMED", "LOCATION": "Mindanao-", "LAT": 7.443, "LON": 126.073, "ELEV": 1300, "TYPE_": "Unknown", "STATUS": "Hot Sprin", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 126.073000071717956, 7.443000037031297 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0701-04=", "NAME_": "MAKATURIN", "LOCATION": "Mindanao-", "LAT": 7.647, "LON": 124.32, "ELEV": 1940, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 124.31999991500129, 7.647000053358312 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0701-05=", "NAME_": "LATUKAN", "LOCATION": "Mindanao-", "LAT": 7.65, "LON": 124.47, "ELEV": 2158, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 124.469999902381858, 7.650000078223002 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0701-06=", "NAME_": "RAGANG", "LOCATION": "Mindanao-", "LAT": 7.67, "LON": 124.5, "ELEV": 2815, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 124.49999994171975, 7.669999964908982 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0701-061", "NAME_": "KALATUNGA", "LOCATION": "Mindanao-", "LAT": 7.95, "LON": 124.8, "ELEV": 2824, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 124.799999916480886, 7.950000052984151 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0701-07=", "NAME_": "CALAYO", "LOCATION": "Mindanao-", "LAT": 7.877, "LON": 125.068, "ELEV": 646, "TYPE_": "Tuff cone", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Asia", "Type": "Cone Types", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 125.067999905097338, 7.877000006100687 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0701-071", "NAME_": "MALINDANG", "LOCATION": "Mindanao-", "LAT": 8.22, "LON": 123.63, "ELEV": 2435, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 123.630000056774179, 8.219999988407409 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0701-072", "NAME_": "BALATOCAN", "LOCATION": "Mindanao-", "LAT": 8.8, "LON": 124.92, "ELEV": 2300, "TYPE_": "Compound", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 124.920000073832512, 8.800000051243742 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0701-08=", "NAME_": "HIBOK-HIB", "LOCATION": "Mindanao-", "LAT": 9.203, "LON": 124.673, "ELEV": 1332, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 124.67300004995991, 9.202999902917355 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0701-09-", "NAME_": "PACO", "LOCATION": "Mindanao-", "LAT": 9.593, "LON": 125.52, "ELEV": 524, "TYPE_": "Compound", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 125.520000023354839, 9.592999995692225 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0702-01=", "NAME_": "MAGASO", "LOCATION": "Philippin", "LAT": 9.258, "LON": 123.175, "ELEV": 1904, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 123.174999913652016, 9.258000009921659 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0702-02=", "NAME_": "CANLAON", "LOCATION": "Philippin", "LAT": 10.412, "LON": 123.132, "ELEV": 2435, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 123.131999906106444, 10.412000085864975 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0702-03=", "NAME_": "MANDALAGA", "LOCATION": "Philippin", "LAT": 10.615, "LON": 123.22, "ELEV": 1879, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 123.22000007731333, 10.615000024134119 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0702-04=", "NAME_": "SILAY", "LOCATION": "Philippin", "LAT": 10.77, "LON": 123.23, "ELEV": 1535, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 123.230000020656348, 10.769999983186182 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0702-05=", "NAME_": "CABALIAN", "LOCATION": "Philippin", "LAT": 10.287, "LON": 125.22, "ELEV": 945, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 125.220000048593704, 10.286999956841868 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0702-07=", "NAME_": "MAHAGNOA", "LOCATION": "Philippin", "LAT": 10.872, "LON": 124.853, "ELEV": 800, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 124.853000076678427, 10.871999991349696 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0702-08=", "NAME_": "BILIRAN", "LOCATION": "Philippin", "LAT": 11.523, "LON": 124.534, "ELEV": 1187, "TYPE_": "Compound", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 124.534000083980231, 11.522999944953767 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0703-01=", "NAME_": "BULUSAN", "LOCATION": "Luzon-Phi", "LAT": 12.77, "LON": 124.05, "ELEV": 1565, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 124.04999997957799, 12.769999954466527 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0703-02=", "NAME_": "POCDOL MO", "LOCATION": "Luzon-Phi", "LAT": 13.05, "LON": 123.958, "ELEV": 1102, "TYPE_": "Compound", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 123.957999914757522, 13.050000042541711 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0703-03=", "NAME_": "MAYON", "LOCATION": "Luzon-Phi", "LAT": 13.257, "LON": 123.685, "ELEV": 2462, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 123.684999954469561, 13.257000083733402 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0703-031", "NAME_": "MASARAGA", "LOCATION": "Luzon-Phi", "LAT": 13.32, "LON": 123.6, "ELEV": 1328, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 123.600000017436287, 13.319999977964969 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0703-04=", "NAME_": "MALINAO", "LOCATION": "Luzon-Phi", "LAT": 13.422, "LON": 123.597, "ELEV": 1548, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 123.596999992571568, 13.421999986128469 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0703-041", "NAME_": "IRIGA", "LOCATION": "Luzon-Phi", "LAT": 13.457, "LON": 123.457, "ELEV": 1196, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D5", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1500-1699", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 123.456999948534019, 13.456999997137871 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0703-042", "NAME_": "ISAROG", "LOCATION": "Luzon-Phi", "LAT": 13.658, "LON": 123.37, "ELEV": 1966, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 123.370000064693897, 13.657999988600196 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0703-043", "NAME_": "LABO", "LOCATION": "Luzon-Phi", "LAT": 14.02, "LON": 122.792, "ELEV": 1544, "TYPE_": "Compound", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 122.791999948664397, 14.019999988843978 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0703-044", "NAME_": "MALINDIG", "LOCATION": "Luzon-Phi", "LAT": 13.24, "LON": 122.018, "ELEV": 1157, "TYPE_": "Stratovol", "STATUS": "Hot Sprin", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 122.018000022152989, 13.240000012603176 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0703-05=", "NAME_": "BANAHAW", "LOCATION": "Luzon-Phi", "LAT": 14.07, "LON": 121.48, "ELEV": 2177, "TYPE_": "Complex v", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 121.480000098113237, 14.069999914867864 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0703-051", "NAME_": "LAGUNA VO", "LOCATION": "Luzon-Phi", "LAT": 14.12, "LON": 121.3, "ELEV": 654, "TYPE_": "Scoria co", "STATUS": "Anthropol", "TIME_FRAME": "D6", "CONTINENT": "Asia", "Type": "Cone Types", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 121.300000071394777, 14.120000050200673 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0703-06=", "NAME_": "MAQUILING", "LOCATION": "Luzon-Phi", "LAT": 14.13, "LON": 121.2, "ELEV": 1090, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 121.200000010038082, 14.129999993543663 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0703-07=", "NAME_": "TAAL", "LOCATION": "Luzon-Phi", "LAT": 14.002, "LON": 120.993, "ELEV": 400, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 120.992999968846391, 14.002000048964803 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0703-08=", "NAME_": "JALAJALA", "LOCATION": "Luzon-Phi", "LAT": 14.35, "LON": 121.33, "ELEV": 743, "TYPE_": "Fumarole", "STATUS": "Fumarolic", "TIME_FRAME": "?", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 121.329999901423776, 14.350000002943034 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0703-081", "NAME_": "MARIVELES", "LOCATION": "Luzon-Phi", "LAT": 14.5, "LON": 120.5, "ELEV": 1420, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 120.499999999159058, 14.499999990323616 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0703-082", "NAME_": "NATIB", "LOCATION": "Luzon-Phi", "LAT": 14.705, "LON": 120.4, "ELEV": 1287, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 120.399999937802363, 14.705000084708502 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0703-083", "NAME_": "PINATUBO", "LOCATION": "Luzon-Phi", "LAT": 15.13, "LON": 120.35, "ELEV": 1600, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 120.350000011778491, 15.129999979183836 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0703-084", "NAME_": "ARAYAT", "LOCATION": "Luzon-Phi", "LAT": 15.2, "LON": 120.742, "ELEV": 1026, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 120.742000051360151, 15.200000001202625 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0703-085", "NAME_": "AMORONG", "LOCATION": "Luzon-Phi", "LAT": 15.828, "LON": 120.805, "ELEV": 376, "TYPE_": "Unknown", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 120.804999945591703, 15.828000043256026 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0703-086", "NAME_": "SANTO TOM", "LOCATION": "Luzon-Phi", "LAT": 16.33, "LON": 120.55, "ELEV": 2260, "TYPE_": "Stratovol", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 120.549999925182931, 16.3300000875374 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0703-087", "NAME_": "PATOC", "LOCATION": "Luzon-Phi", "LAT": 17.147, "LON": 120.98, "ELEV": 1865, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 120.980000000638711, 17.147000021594394 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0703-088", "NAME_": "BINULUAN", "LOCATION": "Luzon-Phi", "LAT": 17.308, "LON": 121.093, "ELEV": 2329, "TYPE_": "Compound", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 121.093000030203086, 17.308000030375837 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0703-089", "NAME_": "AMBALATUN", "LOCATION": "Luzon-Phi", "LAT": 17.32, "LON": 121.1, "ELEV": 0, "TYPE_": "Compound", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 121.099999948681386, 17.319999920525646 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0703-09=", "NAME_": "CAGUA", "LOCATION": "Luzon-Phi", "LAT": 18.222, "LON": 122.123, "ELEV": 1133, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 122.123000055181137, 18.222000000924865 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0704-01=", "NAME_": "CAMIGUIN", "LOCATION": "Luzon-N o", "LAT": 18.83, "LON": 121.86, "ELEV": 712, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 121.860000038236194, 18.829999946983349 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0705-01-", "NAME_": "LEIZHOU B", "LOCATION": "SE Asia", "LAT": 20.83, "LON": 109.78, "ELEV": 259, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 109.780000035883461, 20.829999918263695 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0705-03-", "NAME_": "TOROENG P", "LOCATION": "SE Asia", "LAT": 14.93, "LON": 108.0, "ELEV": 800, "TYPE_": "Unknown", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 108.000000074002457, 14.930000065779367 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0705-04-", "NAME_": "HAUT DONG", "LOCATION": "SE Asia", "LAT": 11.6, "LON": 108.2, "ELEV": 1000, "TYPE_": "Volcanic", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 108.199999987406954, 11.600000094759793 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0705-05-", "NAME_": "BAS DONG", "LOCATION": "SE Asia", "LAT": 10.8, "LON": 107.2, "ELEV": 392, "TYPE_": "Volcanic", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 107.200000001766796, 10.800000022524088 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0705-08-", "NAME_": "POPA", "LOCATION": "SE Asia", "LAT": 20.87, "LON": 95.23, "ELEV": 1518, "TYPE_": "Stratovol", "STATUS": "Anthropol", "TIME_FRAME": "D7", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 95.23000000411372, 20.869999900944592 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0705-09-", "NAME_": "LOWER CHI", "LOCATION": "SE Asia", "LAT": 22.28, "LON": 95.1, "ELEV": 385, "TYPE_": "Volcanic", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 95.099999903419075, 22.280000075354536 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0705-10-", "NAME_": "SINGU PLA", "LOCATION": "SE Asia", "LAT": 22.7, "LON": 95.98, "ELEV": 507, "TYPE_": "Fissure v", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 95.979999941016615, 22.699999998158376 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0705-11-", "NAME_": "TENGCHONG", "LOCATION": "China-S", "LAT": 25.32, "LON": 98.47, "ELEV": 2865, "TYPE_": "Pyroclast", "STATUS": "Historica", "TIME_FRAME": "D5", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "1500-1699", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 98.470000066428497, 25.320000014955937 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0801-032", "NAME_": "DATUN GRO", "LOCATION": "Taiwan", "LAT": 25.17, "LON": 121.52, "ELEV": 1130, "TYPE_": "Stratovol", "STATUS": "Pleistoce", "TIME_FRAME": "Q", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 121.520000080794148, 25.170000027575355 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0802-07=", "NAME_": "IBUSUKI V", "LOCATION": "Kyushu-Ja", "LAT": 31.22, "LON": 130.57, "ELEV": 922, "TYPE_": "Calderas", "STATUS": "Historica", "TIME_FRAME": "D6", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 130.570000086888513, 31.220000076749187 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0802-08=", "NAME_": "SAKURA-JI", "LOCATION": "Kyushu-Ja", "LAT": 31.58, "LON": 130.67, "ELEV": 1117, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 130.669999938936257, 31.579999920877214 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0802-081", "NAME_": "SUMIYOSHI", "LOCATION": "Kyushu-Ja", "LAT": 31.768, "LON": 130.594, "ELEV": 100, "TYPE_": "Maars", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "Asia", "Type": "Explosive & Crater Features", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 130.594000076497025, 31.767999944131873 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0802-09=", "NAME_": "KIRISHIMA", "LOCATION": "Kyushu-Ja", "LAT": 31.93, "LON": 130.87, "ELEV": 1700, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 130.870000061649648, 31.9300000309712 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0802-10=", "NAME_": "UNZEN", "LOCATION": "Kyushu-Ja", "LAT": 32.75, "LON": 130.3, "ELEV": 1359, "TYPE_": "Complex v", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 130.299999942156319, 32.749999989892899 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0802-11=", "NAME_": "ASO", "LOCATION": "Kyushu-Ja", "LAT": 32.88, "LON": 131.1, "ELEV": 1592, "TYPE_": "Caldera", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 131.100000014392037, 32.880000090587487 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0802-12=", "NAME_": "KUJU GROU", "LOCATION": "Kyushu-Ja", "LAT": 33.08, "LON": 131.25, "ELEV": 1788, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D5", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1500-1699", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 131.250000001772605, 33.080000003991955 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0802-13=", "NAME_": "TSURUMI", "LOCATION": "Kyushu-Ja", "LAT": 33.28, "LON": 131.43, "ELEV": 1374, "TYPE_": "Lava dome", "STATUS": "Historica", "TIME_FRAME": "D6", "CONTINENT": "Asia", "Type": "Explosive & Crater Features", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 131.430000028491065, 33.279999917396395 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-001", "NAME_": "ABU", "LOCATION": "Honshu-Ja", "LAT": 34.5, "LON": 131.6, "ELEV": 571, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 131.59999990255767, 34.499999912435953 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-002", "NAME_": "SANBE", "LOCATION": "Honshu-Ja", "LAT": 35.13, "LON": 132.62, "ELEV": 1126, "TYPE_": "Caldera", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 132.619999984192702, 35.129999901296173 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-003", "NAME_": "OKI-DOGO", "LOCATION": "Honshu-Ja", "LAT": 36.17, "LON": 133.33, "ELEV": 151, "TYPE_": "Shield vo", "STATUS": "Anthropol", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 133.329999938414744, 36.170000078926165 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-004", "NAME_": "DAISEN", "LOCATION": "Honshu-Ja", "LAT": 35.37, "LON": 133.55, "ELEV": 1731, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 133.549999947814115, 35.370000006690447 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-005", "NAME_": "KANNABE", "LOCATION": "Honshu-Ja", "LAT": 35.5, "LON": 134.68, "ELEV": 460, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 134.680000034148861, 35.499999898076112 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-01=", "NAME_": "IZU-TOBU", "LOCATION": "Honshu-Ja", "LAT": 34.92, "LON": 139.12, "ELEV": 1406, "TYPE_": "Pyroclast", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 139.119999995508294, 34.920000044548715 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-02=", "NAME_": "HAKONE", "LOCATION": "Honshu-Ja", "LAT": 35.22, "LON": 139.02, "ELEV": 1438, "TYPE_": "Complex v", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 139.019999934151599, 35.220000019309879 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-03=", "NAME_": "FUJI", "LOCATION": "Honshu-Ja", "LAT": 35.35, "LON": 138.73, "ELEV": 3776, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D4", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1700-1799", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 138.729999902733425, 35.349999910695544 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-031", "NAME_": "TATESHINA", "LOCATION": "Honshu-Ja", "LAT": 36.1, "LON": 138.3, "ELEV": 2530, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 138.300000036586596, 36.100000056907362 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-04=", "NAME_": "ON-TAKE", "LOCATION": "Honshu-Ja", "LAT": 35.9, "LON": 137.48, "ELEV": 3063, "TYPE_": "Complex v", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 137.480000077664897, 35.899999934193971 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-05=", "NAME_": "HAKU-SAN", "LOCATION": "Honshu-Ja", "LAT": 36.15, "LON": 136.78, "ELEV": 2702, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D5", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1500-1699", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 136.780000066785931, 36.149999982931263 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-06=", "NAME_": "NORIKURA", "LOCATION": "Honshu-Ja", "LAT": 36.12, "LON": 137.55, "ELEV": 3026, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 137.5500000996837, 36.119999943593342 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-07=", "NAME_": "YAKE-DAKE", "LOCATION": "Honshu-Ja", "LAT": 36.22, "LON": 137.58, "ELEV": 2455, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 137.579999929712699, 36.220000004950037 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-08=", "NAME_": "TATE-YAMA", "LOCATION": "Honshu-Ja", "LAT": 36.57, "LON": 137.6, "ELEV": 2621, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 137.600000025707573, 36.569999905735074 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-09=", "NAME_": "NIIGATA-Y", "LOCATION": "Honshu-Ja", "LAT": 36.92, "LON": 138.03, "ELEV": 2400, "TYPE_": "Lava dome", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Explosive & Crater Features", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 138.030000101163353, 36.920000015829061 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-10=", "NAME_": "MYOKO", "LOCATION": "Honshu-Ja", "LAT": 36.88, "LON": 138.12, "ELEV": 2446, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 138.120000009868136, 36.880000033148178 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-101", "NAME_": "KUROHIME", "LOCATION": "Honshu-Ja", "LAT": 36.8, "LON": 138.13, "ELEV": 2053, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 138.129999953211097, 36.800000067786385 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-102", "NAME_": "IIZUNA", "LOCATION": "Honshu-Ja", "LAT": 36.73, "LON": 138.13, "ELEV": 1917, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 138.129999953211097, 36.730000045767582 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-11=", "NAME_": "ASAMA", "LOCATION": "Honshu-Ja", "LAT": 36.4, "LON": 138.53, "ELEV": 2560, "TYPE_": "Complex v", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 138.529999989328985, 36.400000031668526 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-12=", "NAME_": "KUSATSU-S", "LOCATION": "Honshu-Ja", "LAT": 36.62, "LON": 138.55, "ELEV": 2176, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 138.550000085323859, 36.620000041067897 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-121", "NAME_": "SHIGA", "LOCATION": "Honshu-Ja", "LAT": 36.7, "LON": 138.52, "ELEV": 2036, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 138.520000045985967, 36.70000000642969 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-122", "NAME_": "HARUNA", "LOCATION": "Honshu-Ja", "LAT": 36.47, "LON": 138.88, "ELEV": 1449, "TYPE_": "Stratovol", "STATUS": "Anthropol", "TIME_FRAME": "D6", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 138.880000099422944, 36.470000053687329 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-13=", "NAME_": "AKAGI", "LOCATION": "Honshu-Ja", "LAT": 36.53, "LON": 139.18, "ELEV": 1828, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D6", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 139.180000074184079, 36.529999923054191 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-131", "NAME_": "HIUCHI", "LOCATION": "Honshu-Ja", "LAT": 36.95, "LON": 139.28, "ELEV": 2346, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 139.279999926231881, 36.950000055166953 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-14=", "NAME_": "NIKKO-SHI", "LOCATION": "Honshu-Ja", "LAT": 36.8, "LON": 139.38, "ELEV": 2578, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 139.379999987588576, 36.800000067786385 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-141", "NAME_": "NANTAI", "LOCATION": "Honshu-Ja", "LAT": 36.77, "LON": 139.5, "ELEV": 2484, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 139.499999935631251, 36.770000028448464 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-142", "NAME_": "OMANAGO G", "LOCATION": "Honshu-Ja", "LAT": 36.78, "LON": 139.5, "ELEV": 2375, "TYPE_": "Lava dome", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 139.499999935631251, 36.779999971791483 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-143", "NAME_": "TAKAHARA", "LOCATION": "Honshu-Ja", "LAT": 36.9, "LON": 139.78, "ELEV": 1795, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 139.780000023706407, 36.899999919834158 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-15=", "NAME_": "NASU", "LOCATION": "Honshu-Ja", "LAT": 37.12, "LON": 139.97, "ELEV": 1917, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 139.969999993767885, 37.119999929233529 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-151", "NAME_": "NUMAZAWA", "LOCATION": "Honshu-Ja", "LAT": 37.43, "LON": 139.58, "ELEV": 1100, "TYPE_": "Shield vo", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 139.579999900993016, 37.430000056646605 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-16=", "NAME_": "BANDAI", "LOCATION": "Honshu-Ja", "LAT": 37.6, "LON": 140.08, "ELEV": 1819, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 140.079999998467599, 37.599999930713153 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-17=", "NAME_": "ADATARA", "LOCATION": "Honshu-Ja", "LAT": 37.62, "LON": 140.28, "ELEV": 1718, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 140.279999911872039, 37.620000026708055 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-18=", "NAME_": "AZUMA", "LOCATION": "Honshu-Ja", "LAT": 37.73, "LON": 140.25, "ELEV": 2024, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 140.250000081843041, 37.730000031407769 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-19=", "NAME_": "ZAO", "LOCATION": "Honshu-Ja", "LAT": 38.15, "LON": 140.45, "ELEV": 1841, "TYPE_": "Complex v", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 140.449999995247538, 38.14999995421158 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-191", "NAME_": "HIJIORI", "LOCATION": "Honshu-Ja", "LAT": 38.6, "LON": 140.18, "ELEV": 516, "TYPE_": "Caldera", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 140.180000059824295, 38.59999991635334 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-20=", "NAME_": "NARUGO", "LOCATION": "Honshu-Ja", "LAT": 38.73, "LON": 140.73, "ELEV": 462, "TYPE_": "Lava dome", "STATUS": "Historica", "TIME_FRAME": "D6", "CONTINENT": "Asia", "Type": "Explosive & Crater Features", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 140.730000083322693, 38.730000017047928 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-21=", "NAME_": "KURIKOMA", "LOCATION": "Honshu-Ja", "LAT": 38.95, "LON": 140.78, "ELEV": 1628, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 140.780000009346566, 38.950000026447299 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-22=", "NAME_": "CHOKAI", "LOCATION": "Honshu-Ja", "LAT": 39.08, "LON": 140.03, "ELEV": 2230, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 140.03000007244367, 39.079999917832964 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-23=", "NAME_": "AKITA-KOM", "LOCATION": "Japan", "LAT": 39.75, "LON": 140.8, "ELEV": 1637, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 140.799999896032546, 39.750000098683017 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-24=", "NAME_": "IWATE", "LOCATION": "Honshu-Ja", "LAT": 39.85, "LON": 141.0, "ELEV": 2041, "TYPE_": "Complex v", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 141.000000018745936, 39.849999950730762 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-25=", "NAME_": "HACHIMANT", "LOCATION": "Honshu-Ja", "LAT": 39.95, "LON": 140.85, "ELEV": 1614, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 140.850000031365369, 39.950000012087457 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-26=", "NAME_": "AKITA-YAK", "LOCATION": "Honshu-Ja", "LAT": 39.97, "LON": 140.77, "ELEV": 1366, "TYPE_": "Complex v", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 140.770000066003604, 39.969999898773466 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-261", "NAME_": "KANPU", "LOCATION": "Honshu-Ja", "LAT": 39.93, "LON": 139.88, "ELEV": 355, "TYPE_": "Lava dome", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 139.880000085063102, 39.929999916092555 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-262", "NAME_": "MEGATA", "LOCATION": "Honshu-Ja", "LAT": 39.95, "LON": 139.73, "ELEV": 291, "TYPE_": "Maars", "STATUS": "Tephrochr", "TIME_FRAME": "D7", "CONTINENT": "Asia", "Type": "Explosive & Crater Features", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 139.730000097682534, 39.950000012087457 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-27=", "NAME_": "IWAKI", "LOCATION": "Honshu-Ja", "LAT": 40.65, "LON": 140.3, "ELEV": 1625, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 140.30000000786697, 40.650000022966481 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-271", "NAME_": "TOWADA", "LOCATION": "Honshu-Ja", "LAT": 40.47, "LON": 140.92, "ELEV": 1159, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D6", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 140.920000053384172, 40.469999996247992 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-28=", "NAME_": "HAKKODA G", "LOCATION": "Honshu-Ja", "LAT": 40.65, "LON": 140.88, "ELEV": 1585, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 140.880000070703261, 40.650000022966481 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-29=", "NAME_": "OSORE-YAM", "LOCATION": "Honshu-Ja", "LAT": 41.32, "LON": 141.08, "ELEV": 879, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D4", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1700-1799", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 141.079999984107758, 41.319999994507583 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0803-30-", "NAME_": "MUTSU-HIU", "LOCATION": "Honshu-Ja", "LAT": 41.43, "LON": 141.07, "ELEV": 781, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 141.070000040764739, 41.429999999207269 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0805-011", "NAME_": "E-SAN", "LOCATION": "Hokkaido-", "LAT": 41.8, "LON": 141.17, "ELEV": 618, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 141.170000102121435, 41.799999995987235 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0805-02=", "NAME_": "KOMAGA-TA", "LOCATION": "Hokkaido-", "LAT": 42.07, "LON": 140.68, "ELEV": 1140, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 140.67999994798987, 42.069999931410479 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0805-021", "NAME_": "NIGORIGAW", "LOCATION": "Hokkaido-", "LAT": 42.12, "LON": 140.45, "ELEV": 356, "TYPE_": "Hydrother", "STATUS": "Pleistoce", "TIME_FRAME": "Q", "CONTINENT": "Asia", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 140.449999995247538, 42.120000066743302 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0805-03=", "NAME_": "USU", "LOCATION": "Hokkaido-", "LAT": 42.53, "LON": 140.83, "ELEV": 731, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 140.829999935370495, 42.530000046204151 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0805-031", "NAME_": "IWAONUPUR", "LOCATION": "Hokkaido-", "LAT": 42.88, "LON": 140.63, "ELEV": 1154, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 140.630000021965998, 42.879999946989187 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0805-032", "NAME_": "YOTEI", "LOCATION": "Hokkaido-", "LAT": 42.83, "LON": 140.82, "ELEV": 1893, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 140.819999992027476, 42.830000020965315 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0805-033", "NAME_": "SHIRIBETS", "LOCATION": "Hokkaido-", "LAT": 42.767, "LON": 140.916, "ELEV": 1107, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 140.915999950461639, 42.766999917424812 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0805-034", "NAME_": "KUTTARA", "LOCATION": "Hokkaido-", "LAT": 42.5, "LON": 141.18, "ELEV": 581, "TYPE_": "Stratovol", "STATUS": "Tephrochr", "TIME_FRAME": "D3", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 141.180000045464453, 42.50000000686623 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0805-04=", "NAME_": "SHIKOTSU", "LOCATION": "Hokkaido-", "LAT": 42.7, "LON": 141.333, "ELEV": 1320, "TYPE_": "Caldera", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 141.333000057709683, 42.699999920270699 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0805-041", "NAME_": "RISHIRI", "LOCATION": "Hokkaido-", "LAT": 45.18, "LON": 141.25, "ELEV": 1719, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 141.250000067483256, 45.180000102339619 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0805-05=", "NAME_": "TOKACHI", "LOCATION": "Hokkaido-", "LAT": 43.42, "LON": 142.68, "ELEV": 2077, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 142.679999919270244, 43.420000027144624 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0805-06=", "NAME_": "DAISETSU", "LOCATION": "Hokkaido-", "LAT": 43.68, "LON": 142.88, "ELEV": 2290, "TYPE_": "Stratovol", "STATUS": "Tephrochr", "TIME_FRAME": "D6", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 142.880000041983635, 43.680000019224906 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0805-061", "NAME_": "NIPESOTSU", "LOCATION": "Japan", "LAT": 43.45, "LON": 143.03, "ELEV": 2013, "TYPE_": "Lava dome", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Asia", "Type": "Explosive & Crater Features", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 143.030000029364203, 43.450000066482545 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0805-062", "NAME_": "SHIKARIBE", "LOCATION": "Hokkaido-", "LAT": 43.28, "LON": 143.08, "ELEV": 1430, "TYPE_": "Lava dome", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 143.079999955388075, 43.279999983107047 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0805-07=", "NAME_": "AKAN", "LOCATION": "Hokkaido-", "LAT": 43.38, "LON": 144.02, "ELEV": 1499, "TYPE_": "Caldera", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 144.0200000716614, 43.380000044463742 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0805-08=", "NAME_": "KUTCHARO", "LOCATION": "Hokkaido-", "LAT": 43.55, "LON": 144.43, "ELEV": 1000, "TYPE_": "Caldera", "STATUS": "Tephrochr", "TIME_FRAME": "D6", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 144.430000051122249, 43.54999991853029 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0805-081", "NAME_": "MASHU", "LOCATION": "Hokkaido-", "LAT": 43.57, "LON": 144.57, "ELEV": 855, "TYPE_": "Caldera", "STATUS": "Radiocarb", "TIME_FRAME": "D6", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 144.570000095159799, 43.57000001452522 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0805-082", "NAME_": "RAUSU", "LOCATION": "Hokkaido-", "LAT": 44.073, "LON": 145.125, "ELEV": 1660, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 145.125000090329763, 44.072999927555514 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0805-09=", "NAME_": "SHIRETOKO", "LOCATION": "Hokkaido", "LAT": 44.13, "LON": 145.17, "ELEV": 1563, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 145.170000044682126, 44.129999981366637 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-01=", "NAME_": "GOLOVNIN", "LOCATION": "Kurile Is", "LAT": 43.85, "LON": 145.53, "ELEV": 541, "TYPE_": "Caldera", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 145.530000098119103, 43.850000102600376 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-02=", "NAME_": "MENDELEEV", "LOCATION": "Kurile Is", "LAT": 43.98, "LON": 145.7, "ELEV": 887, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 145.699999972185651, 43.979999993986041 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-021", "NAME_": "SMIRNOV", "LOCATION": "Kurile Is", "LAT": 44.43, "LON": 146.13, "ELEV": 1189, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 146.130000047641431, 44.429999956127801 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-03=", "NAME_": "TIATIA", "LOCATION": "Kurile Is", "LAT": 44.358, "LON": 146.27, "ELEV": 1819, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 146.27000009167898, 44.357999987302179 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-04=", "NAME_": "BERUTARUB", "LOCATION": "Kurile Is", "LAT": 44.47, "LON": 146.93, "ELEV": 1220, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 146.929999910568199, 44.469999938808684 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-06-", "NAME_": "BOGATYR R", "LOCATION": "Kurile Is", "LAT": 44.83, "LON": 147.37, "ELEV": 1634, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 147.369999929366941, 44.829999992245632 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-07=", "NAME_": "GROZNY GR", "LOCATION": "Kurile Is", "LAT": 45.02, "LON": 147.87, "ELEV": 1211, "TYPE_": "Complex v", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 147.870000026841467, 45.019999962307111 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-08=", "NAME_": "BARANSKY", "LOCATION": "Kurile Is", "LAT": 45.1, "LON": 148.02, "ELEV": 1132, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 148.020000014222092, 45.099999927668904 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-09=", "NAME_": "CHIRIP", "LOCATION": "Kurile Is", "LAT": 45.38, "LON": 147.92, "ELEV": 1589, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 147.919999952865396, 45.380000015744088 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-091", "NAME_": "GOLETS-TO", "LOCATION": "Kurile Is", "LAT": 45.25, "LON": 148.35, "ELEV": 442, "TYPE_": "Pyroclast", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 148.350000028321119, 45.249999915049472 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-10=", "NAME_": "MEDVEZHIA", "LOCATION": "Kurile Is", "LAT": 45.38, "LON": 148.83, "ELEV": 1124, "TYPE_": "Somma vol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 148.830000029800772, 45.380000015744088 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-111", "NAME_": "IVAO GROU", "LOCATION": "Kurile Is", "LAT": 45.77, "LON": 149.68, "ELEV": 1426, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 149.680000028060363, 45.769999899210006 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-112", "NAME_": "RUDAKOV", "LOCATION": "Kurile Is", "LAT": 45.88, "LON": 149.83, "ELEV": 542, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 149.83000001544093, 45.879999903909692 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-113", "NAME_": "TRI SESTR", "LOCATION": "Kurile Is", "LAT": 45.93, "LON": 149.92, "ELEV": 998, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 149.919999924145714, 45.930000039242515 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-12=", "NAME_": "KOLOKOL G", "LOCATION": "Kurile Is", "LAT": 46.042, "LON": 150.05, "ELEV": 1328, "TYPE_": "Somma vol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 150.050000024840301, 46.041999990749019 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-17A", "NAME_": "MILNE", "LOCATION": "Kurile Is", "LAT": 46.82, "LON": 151.78, "ELEV": 1540, "TYPE_": "Somma vol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 151.780000060697375, 46.820000020182988 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-17B", "NAME_": "GORIASCHA", "LOCATION": "Kurile Is", "LAT": 46.83, "LON": 151.75, "ELEV": 891, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 151.750000021359483, 46.829999963525978 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-18=", "NAME_": "ZAVARITZK", "LOCATION": "Kurile Is", "LAT": 46.925, "LON": 151.95, "ELEV": 624, "TYPE_": "Caldera", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 151.949999934763923, 46.925000053211193 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-19=", "NAME_": "PREVO PEA", "LOCATION": "Kurile Is", "LAT": 47.02, "LON": 152.12, "ELEV": 1360, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 152.120000018139422, 47.019999933587457 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-191", "NAME_": "URATAMAN", "LOCATION": "Kurile Is", "LAT": 47.12, "LON": 152.23, "ELEV": 678, "TYPE_": "Somma vol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 152.230000022839135, 47.119999994944152 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-28=", "NAME_": "KUNTOMINT", "LOCATION": "Kurile Is", "LAT": 48.77, "LON": 154.02, "ELEV": 828, "TYPE_": "Hydrother", "STATUS": "Pleistoce", "TIME_FRAME": "Q", "CONTINENT": "Asia", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 154.0199999280631, 48.770000065439461 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-29=", "NAME_": "SINARKA", "LOCATION": "Kurile Is", "LAT": 48.875, "LON": 154.175, "ELEV": 934, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 154.175000096424071, 48.875000098467638 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-30=", "NAME_": "HARIMKOTA", "LOCATION": "Kurile Is", "LAT": 49.12, "LON": 154.508, "ELEV": 1145, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 154.507999926078924, 49.119999966224498 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-31=", "NAME_": "TAO-RUSYR", "LOCATION": "Kurile Is", "LAT": 49.35, "LON": 154.7, "ELEV": 1325, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 154.700000052256144, 49.349999918966859 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-32=", "NAME_": "NEMO PEAK", "LOCATION": "Kurile Is", "LAT": 49.57, "LON": 154.808, "ELEV": 1018, "TYPE_": "Caldera", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 154.807999900840059, 49.569999928366229 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-34=", "NAME_": "FUSS PEAK", "LOCATION": "Kurile Is", "LAT": 50.27, "LON": 155.25, "ELEV": 1772, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 155.250000075754542, 50.269999939245253 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-35=", "NAME_": "KARPINSKY", "LOCATION": "Kurile Is", "LAT": 50.13, "LON": 155.37, "ELEV": 1345, "TYPE_": "Cones", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Cone Types", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 155.370000023797218, 50.130000104516597 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-351", "NAME_": "LOMONOSOV", "LOCATION": "Kurile Is", "LAT": 50.25, "LON": 155.43, "ELEV": 1681, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 155.430000102473002, 50.250000052559272 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-36=", "NAME_": "CHIKURACH", "LOCATION": "Kurile Is", "LAT": 50.325, "LON": 155.458, "ELEV": 1816, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 155.45799998569521, 50.325000046249556 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-37-", "NAME_": "VERNADSKI", "LOCATION": "Kurile Is", "LAT": 50.55, "LON": 155.97, "ELEV": 1183, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 155.969999973319545, 50.550000027320408 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-38=", "NAME_": "EBEKO", "LOCATION": "Kurile Is", "LAT": 50.68, "LON": 156.02, "ELEV": 1156, "TYPE_": "Somma vol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 156.019999899343418, 50.679999918706102 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-39=", "NAME_": "ALAID", "LOCATION": "Kurile Is", "LAT": 50.858, "LON": 155.55, "ELEV": 2339, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 155.550000050515735, 50.857999998617743 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-01=", "NAME_": "KAMBALNY", "LOCATION": "Kamchatka", "LAT": 51.3, "LON": 156.87, "ELEV": 2156, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 156.869999897603009, 51.299999964223304 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-02=", "NAME_": "KOSHELEV", "LOCATION": "Kamchatka", "LAT": 51.357, "LON": 156.75, "ELEV": 1812, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D5", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1500-1699", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 156.749999949560333, 51.357000018034427 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-021", "NAME_": "UNNAMED", "LOCATION": "Kamchatka", "LAT": 51.6, "LON": 156.55, "ELEV": 298, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 156.550000036155893, 51.599999938984467 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-022", "NAME_": "PAUZHETKA", "LOCATION": "Kamchatka", "LAT": 51.43, "LON": 156.93, "ELEV": 1331, "TYPE_": "Calderas", "STATUS": "Radiocarb", "TIME_FRAME": "D6", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 156.92999997627885, 51.43000006491792 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-03=", "NAME_": "ILYINSKY", "LOCATION": "Kamchatka", "LAT": 51.49, "LON": 157.2, "ELEV": 1578, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 157.199999911702093, 51.489999934284782 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-04=", "NAME_": "ZHELTOVSK", "LOCATION": "Kamchatka", "LAT": 51.57, "LON": 157.323, "ELEV": 1953, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 157.323000093918381, 51.569999899646575 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-041", "NAME_": "KELL", "LOCATION": "Kamchatka", "LAT": 51.65, "LON": 157.35, "ELEV": 900, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 157.349999899082661, 51.65000007431729 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-042", "NAME_": "BELEN'KAY", "LOCATION": "Kamchatka", "LAT": 51.75, "LON": 157.27, "ELEV": 892, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 157.269999933720896, 51.749999926365064 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-05=", "NAME_": "KSUDACH", "LOCATION": "Kamchatka", "LAT": 51.8, "LON": 157.53, "ELEV": 1079, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 157.529999925801121, 51.800000061697858 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-051", "NAME_": "OZERNOY", "LOCATION": "Kamchatka", "LAT": 51.88, "LON": 157.38, "ELEV": 562, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 157.379999938420553, 51.880000027059651 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-052", "NAME_": "PLOSKY VO", "LOCATION": "Kamchatka", "LAT": 52.02, "LON": 157.53, "ELEV": 681, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 157.529999925801121, 52.020000071097229 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-053", "NAME_": "KHODUTKA", "LOCATION": "Kamchatka", "LAT": 52.063, "LON": 157.703, "ELEV": 2090, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 157.703000034041338, 52.063000078642801 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-054", "NAME_": "PIRATKOVS", "LOCATION": "Kamchatka", "LAT": 52.113, "LON": 157.849, "ELEV": 1322, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 157.848999918499317, 52.113000004666702 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-055", "NAME_": "OLKOVIY", "LOCATION": "Kamchatka", "LAT": 52.077, "LON": 157.477, "ELEV": 636, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 157.476999974912587, 52.07699991559943 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-056", "NAME_": "OSTANETS", "LOCATION": "Kamchatka", "LAT": 52.154, "LON": 157.322, "ELEV": 719, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 157.32200001586051, 52.154000065405455 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-057", "NAME_": "OTDELNIY", "LOCATION": "Kamchatka", "LAT": 52.22, "LON": 157.428, "ELEV": 791, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 157.427999917637635, 52.219999984501698 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-058", "NAME_": "UNNAMED", "LOCATION": "Kamchatka", "LAT": 52.33, "LON": 157.33, "ELEV": 638, "TYPE_": "Pyroclast", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 157.330000012396681, 52.329999989201383 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-059", "NAME_": "TUNDROVIY", "LOCATION": "Kamchatka", "LAT": 52.25, "LON": 157.6, "ELEV": 739, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 157.599999947819924, 52.25000002383959 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-06=", "NAME_": "MUTNOVSKY", "LOCATION": "Kamchatka", "LAT": 52.453, "LON": 158.195, "ELEV": 2322, "TYPE_": "Complex v", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 158.194999925670743, 52.452999962108748 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-061", "NAME_": "GOLAYA", "LOCATION": "Kamchatka", "LAT": 52.263, "LON": 157.787, "ELEV": 858, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 157.787000102325635, 52.26299999204727 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-062", "NAME_": "ASACHA", "LOCATION": "Kamchatka", "LAT": 52.355, "LON": 157.827, "ELEV": 1910, "TYPE_": "Complex v", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 157.827000085006546, 52.355000056867794 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-063", "NAME_": "VISOKIY", "LOCATION": "Kamchatka", "LAT": 52.43, "LON": 157.93, "ELEV": 1234, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 157.929999961919009, 52.430000050558078 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-07=", "NAME_": "GORELY", "LOCATION": "Kamchatka", "LAT": 52.558, "LON": 158.03, "ELEV": 1829, "TYPE_": "Caldera", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 158.030000023275704, 52.557999995136953 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-08=", "NAME_": "OPALA", "LOCATION": "Kamchatka", "LAT": 52.543, "LON": 157.335, "ELEV": 2475, "TYPE_": "Caldera", "STATUS": "Radiocarb", "TIME_FRAME": "D6", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 157.33499998406819, 52.543000080122454 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-081", "NAME_": "UNNAMED", "LOCATION": "Kamchatka", "LAT": 52.57, "LON": 157.02, "ELEV": 610, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 157.020000094292527, 52.570000094595684 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-082", "NAME_": "TOLMACHEV", "LOCATION": "Kamchatka", "LAT": 52.63, "LON": 157.58, "ELEV": 1021, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 157.580000061133944, 52.629999963962547 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-083", "NAME_": "VILYUCHIK", "LOCATION": "Kamchatka", "LAT": 52.68, "LON": 158.3, "ELEV": 2173, "TYPE_": "Stratovol", "STATUS": "Tephrochr", "TIME_FRAME": "D7", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 158.299999958698947, 52.68000009929537 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-084", "NAME_": "BARKHATNA", "LOCATION": "Kamchatka", "LAT": 52.823, "LON": 158.27, "ELEV": 870, "TYPE_": "Lava dome", "STATUS": "Tephrochr", "TIME_FRAME": "D7", "CONTINENT": "Asia", "Type": "Explosive & Crater Features", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 158.269999919361055, 52.822999958888687 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-085", "NAME_": "UNNAMED", "LOCATION": "Kamchatka", "LAT": 52.92, "LON": 158.52, "ELEV": 450, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 158.519999968098318, 52.919999995380721 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-086", "NAME_": "UNNAMED", "LOCATION": "Kamchatka", "LAT": 52.88, "LON": 158.3, "ELEV": 700, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 158.299999958698947, 52.88000001269981 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-087", "NAME_": "BOLSHE-BA", "LOCATION": "Kamchatka", "LAT": 52.9, "LON": 157.78, "ELEV": 1200, "TYPE_": "Lava dome", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 157.779999974538441, 52.89999989938579 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-09=", "NAME_": "KORYAKSKY", "LOCATION": "Kamchatka", "LAT": 53.32, "LON": 158.688, "ELEV": 3456, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 158.687999895358075, 53.32000003149858 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-10=", "NAME_": "AVACHINSK", "LOCATION": "Kamchatka", "LAT": 53.255, "LON": 158.83, "ELEV": 2741, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 158.830000095511423, 53.254999981151258 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-101", "NAME_": "UNNAMED", "LOCATION": "Kamchatka", "LAT": 53.63, "LON": 158.1, "ELEV": 200, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 158.100000045294507, 53.629999949602706 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-102", "NAME_": "VEER", "LOCATION": "Kamchatka", "LAT": 53.63, "LON": 158.42, "ELEV": 350, "TYPE_": "Cinder co", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Asia", "Type": "Cone Types", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 158.419999906741623, 53.629999949602706 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-11=", "NAME_": "DZENZURSK", "LOCATION": "Kamchatka", "LAT": 53.637, "LON": 158.922, "ELEV": 2155, "TYPE_": "Compound", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 158.921999951022997, 53.637000077389956 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-12=", "NAME_": "ZHUPANOVS", "LOCATION": "Kamchatka", "LAT": 53.59, "LON": 159.147, "ELEV": 2958, "TYPE_": "Compound", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 159.146999932093877, 53.589999966921823 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-121", "NAME_": "ZAVARITSK", "LOCATION": "Kamchatka", "LAT": 53.905, "LON": 158.385, "ELEV": 1567, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 158.384999895732221, 53.905000066006409 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-122", "NAME_": "BAKENIN", "LOCATION": "Kamchatka", "LAT": 53.905, "LON": 158.07, "ELEV": 2277, "TYPE_": "Caldera", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 158.070000005956558, 53.905000066006409 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-123", "NAME_": "AKADEMIA", "LOCATION": "Kamchatka", "LAT": 53.98, "LON": 159.45, "ELEV": 1180, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 159.449999931719674, 53.980000059696692 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-13=", "NAME_": "KARYMSKY", "LOCATION": "Kamchatka", "LAT": 54.05, "LON": 159.43, "ELEV": 1486, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 159.430000045033694, 54.050000081715467 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-14=", "NAME_": "MALY SEMI", "LOCATION": "Kamchatka", "LAT": 54.13, "LON": 159.67, "ELEV": 1560, "TYPE_": "Caldera", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 159.669999941119045, 54.13000004707726 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-15=", "NAME_": "BOLSHOI S", "LOCATION": "Kamchatka", "LAT": 54.32, "LON": 160.02, "ELEV": 1720, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.02000005121306, 54.320000017138739 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-16-", "NAME_": "TAUNSHITS", "LOCATION": "Kamchatka", "LAT": 54.53, "LON": 159.8, "ELEV": 2353, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 159.800000041813689, 54.530000083195119 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-17=", "NAME_": "UZON", "LOCATION": "Kamchatka", "LAT": 54.5, "LON": 159.97, "ELEV": 1617, "TYPE_": "Calderas", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 159.969999915880237, 54.500000043857227 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-18=", "NAME_": "KIKHPINYC", "LOCATION": "Kamchatka", "LAT": 54.487, "LON": 160.253, "ELEV": 1552, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D5", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1500-1699", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.253000028820111, 54.487000075649547 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-19=", "NAME_": "KRASHENIN", "LOCATION": "Kamchatka", "LAT": 54.593, "LON": 160.273, "ELEV": 1856, "TYPE_": "Caldera", "STATUS": "Radiocarb", "TIME_FRAME": "D5", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "1500-1699", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.272999915506091, 54.592999977426672 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-20=", "NAME_": "KRONOTSKY", "LOCATION": "Kamchatka", "LAT": 54.753, "LON": 160.527, "ELEV": 3528, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.527000067165886, 54.752999908150258 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-21=", "NAME_": "GAMCHEN", "LOCATION": "Kamchatka", "LAT": 54.973, "LON": 160.702, "ELEV": 2576, "TYPE_": "Complex v", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.701999912903943, 54.972999917549629 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-22=", "NAME_": "KOMAROV", "LOCATION": "Kamchatka", "LAT": 55.032, "LON": 160.72, "ELEV": 2070, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.720000062092026, 55.031999918167543 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-221", "NAME_": "KOLKHOZHN", "LOCATION": "Kamchatka", "LAT": 55.07, "LON": 160.77, "ELEV": 2161, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.769999988115956, 55.069999954041634 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-23=", "NAME_": "KIZIMEN", "LOCATION": "Kamchatka", "LAT": 55.13, "LON": 160.32, "ELEV": 2485, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.320000025974196, 55.130000032717447 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-231", "NAME_": "IULT", "LOCATION": "Kamchatka", "LAT": 55.23, "LON": 160.587, "ELEV": 1857, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.586999936532777, 55.230000094074143 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-232", "NAME_": "UNNAMED", "LOCATION": "Kamchatka", "LAT": 55.92, "LON": 161.75, "ELEV": 0, "TYPE_": "Cinder co", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Asia", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 161.750000087070134, 55.919999952301225 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-24=", "NAME_": "TOLBACHIK", "LOCATION": "Kamchatka", "LAT": 55.83, "LON": 160.33, "ELEV": 3682, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.329999969317214, 55.830000043596442 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-241", "NAME_": "UDINA", "LOCATION": "Kamchatka", "LAT": 55.755, "LON": 160.527, "ELEV": 2923, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.527000067165886, 55.755000049906158 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-242", "NAME_": "ZIMINA", "LOCATION": "Kamchatka", "LAT": 55.862, "LON": 160.603, "ELEV": 3081, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.602999929605119, 55.862000029741154 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-25=", "NAME_": "BEZYMIANN", "LOCATION": "Kamchatka", "LAT": 55.978, "LON": 160.587, "ELEV": 2882, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.586999936532777, 55.978000084170219 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-251", "NAME_": "KAMEN", "LOCATION": "Kamchatka", "LAT": 56.02, "LON": 160.593, "ELEV": 4585, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.592999986262157, 56.020000013657921 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-26=", "NAME_": "KLIUCHEVS", "LOCATION": "Kamchatka", "LAT": 56.057, "LON": 160.638, "ELEV": 4835, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.63799994061452, 56.056999971474141 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-261", "NAME_": "USHKOVSKY", "LOCATION": "Kamchatka", "LAT": 56.105, "LON": 160.47, "ELEV": 3943, "TYPE_": "Compound", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Asia", "Type": "Caldera & Complex", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.470000013354763, 56.104999950691194 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-262", "NAME_": "ZARECHNY", "LOCATION": "Kamchatka", "LAT": 56.38, "LON": 160.83, "ELEV": 760, "TYPE_": "Somma vol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.83000006679174, 56.380000067094869 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-263", "NAME_": "UNNAMED", "LOCATION": "Kamchatka", "LAT": 56.53, "LON": 160.87, "ELEV": 200, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.870000049472651, 56.530000054475465 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-27=", "NAME_": "SHIVELUCH", "LOCATION": "Kamchatka", "LAT": 56.653, "LON": 161.36, "ELEV": 3283, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 161.359999994295265, 56.653000027382831 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-272", "NAME_": "HANGAR", "LOCATION": "Kamchatka", "LAT": 54.75, "LON": 157.38, "ELEV": 2000, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 157.379999938420553, 54.75000009259449 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-28=", "NAME_": "ICHINSKY", "LOCATION": "Kamchatka", "LAT": 55.68, "LON": 157.73, "ELEV": 3621, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 157.730000048514512, 55.680000056215874 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-29-", "NAME_": "MALY PAYA", "LOCATION": "Kamchatka", "LAT": 55.82, "LON": 157.98, "ELEV": 1802, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 157.980000097251832, 55.820000100253452 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-30-", "NAME_": "BOLSHOY P", "LOCATION": "Kamchatka", "LAT": 55.88, "LON": 157.78, "ELEV": 1906, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 157.779999974538441, 55.879999969620343 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-31-", "NAME_": "PLOSKY", "LOCATION": "Kamchatka", "LAT": 55.2, "LON": 158.47, "ELEV": 1236, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 158.470000042074446, 55.200000054736222 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-32-", "NAME_": "AKHTANG", "LOCATION": "Kamchatka", "LAT": 55.43, "LON": 158.65, "ELEV": 1956, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 158.650000068792906, 55.430000007478583 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-33-", "NAME_": "KOZYREVSK", "LOCATION": "Kamchatka", "LAT": 55.58, "LON": 158.38, "ELEV": 2016, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 158.379999924060712, 55.579999994859179 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-34-", "NAME_": "ROMANOVKA", "LOCATION": "Kamchatka", "LAT": 55.65, "LON": 158.8, "ELEV": 1442, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 158.800000056173474, 55.650000016877982 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-35-", "NAME_": "UKSICHAN", "LOCATION": "Kamchatka", "LAT": 56.08, "LON": 158.38, "ELEV": 1692, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 158.379999924060712, 56.080000092333734 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-36-", "NAME_": "BOLSHOY-K", "LOCATION": "Kamchatka", "LAT": 56.47, "LON": 157.8, "ELEV": 1401, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 157.800000070533315, 56.469999975799652 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-37-", "NAME_": "KULKEV", "LOCATION": "Kamchatka", "LAT": 56.37, "LON": 158.37, "ELEV": 915, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 158.369999980717751, 56.369999914442957 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-38-", "NAME_": "GEODESIST", "LOCATION": "Kamchatka", "LAT": 56.33, "LON": 158.67, "ELEV": 1170, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 158.669999955478886, 56.329999931762075 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-39-", "NAME_": "ANAUN", "LOCATION": "Kamchatka", "LAT": 56.32, "LON": 158.83, "ELEV": 1828, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 158.830000095511423, 56.319999988419085 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-40-", "NAME_": "KRAINY", "LOCATION": "Kamchatka", "LAT": 56.37, "LON": 159.03, "ELEV": 1554, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 159.030000008915863, 56.369999914442957 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-41-", "NAME_": "KEKURNY", "LOCATION": "Kamchatka", "LAT": 56.4, "LON": 158.85, "ELEV": 1377, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 158.849999982197403, 56.399999953780878 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-42-", "NAME_": "EGGELLA", "LOCATION": "Kamchatka", "LAT": 56.57, "LON": 158.52, "ELEV": 1046, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 158.519999968098318, 56.570000037156348 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-43-", "NAME_": "UNNAMED", "LOCATION": "Kamchatka", "LAT": 56.82, "LON": 158.95, "ELEV": 1185, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 158.950000043554098, 56.820000085893639 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-44-", "NAME_": "VERKHOVOY", "LOCATION": "Kamchatka", "LAT": 56.52, "LON": 159.53, "ELEV": 1400, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 159.529999897081495, 56.519999901823553 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-45-", "NAME_": "ALNEY-CHA", "LOCATION": "Kamchatka", "LAT": 56.7, "LON": 159.65, "ELEV": 2598, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 159.650000054433065, 56.699999928542013 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-46-", "NAME_": "CHERNY", "LOCATION": "Kamchatka", "LAT": 56.82, "LON": 159.67, "ELEV": 1778, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 159.669999941119045, 56.820000085893639 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-47-", "NAME_": "POGRANYCH", "LOCATION": "Kamchatka", "LAT": 56.85, "LON": 159.8, "ELEV": 1427, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 159.800000041813689, 56.849999915922609 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-48-", "NAME_": "ZAOZERNY", "LOCATION": "Kamchatka", "LAT": 56.88, "LON": 159.95, "ELEV": 1349, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 159.950000029194257, 56.879999955260502 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-49-", "NAME_": "BLIZNETS", "LOCATION": "Kamchatka", "LAT": 56.97, "LON": 159.78, "ELEV": 1244, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 159.779999945818759, 56.970000073274207 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-50-", "NAME_": "KEBENEY", "LOCATION": "Kamchatka", "LAT": 57.1, "LON": 159.93, "ELEV": 1527, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 159.929999933199326, 57.099999964659872 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-51-", "NAME_": "FEDOTYCH", "LOCATION": "Kamchatka", "LAT": 57.13, "LON": 160.4, "ELEV": 965, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.39999999133596, 57.130000003997765 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-52-", "NAME_": "SEDANKINS", "LOCATION": "Kamchatka", "LAT": 57.23, "LON": 160.08, "ELEV": 1241, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.079999920579894, 57.23000006535446 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-53-", "NAME_": "GORNY INS", "LOCATION": "Kamchatka", "LAT": 57.33, "LON": 160.2, "ELEV": 2125, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.20000007793152, 57.329999917402233 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-54-", "NAME_": "LEUTONGEY", "LOCATION": "Kamchatka", "LAT": 57.3, "LON": 159.83, "ELEV": 1333, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 159.830000081151582, 57.300000087373263 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-55-", "NAME_": "TUZOVSKY", "LOCATION": "Kamchatka", "LAT": 57.32, "LON": 159.97, "ELEV": 1533, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 159.969999915880237, 57.319999974059243 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-56-", "NAME_": "TITILA", "LOCATION": "Kamchatka", "LAT": 57.4, "LON": 160.1, "ELEV": 1559, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.100000016574825, 57.399999939421036 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-57-", "NAME_": "MEZHDUSOP", "LOCATION": "Kamchatka", "LAT": 57.43, "LON": 160.2, "ELEV": 1641, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.20000007793152, 57.429999978758929 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-58-", "NAME_": "SHISHEL", "LOCATION": "Kamchatka", "LAT": 57.45, "LON": 160.37, "ELEV": 2525, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.369999951998068, 57.450000074753859 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-59-", "NAME_": "ELOVSKY", "LOCATION": "Kamchatka", "LAT": 57.53, "LON": 160.53, "ELEV": 1381, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.530000092030605, 57.530000040115624 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-60-", "NAME_": "ALNGEY", "LOCATION": "Kamchatka", "LAT": 57.7, "LON": 160.4, "ELEV": 1853, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.39999999133596, 57.6999999141822 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-61-", "NAME_": "UKA", "LOCATION": "Kamchatka", "LAT": 57.7, "LON": 160.58, "ELEV": 1643, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.580000018054477, 57.6999999141822 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-62-", "NAME_": "KAILENEY", "LOCATION": "Kamchatka", "LAT": 57.8, "LON": 160.67, "ELEV": 1582, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.66999992675926, 57.799999975538896 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-63-", "NAME_": "PLOSKY", "LOCATION": "Kamchatka", "LAT": 57.83, "LON": 160.25, "ELEV": 1255, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.250000003955392, 57.830000014876788 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-64-", "NAME_": "BELY", "LOCATION": "Kamchatka", "LAT": 57.88, "LON": 160.53, "ELEV": 2080, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.530000092030605, 57.87999994090066 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-65-", "NAME_": "ATLASOVA", "LOCATION": "Kamchatka", "LAT": 57.97, "LON": 160.65, "ELEV": 1764, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.65000004007328, 57.970000058914366 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-66-", "NAME_": "SNEZHNIY", "LOCATION": "Kamchatka", "LAT": 58.02, "LON": 160.75, "ELEV": 2169, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.750000101429976, 58.019999984938266 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-67-", "NAME_": "IKTUNUP", "LOCATION": "Kamchatka", "LAT": 58.08, "LON": 160.77, "ELEV": 2300, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.769999988115956, 58.080000063614051 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-68-", "NAME_": "OSTRY", "LOCATION": "Kamchatka", "LAT": 58.18, "LON": 160.82, "ELEV": 2552, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.819999914139828, 58.179999915661824 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-69-", "NAME_": "SNEGOVOY", "LOCATION": "Kamchatka", "LAT": 58.2, "LON": 160.97, "ELEV": 2169, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.969999901520396, 58.200000011656755 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-70-", "NAME_": "SEVERNY", "LOCATION": "Kamchatka", "LAT": 58.28, "LON": 160.87, "ELEV": 1936, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.870000049472651, 58.27999997701852 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-71-", "NAME_": "IETTUNUP", "LOCATION": "Kamchatka", "LAT": 58.4, "LON": 161.08, "ELEV": 1340, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 161.07999990622011, 58.399999925061195 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-72-", "NAME_": "VOYAMPOLS", "LOCATION": "Kamchatka", "LAT": 58.37, "LON": 160.62, "ELEV": 1225, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 160.620000000735331, 58.370000095032225 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1001-01-", "NAME_": "ALUCHIN G", "LOCATION": "Russia-NE", "LAT": 66.12, "LON": 165.63, "ELEV": 1000, "TYPE_": "Cones", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 165.63000008158815, 66.119999931416316 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1001-02-", "NAME_": "ANJUISKY", "LOCATION": "Russia-NE", "LAT": 67.17, "LON": 165.2, "ELEV": 1050, "TYPE_": "Complex v", "STATUS": "Tephrochr", "TIME_FRAME": "D5", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "1500-1699", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 165.20000000613237, 67.170000052389298 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1001-03-", "NAME_": "BALAGAN-T", "LOCATION": "Russia-NE", "LAT": 66.43, "LON": 143.73, "ELEV": 993, "TYPE_": "Cinder co", "STATUS": "Historica", "TIME_FRAME": "D4", "CONTINENT": "Asia", "Type": "Cone Types", "Last_eruption": "1700-1799", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 143.730000040243226, 66.430000058829393 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1002-01-", "NAME_": "SOUTHERN", "LOCATION": "Russia-SE", "LAT": 44.5, "LON": 135.5, "ELEV": 0, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 135.49999999307056, 44.499999978146576 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1002-02-", "NAME_": "NE UDOKAN", "LOCATION": "Russia-SE", "LAT": 56.33, "LON": 118.07, "ELEV": 2180, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 118.069999952422961, 56.329999931762075 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1002-03-", "NAME_": "UDOKAN VO", "LOCATION": "Russia-SE", "LAT": 56.18, "LON": 117.47, "ELEV": 1980, "TYPE_": "Shield vo", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 117.470000002900633, 56.179999944381478 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1002-04-", "NAME_": "DGIDA BAS", "LOCATION": "Russia-SE", "LAT": 50.52, "LON": 103.25, "ELEV": 1500, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 103.249999985229977, 50.519999987982516 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1002-05-", "NAME_": "TUNKIN DE", "LOCATION": "Russia-SE", "LAT": 51.5, "LON": 102.5, "ELEV": 1200, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 102.500000048327081, 51.500000086936694 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1002-06-", "NAME_": "OKA VOLC", "LOCATION": "Russia-SE", "LAT": 52.7, "LON": 98.98, "ELEV": 2077, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 98.979999897937091, 52.69999998598135 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1002-07-", "NAME_": "ULUG-ARGI", "LOCATION": "Russia-SE", "LAT": 52.33, "LON": 98.0, "ELEV": 1800, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 98.000000008291863, 52.329999989201383 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1003-01-", "NAME_": "TARYATU-C", "LOCATION": "Mongolia", "LAT": 48.17, "LON": 99.7, "ELEV": 2400, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 99.700000004811045, 48.169999906608211 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1003-02-", "NAME_": "KHANUY GO", "LOCATION": "Mongolia", "LAT": 48.67, "LON": 102.75, "ELEV": 1886, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 102.750000097064344, 48.670000004082766 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1003-03-", "NAME_": "BUS-OBO", "LOCATION": "Mongolia", "LAT": 47.12, "LON": 109.08, "ELEV": 1162, "TYPE_": "Cinder co", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Asia", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 109.080000025004438, 47.119999994944152 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1003-04-", "NAME_": "DARIGANGA", "LOCATION": "Mongolia", "LAT": 45.33, "LON": 114.0, "ELEV": 1778, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 113.999999987843523, 45.330000089720187 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1003-05-", "NAME_": "MIDDLE GO", "LOCATION": "Mongolia", "LAT": 45.28, "LON": 106.7, "ELEV": 1120, "TYPE_": "Cinder co", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Asia", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 106.699999904292213, 45.279999954387392 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1004-01-", "NAME_": "TURFAN", "LOCATION": "China-W", "LAT": 42.9, "LON": 89.25, "ELEV": 0, "TYPE_": "Cone", "STATUS": "Historica", "TIME_FRAME": "D6", "CONTINENT": "Asia", "Type": "Cone Types", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 89.249999976958634, 42.90000004298409 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1004-02-", "NAME_": "TIANSHAN", "LOCATION": "China-W", "LAT": 42.5, "LON": 86.5, "ELEV": 0, "TYPE_": "Volcanic", "STATUS": "Historica", "TIME_FRAME": "D6", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 86.500000068775421, 42.50000000686623 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1004-03-", "NAME_": "KUNLUN VO", "LOCATION": "China-W", "LAT": 35.52, "LON": 80.2, "ELEV": 5808, "TYPE_": "Pyroclast", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 80.199999970864326, 35.519999994071043 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1004-04-", "NAME_": "UNNAMED", "LOCATION": "China-W", "LAT": 35.85, "LON": 91.7, "ELEV": 5400, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 91.699999910380711, 35.850000008170099 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1005-01-", "NAME_": "DATONG", "LOCATION": "China-E", "LAT": 40.0, "LON": 113.28, "ELEV": 1882, "TYPE_": "Cinder co", "STATUS": "Historica", "TIME_FRAME": "D6", "CONTINENT": "Asia", "Type": "Cone Types", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 113.28000009027852, 39.999999938111358 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1005-02-", "NAME_": "HONGGEERT", "LOCATION": "China-E", "LAT": 41.47, "LON": 113.0, "ELEV": 1700, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 113.000000002203308, 41.469999981888179 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1005-03-", "NAME_": "KELUO GRO", "LOCATION": "China-E", "LAT": 49.37, "LON": 125.92, "ELEV": 670, "TYPE_": "Pyroclast", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 125.92000005947267, 49.370000014961761 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1005-04-", "NAME_": "WUDALIANC", "LOCATION": "China-E", "LAT": 48.72, "LON": 126.12, "ELEV": 597, "TYPE_": "Volcanic", "STATUS": "Historica", "TIME_FRAME": "D4", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "1700-1799", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 126.119999972877167, 48.719999930106638 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1005-05-", "NAME_": "JINGPOHU", "LOCATION": "China-E", "LAT": 44.08, "LON": 128.83, "ELEV": 500, "TYPE_": "Volcanic", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 128.829999898379469, 44.080000055342737 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1005-06-", "NAME_": "LONGGANG", "LOCATION": "China-E", "LAT": 42.33, "LON": 126.5, "ELEV": 1000, "TYPE_": "Cinder co", "STATUS": "Radiocarb", "TIME_FRAME": "D4", "CONTINENT": "Asia", "Type": "Cone Types", "Last_eruption": "1700-1799", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 126.499999913000067, 42.32999992349076 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1005-07-", "NAME_": "BAITOUSHA", "LOCATION": "China-E", "LAT": 41.98, "LON": 128.08, "ELEV": 2744, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D4", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1700-1799", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 128.079999961476574, 41.980000022705724 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1006-01-", "NAME_": "XIANJINDA", "LOCATION": "Korea", "LAT": 41.33, "LON": 128.0, "ELEV": 0, "TYPE_": "Unknown", "STATUS": "Historica", "TIME_FRAME": "D5", "CONTINENT": "Asia", "Type": "Other", "Last_eruption": "1500-1699", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 127.999999996114809, 41.329999937850573 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1006-02-", "NAME_": "CH'UGA-RY", "LOCATION": "Korea", "LAT": 38.33, "LON": 127.33, "ELEV": 452, "TYPE_": "Shield vo", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 127.330000024573678, 38.329999980930069 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1006-04-", "NAME_": "HALLA", "LOCATION": "Korea", "LAT": 33.37, "LON": 126.53, "ELEV": 1950, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D6", "CONTINENT": "Asia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 126.529999952338017, 33.370000035410101 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0509-01-", "NAME_": "NEWER VOL", "LOCATION": "Australia", "LAT": -37.77, "LON": 142.5, "ELEV": 1011, "TYPE_": "Shield vo", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "Australia", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 142.500000101860678, -37.770000035624221 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0401-01=", "NAME_": "KAIKOHE-B", "LOCATION": "New Z", "LAT": -35.3, "LON": 173.9, "ELEV": 388, "TYPE_": "Volcanic", "STATUS": "Radiocarb", "TIME_FRAME": "D6", "CONTINENT": "Oceania", "Type": "Other", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 173.89999990213272, -35.300000006207235 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0401-011", "NAME_": "WHANGAREI", "LOCATION": "New Zeala", "LAT": -35.75, "LON": 174.27, "ELEV": 397, "TYPE_": "Cinder co", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Oceania", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 174.269999898912715, -35.749999968348973 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0401-02=", "NAME_": "AUCKLAND", "LOCATION": "New Zeala", "LAT": -36.9, "LON": 174.87, "ELEV": 260, "TYPE_": "Volcanic", "STATUS": "Radiocarb", "TIME_FRAME": "D6", "CONTINENT": "Oceania", "Type": "Other", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 174.870000057743937, -36.899999941369721 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0401-03=", "NAME_": "EGMONT", "LOCATION": "New Zeala", "LAT": -39.3, "LON": 174.07, "ELEV": 2518, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D4", "CONTINENT": "Oceania", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1700-1799", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 174.069999985508218, -39.299999948767912 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0401-042", "NAME_": "ROTORUA", "LOCATION": "New Zeala", "LAT": -38.08, "LON": 176.27, "ELEV": 757, "TYPE_": "Caldera", "STATUS": "Pleistoce", "TIME_FRAME": "Q", "CONTINENT": "Oceania", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 176.270000079501983, -38.079999953728368 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0401-05=", "NAME_": "OKATAINA", "LOCATION": "New Zeala", "LAT": -38.12, "LON": 176.5, "ELEV": 1111, "TYPE_": "Lava dome", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Oceania", "Type": "Explosive & Crater Features", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 176.500000032244316, -38.119999936409265 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0401-06-", "NAME_": "REPOROA", "LOCATION": "New Zeala", "LAT": -38.42, "LON": 176.33, "ELEV": 592, "TYPE_": "Caldera", "STATUS": "Tephrochr", "TIME_FRAME": "D6", "CONTINENT": "Oceania", "Type": "Caldera & Complex", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 176.329999948868817, -38.419999911170422 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0401-061", "NAME_": "MAROA", "LOCATION": "New Zeala", "LAT": -38.42, "LON": 176.08, "ELEV": 1156, "TYPE_": "Calderas", "STATUS": "Tephrochr", "TIME_FRAME": "D6", "CONTINENT": "Oceania", "Type": "Caldera & Complex", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 176.079999900131554, -38.419999911170422 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0401-07=", "NAME_": "TAUPO", "LOCATION": "New Zeala", "LAT": -38.82, "LON": 176.0, "ELEV": 760, "TYPE_": "Caldera", "STATUS": "Radiocarb", "TIME_FRAME": "D6", "CONTINENT": "Oceania", "Type": "Caldera & Complex", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 175.999999934769789, -38.819999947288274 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0401-08=", "NAME_": "TONGARIRO", "LOCATION": "New Zeala", "LAT": -39.13, "LON": 175.642, "ELEV": 1978, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Oceania", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 175.642000037448554, -39.130000074701357 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0401-10=", "NAME_": "RUAPEHU", "LOCATION": "New Zeala", "LAT": -39.28, "LON": 175.57, "ELEV": 2797, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Oceania", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 175.57000006862296, -39.280000062081932 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0404-02-", "NAME_": "TUTUILA", "LOCATION": "Samoa-SW", "LAT": -14.295, "LON": -170.7, "ELEV": 653, "TYPE_": "Tuff cone", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Oceania", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -170.699999921713584, -14.2949999174743 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0404-03-", "NAME_": "UPOLU", "LOCATION": "Samoa-SW", "LAT": -13.935, "LON": -171.72, "ELEV": 1100, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Oceania", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -171.720000003348645, -13.935000073346274 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0404-04=", "NAME_": "SAVAI'I", "LOCATION": "Samoa-SW", "LAT": -13.612, "LON": -172.525, "ELEV": 1858, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Oceania", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -172.525000047255844, -13.611999977725517 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0404-05-", "NAME_": "WALLIS IS", "LOCATION": "SW Pacifi", "LAT": -13.3, "LON": -176.17, "ELEV": 143, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Oceania", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -176.169999908051068, -13.299999903505622 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0405-01-", "NAME_": "TAVEUNI", "LOCATION": "Fiji Is-S", "LAT": -16.82, "LON": -179.97, "ELEV": 1241, "TYPE_": "Shield vo", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "Oceania", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -179.969999937207291, -16.820000053895598 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0502-01=", "NAME_": "LANGILA", "LOCATION": "New Brita", "LAT": -5.525, "LON": 148.42, "ELEV": 1330, "TYPE_": "Complex v", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Oceania", "Type": "Other", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 148.420000050339922, -5.524999999455133 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0502-04=", "NAME_": "DAKATAUA", "LOCATION": "New Brita", "LAT": -5.056, "LON": 150.108, "ELEV": 400, "TYPE_": "Caldera", "STATUS": "Anthropol", "TIME_FRAME": "D3", "CONTINENT": "Oceania", "Type": "Caldera & Complex", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 150.107999947400344, -5.056000019376356 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0502-05=", "NAME_": "BOLA", "LOCATION": "New Brita", "LAT": -5.15, "LON": 150.03, "ELEV": 1155, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Oceania", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 150.029999928845371, -5.150000031003685 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0502-07=", "NAME_": "GARBUNA G", "LOCATION": "New Brita", "LAT": -5.45, "LON": 150.03, "ELEV": 564, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Oceania", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 150.029999928845371, -5.450000005764835 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0502-071", "NAME_": "LOLO", "LOCATION": "New Brita", "LAT": -5.47, "LON": 150.5, "ELEV": 805, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Oceania", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 150.499999986982061, -5.470000101759751 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0502-08=", "NAME_": "PAGO", "LOCATION": "New Brita", "LAT": -5.58, "LON": 150.52, "ELEV": 742, "TYPE_": "Caldera", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Oceania", "Type": "Caldera & Complex", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 150.520000082976935, -5.579999897150515 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0502-09=", "NAME_": "WALO", "LOCATION": "New Brita", "LAT": -5.53, "LON": 150.9, "ELEV": 15, "TYPE_": "Hydrother", "STATUS": "Hot Sprin", "TIME_FRAME": "?", "CONTINENT": "Oceania", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 150.900000023099892, -5.529999971126628 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0502-10=", "NAME_": "HARGY", "LOCATION": "New Brita", "LAT": -5.33, "LON": 151.1, "ELEV": 1148, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D6", "CONTINENT": "Oceania", "Type": "Shield & Stratovolcanoes", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 151.099999936504332, -5.33000005772216 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0502-11=", "NAME_": "BAMUS", "LOCATION": "New Brita", "LAT": -5.2, "LON": 151.23, "ELEV": 2248, "TYPE_": "Stratovol", "STATUS": "Anthropol", "TIME_FRAME": "D3", "CONTINENT": "Oceania", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 151.230000037198977, -5.199999957027572 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0502-12=", "NAME_": "ULAWUN", "LOCATION": "New Brita", "LAT": -5.05, "LON": 151.33, "ELEV": 2334, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Oceania", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 151.330000098555672, -5.04999996964699 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0504-01=", "NAME_": "LIHIR", "LOCATION": "New Irela", "LAT": -3.125, "LON": 152.642, "ELEV": 700, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "?", "CONTINENT": "Oceania", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 152.641999949106776, -3.124999992056942 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0505-00-", "NAME_": "TORE", "LOCATION": "Bougainvi", "LAT": -5.83, "LON": 154.93, "ELEV": 2200, "TYPE_": "Lava cone", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Oceania", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 154.930000004998476, -5.829999945887778 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0505-01=", "NAME_": "BALBI", "LOCATION": "Bougainvi", "LAT": -5.83, "LON": 154.98, "ELEV": 2715, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Oceania", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 154.979999931022348, -5.829999945887778 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0505-011", "NAME_": "BILLY MIT", "LOCATION": "Bougainvi", "LAT": -6.092, "LON": 155.225, "ELEV": 1544, "TYPE_": "Pyroclast", "STATUS": "Radiocarb", "TIME_FRAME": "D5", "CONTINENT": "Oceania", "Type": "Other", "Last_eruption": "1500-1699", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 155.225000008088159, -6.092000094083787 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0505-02=", "NAME_": "BAGANA", "LOCATION": "Bougainvi", "LAT": -6.14, "LON": 155.195, "ELEV": 1750, "TYPE_": "Lava cone", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Oceania", "Type": "Cone Types", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 155.194999968750267, -6.140000073300868 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0505-021", "NAME_": "TAKUAN GR", "LOCATION": "Bougainvi", "LAT": -6.442, "LON": 155.608, "ELEV": 2210, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Oceania", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 155.607999973075778, -6.441999994868837 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0505-03=", "NAME_": "LOLORU", "LOCATION": "Bougainvi", "LAT": -6.52, "LON": 155.62, "ELEV": 1887, "TYPE_": "Pyroclast", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "Oceania", "Type": "Other", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 155.620000072534481, -6.520000013423811 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0505-04=", "NAME_": "NONDA", "LOCATION": "Solomon I", "LAT": -7.67, "LON": 156.6, "ELEV": 760, "TYPE_": "Stratovol", "STATUS": "Pleistoce", "TIME_FRAME": "Q", "CONTINENT": "Oceania", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 156.599999962179766, -7.669999986444552 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0505-062", "NAME_": "GALLEGO", "LOCATION": "Solomon I", "LAT": -9.35, "LON": 159.73, "ELEV": 1000, "TYPE_": "Volcanic", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Oceania", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 159.730000019794886, -9.350000096277753 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0507-01=", "NAME_": "SORETIMEA", "LOCATION": "Vanuatu-S", "LAT": -13.8, "LON": 167.47, "ELEV": 921, "TYPE_": "Complex v", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Oceania", "Type": "Other", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 167.469999912835988, -13.800000000980177 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0507-02=", "NAME_": "GAUA", "LOCATION": "Vanuatu-S", "LAT": -14.27, "LON": 167.5, "ELEV": 797, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Oceania", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 167.49999995217388, -14.270000059116825 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0507-03=", "NAME_": "AOBA", "LOCATION": "Vanuatu-S", "LAT": -15.4, "LON": 167.83, "ELEV": 1496, "TYPE_": "Shield vo", "STATUS": "Anthropol", "TIME_FRAME": "D3", "CONTINENT": "Oceania", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 167.829999966272908, -15.399999936142663 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0507-04=", "NAME_": "AMBRYM", "LOCATION": "Vanuatu-S", "LAT": -16.25, "LON": 168.12, "ELEV": 1334, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Oceania", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 168.119999997691082, -16.249999934402254 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0507-061", "NAME_": "KUTALI, T", "LOCATION": "Vanuatu-S", "LAT": -16.73, "LON": 168.28, "ELEV": 833, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Oceania", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 168.279999928414668, -16.729999935881892 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0507-062", "NAME_": "TAVAI RUR", "LOCATION": "Vanuatu-S", "LAT": -16.8, "LON": 168.43, "ELEV": 554, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Oceania", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 168.429999915795236, -16.799999957900681 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0507-10=", "NAME_": "YASUR", "LOCATION": "Vanuatu-S", "LAT": -19.52, "LON": 169.425, "ELEV": 361, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Oceania", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 169.424999929763942, -19.520000036054952 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0507-11-", "NAME_": "ANEITYUM", "LOCATION": "Vanuatu-S", "LAT": -20.2, "LON": 169.83, "ELEV": 852, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Oceania", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 169.829999937553282, -20.199999950939045 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1302-01-", "NAME_": "KILAUEA", "LOCATION": "Hawaiian", "LAT": 19.425, "LON": -155.292, "ELEV": 1222, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Oceania", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -155.292000104456974, 19.424999924834182 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1302-02=", "NAME_": "MAUNA LOA", "LOCATION": "Hawaiian", "LAT": 19.475, "LON": -155.608, "ELEV": 4170, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Oceania", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -155.608000072290508, 19.475000060166991 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1302-03-", "NAME_": "MAUNA KEA", "LOCATION": "Hawaiian", "LAT": 19.82, "LON": -155.47, "ELEV": 4206, "TYPE_": "Shield vo", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "Oceania", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -155.469999975059721, 19.819999989280532 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1302-04-", "NAME_": "HUALALAI", "LOCATION": "Hawaiian", "LAT": 19.692, "LON": -155.87, "ELEV": 2523, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Oceania", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -155.870000011177581, 19.692000044701672 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1302-06-", "NAME_": "HALEAKALA", "LOCATION": "Hawaiian", "LAT": 20.708, "LON": -156.25, "ELEV": 3055, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D4", "CONTINENT": "Oceania", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1700-1799", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -156.249999951300538, 20.708000023414201 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1302-07-", "NAME_": "KOOLAU", "LOCATION": "Hawaiian", "LAT": 21.37, "LON": -157.8, "ELEV": 941, "TYPE_": "Shield vo", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Oceania", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -157.799999960439123, 21.369999998419132 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1304-01-", "NAME_": "ANTIPODES", "LOCATION": "Pacific-S", "LAT": -49.68, "LON": 178.77, "ELEV": 402, "TYPE_": "Pyroclast", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Oceania", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 178.769999938947933, -49.679999954601492 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1501-011", "NAME_": "BRAVO, CE", "LOCATION": "Colombia", "LAT": 5.092, "LON": -75.3, "ELEV": 4000, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D4", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1700-1799", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -75.299999993925951, 5.092000086908044 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1501-02=", "NAME_": "RUIZ", "LOCATION": "Colombia", "LAT": 4.895, "LON": -75.323, "ELEV": 5321, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -75.322999905476621, 4.894999989059343 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1501-021", "NAME_": "SANTA ISA", "LOCATION": "Colombia", "LAT": 4.82, "LON": -75.37, "ELEV": 4950, "TYPE_": "Shield vo", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -75.370000015944754, 4.819999995369045 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1501-03=", "NAME_": "TOLIMA", "LOCATION": "Colombia", "LAT": 4.67, "LON": -75.33, "ELEV": 5200, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -75.330000033263843, 4.670000007988463 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1501-04=", "NAME_": "MACHIN, C", "LOCATION": "Colombia", "LAT": 4.48, "LON": -75.4, "ELEV": 2650, "TYPE_": "Stratovol", "STATUS": "Tephrochr", "TIME_FRAME": "D7", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -75.400000055282646, 4.480000037926999 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1501-05=", "NAME_": "HUILA", "LOCATION": "Colombia", "LAT": 2.92, "LON": -76.05, "ELEV": 5365, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D5", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1500-1699", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -76.049999930828847, 2.920000085445409 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1501-06=", "NAME_": "PURACE", "LOCATION": "Colombia", "LAT": 2.32, "LON": -76.4, "ELEV": 4650, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -76.400000040922805, 2.319999926614159 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1501-061", "NAME_": "SOTARA", "LOCATION": "Colombia", "LAT": 2.12, "LON": -76.58, "ELEV": 4400, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -76.580000067641294, 2.12000001320969 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1501-062", "NAME_": "PETACAS", "LOCATION": "Colombia", "LAT": 1.57, "LON": -76.78, "ELEV": 4054, "TYPE_": "Lava dome", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "South America", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -76.779999981045762, 1.569999989711263 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1501-07=", "NAME_": "DONA JUAN", "LOCATION": "Colombia", "LAT": 1.47, "LON": -76.92, "ELEV": 4150, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -76.92000002508334, 1.469999928354568 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1501-08=", "NAME_": "GALERAS", "LOCATION": "Colombia", "LAT": 1.22, "LON": -77.37, "ELEV": 4276, "TYPE_": "Complex v", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "South America", "Type": "Other", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -77.369999987225071, 1.220000088926227 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1501-09=", "NAME_": "AZUFRAL,", "LOCATION": "Colombia", "LAT": 1.08, "LON": -77.68, "ELEV": 4070, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -77.679999905329225, 1.080000044888635 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1501-10=", "NAME_": "CUMBAL", "LOCATION": "Colombia", "LAT": 0.98, "LON": -77.88, "ELEV": 4764, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -77.880000028042616, 0.97999998353194 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1501-11=", "NAME_": "NEGRO DE", "LOCATION": "Colombia", "LAT": 0.828, "LON": -77.964, "ELEV": 4445, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "D2", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -77.96400009632697, 0.828000049344553 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1502-001", "NAME_": "SOCHE", "LOCATION": "Ecuador", "LAT": 0.552, "LON": -77.58, "ELEV": 3955, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -77.580000053281452, 0.55200006419193 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1502-002", "NAME_": "CUICOCHA", "LOCATION": "Ecuador", "LAT": 0.308, "LON": -78.364, "ELEV": 3246, "TYPE_": "Caldera", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "South America", "Type": "Caldera & Complex", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -78.363999923135879, 0.308000065184018 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1502-003", "NAME_": "MOJANDA", "LOCATION": "Ecuador", "LAT": 0.13, "LON": -78.27, "ELEV": 4294, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -78.269999911508563, 0.129999985272349 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1502-004", "NAME_": "CAYAMBE", "LOCATION": "Ecuador", "LAT": 0.029, "LON": -77.986, "ELEV": 5790, "TYPE_": "Compound", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -77.985999929819769, 0.029000055166705 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1502-01=", "NAME_": "REVENTADO", "LOCATION": "Ecuador", "LAT": -0.078, "LON": -77.656, "ELEV": 3562, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -77.655999915720685, -0.077999924668291 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1502-011", "NAME_": "PULULAGUA", "LOCATION": "Ecuador", "LAT": 0.038, "LON": -78.463, "ELEV": 3356, "TYPE_": "Caldera", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "South America", "Type": "Caldera & Complex", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -78.462999906434703, 0.037999920451824 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1502-02=", "NAME_": "GUAGUA PI", "LOCATION": "Ecuador", "LAT": -0.171, "LON": -78.598, "ELEV": 4784, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -78.5979999788008, -0.171000067546686 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1502-021", "NAME_": "ATACAZO", "LOCATION": "Ecuador", "LAT": -0.353, "LON": -78.617, "ELEV": 4463, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -78.61699999673786, -0.353000041071979 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1502-022", "NAME_": "CHACANA", "LOCATION": "Ecuador", "LAT": -0.375, "LON": -78.25, "ELEV": 4643, "TYPE_": "Caldera", "STATUS": "Historica", "TIME_FRAME": "D4", "CONTINENT": "South America", "Type": "Caldera & Complex", "Last_eruption": "1700-1799", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -78.250000024822583, -0.375000083873701 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1502-03=", "NAME_": "ANTISANA", "LOCATION": "Ecuador", "LAT": -0.481, "LON": -78.141, "ELEV": 5753, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -78.141000098180768, -0.480999985650826 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1502-031", "NAME_": "PAN DE AZ", "LOCATION": "Ecuador", "LAT": -0.43, "LON": -77.72, "ELEV": 3482, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -77.720000097319058, -0.429999981569082 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1502-04=", "NAME_": "SUMACO", "LOCATION": "Ecuador", "LAT": -0.538, "LON": -77.626, "ELEV": 3990, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -77.626000085691715, -0.538000039461949 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1502-041", "NAME_": "ILINIZA", "LOCATION": "Ecuador", "LAT": -0.659, "LON": -78.714, "ELEV": 5248, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -78.714000033229865, -0.659000065562495 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1502-05=", "NAME_": "COTOPAXI", "LOCATION": "Ecuador", "LAT": -0.677, "LON": -78.436, "ELEV": 5911, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -78.436000101270423, -0.67700000544167 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1502-06=", "NAME_": "QUILOTOA", "LOCATION": "Ecuador", "LAT": -0.85, "LON": -78.9, "ELEV": 3914, "TYPE_": "Caldera", "STATUS": "Radiocarb", "TIME_FRAME": "D6", "CONTINENT": "South America", "Type": "Caldera & Complex", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -78.899999900368783, -0.849999904372908 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1502-08=", "NAME_": "TUNGURAHU", "LOCATION": "Ecuador", "LAT": -1.467, "LON": -78.442, "ELEV": 5023, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -78.441999941690852, -1.466999925025462 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1502-081", "NAME_": "TULABUG", "LOCATION": "Ecuador", "LAT": -1.78, "LON": -78.613, "ELEV": 3336, "TYPE_": "Scoria co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -78.613000103124222, -1.780000077303214 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1502-09=", "NAME_": "SANGAY", "LOCATION": "Ecuador", "LAT": -2.03, "LON": -78.33, "ELEV": 5230, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -78.329999990184376, -2.029999916731569 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1503-01=", "NAME_": "FERNANDIN", "LOCATION": "Galapagos", "LAT": -0.37, "LON": -91.55, "ELEV": 1495, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -91.550000022214874, -0.369999902893269 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1503-011", "NAME_": "ECUADOR,", "LOCATION": "Galapagos", "LAT": -0.02, "LON": -91.546, "ELEV": 790, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -91.545999919292314, -0.020000002108233 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1503-02=", "NAME_": "WOLF, VOL", "LOCATION": "Galapagos", "LAT": 0.02, "LON": -91.35, "ELEV": 1710, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -91.349999899501483, 0.019999980572663 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1503-03=", "NAME_": "DARWIN, V", "LOCATION": "Galapagos", "LAT": -0.18, "LON": -91.28, "ELEV": 1330, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "D3", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -91.280000086791631, -0.179999932831805 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1503-04=", "NAME_": "ALCEDO, V", "LOCATION": "Galapagos", "LAT": -0.43, "LON": -91.12, "ELEV": 1130, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -91.119999946759123, -0.429999981569082 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1503-05=", "NAME_": "NEGRA, SI", "LOCATION": "Galapagos", "LAT": -0.83, "LON": -91.17, "ELEV": 1490, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -91.170000082091946, -0.830000017686928 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1503-06=", "NAME_": "AZUL, CER", "LOCATION": "Galapagos", "LAT": -0.9, "LON": -91.42, "ELEV": 1690, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -91.419999921520287, -0.900000039705731 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1503-09=", "NAME_": "SANTIAGO", "LOCATION": "Galapagos", "LAT": -0.22, "LON": -90.77, "ELEV": 920, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -90.770000045974086, -0.219999915512702 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1503-091", "NAME_": "SANTA CRU", "LOCATION": "Galapagos", "LAT": -0.62, "LON": -90.33, "ELEV": 864, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -90.330000027175345, -0.619999951630547 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1503-10=", "NAME_": "FLOREANA", "LOCATION": "Galapagos", "LAT": -1.3, "LON": -90.45, "ELEV": 640, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -90.44999997521802, -1.300000075823576 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1503-12-", "NAME_": "SAN CRIST", "LOCATION": "Galapagos", "LAT": -0.88, "LON": -89.5, "ELEV": 759, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -89.499999915601734, -0.879999943710814 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1504-00-", "NAME_": "FIRURA, N", "LOCATION": "Peru", "LAT": -15.23, "LON": -72.63, "ELEV": 5498, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -72.630000051104503, -15.230000062076101 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1504-001", "NAME_": "COROPUNA", "LOCATION": "Peru", "LAT": -15.52, "LON": -72.65, "ELEV": 6377, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -72.649999937790483, -15.520000093494261 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1504-002", "NAME_": "ANDAHUA V", "LOCATION": "Peru", "LAT": -15.42, "LON": -72.33, "ELEV": 4713, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -72.330000076343339, -15.420000032137565 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1504-003", "NAME_": "SABANCAYA", "LOCATION": "Peru", "LAT": -15.78, "LON": -71.85, "ELEV": 5967, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -71.850000074863686, -15.780000085574528 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1504-004", "NAME_": "QUIMSACHA", "LOCATION": "Peru", "LAT": -14.37, "LON": -71.17, "ELEV": 3923, "TYPE_": "Lava dome", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -71.169999950670672, -14.369999911164584 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1504-005", "NAME_": "CHACHANI,", "LOCATION": "Peru", "LAT": -16.191, "LON": -71.53, "ELEV": 6057, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -71.53000000410762, -16.190999933784326 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1504-01=", "NAME_": "MISTI, EL", "LOCATION": "Peru", "LAT": -16.294, "LON": -71.409, "ELEV": 5822, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D4", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1700-1799", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -71.408999978007074, -16.294000020005697 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1504-02=", "NAME_": "UBINAS", "LOCATION": "Peru", "LAT": -16.355, "LON": -70.903, "ELEV": 5672, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -70.90300004011209, -16.354999967430444 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1504-03=", "NAME_": "HUAYNAPUT", "LOCATION": "Peru", "LAT": -16.608, "LON": -70.85, "ELEV": 4850, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D5", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1500-1699", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -70.850000089223528, -16.608000041032398 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1504-031", "NAME_": "TICSANI", "LOCATION": "Peru", "LAT": -16.755, "LON": -70.595, "ELEV": 5408, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -70.595000068814755, -16.755000003548304 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1504-04=", "NAME_": "TUTUPACA", "LOCATION": "Peru", "LAT": -17.025, "LON": -70.358, "ELEV": 5815, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -70.357999988285172, -17.024999938971561 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1504-05-", "NAME_": "YUCAMANE", "LOCATION": "Peru", "LAT": -17.18, "LON": -70.2, "ELEV": 5550, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D4", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1700-1799", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -70.200000004368405, -17.179999898023624 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1504-06-", "NAME_": "CASIRI, N", "LOCATION": "Peru", "LAT": -17.47, "LON": -69.82, "ELEV": 5650, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -69.820000064245448, -17.469999929441798 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-01=", "NAME_": "TACORA", "LOCATION": "Chile-N", "LAT": -17.72, "LON": -69.77, "ELEV": 5980, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -69.769999928912654, -17.719999978179075 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-011", "NAME_": "LEXONE", "LOCATION": "Chile-N", "LAT": -17.87, "LON": -69.48, "ELEV": 5340, "TYPE_": "Lava dome", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -69.47999989749448, -17.869999965559657 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-012", "NAME_": "PATILLA P", "LOCATION": "Bolivia", "LAT": -18.05, "LON": -69.03, "ELEV": 5300, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -69.029999935352748, -18.049999992278131 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-013", "NAME_": "ANALLAJSI", "LOCATION": "Bolivia", "LAT": -17.92, "LON": -68.92, "ELEV": 5750, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -68.919999930653063, -17.920000100892466 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-014", "NAME_": "MACIZO DE", "LOCATION": "Bolivia", "LAT": -18.25, "LON": -68.53, "ELEV": 5520, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -68.530000047187116, -18.2499999056826 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-015", "NAME_": "MACIZO DE", "LOCATION": "Bolivia", "LAT": -18.32, "LON": -68.8, "ELEV": 5400, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -68.799999982610387, -18.319999927701389 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-016", "NAME_": "PARINACOT", "LOCATION": "Chile-N", "LAT": -18.17, "LON": -69.15, "ELEV": 6348, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -69.150000092704346, -18.169999940320807 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-017", "NAME_": "ACOTANGO", "LOCATION": "Chile-N", "LAT": -18.37, "LON": -69.05, "ELEV": 6052, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -69.050000031347651, -18.370000063034198 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-02=", "NAME_": "GUALLATIR", "LOCATION": "Chile-N", "LAT": -18.42, "LON": -69.17, "ELEV": 6071, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -69.169999979390326, -18.419999989058084 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-021", "NAME_": "COLLUMA,", "LOCATION": "Bolivia", "LAT": -18.5, "LON": -68.07, "ELEV": 3876, "TYPE_": "Maar", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "South America", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -68.069999932393472, -18.499999954419863 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-022", "NAME_": "SACABAYA,", "LOCATION": "Bolivia", "LAT": -18.62, "LON": -68.75, "ELEV": 4215, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -68.750000056586487, -18.619999902462553 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-023", "NAME_": "ARINTICA,", "LOCATION": "Chile-N", "LAT": -18.73, "LON": -69.05, "ELEV": 5597, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -69.050000031347651, -18.729999907162238 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-024", "NAME_": "TATA SABA", "LOCATION": "Bolivia", "LAT": -19.13, "LON": -68.53, "ELEV": 5430, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -68.530000047187116, -19.129999943280083 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-03=", "NAME_": "ISLUGA", "LOCATION": "Chile-N", "LAT": -19.15, "LON": -68.83, "ELEV": 5050, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -68.83000002194828, -19.150000039275 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-031", "NAME_": "PUCHULDIZ", "LOCATION": "Chile-N", "LAT": -19.42, "LON": -68.97, "ELEV": 4500, "TYPE_": "Hydrother", "STATUS": "Pleistoce", "TIME_FRAME": "Q", "CONTINENT": "South America", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -68.970000065985857, -19.419999974698257 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-032", "NAME_": "PINA, CER", "LOCATION": "Chile-N", "LAT": -19.492, "LON": -68.65, "ELEV": 4037, "TYPE_": "Unknown", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "South America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -68.649999995229791, -19.491999943523865 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-033", "NAME_": "NUEVO MUN", "LOCATION": "Bolivia", "LAT": -19.78, "LON": -66.48, "ELEV": 5438, "TYPE_": "Lava dome", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -66.479999940573975, -19.78000002813522 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-04=", "NAME_": "IRRUPUTUN", "LOCATION": "Chile-N", "LAT": -20.73, "LON": -68.55, "ELEV": 5163, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -68.549999933873096, -20.730000087751506 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-041", "NAME_": "UNNAMED", "LOCATION": "Chile-N", "LAT": -20.83, "LON": -68.63, "ELEV": 4200, "TYPE_": "Pumice co", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "South America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -68.629999899234889, -20.829999939799265 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-042", "NAME_": "PAMPA LUX", "LOCATION": "Bolivia", "LAT": -20.85, "LON": -68.2, "ELEV": 5543, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -68.20000003308806, -20.850000035794181 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-05=", "NAME_": "OLCA-PARU", "LOCATION": "Chile-N", "LAT": -20.93, "LON": -68.48, "ELEV": 5407, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -68.479999911854321, -20.93000000115596 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-051", "NAME_": "AUCANQUIL", "LOCATION": "Chile-N", "LAT": -21.22, "LON": -68.47, "ELEV": 6176, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -68.469999968511331, -21.220000032574134 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-052", "NAME_": "SAN AGUST", "LOCATION": "Bolivia", "LAT": -21.25, "LON": -67.75, "ELEV": 4980, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -67.750000070946328, -21.250000071912041 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-06=", "NAME_": "OLLAGUE", "LOCATION": "Chile-N", "LAT": -21.3, "LON": -68.18, "ELEV": 5868, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -68.179999937093157, -21.299999997935913 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-061", "NAME_": "YUMIA, CE", "LOCATION": "Bolivia", "LAT": -21.5, "LON": -67.5, "ELEV": 4050, "TYPE_": "Cone", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "South America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -67.500000022209036, -21.499999911340382 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-062", "NAME_": "ESCALA", "LOCATION": "Bolivia", "LAT": -21.6, "LON": -66.88, "ELEV": 4000, "TYPE_": "Lava dome", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -66.879999976691835, -21.599999972697077 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-063", "NAME_": "SANTA ISA", "LOCATION": "Bolivia", "LAT": -21.67, "LON": -66.5, "ELEV": 5100, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -66.500000036568878, -21.669999994715866 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-064", "NAME_": "MOIRO, CE", "LOCATION": "Bolivia", "LAT": -21.68, "LON": -67.47, "ELEV": 4250, "TYPE_": "Scoria co", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "South America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -67.469999982871144, -21.679999938058856 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-065", "NAME_": "AZUFRE, C", "LOCATION": "Chile-N", "LAT": -21.78, "LON": -68.23, "ELEV": 5486, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -68.230000072425952, -21.779999999415551 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-07=", "NAME_": "SAN PEDRO", "LOCATION": "Chile-N", "LAT": -21.88, "LON": -68.4, "ELEV": 6145, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -68.399999946492528, -21.880000060772247 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-071", "NAME_": "CHASCON,", "LOCATION": "Bolivia", "LAT": -21.88, "LON": -67.9, "ELEV": 5125, "TYPE_": "Lava dome", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -67.900000058326896, -21.880000060772247 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-072", "NAME_": "CHAO", "LOCATION": "Chile-N", "LAT": -22.12, "LON": -68.15, "ELEV": 5100, "TYPE_": "Lava dome", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -68.149999897755237, -22.119999956857612 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-073", "NAME_": "TOCONCE,", "LOCATION": "Chile-N", "LAT": -22.2, "LON": -68.1, "ELEV": 5435, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -68.099999971731364, -22.199999922219391 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-074", "NAME_": "QUETENA", "LOCATION": "Bolivia", "LAT": -22.25, "LON": -67.42, "ELEV": 5730, "TYPE_": "Fissure v", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "South America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -67.420000056847272, -22.250000057552199 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-075", "NAME_": "UTURUNCO", "LOCATION": "Bolivia", "LAT": -22.27, "LON": -67.22, "ELEV": 6008, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -67.219999934133881, -22.269999944238194 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-08=", "NAME_": "TATIO", "LOCATION": "Chile-N", "LAT": -22.35, "LON": -68.03, "ELEV": 4280, "TYPE_": "Hydrother", "STATUS": "Pleistoce", "TIME_FRAME": "Q", "CONTINENT": "South America", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -68.029999949712561, -22.349999909599973 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-081", "NAME_": "TOCORPURI", "LOCATION": "Chile-N", "LAT": -22.43, "LON": -67.9, "ELEV": 5808, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -67.900000058326896, -22.430000084270688 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-09=", "NAME_": "PUTANA", "LOCATION": "Chile-N", "LAT": -22.57, "LON": -67.87, "ELEV": 5890, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -67.870000018989003, -22.569999918999343 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-091", "NAME_": "SAIRECABU", "LOCATION": "Chile-N", "LAT": -22.73, "LON": -67.88, "ELEV": 5971, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -67.879999962331993, -22.730000059031838 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-092", "NAME_": "LICANCABU", "LOCATION": "Chile-N", "LAT": -22.83, "LON": -67.88, "ELEV": 5916, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -67.879999962331993, -22.829999911079611 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-093", "NAME_": "GUAYAQUES", "LOCATION": "Chile-N", "LAT": -22.88, "LON": -67.58, "ELEV": 5598, "TYPE_": "Lava dome", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -67.579999987570829, -22.88000004641242 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-094", "NAME_": "PURICO CO", "LOCATION": "Chile-N", "LAT": -23.0, "LON": -67.75, "ELEV": 5703, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -67.750000070946328, -22.999999994455095 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-095", "NAME_": "COLACHI", "LOCATION": "Chile-N", "LAT": -23.23, "LON": -67.65, "ELEV": 5631, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -67.650000009589633, -23.22999994719747 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-096", "NAME_": "ACAMARCHI", "LOCATION": "Chile-N", "LAT": -23.3, "LON": -67.62, "ELEV": 6046, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -67.619999970251712, -23.299999969216259 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-097", "NAME_": "OVERO, CE", "LOCATION": "Chile-N", "LAT": -23.35, "LON": -67.67, "ELEV": 4555, "TYPE_": "Maar", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -67.669999896275613, -23.350000104549068 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-10=", "NAME_": "LASCAR", "LOCATION": "Chile-N", "LAT": -23.37, "LON": -67.73, "ELEV": 5592, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -67.729999974951426, -23.369999991235048 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-101", "NAME_": "CHILIQUES", "LOCATION": "Chile-N", "LAT": -23.58, "LON": -67.7, "ELEV": 5778, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -67.699999935613505, -23.580000057291429 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-102", "NAME_": "CORDON DE", "LOCATION": "Chile-N", "LAT": -23.75, "LON": -67.53, "ELEV": 5852, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -67.530000061546957, -23.749999931357991 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-103", "NAME_": "CORDON CH", "LOCATION": "Chile-N", "LAT": -23.85, "LON": -67.62, "ELEV": 5623, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -67.619999970251712, -23.849999992714686 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-104", "NAME_": "TUJLE, CE", "LOCATION": "Chile-N", "LAT": -23.83, "LON": -67.95, "ELEV": 3550, "TYPE_": "Maar", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -67.949999984350796, -23.829999896719784 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-105", "NAME_": "PULAR", "LOCATION": "Chile-N", "LAT": -24.18, "LON": -68.05, "ELEV": 6233, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -68.050000045707492, -24.180000006813756 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-106", "NAME_": "NEGRILLAR", "LOCATION": "Chile-N", "LAT": -24.18, "LON": -68.25, "ELEV": 3500, "TYPE_": "Pyroclast", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "South America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -68.249999959111932, -24.180000006813756 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-107", "NAME_": "ARACAR", "LOCATION": "Argentina", "LAT": -24.27, "LON": -67.77, "ELEV": 6082, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -67.769999957632308, -24.269999915518525 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-108", "NAME_": "SOCOMPA", "LOCATION": "Chile-N", "LAT": -24.4, "LON": -68.25, "ELEV": 6051, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -68.249999959111932, -24.400000016213127 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-109", "NAME_": "NEGRILLAR", "LOCATION": "Chile-N", "LAT": -24.28, "LON": -68.6, "ELEV": 4109, "TYPE_": "Pyroclast", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "South America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -68.600000069205919, -24.280000068170452 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-11=", "NAME_": "LLULLAILL", "LOCATION": "Chile-N", "LAT": -24.72, "LON": -68.53, "ELEV": 6739, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -68.530000047187116, -24.720000086969193 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-111", "NAME_": "TUZGLE, C", "LOCATION": "Argentina", "LAT": -24.05, "LON": -66.48, "ELEV": 5550, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -66.479999940573975, -24.049999906119155 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-112", "NAME_": "ESCORIAL,", "LOCATION": "Chile-N", "LAT": -25.08, "LON": -68.37, "ELEV": 5447, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -68.369999907154636, -25.07999993109722 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-12=", "NAME_": "LASTARRIA", "LOCATION": "Chile-N", "LAT": -25.17, "LON": -68.5, "ELEV": 5697, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -68.500000007849223, -25.170000049110925 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-121", "NAME_": "CORDON DE", "LOCATION": "Chile-N", "LAT": -25.33, "LON": -68.52, "ELEV": 5463, "TYPE_": "Complex v", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -68.520000103844126, -25.329999979834497 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-122", "NAME_": "BAYO, CER", "LOCATION": "Chile-N", "LAT": -25.42, "LON": -68.58, "ELEV": 5401, "TYPE_": "Complex v", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -68.579999973211017, -25.420000097848202 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-123", "NAME_": "ANTOFALLA", "LOCATION": "Argentina", "LAT": -25.53, "LON": -68.0, "ELEV": 6100, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -67.999999910374669, -25.530000102547888 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-124", "NAME_": "ANTOFAGAS", "LOCATION": "Argentina", "LAT": -26.08, "LON": -67.5, "ELEV": 4000, "TYPE_": "Scoria co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -67.500000022209036, -26.079999916737393 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-125", "NAME_": "NEVADA, S", "LOCATION": "Chile", "LAT": -26.48, "LON": -68.58, "ELEV": 6127, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -68.579999973211017, -26.479999952855252 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-126", "NAME_": "CONDOR, C", "LOCATION": "Argentina", "LAT": -26.62, "LON": -68.35, "ELEV": 6532, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -68.350000020468627, -26.619999996892844 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-127", "NAME_": "PEINADO", "LOCATION": "Argentina", "LAT": -26.62, "LON": -68.15, "ELEV": 5740, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -68.149999897755237, -26.619999996892844 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-128", "NAME_": "ROBLEDO", "LOCATION": "Argentina", "LAT": -26.77, "LON": -67.72, "ELEV": 4400, "TYPE_": "Caldera", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -67.720000031608407, -26.769999984273412 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-129", "NAME_": "FALSO AZU", "LOCATION": "Chile-N", "LAT": -26.8, "LON": -68.37, "ELEV": 5890, "TYPE_": "Complex v", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -68.369999907154636, -26.800000023611318 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-13=", "NAME_": "OJOS DEL", "LOCATION": "Chile-N", "LAT": -27.12, "LON": -68.53, "ELEV": 6887, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -68.530000047187116, -27.120000094367384 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-131", "NAME_": "TIPAS", "LOCATION": "Argentina", "LAT": -27.2, "LON": -68.55, "ELEV": 6660, "TYPE_": "Complex v", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -68.549999933873096, -27.200000059729177 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1505-14-", "NAME_": "COPIAPO", "LOCATION": "Chile-N", "LAT": -27.3, "LON": -69.13, "ELEV": 6052, "TYPE_": "Stratovol", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -69.129999996709444, -27.299999911776936 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-01=", "NAME_": "TUPUNGATI", "LOCATION": "Chile-C", "LAT": -33.4, "LON": -69.8, "ELEV": 6000, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -69.799999968250546, -33.400000096283591 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-02=", "NAME_": "SAN JOSE", "LOCATION": "Chile-C", "LAT": -33.782, "LON": -69.897, "ELEV": 5856, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -69.897000004742551, -33.781999983213339 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-021", "NAME_": "MAIPO", "LOCATION": "Chile-C", "LAT": -34.161, "LON": -69.833, "ELEV": 5264, "TYPE_": "Caldera", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "South America", "Type": "Caldera & Complex", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -69.833000032453128, -34.161000054587348 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-022", "NAME_": "PALOMO", "LOCATION": "Chile-C", "LAT": -34.608, "LON": -70.295, "ELEV": 4860, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -70.295000094053592, -34.607999991864403 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-03=", "NAME_": "TINGUIRIR", "LOCATION": "Chile-C", "LAT": -34.814, "LON": -70.352, "ELEV": 4280, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -70.351999938555792, -34.813999954998224 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-04=", "NAME_": "PLANCHON-", "LOCATION": "Chile-C", "LAT": -35.24, "LON": -70.57, "ELEV": 4107, "TYPE_": "Calderas", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "South America", "Type": "Caldera & Complex", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -70.570000001148344, -35.239999927531429 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-041", "NAME_": "MONDACA", "LOCATION": "Chile-C", "LAT": -35.464, "LON": -70.8, "ELEV": 2048, "TYPE_": "Lava dome", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -70.799999953890705, -35.464000039853353 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-042", "NAME_": "CALABOZOS", "LOCATION": "Chile-C", "LAT": -35.558, "LON": -70.496, "ELEV": 3508, "TYPE_": "Caldera", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -70.496000085515931, -35.558000051480683 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-05=", "NAME_": "DESCABEZA", "LOCATION": "Chile-C", "LAT": -35.58, "LON": -70.75, "ELEV": 3953, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -70.750000027866832, -35.580000094282411 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-06=", "NAME_": "AZUL, CER", "LOCATION": "Chile-C", "LAT": -35.653, "LON": -70.761, "ELEV": 3788, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -70.761000049267693, -35.652999931856961 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-061", "NAME_": "HORNITOS,", "LOCATION": "Chile-C", "LAT": -35.725, "LON": -70.808, "ELEV": 2000, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -70.807999950426904, -35.724999900682562 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-062", "NAME_": "MAULE, LA", "LOCATION": "Chile-C", "LAT": -36.02, "LON": -70.58, "ELEV": 3092, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -70.579999944491334, -36.019999903772231 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-063", "NAME_": "SAN PEDRO", "LOCATION": "Chile-C", "LAT": -35.989, "LON": -70.849, "ELEV": 3621, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -70.849000011165657, -35.988999995685383 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-064", "NAME_": "LONGAVI,", "LOCATION": "Chile-C", "LAT": -36.193, "LON": -71.161, "ELEV": 3242, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -71.161000085385552, -36.193000012012398 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-065", "NAME_": "BLANCA, L", "LOCATION": "Chile-C", "LAT": -36.286, "LON": -71.009, "ELEV": 2268, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -71.008999941889243, -36.285999945581857 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-066", "NAME_": "RESAGO, V", "LOCATION": "Chile-C", "LAT": -36.45, "LON": -70.92, "ELEV": 1550, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -70.919999901933409, -36.449999979227982 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-067", "NAME_": "PAYUN MAT", "LOCATION": "Argentina", "LAT": -36.42, "LON": -69.2, "ELEV": 3691, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -69.200000018728218, -36.419999939890083 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-068", "NAME_": "DOMUYO, V", "LOCATION": "Argentina", "LAT": -36.63, "LON": -70.42, "ELEV": 4709, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -70.420000013767776, -36.630000005946464 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-07=", "NAME_": "CHILLAN,", "LOCATION": "Chile-C", "LAT": -36.863, "LON": -71.377, "ELEV": 3212, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -71.376999991862363, -36.862999983553507 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-071", "NAME_": "TROMEN", "LOCATION": "Argentina", "LAT": -37.142, "LON": -70.03, "ELEV": 3978, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "?", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -70.029999920992907, -37.141999993570813 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-072", "NAME_": "PUESTO CO", "LOCATION": "Argentina", "LAT": -37.55, "LON": -69.62, "ELEV": 970, "TYPE_": "Pyroclast", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -69.619999941532058, -37.550000026224851 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-08=", "NAME_": "ANTUCO", "LOCATION": "Chile-C", "LAT": -37.406, "LON": -71.349, "ELEV": 2979, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -71.348999899331289, -37.406000088573634 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-09=", "NAME_": "COPAHUE", "LOCATION": "Chile-C", "LAT": -37.85, "LON": -71.17, "ELEV": 2965, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -71.169999950670672, -37.850000000986007 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-091", "NAME_": "CALLAQUI", "LOCATION": "Chile-C", "LAT": -37.92, "LON": -71.45, "ELEV": 3164, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -71.450000038745856, -37.920000023004803 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-092", "NAME_": "TOLGUACA", "LOCATION": "Chile-C", "LAT": -38.31, "LON": -71.645, "ELEV": 2806, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -71.644999980478815, -38.309999906470736 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-10=", "NAME_": "LONQUIMAY", "LOCATION": "Chile-C", "LAT": -38.377, "LON": -71.58, "ELEV": 2865, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -71.579999930131521, -38.376999903624849 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-101", "NAME_": "CHAPULUL,", "LOCATION": "Chile-C", "LAT": -38.37, "LON": -71.08, "ELEV": 2143, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -71.080000041965889, -38.369999985146535 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-11=", "NAME_": "LLAIMA", "LOCATION": "Chile-C", "LAT": -38.692, "LON": -71.729, "ELEV": 3125, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -71.72900004876314, -38.69200000270942 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-111", "NAME_": "SOLLIPULL", "LOCATION": "Chile-C", "LAT": -38.97, "LON": -71.52, "ELEV": 2282, "TYPE_": "Caldera", "STATUS": "Radiocarb", "TIME_FRAME": "D6", "CONTINENT": "South America", "Type": "Caldera & Complex", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -71.52000006076463, -38.969999934668856 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-112", "NAME_": "CABURGUA", "LOCATION": "Chile-C", "LAT": -39.2, "LON": -71.83, "ELEV": 995, "TYPE_": "Cinder co", "STATUS": "Tephrochr", "TIME_FRAME": "D7", "CONTINENT": "South America", "Type": "Cone Types", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -71.829999978868784, -39.200000096720146 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-113", "NAME_": "REDONDO,", "LOCATION": "Chile-C", "LAT": -39.27, "LON": -71.7, "ELEV": 1496, "TYPE_": "Cinder co", "STATUS": "Tephrochr", "TIME_FRAME": "D7", "CONTINENT": "South America", "Type": "Cone Types", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -71.700000087483119, -39.269999909430013 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-114", "NAME_": "HUELEMOLL", "LOCATION": "Chile-C", "LAT": -39.3, "LON": -71.82, "ELEV": 810, "TYPE_": "Cinder co", "STATUS": "Tephrochr", "TIME_FRAME": "D7", "CONTINENT": "South America", "Type": "Cone Types", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -71.820000035525794, -39.299999948767912 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-12=", "NAME_": "VILLARRIC", "LOCATION": "Chile-C", "LAT": -39.42, "LON": -71.93, "ELEV": 2847, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -71.93000004022548, -39.419999896810594 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-121", "NAME_": "QUETRUPIL", "LOCATION": "Chile-C", "LAT": -39.5, "LON": -71.7, "ELEV": 2360, "TYPE_": "Caldera", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "South America", "Type": "Caldera & Complex", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -71.700000087483119, -39.500000071481303 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-122", "NAME_": "LANIN", "LOCATION": "Chile-C", "LAT": -39.633, "LON": -71.5, "ELEV": 3747, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -71.499999964769728, -39.632999987731658 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-123", "NAME_": "HUANQUIHU", "LOCATION": "Argentina", "LAT": -39.87, "LON": -71.55, "ELEV": 1300, "TYPE_": "Pyroclast", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -71.550000100102551, -39.870000068261255 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-13=", "NAME_": "MOCHO-CHO", "LOCATION": "Chile-C", "LAT": -39.928, "LON": -72.027, "ELEV": 2422, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -72.027000076717485, -39.92799999082132 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-14=", "NAME_": "CARRAN-LO", "LOCATION": "Chile-C", "LAT": -40.35, "LON": -72.07, "ELEV": 1114, "TYPE_": "Pyroclast", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "South America", "Type": "Other", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -72.070000084263086, -40.350000069740901 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-141", "NAME_": "CORDON CA", "LOCATION": "Chile-C", "LAT": -40.52, "LON": -72.2, "ELEV": 1798, "TYPE_": "Fissure v", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "South America", "Type": "Other", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -72.199999975648751, -40.519999943807456 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-15=", "NAME_": "PUYEHUE", "LOCATION": "Chile-C", "LAT": -40.59, "LON": -72.117, "ELEV": 2236, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -72.116999985422268, -40.589999965826252 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-151", "NAME_": "MENCHECA", "LOCATION": "Chile-C", "LAT": -40.534, "LON": -72.038, "ELEV": 1840, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -72.038000098118346, -40.533999990073006 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-152", "NAME_": "PANTOJA,", "LOCATION": "Chile-C", "LAT": -40.77, "LON": -71.95, "ELEV": 2112, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -71.94999992691146, -40.769999992544733 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-153", "NAME_": "ANTILLANC", "LOCATION": "Chile-C", "LAT": -40.771, "LON": -72.153, "ELEV": 1990, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -72.15300007448954, -40.771000070602604 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1507-16-", "NAME_": "PUNTIGUID", "LOCATION": "Chile-C", "LAT": -40.969, "LON": -72.264, "ELEV": 2493, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -72.263999947938174, -40.969000037200253 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1508-01=", "NAME_": "OSORNO", "LOCATION": "Chile-S", "LAT": -41.1, "LON": -72.493, "ELEV": 2652, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -72.493000031931587, -41.100000006643796 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1508-02=", "NAME_": "CALBUCO", "LOCATION": "Chile-S", "LAT": -41.326, "LON": -72.614, "ELEV": 2003, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -72.614000058032133, -41.326000065772533 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1508-021", "NAME_": "CAYUTE-LA", "LOCATION": "Chile-S", "LAT": -41.25, "LON": -72.27, "ELEV": 506, "TYPE_": "Pyroclast", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -72.269999997667526, -41.249999994024371 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1508-022", "NAME_": "YATE, MT.", "LOCATION": "Chile-S", "LAT": -41.755, "LON": -72.396, "ELEV": 2187, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -72.395999995439581, -41.755000063170414 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1508-023", "NAME_": "HORNOPIRE", "LOCATION": "Chile-S", "LAT": -41.874, "LON": -72.431, "ELEV": 1572, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -72.431000006448983, -41.873999933155226 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1508-024", "NAME_": "VOLCANICO", "LOCATION": "Argentina", "LAT": -42.07, "LON": -71.65, "ELEV": 0, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -71.649999952150296, -42.069999952946063 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1508-03=", "NAME_": "HUEQUI", "LOCATION": "Chile-S", "LAT": -42.377, "LON": -72.578, "ELEV": 1318, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -72.57799996896486, -42.377000055494456 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1508-04=", "NAME_": "MINCHINMA", "LOCATION": "Chile-S", "LAT": -42.78, "LON": -72.43, "ELEV": 2404, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -72.429999928391112, -42.779999907168069 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1508-041", "NAME_": "CHAITEN", "LOCATION": "Chile-S", "LAT": -42.833, "LON": -72.646, "ELEV": 962, "TYPE_": "Caldera", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -72.646000044176844, -42.83300006736556 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1508-05=", "NAME_": "CORCOVADO", "LOCATION": "Chile-S", "LAT": -43.18, "LON": -72.8, "ELEV": 2300, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -72.799999925171051, -43.179999943285921 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1508-051", "NAME_": "YANTELES,", "LOCATION": "Chile-S", "LAT": -43.42, "LON": -72.83, "ELEV": 2050, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -72.829999964508971, -43.420000048680201 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1508-052", "NAME_": "PALENA VO", "LOCATION": "Chile-S", "LAT": -43.68, "LON": -72.5, "ELEV": 0, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -72.499999950409887, -43.680000040760468 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1508-053", "NAME_": "MELIMOYU", "LOCATION": "Chile-S", "LAT": -44.08, "LON": -72.88, "ELEV": 2400, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -72.880000099841766, -44.080000076878321 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1508-054", "NAME_": "PUYUHUAPI", "LOCATION": "Chile-S", "LAT": -44.3, "LON": -72.53, "ELEV": 255, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -72.529999989747807, -44.300000086277699 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1508-055", "NAME_": "MENTOLAT", "LOCATION": "Chile-S", "LAT": -44.67, "LON": -73.08, "ELEV": 1660, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -73.080000013246234, -44.670000083057651 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1508-056", "NAME_": "MACA", "LOCATION": "Chile-S", "LAT": -45.1, "LON": -73.2, "ELEV": 3078, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -73.19999996128891, -45.099999949204474 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1508-057", "NAME_": "HUDSON, C", "LOCATION": "Chile-S", "LAT": -45.9, "LON": -72.97, "ELEV": 1905, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -72.970000008546549, -45.900000021440185 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1508-06=", "NAME_": "LAUTARO", "LOCATION": "Chile-S", "LAT": -49.02, "LON": -73.55, "ELEV": 3380, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -73.550000071382897, -49.019999926403372 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1508-061", "NAME_": "VIEDMA, V", "LOCATION": "Argentina", "LAT": -49.358, "LON": -73.28, "ELEV": 1300, "TYPE_": "Subglacia", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "South America", "Type": "Submarine & Subglacial", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -73.279999926650703, -49.357999937038613 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1508-062", "NAME_": "AGUILERA", "LOCATION": "Chile-S", "LAT": -50.17, "LON": -73.83, "ELEV": 0, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -73.82999995014913, -50.16999989942412 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1508-063", "NAME_": "RECLUS", "LOCATION": "Chile-S", "LAT": -50.98, "LON": -73.7, "ELEV": 0, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -73.700000058763464, -50.979999915002821 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1508-07=", "NAME_": "BURNEY, M", "LOCATION": "Chile-S", "LAT": -52.33, "LON": -73.4, "ELEV": 1758, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "South America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -73.400000084002301, -52.33000001073696 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1508-08-", "NAME_": "PALEI-AIK", "LOCATION": "Chile-S", "LAT": -52.0, "LON": -70.0, "ELEV": 250, "TYPE_": "Cinder co", "STATUS": "Anthropol", "TIME_FRAME": "D7", "CONTINENT": "South America", "Type": "Cone Types", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -70.000000090963937, -51.999999996637904 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0304-01=", "NAME_": "HEARD", "LOCATION": "Indian O.", "LAT": -53.106, "LON": 73.513, "ELEV": 2745, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Antarctica", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 73.513000014351974, -53.106000093364131 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0304-02=", "NAME_": "KERGUELEN", "LOCATION": "Indian O.", "LAT": -49.58, "LON": 69.5, "ELEV": 1840, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Antarctica", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 69.500000103583602, -49.580000102553726 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0304-08-", "NAME_": "MARION IS", "LOCATION": "Indian O.", "LAT": -46.9, "LON": 37.75, "ELEV": 1230, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Antarctica", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 37.749999983908651, -46.900000007080351 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1806-02-", "NAME_": "BOUVET", "LOCATION": "Atlantic-", "LAT": -54.42, "LON": 3.35, "ELEV": 780, "TYPE_": "Shield vo", "STATUS": "Magnetism", "TIME_FRAME": "D7", "CONTINENT": "Antarctica", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 3.350000017407126, -54.420000100031004 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1900-013", "NAME_": "PLEIADES,", "LOCATION": "Antarctic", "LAT": -72.67, "LON": 165.5, "ELEV": 3040, "TYPE_": "Stratovol", "STATUS": "K-Ar", "TIME_FRAME": "D7", "CONTINENT": "Antarctica", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 165.499999980893506, -72.670000099600273 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1900-014", "NAME_": "UNNAMED", "LOCATION": "Antarctic", "LAT": -73.45, "LON": 164.58, "ELEV": 2987, "TYPE_": "Scoria co", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Antarctica", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 164.579999960615169, -73.450000075841075 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1900-015", "NAME_": "MELBOURNE", "LOCATION": "Antarctic", "LAT": -74.35, "LON": 164.7, "ELEV": 2732, "TYPE_": "Stratovol", "STATUS": "Tephrochr", "TIME_FRAME": "D4", "CONTINENT": "Antarctica", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1700-1799", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 164.699999908657844, -74.350000000124552 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1900-02=", "NAME_": "EREBUS", "LOCATION": "Antarctic", "LAT": -77.53, "LON": 167.17, "ELEV": 3794, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Antarctica", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 167.169999938074795, -77.529999983763545 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1900-021", "NAME_": "ROYAL SOC", "LOCATION": "Antarctic", "LAT": -78.25, "LON": 163.6, "ELEV": 3000, "TYPE_": "Cinder co", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Antarctica", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 163.600000070969884, -78.250000090637457 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1900-022", "NAME_": "BERLIN", "LOCATION": "Antarctic", "LAT": -76.05, "LON": -136.0, "ELEV": 3478, "TYPE_": "Shield vo", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Antarctica", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -135.999999980450923, -76.049999996643734 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1900-023", "NAME_": "ANDRUS", "LOCATION": "Antarctic", "LAT": -75.8, "LON": -132.33, "ELEV": 2978, "TYPE_": "Shield vo", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Antarctica", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -132.330000051989288, -75.799999947906457 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1900-024", "NAME_": "WAESCHE", "LOCATION": "Antarctic", "LAT": -77.17, "LON": -126.88, "ELEV": 3292, "TYPE_": "Shield vo", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Antarctica", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -126.879999952337769, -77.169999930326583 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1900-025", "NAME_": "SIPLE", "LOCATION": "Antarctic", "LAT": -73.43, "LON": -126.67, "ELEV": 3110, "TYPE_": "Shield vo", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Antarctica", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -126.670000095590311, -73.429999979846173 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1900-026", "NAME_": "TONEY MOU", "LOCATION": "Antarctic", "LAT": -75.8, "LON": -115.83, "ELEV": 3595, "TYPE_": "Shield vo", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Antarctica", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -115.829999974963073, -75.799999947906457 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1900-027", "NAME_": "TAKAHE", "LOCATION": "Antarctic", "LAT": -76.28, "LON": -112.08, "ELEV": 3460, "TYPE_": "Shield vo", "STATUS": "Ice Core", "TIME_FRAME": "D7", "CONTINENT": "Antarctica", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -112.080000081139673, -76.279999949386095 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1900-028", "NAME_": "HUDSON MO", "LOCATION": "Antarctic", "LAT": -74.33, "LON": -99.42, "ELEV": 749, "TYPE_": "Stratovol", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Antarctica", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -99.420000015950578, -74.329999904129636 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1900-029", "NAME_": "PETER I I", "LOCATION": "Antarctic", "LAT": -68.85, "LON": -90.58, "ELEV": 1640, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Antarctica", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -90.580000075912608, -68.849999974449148 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1900-03=", "NAME_": "DECEPTION", "LOCATION": "Antarctic", "LAT": -62.97, "LON": -60.65, "ELEV": 576, "TYPE_": "Caldera", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Antarctica", "Type": "Caldera & Complex", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -60.649999900799514, -62.970000008650807 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0100-01-", "NAME_": "WEST EIFE", "LOCATION": "Germany", "LAT": 50.17, "LON": 6.85, "ELEV": 600, "TYPE_": "Maars", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "Europe", "Type": "Explosive & Crater Features", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 6.850000071802185, 50.170000087197479 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0100-02-", "NAME_": "CHAINE DE", "LOCATION": "France", "LAT": 45.5, "LON": 2.75, "ELEV": 1464, "TYPE_": "Cinder co", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "Europe", "Type": "Cone Types", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 2.750000067884798, 45.499999963786763 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0100-03-", "NAME_": "OLOT VOLC", "LOCATION": "Spain", "LAT": 42.17, "LON": 2.53, "ELEV": 893, "TYPE_": "Pyroclast", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Europe", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 2.530000058485427, 42.169999992767174 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0101-001", "NAME_": "LARDERELL", "LOCATION": "Italy", "LAT": 43.25, "LON": 10.87, "ELEV": 500, "TYPE_": "Explosion", "STATUS": "Historica", "TIME_FRAME": "D6", "CONTINENT": "Europe", "Type": "Explosive & Crater Features", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 10.869999901048857, 43.249999943769154 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0101-002", "NAME_": "AMIATA", "LOCATION": "Italy", "LAT": 42.9, "LON": 11.63, "ELEV": 1738, "TYPE_": "Lava dome", "STATUS": "Pleistoce", "TIME_FRAME": "Q", "CONTINENT": "Europe", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 11.629999990603665, 42.90000004298409 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0101-003", "NAME_": "VULSINI", "LOCATION": "Italy", "LAT": 42.6, "LON": 11.93, "ELEV": 800, "TYPE_": "Caldera", "STATUS": "Historica", "TIME_FRAME": "D7", "CONTINENT": "Europe", "Type": "Caldera & Complex", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 11.929999965364829, 42.600000068222926 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0101-004", "NAME_": "ALBANO, M", "LOCATION": "Italy", "LAT": 41.73, "LON": 12.7, "ELEV": 949, "TYPE_": "Caldera", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Europe", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 12.699999998262626, 41.729999973968432 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0101-01=", "NAME_": "CAMPI FLE", "LOCATION": "Italy", "LAT": 40.827, "LON": 14.139, "ELEV": 458, "TYPE_": "Caldera", "STATUS": "Historica", "TIME_FRAME": "D5", "CONTINENT": "Europe", "Type": "Caldera & Complex", "Last_eruption": "1500-1699", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 14.138999924643684, 40.827000024820279 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0101-02=", "NAME_": "VESUVIUS", "LOCATION": "Italy", "LAT": 40.821, "LON": 14.426, "ELEV": 1281, "TYPE_": "Complex v", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Europe", "Type": "Other", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 14.425999931197168, 40.820999975090928 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0101-06=", "NAME_": "ETNA", "LOCATION": "Italy", "LAT": 37.734, "LON": 15.004, "ELEV": 3350, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Europe", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 15.004000047226668, 37.733999925021379 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0102-03=", "NAME_": "MILOS", "LOCATION": "Greece", "LAT": 36.699, "LON": 24.439, "ELEV": 751, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Europe", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 24.438999965115471, 36.698999928371819 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0104-01-", "NAME_": "ELBRUS", "LOCATION": "Russia-SW", "LAT": 43.33, "LON": 42.45, "ELEV": 5633, "TYPE_": "Stratovol", "STATUS": "Tephrochr", "TIME_FRAME": "D6", "CONTINENT": "Europe", "Type": "Shield & Stratovolcanoes", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 42.449999937348309, 43.329999909130919 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1700-01=", "NAME_": "SNAEFELLS", "LOCATION": "Iceland-W", "LAT": 64.8, "LON": -23.78, "ELEV": 1448, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D6", "CONTINENT": "Europe", "Type": "Shield & Stratovolcanoes", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -23.779999904881009, 64.800000084329014 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1700-02=", "NAME_": "LYSUHOLL", "LOCATION": "Iceland-W", "LAT": 64.87, "LON": -23.25, "ELEV": 540, "TYPE_": "Pyroclast", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Europe", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -23.249999977377485, 64.869999897038866 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1700-03=", "NAME_": "LJOSUFJOL", "LOCATION": "Iceland-W", "LAT": 64.87, "LON": -22.23, "ELEV": 988, "TYPE_": "Fissure v", "STATUS": "Anthropol", "TIME_FRAME": "D6", "CONTINENT": "Europe", "Type": "Other", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -22.229999895742395, 64.869999897038866 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1701-02=", "NAME_": "REYKJANES", "LOCATION": "Iceland-S", "LAT": 63.88, "LON": -22.5, "ELEV": 230, "TYPE_": "Crater ro", "STATUS": "Historica", "TIME_FRAME": "D6", "CONTINENT": "Europe", "Type": "Explosive & Crater Features", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -22.500000040474589, 63.88000006405062 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1701-03=", "NAME_": "KRISUVIK", "LOCATION": "Iceland-S", "LAT": 63.93, "LON": -22.1, "ELEV": 379, "TYPE_": "Crater ro", "STATUS": "Historica", "TIME_FRAME": "D6", "CONTINENT": "Europe", "Type": "Explosive & Crater Features", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -22.10000000435673, 63.929999990074521 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1701-04=", "NAME_": "BRENNISTE", "LOCATION": "Iceland-S", "LAT": 63.92, "LON": -21.83, "ELEV": 626, "TYPE_": "Crater ro", "STATUS": "Historica", "TIME_FRAME": "D6", "CONTINENT": "Europe", "Type": "Explosive & Crater Features", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -21.830000068933487, 63.920000046731531 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1701-05=", "NAME_": "HENGILL", "LOCATION": "Iceland-S", "LAT": 64.18, "LON": -21.33, "ELEV": 803, "TYPE_": "Crater ro", "STATUS": "Radiocarb", "TIME_FRAME": "D6", "CONTINENT": "Europe", "Type": "Explosive & Crater Features", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -21.329999971458932, 64.180000038811784 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1701-06=", "NAME_": "GRIMSNES", "LOCATION": "Iceland-S", "LAT": 64.03, "LON": -20.87, "ELEV": 214, "TYPE_": "Crater ro", "STATUS": "Tephrochr", "TIME_FRAME": "D7", "CONTINENT": "Europe", "Type": "Explosive & Crater Features", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -20.87000006597421, 64.030000051431216 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1701-07=", "NAME_": "PRESTAHNU", "LOCATION": "Iceland-S", "LAT": 64.6, "LON": -20.58, "ELEV": 1390, "TYPE_": "Subglacia", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "Europe", "Type": "Submarine & Subglacial", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -20.580000034556036, 64.599999961615623 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1701-08=", "NAME_": "LANGJOKUL", "LOCATION": "Iceland-S", "LAT": 64.75, "LON": -19.98, "ELEV": 1360, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D6", "CONTINENT": "Europe", "Type": "Shield & Stratovolcanoes", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -19.980000085033709, 64.749999948996191 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1701-09=", "NAME_": "HOFSJOKUL", "LOCATION": "Iceland-S", "LAT": 64.78, "LON": -18.92, "ELEV": 1782, "TYPE_": "Subglacia", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Europe", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -18.920000020717737, 64.779999988334112 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1701-10=", "NAME_": "KERLINGAR", "LOCATION": "Iceland-S", "LAT": 64.63, "LON": -19.32, "ELEV": 1488, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Europe", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -19.320000056835596, 64.630000000953515 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1702-02=", "NAME_": "EYJAFJOLL", "LOCATION": "Iceland-S", "LAT": 63.63, "LON": -19.62, "ELEV": 1666, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Europe", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -19.62000003159676, 63.630000015313357 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1702-03=", "NAME_": "KATLA", "LOCATION": "Iceland-S", "LAT": 63.63, "LON": -19.05, "ELEV": 1512, "TYPE_": "Subglacia", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Europe", "Type": "Submarine & Subglacial", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -19.049999912103402, 63.630000015313357 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1702-04=", "NAME_": "TINDFJALL", "LOCATION": "Iceland-S", "LAT": 63.78, "LON": -19.57, "ELEV": 1463, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Europe", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -19.569999896263937, 63.780000002693924 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1702-05=", "NAME_": "TORFAJOKU", "LOCATION": "Iceland-S", "LAT": 63.92, "LON": -19.17, "ELEV": 1259, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D6", "CONTINENT": "Europe", "Type": "Shield & Stratovolcanoes", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -19.170000069455028, 63.920000046731531 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1702-06=", "NAME_": "VATNAFJOL", "LOCATION": "Iceland-S", "LAT": 63.92, "LON": -19.67, "ELEV": 1235, "TYPE_": "Fissure v", "STATUS": "Tephrochr", "TIME_FRAME": "D6", "CONTINENT": "Europe", "Type": "Other", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -19.669999957620632, 63.920000046731531 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1702-07=", "NAME_": "HEKLA", "LOCATION": "Iceland-S", "LAT": 63.98, "LON": -19.7, "ELEV": 1491, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Europe", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -19.699999996958553, 63.979999916098393 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1703-01=", "NAME_": "GRIMSVOTN", "LOCATION": "Iceland-N", "LAT": 64.42, "LON": -17.33, "ELEV": 1725, "TYPE_": "Caldera", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Europe", "Type": "Caldera & Complex", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -17.33000002889824, 64.419999934897135 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1703-02=", "NAME_": "LOKI-FOGR", "LOCATION": "Iceland-N", "LAT": 64.48, "LON": -17.8, "ELEV": 1570, "TYPE_": "Subglacia", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Europe", "Type": "Submarine & Subglacial", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -17.800000087034903, 64.480000013572948 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1703-03=", "NAME_": "BARDARBUN", "LOCATION": "Iceland-N", "LAT": 64.63, "LON": -17.53, "ELEV": 2000, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Europe", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -17.529999942302709, 64.630000000953515 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1703-04=", "NAME_": "TUNGNAFEL", "LOCATION": "Iceland-N", "LAT": 64.73, "LON": -17.92, "ELEV": 1535, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Europe", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -17.920000035077578, 64.730000062310211 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1703-05=", "NAME_": "KVERKFJOL", "LOCATION": "Iceland-N", "LAT": 64.65, "LON": -16.72, "ELEV": 1920, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Europe", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -16.719999926724, 64.650000096948418 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1703-06=", "NAME_": "ASKJA", "LOCATION": "Iceland-N", "LAT": 65.03, "LON": -16.75, "ELEV": 1516, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Europe", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -16.749999966061921, 65.030000037071375 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1703-07=", "NAME_": "FREMRINAM", "LOCATION": "Iceland-N", "LAT": 65.43, "LON": -16.65, "ELEV": 939, "TYPE_": "Stratovol", "STATUS": "Tephrochr", "TIME_FRAME": "D7", "CONTINENT": "Europe", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -16.649999904705226, 65.430000073189234 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1703-08=", "NAME_": "KRAFLA", "LOCATION": "Iceland-N", "LAT": 65.73, "LON": -16.78, "ELEV": 650, "TYPE_": "Caldera", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Europe", "Type": "Caldera & Complex", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -16.780000005399813, 65.730000047950398 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1703-09=", "NAME_": "THEISTARE", "LOCATION": "Iceland", "LAT": 65.88, "LON": -16.83, "ELEV": 564, "TYPE_": "Shield vo", "STATUS": "Tephrochr", "TIME_FRAME": "D7", "CONTINENT": "Europe", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -16.829999931423686, 65.880000035330966 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1704-01=", "NAME_": "ORAEFAJOK", "LOCATION": "Iceland-S", "LAT": 64.0, "LON": -16.65, "ELEV": 2119, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D4", "CONTINENT": "Europe", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1700-1799", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -16.649999904705226, 64.000000012093295 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1704-02=", "NAME_": "ESJUFJOLL", "LOCATION": "Iceland-S", "LAT": 64.27, "LON": -16.65, "ELEV": 1760, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Europe", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -16.649999904705226, 64.269999947516567 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1706-01=", "NAME_": "JAN MAYEN", "LOCATION": "Atl-N-Jan", "LAT": 71.08, "LON": -8.17, "ELEV": 2277, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Europe", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -8.170000018104218, 71.080000086245207 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1802-001", "NAME_": "FLORES", "LOCATION": "Azores", "LAT": 39.4, "LON": -31.17, "ELEV": 915, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "Europe", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -31.169999897137075, 39.39999998858903 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1802-01=", "NAME_": "FAYAL", "LOCATION": "Azores", "LAT": 38.6, "LON": -28.73, "ELEV": 1043, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Europe", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -28.729999907057987, 38.59999991635334 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1802-02=", "NAME_": "PICO", "LOCATION": "Azores", "LAT": 38.47, "LON": -28.4, "ELEV": 2351, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D4", "CONTINENT": "Europe", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1700-1799", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -28.400000102267853, 38.470000024967675 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1802-03=", "NAME_": "SAN JORGE", "LOCATION": "Azores", "LAT": 38.65, "LON": -28.08, "ELEV": 1053, "TYPE_": "Fissure v", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Europe", "Type": "Other", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -28.080000031511787, 38.650000051686135 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1802-05=", "NAME_": "TERCEIRA", "LOCATION": "Azores", "LAT": 38.73, "LON": -27.32, "ELEV": 1023, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Europe", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -27.319999941956951, 38.730000017047928 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1802-08=", "NAME_": "SETE CIDA", "LOCATION": "Azores", "LAT": 37.87, "LON": -25.78, "ELEV": 856, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Europe", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -25.780000085470277, 37.870000075445347 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1802-081", "NAME_": "UNNAMED", "LOCATION": "Azores", "LAT": 37.78, "LON": -25.67, "ELEV": 350, "TYPE_": "Pyroclast", "STATUS": "Historica", "TIME_FRAME": "D5", "CONTINENT": "Europe", "Type": "Other", "Last_eruption": "1500-1699", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -25.670000080770592, 37.779999957431642 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1802-09=", "NAME_": "AGUA DE P", "LOCATION": "Azores", "LAT": 37.77, "LON": -25.47, "ELEV": 947, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D5", "CONTINENT": "Europe", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1500-1699", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -25.469999958057201, 37.770000014088652 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1802-10=", "NAME_": "FURNAS", "LOCATION": "Azores", "LAT": 37.77, "LON": -25.32, "ELEV": 805, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D5", "CONTINENT": "Europe", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1500-1699", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -25.319999970676633, 37.770000014088652 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-02-", "NAME_": "KISKA", "LOCATION": "Aleutian", "LAT": 52.1, "LON": 177.6, "ELEV": 1220, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 177.597144963722627, 52.098439497893317 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-05-", "NAME_": "LITTLE SI", "LOCATION": "Aleutian", "LAT": 51.95, "LON": 178.53, "ELEV": 1188, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 178.527191424616888, 51.948449031319818 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-06-", "NAME_": "SEMISOPOC", "LOCATION": "Aleutian", "LAT": 51.95, "LON": 179.62, "ELEV": 1221, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 179.617256957190222, 51.948466787177118 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-08-", "NAME_": "TANAGA", "LOCATION": "Aleutian", "LAT": 51.88, "LON": -178.13, "ELEV": 1806, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -178.132560969503061, 51.878567801185255 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-09-", "NAME_": "TAKAWANGH", "LOCATION": "Aleutian", "LAT": 51.87, "LON": -178.02, "ELEV": 1449, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -178.022544571532194, 51.868566093102835 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-11-", "NAME_": "KANAGA", "LOCATION": "Aleutian", "LAT": 51.92, "LON": -177.17, "ELEV": 1307, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -177.172497319027428, 51.91860136268815 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-111", "NAME_": "MOFFETT", "LOCATION": "Aleutian", "LAT": 51.93, "LON": -176.75, "ELEV": 1196, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -176.752478766376043, 51.92861731571827 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-112", "NAME_": "ADAGDAK", "LOCATION": "Aleutian", "LAT": 51.98, "LON": -176.6, "ELEV": 645, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -176.602489961667402, 51.978621259230486 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-12-", "NAME_": "GREAT SIT", "LOCATION": "Aleutian", "LAT": 52.08, "LON": -176.13, "ELEV": 1740, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -176.132464140959797, 52.078658293438352 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-16-", "NAME_": "ATKA", "LOCATION": "Aleutian", "LAT": 52.38, "LON": -174.15, "ELEV": 1533, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -174.152390820656876, 52.378743581843707 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-18-", "NAME_": "SEGUAM", "LOCATION": "Aleutian", "LAT": 52.32, "LON": -172.52, "ELEV": 1054, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -172.522406004399613, 52.318798010718702 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-21-", "NAME_": "YUNASKA", "LOCATION": "Aleutian", "LAT": 52.63, "LON": -170.63, "ELEV": 550, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -170.632336212847463, 52.628880669553645 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-24-", "NAME_": "CLEVELAND", "LOCATION": "Aleutian", "LAT": 52.82, "LON": -169.95, "ELEV": 1730, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -169.952253322217047, 52.818932103051239 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-27-", "NAME_": "VSEVIDOF", "LOCATION": "Aleutian", "LAT": 53.13, "LON": -168.68, "ELEV": 2149, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -168.682048799349957, 53.129046828590994 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-28-", "NAME_": "RECHESCHN", "LOCATION": "Aleutian", "LAT": 53.15, "LON": -168.55, "ELEV": 1984, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -168.552020736828808, 53.149055439772553 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-29-", "NAME_": "OKMOK", "LOCATION": "Aleutian", "LAT": 53.42, "LON": -168.13, "ELEV": 1073, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -168.131954300119162, 53.419099321742863 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-31-", "NAME_": "MAKUSHIN", "LOCATION": "Aleutian", "LAT": 53.9, "LON": -166.93, "ELEV": 2036, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -166.931888251742464, 53.899148054257495 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-311", "NAME_": "TABLE TOP", "LOCATION": "Aleutian", "LAT": 53.98, "LON": -166.67, "ELEV": 800, "TYPE_": "Cinder co", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -166.67189335157272, 53.979132515687873 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-32-", "NAME_": "AKUTAN", "LOCATION": "Aleutian", "LAT": 54.13, "LON": -165.97, "ELEV": 1303, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -165.971960397836938, 54.129130760201242 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-34-", "NAME_": "WESTDAHL", "LOCATION": "Aleutian", "LAT": 54.52, "LON": -164.65, "ELEV": 1654, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -164.651971858127609, 54.519101451150235 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-35-", "NAME_": "FISHER", "LOCATION": "Aleutian", "LAT": 54.67, "LON": -164.35, "ELEV": 1094, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -164.351971397421352, 54.669109621520093 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-36-", "NAME_": "SHISHALDI", "LOCATION": "Aleutian", "LAT": 54.75, "LON": -163.97, "ELEV": 2857, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -163.971987497126179, 54.749114964262738 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-37-", "NAME_": "ISANOTSKI", "LOCATION": "Aleutian", "LAT": 54.75, "LON": -163.73, "ELEV": 2446, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -163.73198946240035, 54.749113613122312 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-38-", "NAME_": "ROUNDTOP", "LOCATION": "Aleutian", "LAT": 54.8, "LON": -163.6, "ELEV": 1871, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -163.601989291924525, 54.799115513636096 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1102-01-", "NAME_": "FROSTY", "LOCATION": "Alaska Pe", "LAT": 55.07, "LON": -162.82, "ELEV": 1920, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -162.822007839999259, 55.06912270914453 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1102-011", "NAME_": "DUTTON", "LOCATION": "Alaska Pe", "LAT": 55.18, "LON": -162.27, "ELEV": 1473, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -162.272029168288071, 55.179125870556149 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1102-02-", "NAME_": "EMMONS LA", "LOCATION": "Alaska Pe", "LAT": 55.33, "LON": -162.07, "ELEV": 1465, "TYPE_": "Caldera", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -162.07202720537046, 55.329136461608215 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1102-03-", "NAME_": "PAVLOF", "LOCATION": "Alaska Pe", "LAT": 55.42, "LON": -161.9, "ELEV": 2519, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -161.902021100438475, 55.419145909612389 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1102-04-", "NAME_": "PAVLOF SI", "LOCATION": "Alaska Pe", "LAT": 55.45, "LON": -161.87, "ELEV": 2142, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D4", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1700-1799", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -161.872021846110243, 55.449147379923318 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1102-05-", "NAME_": "DANA", "LOCATION": "Alaska Pe", "LAT": 55.62, "LON": -161.22, "ELEV": 1354, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -161.222018038926933, 55.619166977155132 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1102-051", "NAME_": "UNNAMED", "LOCATION": "Alaska Pe", "LAT": 55.93, "LON": -160.0, "ELEV": 1555, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -160.002037355493258, 55.929191605063352 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1102-06-", "NAME_": "KUPREANOF", "LOCATION": "Alaska Pe", "LAT": 56.02, "LON": -159.8, "ELEV": 1895, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -159.802062415498682, 56.01919590961819 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1102-07-", "NAME_": "VENIAMINO", "LOCATION": "Alaska Pe", "LAT": 56.17, "LON": -159.38, "ELEV": 2507, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -159.382000632934705, 56.169202419499236 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1102-08-", "NAME_": "BLACK PEA", "LOCATION": "Alaska Pe", "LAT": 56.53, "LON": -158.8, "ELEV": 1032, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -158.802050071465942, 56.529215491469799 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1102-09-", "NAME_": "ANIAKCHAK", "LOCATION": "Alaska Pe", "LAT": 56.88, "LON": -158.17, "ELEV": 1341, "TYPE_": "Caldera", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "North America", "Type": "Caldera & Complex", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -158.172066689833088, 56.879230013786362 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1102-10-", "NAME_": "YANTARNI", "LOCATION": "Alaska Pe", "LAT": 57.02, "LON": -157.18, "ELEV": 1336, "TYPE_": "Stratovol", "STATUS": "Tephrochr", "TIME_FRAME": "D7", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -157.182061696136998, 57.01925770422433 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1102-11-", "NAME_": "CHIGINAGA", "LOCATION": "Alaska Pe", "LAT": 57.13, "LON": -157.0, "ELEV": 2075, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -157.002064316184175, 57.129263794904844 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1102-12-", "NAME_": "KIALAGVIK", "LOCATION": "Alaska Pe", "LAT": 57.38, "LON": -156.75, "ELEV": 1575, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -156.752074899573159, 57.379271474804789 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1102-131", "NAME_": "UNNAMED", "LOCATION": "Alaska Pe", "LAT": 57.87, "LON": -155.42, "ELEV": 300, "TYPE_": "Lava dome", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -155.422076074558674, 57.869297040185792 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1102-13A", "NAME_": "UGASHIK-P", "LOCATION": "Alaska Pe", "LAT": 57.75, "LON": -156.37, "ELEV": 1474, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -156.37209382794714, 57.749279760669836 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1102-13B", "NAME_": "UKINREK M", "LOCATION": "Alaska Pe", "LAT": 57.83, "LON": -156.52, "ELEV": 91, "TYPE_": "Maars", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Explosive & Crater Features", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -156.522096778583887, 57.829276910654777 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1102-14-", "NAME_": "MARTIN", "LOCATION": "Alaska Pe", "LAT": 58.17, "LON": -155.35, "ELEV": 1860, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -155.352062432635961, 58.169299054694378 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1102-15-", "NAME_": "MAGEIK", "LOCATION": "Alaska Pe", "LAT": 58.2, "LON": -155.25, "ELEV": 2165, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -155.252055444847343, 58.199300688884101 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1102-16-", "NAME_": "TRIDENT", "LOCATION": "Alaska Pe", "LAT": 58.23, "LON": -155.08, "ELEV": 1864, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -155.08204943902183, 58.229303663461145 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1102-17-", "NAME_": "KATMAI", "LOCATION": "Alaska Pe", "LAT": 58.27, "LON": -154.98, "ELEV": 2047, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -154.982043416578421, 58.269305768176281 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1102-18-", "NAME_": "NOVARUPTA", "LOCATION": "Alaska Pe", "LAT": 58.27, "LON": -155.16, "ELEV": 841, "TYPE_": "Caldera", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "North America", "Type": "Caldera & Complex", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -155.162049168355281, 58.26930251041528 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1102-19-", "NAME_": "GRIGGS", "LOCATION": "Alaska Pe", "LAT": 58.35, "LON": -155.1, "ELEV": 2317, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -155.102042765671172, 58.349304047127973 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1102-20-", "NAME_": "SNOWY", "LOCATION": "Alaska Pe", "LAT": 58.33, "LON": -154.68, "ELEV": 2161, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "?", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -154.682027445988354, 58.329312244984337 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1102-21-", "NAME_": "DENISON", "LOCATION": "Alaska Pe", "LAT": 58.42, "LON": -154.45, "ELEV": 2318, "TYPE_": "Stratovol", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -154.452025953577134, 58.419316911430258 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1102-22-", "NAME_": "STELLER", "LOCATION": "Alaska Pe", "LAT": 58.43, "LON": -154.4, "ELEV": 2272, "TYPE_": "Unknown", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -154.402033609958181, 58.429317422081681 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1102-23-", "NAME_": "KUKAK", "LOCATION": "Alaska Pe", "LAT": 58.47, "LON": -154.35, "ELEV": 2040, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -154.352034017771587, 58.469318405001871 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1102-24-", "NAME_": "DEVILS DE", "LOCATION": "Alaska Pe", "LAT": 58.48, "LON": -154.3, "ELEV": 1954, "TYPE_": "Stratovol", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -154.302037354269288, 58.479319390635858 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1102-25-", "NAME_": "KAGUYAK", "LOCATION": "Alaska Pe", "LAT": 58.62, "LON": -154.05, "ELEV": 901, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "D6", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -154.052057450971802, 58.619322180623044 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1102-26-", "NAME_": "FOURPEAKE", "LOCATION": "Alaska Pe", "LAT": 58.77, "LON": -153.68, "ELEV": 2104, "TYPE_": "Stratovol", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -153.682069085527246, 58.769329675455964 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1102-27-", "NAME_": "DOUGLAS", "LOCATION": "Alaska Pe", "LAT": 58.87, "LON": -153.55, "ELEV": 2140, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -153.552072001194489, 58.869333154815266 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1103-01-", "NAME_": "AUGUSTINE", "LOCATION": "Alaska-SW", "LAT": 59.37, "LON": -153.42, "ELEV": 1252, "TYPE_": "Lava dome", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Explosive & Crater Features", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -153.422115331653259, 59.36934735092445 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1103-02-", "NAME_": "ILIAMNA", "LOCATION": "Alaska-SW", "LAT": 60.03, "LON": -153.08, "ELEV": 3053, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -153.082230590359046, 60.029381739999877 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1103-03-", "NAME_": "REDOUBT", "LOCATION": "Alaska-SW", "LAT": 60.48, "LON": -152.75, "ELEV": 3108, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -152.752275545845407, 60.47940554351478 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1103-04-", "NAME_": "SPURR", "LOCATION": "Alaska-SW", "LAT": 61.3, "LON": -152.25, "ELEV": 3374, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -152.252141652238805, 61.299408018274057 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1103-05-", "NAME_": "HAYES", "LOCATION": "Alaska-SW", "LAT": 61.62, "LON": -152.48, "ELEV": 2788, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D6", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -152.482167156561246, 61.619409960278325 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1104-01-", "NAME_": "ESPENBERG", "LOCATION": "Alaska-W", "LAT": 66.35, "LON": -164.33, "ELEV": 243, "TYPE_": "Volcanic", "STATUS": "Tephrochr", "TIME_FRAME": "D7", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -164.33276033266759, 66.349307008039489 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1104-02-", "NAME_": "IMURUK LA", "LOCATION": "Alaska-W", "LAT": 65.6, "LON": -163.92, "ELEV": 610, "TYPE_": "Shield vo", "STATUS": "Radiocarb", "TIME_FRAME": "D6", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -163.92267926173443, 65.599284439628732 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1104-03-", "NAME_": "KOOKOOLIG", "LOCATION": "Alaska-W", "LAT": 63.6, "LON": -170.43, "ELEV": 673, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -170.432721378549132, 63.599109729212351 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1104-04-", "NAME_": "ST. MICHA", "LOCATION": "Alaska-W", "LAT": 63.45, "LON": -162.12, "ELEV": 715, "TYPE_": "Cinder co", "STATUS": "Anthropol", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -162.122458371026141, 63.449255674068034 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1104-05-", "NAME_": "INGAKSLUG", "LOCATION": "Alaska-W", "LAT": 61.43, "LON": -164.47, "ELEV": 190, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -164.472340927214447, 61.429211523377667 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1104-06-", "NAME_": "NUNIVAK I", "LOCATION": "Alaska-W", "LAT": 60.02, "LON": -166.33, "ELEV": 511, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -166.332259084539487, 60.019197942314335 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1104-07-", "NAME_": "ST. PAUL", "LOCATION": "Alaska-W", "LAT": 57.18, "LON": -170.3, "ELEV": 203, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -170.30236032678161, 57.179035254861297 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1105-001", "NAME_": "BUZZARD C", "LOCATION": "Alaska-E", "LAT": 64.07, "LON": -148.42, "ELEV": 830, "TYPE_": "Tuff ring", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -148.422343145755235, 64.069551142040993 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1105-01-", "NAME_": "SANFORD", "LOCATION": "Alaska-E", "LAT": 62.22, "LON": -144.13, "ELEV": 4949, "TYPE_": "Shield vo", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -144.13212077393041, 62.219580762887865 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1105-02-", "NAME_": "WRANGELL", "LOCATION": "Alaska-E", "LAT": 62.0, "LON": -144.02, "ELEV": 4317, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -144.022110056141202, 61.999558450272339 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1105-021", "NAME_": "GORDON", "LOCATION": "Alaska-E", "LAT": 62.13, "LON": -143.08, "ELEV": 2755, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -143.082121468528783, 62.129601801247759 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1105-03-", "NAME_": "BONA-CHUR", "LOCATION": "Alaska-E", "LAT": 61.38, "LON": -141.75, "ELEV": 5005, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D6", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -141.752081013843508, 61.379649342905942 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1105-04-", "NAME_": "EDGECUMBE", "LOCATION": "Alaska-SE", "LAT": 57.05, "LON": -135.75, "ELEV": 976, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -135.751791887910287, 57.049644690302458 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1105-06-", "NAME_": "TLEVAK ST", "LOCATION": "Alaska-SE", "LAT": 55.25, "LON": -133.3, "ELEV": 50, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -133.301716998292477, 55.24964038466166 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1105-07-", "NAME_": "REVILLAGI", "LOCATION": "Alaska-SE", "LAT": 55.32, "LON": -131.05, "ELEV": 500, "TYPE_": "Cinder co", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -131.051655246758003, 55.319657761473977 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1200-01-", "NAME_": "FORT SELK", "LOCATION": "Canada", "LAT": 62.93, "LON": -137.38, "ELEV": 1239, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -137.382046594278592, 62.929736653423959 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1200-02-", "NAME_": "ALLIGATOR", "LOCATION": "Canada", "LAT": 60.42, "LON": -135.42, "ELEV": 2217, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -135.421865255645798, 60.419693360447432 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1200-03-", "NAME_": "RUBY MOUN", "LOCATION": "Canada", "LAT": 59.68, "LON": -133.32, "ELEV": 1523, "TYPE_": "Cinder co", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -133.321785147975135, 59.679721807276181 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1200-04-", "NAME_": "HEART PEA", "LOCATION": "Canada", "LAT": 58.6, "LON": -131.97, "ELEV": 2012, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -131.971797480788524, 58.599759439836767 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1200-05-", "NAME_": "LEVEL MOU", "LOCATION": "Canada", "LAT": 58.42, "LON": -131.35, "ELEV": 2190, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -131.351881641049403, 58.41979720786415 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1200-06-", "NAME_": "EDZIZA", "LOCATION": "Canada", "LAT": 57.72, "LON": -130.63, "ELEV": 2786, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D6", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -130.631972174985236, 57.719830583242228 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1200-07-", "NAME_": "SPECTRUM", "LOCATION": "Canada", "LAT": 57.43, "LON": -130.68, "ELEV": 2430, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -130.681992420247241, 57.4298260864242 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1200-08-", "NAME_": "HOODOO MO", "LOCATION": "Canada", "LAT": 56.78, "LON": -131.28, "ELEV": 1820, "TYPE_": "Subglacia", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -131.282043494019746, 56.779821417177082 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1200-09-", "NAME_": "ISKUT-UNU", "LOCATION": "Canada", "LAT": 56.58, "LON": -130.55, "ELEV": 1880, "TYPE_": "Cinder co", "STATUS": "Radiocarb", "TIME_FRAME": "D3", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -130.552023895076132, 56.579813715350404 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1200-10-", "NAME_": "TSEAX RIV", "LOCATION": "Canada", "LAT": 55.12, "LON": -128.9, "ELEV": 609, "TYPE_": "Pyroclast", "STATUS": "Radiocarb", "TIME_FRAME": "D4", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "1700-1799", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -128.901839261161939, 55.119779825754364 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1200-11-", "NAME_": "CROW LAGO", "LOCATION": "Canada", "LAT": 54.7, "LON": -130.23, "ELEV": 335, "TYPE_": "Pyroclast", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -130.231726490666659, 54.699704488812905 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1200-12-", "NAME_": "MILBANKE", "LOCATION": "Canada", "LAT": 52.5, "LON": -128.73, "ELEV": 335, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -128.73167774963693, 52.499809653574601 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1200-13-", "NAME_": "SATAH MOU", "LOCATION": "Canada", "LAT": 52.47, "LON": -124.7, "ELEV": 1921, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -124.701536626284692, 52.469889884820354 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1200-14-", "NAME_": "NAZKO", "LOCATION": "Canada", "LAT": 52.9, "LON": -123.73, "ELEV": 1230, "TYPE_": "Cinder co", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -123.731503547956677, 52.899912385255931 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1200-15-", "NAME_": "WELLS GRA", "LOCATION": "Canada", "LAT": 52.33, "LON": -120.57, "ELEV": 2015, "TYPE_": "Cinder co", "STATUS": "Dendrochr", "TIME_FRAME": "D5", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "1500-1699", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -120.571306955889099, 52.329945210288265 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1200-16-", "NAME_": "SILVERTHR", "LOCATION": "Canada", "LAT": 51.43, "LON": -126.3, "ELEV": 3160, "TYPE_": "Caldera", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -126.301547901486813, 51.429835843412519 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1200-17-", "NAME_": "BRIDGE RI", "LOCATION": "Canada", "LAT": 50.8, "LON": -123.4, "ELEV": 2500, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -123.40142056685049, 50.799848287397374 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1200-18-", "NAME_": "MEAGER", "LOCATION": "Canada", "LAT": 50.63, "LON": -123.5, "ELEV": 2680, "TYPE_": "Complex v", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -123.501406609283606, 50.629844027349321 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1200-19-", "NAME_": "GARIBALDI", "LOCATION": "Canada", "LAT": 49.92, "LON": -123.03, "ELEV": 2316, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -123.031348670160497, 49.919842621039059 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1200-20-", "NAME_": "GARIBALDI", "LOCATION": "Canada", "LAT": 49.85, "LON": -123.0, "ELEV": 2678, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -123.001338792791231, 49.849841200336037 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1201-01=", "NAME_": "BAKER", "LOCATION": "US-Washin", "LAT": 48.786, "LON": -121.82, "ELEV": 3285, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -121.821264537239387, 48.785839076479157 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1201-02-", "NAME_": "GLACIER P", "LOCATION": "US-Washin", "LAT": 48.112, "LON": -121.113, "ELEV": 3213, "TYPE_": "Stratovol", "STATUS": "Tephrochr", "TIME_FRAME": "D4", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1700-1799", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -121.114214030142264, 48.111838620596814 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1201-03-", "NAME_": "RAINIER", "LOCATION": "US-Washin", "LAT": 46.87, "LON": -121.758, "ELEV": 4392, "TYPE_": "Stratovol", "STATUS": "Dendrochr", "TIME_FRAME": "D3", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -121.759204408423926, 46.869826869221221 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1201-04-", "NAME_": "ADAMS", "LOCATION": "US-Washin", "LAT": 46.206, "LON": -121.49, "ELEV": 3742, "TYPE_": "Stratovol", "STATUS": "Tephrochr", "TIME_FRAME": "D7", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -121.491197542064739, 46.205838693728005 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1201-05-", "NAME_": "ST. HELEN", "LOCATION": "US-Washin", "LAT": 46.2, "LON": -122.18, "ELEV": 2549, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -122.181204677387242, 46.199827911795389 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1201-06-", "NAME_": "WEST CRAT", "LOCATION": "US-Washin", "LAT": 45.88, "LON": -122.08, "ELEV": 914, "TYPE_": "Volcanic", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -122.081195448234084, 45.879832642196916 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1201-07-", "NAME_": "INDIAN HE", "LOCATION": "US-Washin", "LAT": 45.93, "LON": -121.82, "ELEV": 1513, "TYPE_": "Shield vo", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -121.82119001087915, 45.929834201002834 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1202-01-", "NAME_": "HOOD", "LOCATION": "US-Oregon", "LAT": 45.374, "LON": -121.694, "ELEV": 3426, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -121.695186677100253, 45.373835845563569 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1202-02-", "NAME_": "JEFFERSON", "LOCATION": "US-Oregon", "LAT": 44.692, "LON": -121.8, "ELEV": 3199, "TYPE_": "Stratovol", "STATUS": "Varve Cou", "TIME_FRAME": "D6", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -121.801176875019451, 44.691836243844833 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1202-03-", "NAME_": "BLUE LAKE", "LOCATION": "US-Oregon", "LAT": 44.42, "LON": -121.77, "ELEV": 1230, "TYPE_": "Maar", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "North America", "Type": "Explosive & Crater Features", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -121.771166565154658, 44.419835183385082 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1202-04-", "NAME_": "SAND MOUN", "LOCATION": "US-Oregon", "LAT": 44.38, "LON": -121.93, "ELEV": 1664, "TYPE_": "Cinder co", "STATUS": "Radiocarb", "TIME_FRAME": "D6", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -121.931169508834714, 44.379837898259495 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1202-05-", "NAME_": "WASHINGTO", "LOCATION": "US-Oregon", "LAT": 44.332, "LON": -121.837, "ELEV": 2376, "TYPE_": "Shield vo", "STATUS": "Radiocarb", "TIME_FRAME": "D6", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -121.838164665742639, 44.331836746776375 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1202-06-", "NAME_": "BELKNAP", "LOCATION": "US-Oregon", "LAT": 44.285, "LON": -121.841, "ELEV": 2095, "TYPE_": "Shield vo", "STATUS": "Radiocarb", "TIME_FRAME": "D6", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -121.842162609412568, 44.284836962212573 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1202-07-", "NAME_": "NORTH SIS", "LOCATION": "US-Oregon", "LAT": 44.17, "LON": -121.77, "ELEV": 3074, "TYPE_": "Complex v", "STATUS": "Radiocarb", "TIME_FRAME": "D6", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -121.771153350337016, 44.169835776371869 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1202-08-", "NAME_": "SOUTH SIS", "LOCATION": "US-Oregon", "LAT": 44.1, "LON": -121.77, "ELEV": 3157, "TYPE_": "Complex v", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -121.771148445955845, 44.099835504525629 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1202-09-", "NAME_": "BACHELOR", "LOCATION": "US-Oregon", "LAT": 43.979, "LON": -121.688, "ELEV": 2763, "TYPE_": "Stratovol", "STATUS": "Tephrochr", "TIME_FRAME": "D7", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -121.689140970799329, 43.97883533291386 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1202-10-", "NAME_": "DAVIS LAK", "LOCATION": "US-Oregon", "LAT": 43.57, "LON": -121.82, "ELEV": 2163, "TYPE_": "Volcanic", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -121.821135637709162, 43.569843374948164 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1202-11-", "NAME_": "NEWBERRY", "LOCATION": "US-Oregon", "LAT": 43.722, "LON": -121.229, "ELEV": 2434, "TYPE_": "Shield vo", "STATUS": "Radiocarb", "TIME_FRAME": "D6", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -121.230129445985099, 43.721842434458232 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1202-12-", "NAME_": "DEVILS GA", "LOCATION": "US-Oregon", "LAT": 43.512, "LON": -120.861, "ELEV": 1698, "TYPE_": "Volcanic", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -120.862109665120173, 43.51185476448714 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1202-13-", "NAME_": "SQUAW RID", "LOCATION": "US-Oregon", "LAT": 43.472, "LON": -120.754, "ELEV": 1711, "TYPE_": "Volcanic", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -120.755104420919238, 43.471857497649879 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1202-14-", "NAME_": "FOUR CRAT", "LOCATION": "US-Oregon", "LAT": 43.361, "LON": -120.669, "ELEV": 1501, "TYPE_": "Volcanic", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -120.670098394661807, 43.360860913321893 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1202-15-", "NAME_": "CINNAMON", "LOCATION": "US-Oregon", "LAT": 43.241, "LON": -122.108, "ELEV": 1956, "TYPE_": "Cinder co", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -122.109138320625135, 43.240848050783931 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1202-16-", "NAME_": "CRATER LA", "LOCATION": "US-Oregon", "LAT": 42.93, "LON": -122.12, "ELEV": 2487, "TYPE_": "Caldera", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "North America", "Type": "Caldera & Complex", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -122.121135721282144, 42.929851048793644 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1202-161", "NAME_": "IMAGINATI", "LOCATION": "US-Oregon", "LAT": 42.552, "LON": -122.201, "ELEV": 1986, "TYPE_": "Pyroclast", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -122.202132503906029, 42.551855863798252 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1202-17-", "NAME_": "DIAMOND C", "LOCATION": "US-Oregon", "LAT": 43.1, "LON": -118.75, "ELEV": 1435, "TYPE_": "Volcanic", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -118.751035052961996, 43.099877142233183 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1202-18-", "NAME_": "SADDLE BU", "LOCATION": "US-Oregon", "LAT": 43.0, "LON": -117.8, "ELEV": 1700, "TYPE_": "Volcanic", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -117.800999258083678, 42.999876905347278 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1202-19-", "NAME_": "JORDAN CR", "LOCATION": "US-Oregon", "LAT": 43.03, "LON": -117.42, "ELEV": 1473, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -117.42098750334948, 43.029876246628845 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1202-20-", "NAME_": "JACKIES B", "LOCATION": "US-Oregon", "LAT": 43.606, "LON": -117.589, "ELEV": 1420, "TYPE_": "Volcanic", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -117.590011721768803, 43.605881339001407 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1203-01-", "NAME_": "SHASTA", "LOCATION": "US-Califo", "LAT": 41.42, "LON": -122.2, "ELEV": 4317, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D4", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1700-1799", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -122.201118902887956, 41.419875904276367 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1203-02-", "NAME_": "MEDICINE", "LOCATION": "US-Califo", "LAT": 41.58, "LON": -121.57, "ELEV": 2412, "TYPE_": "Shield vo", "STATUS": "Radiocarb", "TIME_FRAME": "D6", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -121.571104989506267, 41.579879297288933 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1203-03-", "NAME_": "BRUSHY BU", "LOCATION": "US-Califo", "LAT": 41.178, "LON": -121.443, "ELEV": 1174, "TYPE_": "Shield vo", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -121.44409455206268, 41.177881906762458 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1203-04-", "NAME_": "BIG CAVE", "LOCATION": "US-Califo", "LAT": 40.955, "LON": -121.365, "ELEV": 1259, "TYPE_": "Shield vo", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -121.366088676177952, 40.954882940509457 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1203-05-", "NAME_": "TWIN BUTT", "LOCATION": "US-Califo", "LAT": 40.78, "LON": -121.6, "ELEV": 1631, "TYPE_": "Cinder co", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -121.601095007951614, 40.779878401160715 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1203-06-", "NAME_": "TUMBLE BU", "LOCATION": "US-Califo", "LAT": 40.68, "LON": -121.55, "ELEV": 2191, "TYPE_": "Cinder co", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -121.551092354145538, 40.679879157763537 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1203-07-", "NAME_": "POTATO BU", "LOCATION": "US-Califo", "LAT": 40.63, "LON": -121.43, "ELEV": 1532, "TYPE_": "Shield vo", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -121.431087621456285, 40.629881042299083 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1203-08-", "NAME_": "LASSEN VO", "LOCATION": "US-Calif", "LAT": 40.492, "LON": -121.508, "ELEV": 3187, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -121.509091761966317, 40.491880510343606 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1203-09-", "NAME_": "EAGLE LAK", "LOCATION": "US-Califo", "LAT": 40.63, "LON": -120.83, "ELEV": 1652, "TYPE_": "Fissure v", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -120.83106739965416, 40.629891473355293 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1203-10-", "NAME_": "CLEAR LAK", "LOCATION": "US-Califo", "LAT": 38.97, "LON": -122.77, "ELEV": 1439, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -122.77110477283874, 38.96989912317057 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1203-11-", "NAME_": "MONO LAKE", "LOCATION": "US-Calif", "LAT": 38.0, "LON": -119.03, "ELEV": 2121, "TYPE_": "Cinder co", "STATUS": "Tephrochr", "TIME_FRAME": "D4", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "1700-1799", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -119.030981011308, 37.9999296298055 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1203-12-", "NAME_": "MONO CRAT", "LOCATION": "US-Califo", "LAT": 37.88, "LON": -119.0, "ELEV": 2796, "TYPE_": "Lava dome", "STATUS": "Radiocarb", "TIME_FRAME": "D6", "CONTINENT": "North America", "Type": "Explosive & Crater Features", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -119.000979789735709, 37.879931917673545 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1203-13-", "NAME_": "INYO CRAT", "LOCATION": "US-Califo", "LAT": 37.692, "LON": -119.02, "ELEV": 2629, "TYPE_": "Lava dome", "STATUS": "Radiocarb", "TIME_FRAME": "D6", "CONTINENT": "North America", "Type": "Explosive & Crater Features", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -119.020975238259609, 37.69193544522625 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1203-14-", "NAME_": "LONG VALL", "LOCATION": "US-Califo", "LAT": 37.7, "LON": -118.87, "ELEV": 3390, "TYPE_": "Caldera", "STATUS": "Pleistoce", "TIME_FRAME": "Q", "CONTINENT": "North America", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -118.8709698848551, 37.699934963828916 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1203-15-", "NAME_": "RED CONES", "LOCATION": "US-Califo", "LAT": 37.58, "LON": -119.05, "ELEV": 2748, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -119.050967091759489, 37.579937745855339 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1203-16-", "NAME_": "UBEHEBE C", "LOCATION": "US-Calif", "LAT": 37.02, "LON": -117.45, "ELEV": 752, "TYPE_": "Maars", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -117.450903460351867, 37.019936407920341 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1203-17-", "NAME_": "GOLDEN TR", "LOCATION": "US-Calif", "LAT": 36.358, "LON": -118.32, "ELEV": 2886, "TYPE_": "Volcanic", "STATUS": "Tephrochr", "TIME_FRAME": "D7", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -118.320921584960487, 36.357941524784678 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1203-18-", "NAME_": "COSO VOLC", "LOCATION": "US-Califo", "LAT": 36.03, "LON": -117.82, "ELEV": 2400, "TYPE_": "Lava dome", "STATUS": "Pleistoce", "TIME_FRAME": "Q", "CONTINENT": "North America", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -117.8209057021066, 36.029946164368781 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1203-19-", "NAME_": "LAVIC LAK", "LOCATION": "US-Califo", "LAT": 34.75, "LON": -116.625, "ELEV": 1495, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -116.625862034565145, 34.749989106115841 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1203-20-", "NAME_": "AMBOY", "LOCATION": "US-Califo", "LAT": 34.55, "LON": -115.78, "ELEV": 288, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -115.780830205425588, 34.549993019176675 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1204-01-", "NAME_": "SHOSHONE", "LOCATION": "US-Idaho", "LAT": 43.07, "LON": -114.43, "ELEV": 1525, "TYPE_": "Cinder co", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -114.430879303996221, 43.069904752202618 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1204-02-", "NAME_": "CRATERS O", "LOCATION": "US-Idaho", "LAT": 43.42, "LON": -113.5, "ELEV": 2005, "TYPE_": "Cinder co", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -113.500850056619953, 43.419905192390104 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1204-03-", "NAME_": "WAPI LAVA", "LOCATION": "US-Idaho", "LAT": 42.88, "LON": -113.22, "ELEV": 1604, "TYPE_": "Shield vo", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -113.220837159390499, 42.879908900460109 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1204-04-", "NAME_": "HELL'S HA", "LOCATION": "US-Idaho", "LAT": 43.5, "LON": -112.45, "ELEV": 1631, "TYPE_": "Shield vo", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -112.450819321871691, 43.49991248332347 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1205-01-", "NAME_": "YELLOWSTO", "LOCATION": "US-Wyomin", "LAT": 44.43, "LON": -110.67, "ELEV": 2805, "TYPE_": "Calderas", "STATUS": "Tephrochr", "TIME_FRAME": "D7", "CONTINENT": "North America", "Type": "Caldera & Complex", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -110.670768350369343, 44.429939611766564 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1206-01-", "NAME_": "STEAMBOAT", "LOCATION": "US-Nevada", "LAT": 39.375, "LON": -119.72, "ELEV": 1415, "TYPE_": "Lava dome", "STATUS": "Pleistoce", "TIME_FRAME": "Q", "CONTINENT": "North America", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -119.721020793688666, 39.374912415116505 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1206-02-", "NAME_": "LUNAR CRA", "LOCATION": "US-Nevada", "LAT": 38.48, "LON": -115.97, "ELEV": 2255, "TYPE_": "Cinder co", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -115.970877389993888, 38.479933910088995 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1206-03-", "NAME_": "CRATER FL", "LOCATION": "US-Nevada", "LAT": 36.77, "LON": -116.55, "ELEV": 1128, "TYPE_": "Volcanic", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -116.550886230130729, 36.769951869124114 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1207-01-", "NAME_": "SANTA CLA", "LOCATION": "US-Utah", "LAT": 37.257, "LON": -113.625, "ELEV": 1465, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -113.625792524211263, 37.256981230791695 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1207-02-", "NAME_": "KOLOB", "LOCATION": "US-Utah", "LAT": 37.33, "LON": -113.12, "ELEV": 2727, "TYPE_": "Volcanic", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -113.120779554613591, 37.329982357535044 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1207-03-", "NAME_": "BALD KNOL", "LOCATION": "US-Utah", "LAT": 37.328, "LON": -112.408, "ELEV": 2135, "TYPE_": "Cinder co", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -112.408758551195376, 37.327983367278321 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1207-04-", "NAME_": "MARKAGUNT", "LOCATION": "US-Utah", "LAT": 37.58, "LON": -112.67, "ELEV": 2840, "TYPE_": "Volcanic", "STATUS": "Dendrochr", "TIME_FRAME": "D6", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -112.670770863678271, 37.57997976130418 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1207-05-", "NAME_": "BLACK ROC", "LOCATION": "US-Utah", "LAT": 38.97, "LON": -112.5, "ELEV": 1800, "TYPE_": "Volcanic", "STATUS": "Radiocarb", "TIME_FRAME": "D6", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -112.500777275660894, 38.969964991996846 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1208-01-", "NAME_": "DOTSERO", "LOCATION": "US-Colora", "LAT": 39.65, "LON": -107.03, "ELEV": 2250, "TYPE_": "Explosion", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "North America", "Type": "Explosive & Crater Features", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -107.030602720248197, 39.649985404927321 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1209-01-", "NAME_": "UINKARET", "LOCATION": "US-Arizon", "LAT": 36.38, "LON": -113.13, "ELEV": 1555, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -113.13076664121273, 36.379982983258394 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1209-02-", "NAME_": "SUNSET CR", "LOCATION": "US-Arizon", "LAT": 35.37, "LON": -111.5, "ELEV": 2447, "TYPE_": "Cinder co", "STATUS": "Dendrochr", "TIME_FRAME": "D6", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -111.500712739684687, 35.370009617936468 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1210-01-", "NAME_": "CARRIZOZO", "LOCATION": "US-New Me", "LAT": 33.78, "LON": -105.93, "ELEV": 1731, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -105.930545981144519, 33.780069887276298 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1210-02-", "NAME_": "ZUNI-BAND", "LOCATION": "US-New Me", "LAT": 34.8, "LON": -108.0, "ELEV": 2550, "TYPE_": "Volcanic", "STATUS": "Anthropol", "TIME_FRAME": "D7", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -108.000614849401387, 34.80004584807098 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1210-03-", "NAME_": "VALLES CA", "LOCATION": "US-New Me", "LAT": 35.87, "LON": -106.57, "ELEV": 3430, "TYPE_": "Caldera", "STATUS": "Pleistoce", "TIME_FRAME": "Q", "CONTINENT": "North America", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -106.570588318100803, 35.870020593954457 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1210-04-", "NAME_": "RATON-CLA", "LOCATION": "US-New Me", "LAT": 36.42, "LON": -104.08, "ELEV": 3350, "TYPE_": "Volcanic", "STATUS": "Tephrochr", "TIME_FRAME": "D7", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -104.080531627806153, 36.420026127929418 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1401-00-", "NAME_": "PRIETO, C", "LOCATION": "Mexico", "LAT": 32.418, "LON": -115.305, "ELEV": 410, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -115.30581587678391, 32.418061237648956 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1401-001", "NAME_": "PINACATE", "LOCATION": "Mexico", "LAT": 31.773, "LON": -113.498, "ELEV": 1200, "TYPE_": "Cinder co", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -113.498737475033394, 31.773076430560863 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1401-002", "NAME_": "SAN QUINT", "LOCATION": "Mexico", "LAT": 30.468, "LON": -115.996, "ELEV": 267, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -115.996791437389447, 30.468106355308922 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1401-004", "NAME_": "JARAQUAY", "LOCATION": "Mexico", "LAT": 29.33, "LON": -114.5, "ELEV": 960, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -114.500707784984655, 29.33013151778799 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1401-006", "NAME_": "GUADELUPE", "LOCATION": "Mexico", "LAT": 29.07, "LON": -118.28, "ELEV": 1100, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -118.280809830300171, 29.070124811387068 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1401-007", "NAME_": "SAN BORJA", "LOCATION": "Mexico", "LAT": 28.5, "LON": -113.75, "ELEV": 0, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -113.750656629130305, 28.500151153320068 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1401-01=", "NAME_": "TRES VIRG", "LOCATION": "Mexico", "LAT": 27.47, "LON": -112.591, "ELEV": 1940, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D4", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1700-1799", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -112.59158663359031, 27.470176421733303 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1401-021", "NAME_": "SOCORRO", "LOCATION": "Mexico-Is", "LAT": 18.78, "LON": -110.95, "ELEV": 1050, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -110.950547173972112, 18.780659031566508 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1401-022", "NAME_": "DURANGO V", "LOCATION": "Mexico", "LAT": 24.15, "LON": -104.45, "ELEV": 2075, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -104.450292005039742, 24.150293006478034 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1401-023", "NAME_": "SANGANGUE", "LOCATION": "Mexico", "LAT": 21.45, "LON": -104.73, "ELEV": 2353, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -104.730430923418879, 21.450543199349383 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1401-024", "NAME_": "TEPETILTI", "LOCATION": "Mexico", "LAT": 21.27, "LON": -104.7, "ELEV": 2020, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -104.70042973915281, 21.270551897998086 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1401-03=", "NAME_": "CEBORUCO,", "LOCATION": "Mexico", "LAT": 21.125, "LON": -104.5, "ELEV": 2164, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -104.500425071841335, 21.125559380357483 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1401-031", "NAME_": "MASCOTA V", "LOCATION": "Mexico", "LAT": 20.62, "LON": -104.83, "ELEV": 2540, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -104.830430449433791, 20.620583237098174 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1401-04=", "NAME_": "COLIMA VO", "LOCATION": "Mexico", "LAT": 19.514, "LON": -103.62, "ELEV": 4100, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -103.620402839866173, 19.514640663388487 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1401-06=", "NAME_": "MICHOACAN", "LOCATION": "Mexico", "LAT": 19.48, "LON": -102.25, "ELEV": 3170, "TYPE_": "Cinder co", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -102.250374529073511, 19.480645367943115 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1401-061", "NAME_": "JOCOTITLA", "LOCATION": "Mexico", "LAT": 19.724, "LON": -99.757, "ELEV": 3950, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D6", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -99.757322931181534, 19.724638090962166 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1401-07-", "NAME_": "HOLOTEPEC", "LOCATION": "Mexico", "LAT": 19.08, "LON": -99.48, "ELEV": 3000, "TYPE_": "Volcanic", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -99.4803160130013, 19.080670529868154 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1401-08=", "NAME_": "CHICHINAU", "LOCATION": "Mexico", "LAT": 19.08, "LON": -99.13, "ELEV": 3930, "TYPE_": "Volcanic", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -99.130308569061611, 19.080671122710928 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1401-081", "NAME_": "TENAYO GR", "LOCATION": "Mexico", "LAT": 19.17, "LON": -98.82, "ELEV": 3080, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -98.820302309240446, 19.170667055329933 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1401-082", "NAME_": "SANTA CAT", "LOCATION": "Mexico", "LAT": 19.32, "LON": -99.0, "ELEV": 2734, "TYPE_": "Volcanic", "STATUS": "Anthropol", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -99.000306394520067, 19.320659487199109 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1401-083", "NAME_": "GORDO, CE", "LOCATION": "Mexico", "LAT": 19.75, "LON": -98.808, "ELEV": 3046, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -98.808303033232832, 19.750638403670632 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1401-084", "NAME_": "PITOS, SI", "LOCATION": "Mexico", "LAT": 19.923, "LON": -98.747, "ELEV": 3000, "TYPE_": "Unknown", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -98.747302126279124, 19.923630112619275 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1401-085", "NAME_": "PAPAYO", "LOCATION": "Mexico", "LAT": 19.308, "LON": -98.7, "ELEV": 3600, "TYPE_": "Lava dome", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -98.700299880479335, 19.308660482510025 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1401-086", "NAME_": "IZTACCIHU", "LOCATION": "Mexico", "LAT": 19.179, "LON": -98.642, "ELEV": 5230, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -98.642298504190151, 19.179666972732921 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1401-09=", "NAME_": "POPOCATEP", "LOCATION": "Mexico", "LAT": 19.023, "LON": -98.622, "ELEV": 5465, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -98.622297917682957, 19.023674751221616 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1401-091", "NAME_": "MALINCHE,", "LOCATION": "Mexico", "LAT": 19.23, "LON": -98.03, "ELEV": 4420, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -98.030285657292609, 19.230665413951186 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1401-10=", "NAME_": "ORIZABA,", "LOCATION": "Mexico", "LAT": 19.03, "LON": -97.268, "ELEV": 5610, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D5", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1500-1699", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -97.26826920201043, 19.030676607468553 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1401-11=", "NAME_": "SAN MARTI", "LOCATION": "Mexico", "LAT": 18.572, "LON": -95.169, "ELEV": 1650, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D4", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1700-1799", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -95.169224121720774, 18.572702119634336 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1401-12=", "NAME_": "CHICHON,", "LOCATION": "Mexico", "LAT": 17.36, "LON": -93.228, "ELEV": 1060, "TYPE_": "Lava dome", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Explosive & Crater Features", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -93.22818158340344, 17.360765569629528 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1401-13=", "NAME_": "TACANA", "LOCATION": "Mexico", "LAT": 15.13, "LON": -92.113, "ELEV": 4110, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -92.113042892719065, 15.130906783508046 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1402-02=", "NAME_": "TAJUMULCO", "LOCATION": "Guatemala", "LAT": 15.034, "LON": -91.903, "ELEV": 4220, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -91.903038549492251, 15.034912025981019 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1402-03=", "NAME_": "SANTA MAR", "LOCATION": "Guatemala", "LAT": 14.756, "LON": -91.552, "ELEV": 3772, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -91.552031412337442, 14.756927134457891 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1402-04=", "NAME_": "ALMOLONGA", "LOCATION": "Guatemala", "LAT": 14.82, "LON": -91.48, "ELEV": 3197, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -91.480029993921647, 14.820923661581014 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1402-05=", "NAME_": "TZANJUYUB", "LOCATION": "Guatemala", "LAT": 14.75, "LON": -91.43, "ELEV": 3542, "TYPE_": "Stratovol", "STATUS": "Pleistoce", "TIME_FRAME": "Q", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -91.430029045527377, 14.75092742469592 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1402-06=", "NAME_": "ATITLAN", "LOCATION": "Guatemala", "LAT": 14.583, "LON": -91.186, "ELEV": 3535, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -91.186024085727055, 14.583936422126376 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1402-07=", "NAME_": "TOLIMAN", "LOCATION": "Guatemala", "LAT": 14.613, "LON": -91.189, "ELEV": 3158, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -91.189024174580538, 14.613934837988941 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1402-08=", "NAME_": "ACATENANG", "LOCATION": "Guatemala", "LAT": 14.501, "LON": -90.876, "ELEV": 3976, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -90.876017676398035, 14.501940977179855 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1402-09=", "NAME_": "FUEGO", "LOCATION": "Guatemala", "LAT": 14.473, "LON": -90.88, "ELEV": 3763, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -90.880017858034677, 14.47394240130243 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1402-10=", "NAME_": "AGUA", "LOCATION": "Guatemala", "LAT": 14.465, "LON": -90.743, "ELEV": 3760, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -90.743015066210674, 14.465942847832466 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1402-11=", "NAME_": "PACAYA", "LOCATION": "Guatemala", "LAT": 14.381, "LON": -90.601, "ELEV": 2552, "TYPE_": "Complex v", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -90.601012197538779, 14.381947342016076 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1402-111", "NAME_": "CUILAPA-B", "LOCATION": "Guatemala", "LAT": 14.33, "LON": -90.4, "ELEV": 1454, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -90.400008138548927, 14.330950113821647 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1402-12=", "NAME_": "TECUAMBUR", "LOCATION": "Guatemala", "LAT": 14.156, "LON": -90.407, "ELEV": 1845, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -90.407008192284607, 14.156959590456411 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1402-13-", "NAME_": "MOYUTA", "LOCATION": "Guatemala", "LAT": 14.03, "LON": -90.1, "ELEV": 1662, "TYPE_": "Stratovol", "STATUS": "Hot Sprin", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -90.100002094131554, 14.030966457006917 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1402-14-", "NAME_": "FLORES, V", "LOCATION": "Guatemala", "LAT": 14.3, "LON": -90.0, "ELEV": 1600, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -90.000000013076559, 14.300951919182738 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1402-15-", "NAME_": "CHINGO VO", "LOCATION": "Guatemala", "LAT": 14.12, "LON": -89.73, "ELEV": 1775, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -89.72999462235552, 14.120961672951534 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1402-16-", "NAME_": "SANTIAGO,", "LOCATION": "Guatemala", "LAT": 14.33, "LON": -89.87, "ELEV": 1192, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -89.869997283320814, 14.330950119916679 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1402-17-", "NAME_": "SUCHITAN", "LOCATION": "Guatemala", "LAT": 14.4, "LON": -89.78, "ELEV": 2042, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -89.779995553123655, 14.400946342807122 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1402-18-", "NAME_": "IXTEPEQUE", "LOCATION": "Guatemala", "LAT": 14.42, "LON": -89.68, "ELEV": 1292, "TYPE_": "Lava dome", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -89.679993468227735, 14.420945351983672 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1402-19-", "NAME_": "IPALA VOL", "LOCATION": "Guatemala", "LAT": 14.55, "LON": -89.63, "ELEV": 1650, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -89.629992526280475, 14.55093819898557 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1402-20-", "NAME_": "CHIQUIMUL", "LOCATION": "Guatemala", "LAT": 14.83, "LON": -89.55, "ELEV": 1192, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -89.549990929882497, 14.83092315292644 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1402-21-", "NAME_": "QUEZALTEP", "LOCATION": "Guatemala", "LAT": 14.65, "LON": -89.35, "ELEV": 1200, "TYPE_": "Unknown", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -89.349986764328492, 14.65093283786706 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1403-01=", "NAME_": "VERDE, LA", "LOCATION": "El Salvad", "LAT": 13.891, "LON": -89.786, "ELEV": 1829, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -89.785995733852801, 13.891974066279829 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1403-011", "NAME_": "SINGUIL,", "LOCATION": "El Salvad", "LAT": 14.05, "LON": -89.63, "ELEV": 958, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -89.629992542817448, 14.050965458498428 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1403-012", "NAME_": "SAN DIEGO", "LOCATION": "El Salvad", "LAT": 14.27, "LON": -89.47, "ELEV": 860, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -89.469989370088982, 14.270953497092913 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1403-02=", "NAME_": "SANTA ANA", "LOCATION": "El Salvad", "LAT": 13.853, "LON": -89.63, "ELEV": 2365, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -89.629992549157819, 13.853976100052767 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1403-03=", "NAME_": "IZALCO", "LOCATION": "El Salvad", "LAT": 13.813, "LON": -89.633, "ELEV": 1950, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -89.63299263583157, 13.813978300943488 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1403-041", "NAME_": "COATEPEQU", "LOCATION": "El Salvad", "LAT": 13.87, "LON": -89.55, "ELEV": 746, "TYPE_": "Caldera", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -89.549990968649766, 13.870975240786592 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1403-05=", "NAME_": "SAN SALVA", "LOCATION": "El Salvad", "LAT": 13.736, "LON": -89.286, "ELEV": 1893, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -89.285985553820382, 13.736982551029737 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1403-051", "NAME_": "GUAZAPA", "LOCATION": "El Salvad", "LAT": 13.9, "LON": -89.12, "ELEV": 1438, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -89.119982212795279, 13.90097361980895 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1403-06=", "NAME_": "ILOPANGO", "LOCATION": "El Salvad", "LAT": 13.672, "LON": -89.053, "ELEV": 450, "TYPE_": "Caldera", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "North America", "Type": "Caldera & Complex", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -89.052980881909804, 13.672986061588269 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1403-07=", "NAME_": "SAN VICEN", "LOCATION": "El Salvad", "LAT": 13.623, "LON": -88.852, "ELEV": 2000, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -88.85197684251952, 13.62398866755383 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1403-071", "NAME_": "APASTEPEQ", "LOCATION": "El Salvad", "LAT": 13.72, "LON": -88.77, "ELEV": 700, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -88.769975267282106, 13.720983391434055 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1403-072", "NAME_": "TABURETE", "LOCATION": "El Salvad", "LAT": 13.45, "LON": -88.53, "ELEV": 1172, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -88.529970355916248, 13.450998209445705 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1403-08=", "NAME_": "TECAPA", "LOCATION": "El Salvad", "LAT": 13.497, "LON": -88.503, "ELEV": 1592, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -88.502969791756399, 13.497995531541282 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1403-081", "NAME_": "USULUTAN", "LOCATION": "El Salvad", "LAT": 13.42, "LON": -88.47, "ELEV": 1450, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -88.469969281954434, 13.420999807746396 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1403-09=", "NAME_": "CHINAMECA", "LOCATION": "El Salvad", "LAT": 13.48, "LON": -88.32, "ELEV": 1228, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "?", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -88.319966056296124, 13.480996368641566 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1403-10=", "NAME_": "SAN MIGUE", "LOCATION": "El Salvad", "LAT": 13.431, "LON": -88.272, "ELEV": 2130, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -88.271965117390266, 13.431999200193991 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1403-11=", "NAME_": "CONCHAGUA", "LOCATION": "El Salvad", "LAT": 13.277, "LON": -87.853, "ELEV": 1250, "TYPE_": "Stratovol", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -87.852956863815493, 13.278007496648764 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1403-15-", "NAME_": "YOJOA, LA", "LOCATION": "Honduras", "LAT": 14.98, "LON": -87.98, "ELEV": 1090, "TYPE_": "Volcanic", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -87.979958982111796, 14.980914883661278 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1404-01=", "NAME_": "COSIGUINA", "LOCATION": "Nicaragua", "LAT": 12.98, "LON": -87.57, "ELEV": 859, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -87.569951116496725, 12.981023833650061 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1404-02=", "NAME_": "SAN CRIST", "LOCATION": "Nicaragua", "LAT": 12.702, "LON": -87.004, "ELEV": 1745, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -87.003939797262134, 12.70303912145452 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1404-04=", "NAME_": "TELICA", "LOCATION": "Nicaragua", "LAT": 12.603, "LON": -86.845, "ELEV": 1010, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -86.844936779813068, 12.604044364123459 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1404-06-", "NAME_": "ROTA", "LOCATION": "Nicaragua", "LAT": 12.55, "LON": -86.75, "ELEV": 836, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -86.749934798970457, 12.551047322135002 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1404-07=", "NAME_": "NEGRO, CE", "LOCATION": "Nicaragua", "LAT": 12.506, "LON": -86.702, "ELEV": 675, "TYPE_": "Cinder co", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -86.701933868949283, 12.507049869101694 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1404-08=", "NAME_": "PILAS, LA", "LOCATION": "Nicaragua", "LAT": 12.495, "LON": -86.688, "ELEV": 1050, "TYPE_": "Complex v", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -86.687933544958952, 12.496050453163804 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1404-09=", "NAME_": "MOMOTOMBO", "LOCATION": "Nicaragua", "LAT": 12.423, "LON": -86.54, "ELEV": 1258, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -86.539930558257467, 12.424054434322194 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1404-091", "NAME_": "APOYEQUE", "LOCATION": "Nicaragua", "LAT": 12.242, "LON": -86.342, "ELEV": 420, "TYPE_": "Stratovol", "STATUS": "Anthropol", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -86.341926676747747, 12.243064312996113 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1404-092", "NAME_": "NEJAPA-TI", "LOCATION": "Nicaragua", "LAT": 12.12, "LON": -86.32, "ELEV": 220, "TYPE_": "Fissure v", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -86.319926227385849, 12.121071185536337 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1404-10=", "NAME_": "MASAYA", "LOCATION": "Nicaragua", "LAT": 11.984, "LON": -86.161, "ELEV": 635, "TYPE_": "Caldera", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Caldera & Complex", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -86.160923233575843, 11.985078551214629 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1404-101", "NAME_": "APOYO", "LOCATION": "Nicaragua", "LAT": 11.92, "LON": -86.03, "ELEV": 468, "TYPE_": "Caldera", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "North America", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -86.029920455371453, 11.921082102838666 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1404-11=", "NAME_": "MOMBACHO", "LOCATION": "Nicaragua", "LAT": 11.826, "LON": -85.968, "ELEV": 1345, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -85.967919428174199, 11.827087306501188 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1404-111", "NAME_": "ZAPATERA", "LOCATION": "Nicaragua", "LAT": 11.73, "LON": -85.82, "ELEV": 625, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -85.819916461183183, 11.731092653897688 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1404-12=", "NAME_": "CONCEPCIO", "LOCATION": "Nicaragua", "LAT": 11.538, "LON": -85.623, "ELEV": 1610, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -85.62291249161342, 11.539103388452938 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1404-13-", "NAME_": "MADERA, L", "LOCATION": "Nicaragua", "LAT": 11.446, "LON": -85.515, "ELEV": 1394, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -85.514910518560754, 11.447108428597184 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1404-14-", "NAME_": "BLUE, VOL", "LOCATION": "Nicaragua", "LAT": 12.68, "LON": -83.92, "ELEV": 150, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -83.919878036632952, 12.681039237972872 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1405-01=", "NAME_": "OROSI", "LOCATION": "Costa Ric", "LAT": 10.98, "LON": -85.473, "ELEV": 1659, "TYPE_": "Stratovol", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -85.472909687354075, 10.981134538312096 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1405-02=", "NAME_": "RINCON DE", "LOCATION": "Costa Ric", "LAT": 10.83, "LON": -85.324, "ELEV": 1916, "TYPE_": "Complex v", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -85.323906860083042, 10.831142918684078 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1405-03=", "NAME_": "MIRAVALLE", "LOCATION": "Costa Ric", "LAT": 10.748, "LON": -85.153, "ELEV": 2028, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -85.152903534215397, 10.749147347426137 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1405-031", "NAME_": "TENORIO G", "LOCATION": "Costa Ric", "LAT": 10.673, "LON": -85.015, "ELEV": 1916, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -85.014900718986993, 10.674151522552187 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1405-032", "NAME_": "ANUNCIACI", "LOCATION": "Costa Ric", "LAT": 10.472, "LON": -85.07, "ELEV": 402, "TYPE_": "Pyroclast", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -85.069901773188406, 10.47316284687837 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1405-033", "NAME_": "ARENAL", "LOCATION": "Costa Ric", "LAT": 10.463, "LON": -84.703, "ELEV": 1657, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -84.702894519817661, 10.464163370630699 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1405-034", "NAME_": "POCO SOL,", "LOCATION": "Costa Ric", "LAT": 10.32, "LON": -84.66, "ELEV": 789, "TYPE_": "Explosion", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "North America", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -84.659893707381912, 10.321171336187048 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1405-035", "NAME_": "AGUAS ZAR", "LOCATION": "Costa Ric", "LAT": 10.42, "LON": -84.31, "ELEV": 621, "TYPE_": "Pyroclast", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -84.30988683150693, 10.42116564833187 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1405-036", "NAME_": "PLATANAR,", "LOCATION": "Costa Ric", "LAT": 10.3, "LON": -84.366, "ELEV": 2183, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -84.365887960227766, 10.301172267274005 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1405-04=", "NAME_": "POAS", "LOCATION": "Costa Ric", "LAT": 10.2, "LON": -84.233, "ELEV": 2708, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -84.232885444038132, 10.201178003115277 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1405-05=", "NAME_": "BARVA", "LOCATION": "Costa Ric", "LAT": 10.135, "LON": -84.1, "ELEV": 2906, "TYPE_": "Complex v", "STATUS": "Tephrochr", "TIME_FRAME": "D7", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -84.099882707732007, 10.136181569965416 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1405-06=", "NAME_": "IRAZU", "LOCATION": "Costa Ric", "LAT": 9.979, "LON": -83.853, "ELEV": 3432, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -83.852877852570117, 9.980190244162847 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1405-07=", "NAME_": "TURRIALBA", "LOCATION": "Costa Ric", "LAT": 10.03, "LON": -83.77, "ELEV": 3340, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -83.769876201182939, 10.031187339349998 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1406-01-", "NAME_": "BARU", "LOCATION": "Panama", "LAT": 8.8, "LON": -82.558, "ELEV": 3477, "TYPE_": "Complex v", "STATUS": "Historica", "TIME_FRAME": "D5", "CONTINENT": "North America", "Type": "Other", "Last_eruption": "1500-1699", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -82.557914318325658, 8.801286950808235 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1406-02-", "NAME_": "YEGUADA,", "LOCATION": "Panama", "LAT": 8.523, "LON": -80.91, "ELEV": 1297, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D5", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1500-1699", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -80.90986410533587, 8.524298543491891 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1600-03=", "NAME_": "LIAMUIGA", "LOCATION": "W Indies", "LAT": 17.37, "LON": -62.8, "ELEV": 1156, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D6", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -62.799414415793237, 17.370700934574518 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1600-05=", "NAME_": "SOUFRIERE", "LOCATION": "W Indies", "LAT": 16.72, "LON": -62.18, "ELEV": 915, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -62.179403471100812, 16.72073244443321 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1600-06=", "NAME_": "SOUFRIERE", "LOCATION": "W Ind", "LAT": 16.05, "LON": -61.67, "ELEV": 1467, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -61.669394925751419, 16.050765881718732 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1600-08=", "NAME_": "DIABLE, M", "LOCATION": "W Indies", "LAT": 15.62, "LON": -61.45, "ELEV": 861, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -61.449391672790867, 15.620787784747098 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1600-09=", "NAME_": "DIABLOTIN", "LOCATION": "W Indies", "LAT": 15.5, "LON": -61.42, "ELEV": 1430, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -61.419391370281112, 15.500794087355702 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1600-10=", "NAME_": "MICOTRIN", "LOCATION": "W Indies", "LAT": 15.33, "LON": -61.33, "ELEV": 1387, "TYPE_": "Lava dome", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "North America", "Type": "Explosive & Crater Features", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -61.32939011181827, 15.330802959454513 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1600-11=", "NAME_": "PATATES,", "LOCATION": "W Indies", "LAT": 15.22, "LON": -61.37, "ELEV": 960, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D5", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1500-1699", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -61.369391231271024, 15.220808894542765 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1600-12=", "NAME_": "PELEE", "LOCATION": "W Indies", "LAT": 14.82, "LON": -61.17, "ELEV": 1397, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -61.169388365229423, 14.820829605750767 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1600-14=", "NAME_": "QUALIBOU", "LOCATION": "W Indies", "LAT": 13.83, "LON": -61.05, "ELEV": 777, "TYPE_": "Caldera", "STATUS": "Historica", "TIME_FRAME": "D4", "CONTINENT": "North America", "Type": "Caldera & Complex", "Last_eruption": "1700-1799", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -61.049388447524365, 13.830882437780271 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1600-15=", "NAME_": "SOUFRIERE", "LOCATION": "W Indies", "LAT": 13.33, "LON": -61.18, "ELEV": 1220, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -61.179392461918148, 13.330909758628085 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1600-17=", "NAME_": "ST. CATHE", "LOCATION": "W Indies", "LAT": 12.15, "LON": -61.67, "ELEV": 840, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "North America", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -61.669999982434575, 12.149999908949297 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0101-03=", "NAME_": "ISCHIA", "LOCATION": "Italy", "LAT": 40.73, "LON": 13.898, "ELEV": 789, "TYPE_": "Complex v", "STATUS": "Historica", "TIME_FRAME": "D6", "CONTINENT": "Sea", "Type": "Other", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 13.897999950500434, 40.729999988328274 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0101-04=", "NAME_": "STROMBOLI", "LOCATION": "Italy", "LAT": 38.789, "LON": 15.213, "ELEV": 926, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 15.213000035225178, 38.78900001766587 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0101-041", "NAME_": "LIPARI", "LOCATION": "Italy", "LAT": 38.48, "LON": 14.95, "ELEV": 602, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D6", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 14.950000018280235, 38.479999968310665 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0101-05=", "NAME_": "VULCANO", "LOCATION": "Italy", "LAT": 38.404, "LON": 14.962, "ELEV": 500, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 14.961999908430045, 38.403999896562482 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0101-07=", "NAME_": "CAMPI FLE", "LOCATION": "Italy", "LAT": 37.1, "LON": 12.7, "ELEV": -8, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1900-1963", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 12.699999998262626, 37.100000042547549 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0101-071", "NAME_": "PANTELLER", "LOCATION": "Italy", "LAT": 36.77, "LON": 12.02, "ELEV": 836, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 12.020000083378534, 36.770000028448464 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0102-02=", "NAME_": "METHANA", "LOCATION": "Greece", "LAT": 37.615, "LON": 23.336, "ELEV": 760, "TYPE_": "Lava dome", "STATUS": "Historica", "TIME_FRAME": "D7", "CONTINENT": "Sea", "Type": "Explosive & Crater Features", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 23.336000102562849, 37.615000055036575 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0102-04=", "NAME_": "SANTORINI", "LOCATION": "Greece", "LAT": 36.404, "LON": 25.396, "ELEV": 564, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 25.395999943210057, 36.403999925282164 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0102-05=", "NAME_": "NISYROS", "LOCATION": "Greece", "LAT": 36.58, "LON": 27.18, "ELEV": 698, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 27.180000008013565, 36.580000058387014 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0102-051", "NAME_": "YALI", "LOCATION": "Greece", "LAT": 36.63, "LON": 27.1, "ELEV": 176, "TYPE_": "Lava dome", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 27.1000000426518, 36.629999984410887 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0102-06=", "NAME_": "KOS", "LOCATION": "Greece", "LAT": 36.829, "LON": 27.257, "ELEV": 430, "TYPE_": "Fumarole", "STATUS": "Pleistoce", "TIME_FRAME": "Q", "CONTINENT": "Sea", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 27.256999948510668, 36.829000029066407 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-01=", "NAME_": "TEYR, DJE", "LOCATION": "Red Sea", "LAT": 15.7, "LON": 41.742, "ELEV": 244, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 41.741999929933115, 15.700000098677179 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0201-02=", "NAME_": "ZUBAYR, J", "LOCATION": "Red Sea", "LAT": 15.08, "LON": 42.17, "ELEV": 191, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 42.170000058582048, 15.080000053159949 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0301-15-", "NAME_": "UNNAMED", "LOCATION": "Arabia-S", "LAT": 12.25, "LON": 45.0, "ELEV": 0, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 44.999999932127082, 12.249999970305993 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0303-04-", "NAME_": "NOSY-BE", "LOCATION": "Madagasca", "LAT": -13.32, "LON": 48.48, "ELEV": 214, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 48.480000099836161, -13.319999999500538 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0304-03=", "NAME_": "ST. PAUL", "LOCATION": "Indian O.", "LAT": -38.72, "LON": 77.53, "ELEV": 268, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D4", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1700-1799", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 77.530000028042878, -38.720000095240508 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0304-04-", "NAME_": "AMSTERDAM", "LOCATION": "Indian O.", "LAT": -37.83, "LON": 77.52, "ELEV": 881, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 77.520000084699859, -37.829999904991098 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0304-05-", "NAME_": "POSSESSIO", "LOCATION": "Indian O.", "LAT": -46.42, "LON": 51.63, "ELEV": 934, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 51.630000044137262, -46.420000005600713 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0304-06-", "NAME_": "COCHONS,", "LOCATION": "Indian O.", "LAT": -46.1, "LON": 50.23, "ELEV": 775, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 50.230000022379215, -46.099999934844647 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0304-07-", "NAME_": "PRINCE ED", "LOCATION": "Indian O.", "LAT": -46.63, "LON": 37.95, "ELEV": 672, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 37.949999897313091, -46.630000071657093 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0305-01=", "NAME_": "UNNAMED", "LOCATION": "Indian O.", "LAT": 11.75, "LON": 80.75, "ELEV": 0, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 80.749999994362724, 11.750000082140375 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0401-021", "NAME_": "MAYOR ISL", "LOCATION": "New Zeala", "LAT": -37.28, "LON": 176.25, "ELEV": 355, "TYPE_": "Shield vo", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 176.249999983507053, -37.280000090801593 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0401-04=", "NAME_": "WHITE ISL", "LOCATION": "New Zeala", "LAT": -37.52, "LON": 177.18, "ELEV": 321, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 177.179999947128408, -37.519999986886944 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0401-041", "NAME_": "WHALE ISL", "LOCATION": "New Zeala", "LAT": -37.858, "LON": 176.98, "ELEV": 348, "TYPE_": "Complex v", "STATUS": "Pleistoce", "TIME_FRAME": "Q", "CONTINENT": "Sea", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 176.980000033723968, -37.857999997522185 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0401-11-", "NAME_": "RUMBLE I", "LOCATION": "New Zeala", "LAT": -35.5, "LON": 178.875, "ELEV": -1100, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 178.874999971976138, -35.499999919611696 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0401-12-", "NAME_": "RUMBLE II", "LOCATION": "New Zeala", "LAT": -35.43, "LON": 178.65, "ELEV": -880, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 178.649999990905258, -35.4299998975929 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0401-13-", "NAME_": "RUMBLE II", "LOCATION": "New Zeala", "LAT": -35.745, "LON": 178.478, "ELEV": -140, "TYPE_": "Submarine", "STATUS": "Hydrophon", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1964 or later", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 178.477999960722968, -35.744999996677478 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0401-14-", "NAME_": "RUMBLE IV", "LOCATION": "New Zeala", "LAT": -36.22, "LON": 178.05, "ELEV": -450, "TYPE_": "Submarine", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 178.05000004138293, -36.220000026485621 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0401-15-", "NAME_": "RUMBLE V", "LOCATION": "New Zeala", "LAT": -36.139, "LON": 178.197, "ELEV": -700, "TYPE_": "Submarine", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 178.197000003898836, -36.138999983065965 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0402-01=", "NAME_": "CURTIS IS", "LOCATION": "Kermadec", "LAT": -30.542, "LON": -178.561, "ELEV": 137, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -178.561000050164154, -30.541999920898547 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0402-02=", "NAME_": "BRIMSTONE", "LOCATION": "Kermadec", "LAT": -30.23, "LON": -178.92, "ELEV": -2000, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -178.920000025543231, -30.230000055987588 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0402-021", "NAME_": "MACAULEY", "LOCATION": "Kermadec", "LAT": -30.2, "LON": -178.47, "ELEV": 238, "TYPE_": "Caldera", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -178.4700000634015, -30.200000016649682 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0402-03=", "NAME_": "RAOUL ISL", "LOCATION": "Kermadec", "LAT": -29.27, "LON": -177.92, "ELEV": 516, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -177.920000039903073, -29.270000053028312 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0402-04=", "NAME_": "UNNAMED", "LOCATION": "Kermadec", "LAT": -29.18, "LON": -177.87, "ELEV": -560, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1800-1899", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -177.86999990457025, -29.179999935014607 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0402-05-", "NAME_": "MONOWAI S", "LOCATION": "Kermadec", "LAT": -25.888, "LON": -177.188, "ELEV": -100, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1964 or later", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -177.188000042879338, -25.887999999869109 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0403-01=", "NAME_": "UNNAMED", "LOCATION": "Tonga-SW", "LAT": -21.38, "LON": -175.65, "ELEV": -500, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1900-1963", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -175.649999923890533, -21.379999963297706 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0403-03=", "NAME_": "UNNAMED", "LOCATION": "Tonga-SW", "LAT": -20.85, "LON": -175.53, "ELEV": -13, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1900-1963", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -175.529999975847858, -20.850000035794181 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0403-04=", "NAME_": "UNNAMED", "LOCATION": "Tonga-SW", "LAT": -20.57, "LON": -175.38, "ELEV": 0, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -175.37999998846729, -20.569999947718998 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0403-05=", "NAME_": "FALCON IS", "LOCATION": "Tonga-SW", "LAT": -20.32, "LON": -175.42, "ELEV": 145, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -175.419999971148172, -20.319999898981735 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0403-06=", "NAME_": "TOFUA", "LOCATION": "Tonga-SW", "LAT": -19.75, "LON": -175.07, "ELEV": 512, "TYPE_": "Caldera", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Caldera & Complex", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -175.070000070363136, -19.749999988797313 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0403-07=", "NAME_": "METIS SHO", "LOCATION": "Tonga-SW", "LAT": -19.18, "LON": -174.87, "ELEV": -4, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1964 or later", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -174.869999947649745, -19.180000078612892 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0403-08=", "NAME_": "HOME REEF", "LOCATION": "Tonga-SW", "LAT": -18.992, "LON": -174.775, "ELEV": -2, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1964 or later", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -174.775000067273481, -18.992000055358247 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0403-09=", "NAME_": "LATE", "LOCATION": "Tonga-SW", "LAT": -18.806, "LON": -174.65, "ELEV": 518, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -174.649999938250374, -18.805999978910393 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0403-10=", "NAME_": "FONUALEI", "LOCATION": "Tonga-SW", "LAT": -18.02, "LON": -174.325, "ELEV": 200, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -174.324999895822799, -18.019999952940225 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0403-101", "NAME_": "CURACOA", "LOCATION": "Tonga-SW", "LAT": -15.62, "LON": -173.67, "ELEV": -33, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1964 or later", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -173.670000048605118, -15.619999945542034 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0403-11=", "NAME_": "NIUAFO'OU", "LOCATION": "Tonga-SW", "LAT": -15.6, "LON": -175.63, "ELEV": 260, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -175.630000037204553, -15.600000058856054 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0404-00-", "NAME_": "UNNAMED", "LOCATION": "Samoa-SW", "LAT": -14.23, "LON": -169.07, "ELEV": -650, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -169.069999947213176, -14.230000076435928 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0404-001", "NAME_": "TA'U", "LOCATION": "Samoa-SW", "LAT": -14.23, "LON": -169.454, "ELEV": 931, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -169.453999990258694, -14.230000076435928 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0404-01=", "NAME_": "OFU-OLOSE", "LOCATION": "Samoa-SW", "LAT": -14.175, "LON": -169.618, "ELEV": 639, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -169.618000023904813, -14.174999969431624 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0405-02-", "NAME_": "KORO", "LOCATION": "Fiji Is-S", "LAT": -17.32, "LON": 179.4, "ELEV": 522, "TYPE_": "Cinder co", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 179.399999927808153, -17.319999942061216 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0500-01=", "NAME_": "ST. ANDRE", "LOCATION": "Admiralty", "LAT": -2.38, "LON": 147.35, "ELEV": 270, "TYPE_": "Complex v", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Other", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 147.350000042680961, -2.380000026825542 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0500-02-", "NAME_": "BALUAN", "LOCATION": "Admiralty", "LAT": -2.57, "LON": 147.28, "ELEV": 254, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 147.280000020662158, -2.569999996887006 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0500-03-", "NAME_": "UNNAMED", "LOCATION": "Admiralty", "LAT": -3.03, "LON": 147.78, "ELEV": -1300, "TYPE_": "Submarine", "STATUS": "Hydrophon", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1964 or later", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 147.77999990882779, -3.029999902371742 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0501-001", "NAME_": "BLUP BLUP", "LOCATION": "New Guine", "LAT": -3.508, "LON": 144.62, "ELEV": 402, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 144.620000021183671, -3.507999957044561 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0501-002", "NAME_": "KADOVAR", "LOCATION": "New Guine", "LAT": -3.62, "LON": 144.62, "ELEV": 365, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 144.620000021183671, -3.619999908551065 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0501-01=", "NAME_": "BAM", "LOCATION": "New Guine", "LAT": -3.6, "LON": 144.85, "ELEV": 685, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 144.84999997392606, -3.600000021865085 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0501-011", "NAME_": "BOISA", "LOCATION": "New Guine", "LAT": -3.994, "LON": 144.963, "ELEV": 240, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 144.963000003490436, -3.994000008253565 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0501-02=", "NAME_": "MANAM", "LOCATION": "New Guine", "LAT": -4.1, "LON": 145.061, "ELEV": 1807, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 145.060999908731389, -4.099999910030704 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0501-04=", "NAME_": "UNNAMED", "LOCATION": "New Guine", "LAT": -4.311, "LON": 146.256, "ELEV": -2000, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 146.25600004541343, -4.311000054144955 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0501-041", "NAME_": "YOMBA", "LOCATION": "New Guine", "LAT": -4.92, "LON": 146.75, "ELEV": 0, "TYPE_": "Unknown", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 146.750000093158633, -4.920000078261324 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0501-07=", "NAME_": "RITTER IS", "LOCATION": "New Guine", "LAT": -5.52, "LON": 148.121, "ELEV": 140, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 148.120999944327707, -5.520000027783638 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0501-08=", "NAME_": "SAKAR", "LOCATION": "New Guine", "LAT": -5.414, "LON": 148.094, "ELEV": 992, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 148.093999929854476, -5.413999916697577 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0502-001", "NAME_": "UNNAMED", "LOCATION": "New Brita", "LAT": -5.2, "LON": 148.57, "ELEV": 0, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 148.57000003772049, -5.199999957027572 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0502-02=", "NAME_": "NARAGE", "LOCATION": "New Brita", "LAT": -4.55, "LON": 149.125, "ELEV": 307, "TYPE_": "Stratovol", "STATUS": "Pleistoce", "TIME_FRAME": "Q", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 149.125000032890398, -4.550000081481372 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0502-021", "NAME_": "MUNDUA", "LOCATION": "New Brita", "LAT": -4.63, "LON": 149.35, "ELEV": 179, "TYPE_": "Complex v", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 149.350000013961278, -4.630000046843151 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0502-03=", "NAME_": "GAROVE", "LOCATION": "New Brita", "LAT": -4.692, "LON": 149.5, "ELEV": 368, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 149.500000001341846, -4.692000072325769 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0502-06=", "NAME_": "GARUA HAR", "LOCATION": "New Brita", "LAT": -5.269, "LON": 150.088, "ELEV": 565, "TYPE_": "Volcanic", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 150.088000060714364, -5.26899990098849 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0502-13=", "NAME_": "LOLOBAU", "LOCATION": "New Brita", "LAT": -4.92, "LON": 151.158, "ELEV": 858, "TYPE_": "Caldera", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Caldera & Complex", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 151.158000068373326, -4.920000078261324 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0502-131", "NAME_": "UNNAMED", "LOCATION": "New Brita", "LAT": -4.75, "LON": 150.85, "ELEV": 0, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 150.85000009707602, -4.749999994885826 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0502-14=", "NAME_": "RABAUL", "LOCATION": "New Brita", "LAT": -4.271, "LON": 152.203, "ELEV": 688, "TYPE_": "Pyroclast", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Other", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 152.203000008365905, -4.271000071464059 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0504-02=", "NAME_": "AMBITLE", "LOCATION": "New Irela", "LAT": -4.08, "LON": 153.65, "ELEV": 450, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 153.649999931283162, -4.080000023344724 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0505-05=", "NAME_": "SIMBO", "LOCATION": "Solomon I", "LAT": -8.292, "LON": 156.52, "ELEV": 335, "TYPE_": "Stratovol", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 156.519999996818001, -8.291999978768601 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0505-052", "NAME_": "KANA KEOK", "LOCATION": "Solomon I", "LAT": -8.75, "LON": 157.03, "ELEV": -700, "TYPE_": "Submarine", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 157.030000037635546, -8.749999937446518 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0505-053", "NAME_": "COLEMAN S", "LOCATION": "Solomon I", "LAT": -8.83, "LON": 157.17, "ELEV": 0, "TYPE_": "Submarine", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 157.170000081673095, -8.829999902808296 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0505-06=", "NAME_": "KAVACHI", "LOCATION": "Solomon I", "LAT": -9.02, "LON": 157.95, "ELEV": -20, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1964 or later", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 157.950000057913883, -9.020000082178697 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0505-061", "NAME_": "UNNAMED", "LOCATION": "Solomon I", "LAT": -8.92, "LON": 158.03, "ELEV": -240, "TYPE_": "Submarine", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 158.030000023275704, -8.920000020822002 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0505-07=", "NAME_": "SAVO", "LOCATION": "Solomon I", "LAT": -9.13, "LON": 159.82, "ELEV": 510, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 159.819999928499669, -9.130000086878383 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0506-01=", "NAME_": "TINAKULA", "LOCATION": "Santa Cru", "LAT": -10.38, "LON": 165.8, "ELEV": 851, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 165.799999955654698, -10.379999911946896 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0507-001", "NAME_": "MOTLAV", "LOCATION": "Vanuatu-S", "LAT": -13.67, "LON": 167.67, "ELEV": 411, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 167.670000035549378, -13.669999900285575 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0507-021", "NAME_": "MERE LAVA", "LOCATION": "Vanuatu-S", "LAT": -14.45, "LON": 168.05, "ELEV": 1028, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 168.049999975672279, -14.450000085835299 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0507-05=", "NAME_": "LOPEVI", "LOCATION": "Vanuatu-S", "LAT": -16.507, "LON": 168.346, "ELEV": 1413, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 168.346000056819832, -16.506999901617831 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0507-06=", "NAME_": "EAST EPI", "LOCATION": "Vanuatu-S", "LAT": -16.68, "LON": 168.37, "ELEV": -34, "TYPE_": "Caldera", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Caldera & Complex", "Last_eruption": "1964 or later", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 168.370000046428345, -16.680000009858006 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0507-07=", "NAME_": "KUWAE", "LOCATION": "Vanuatu-S", "LAT": -16.829, "LON": 168.536, "ELEV": -2, "TYPE_": "Caldera", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Caldera & Complex", "Last_eruption": "1964 or later", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 168.536000026881311, -16.828999919180717 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0507-08-", "NAME_": "UNNAMED", "LOCATION": "Vanuatu-S", "LAT": -16.992, "LON": 168.592, "ELEV": 216, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 168.592000002634563, -16.992000084077901 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0507-081", "NAME_": "NORTH VAT", "LOCATION": "Vanuatu-S", "LAT": -17.45, "LON": 168.33, "ELEV": 594, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 168.330000063747491, -17.450000042755818 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0507-09=", "NAME_": "TRAITOR'S", "LOCATION": "Vanuatu-S", "LAT": -18.75, "LON": 169.23, "ELEV": 837, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 169.229999988030954, -18.75000000315714 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0508-01=", "NAME_": "MATTHEW I", "LOCATION": "SW Pacifi", "LAT": -22.33, "LON": 171.32, "ELEV": 177, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 171.320000077325005, -22.330000022913993 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0508-02=", "NAME_": "HUNTER IS", "LOCATION": "SW Pacifi", "LAT": -22.4, "LON": 172.05, "ELEV": 297, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 172.04999991823297, -22.400000044932781 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0508-03-", "NAME_": "UNNAMED", "LOCATION": "SW Pacifi", "LAT": -25.78, "LON": 168.63, "ELEV": -2400, "TYPE_": "Submarine", "STATUS": "Hydrophon", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1964 or later", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 168.630000038508626, -25.779999941976243 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0600-001", "NAME_": "NARCONDUM", "LOCATION": "Andaman I", "LAT": 13.43, "LON": 94.25, "ELEV": 710, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 94.249999905159484, 13.429999982664654 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0600-01=", "NAME_": "BARREN IS", "LOCATION": "Andaman I", "LAT": 12.292, "LON": 93.875, "ELEV": 305, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 93.874999936708036, 12.291999899793709 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0602-00=", "NAME_": "KRAKATAU", "LOCATION": "Indonesia", "LAT": -6.102, "LON": 105.423, "ELEV": 813, "TYPE_": "Caldera", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Caldera & Complex", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 105.423000064750511, -6.102000037426777 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0603-321", "NAME_": "LURUS", "LOCATION": "Java", "LAT": -7.7, "LON": 113.58, "ELEV": 539, "TYPE_": "Complex v", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 113.580000065039656, -7.700000025782458 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0604-051", "NAME_": "GILIBANTA", "LOCATION": "Lesser Su", "LAT": -8.52, "LON": 119.35, "ELEV": 0, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 119.350000026138332, -8.519999984704143 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0604-11=", "NAME_": "IYA", "LOCATION": "Lesser Su", "LAT": -8.88, "LON": 121.63, "ELEV": 637, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 121.630000085493862, -8.880000038141105 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0604-15=", "NAME_": "PALUWEH", "LOCATION": "Lesser Su", "LAT": -8.32, "LON": 121.708, "ELEV": 875, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 121.708000104048836, -8.320000071299688 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0604-25=", "NAME_": "ILIWERUNG", "LOCATION": "Lesser Su", "LAT": -8.54, "LON": 123.59, "ELEV": 1018, "TYPE_": "Complex v", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Other", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 123.590000074093268, -8.540000080699059 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0604-26=", "NAME_": "TARA, BAT", "LOCATION": "Lesser Su", "LAT": -7.792, "LON": 123.579, "ELEV": 748, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 123.579000052692436, -7.792000090602968 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0604-28=", "NAME_": "YERSEY", "LOCATION": "Lesser Su", "LAT": -7.53, "LON": 123.95, "ELEV": -3800, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 123.949999918221295, -7.529999942406974 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0605-01=", "NAME_": "EMPEROR O", "LOCATION": "Banda Sea", "LAT": -6.62, "LON": 124.22, "ELEV": -2850, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 124.220000062953488, -6.620000074780506 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0605-02=", "NAME_": "NIEUWERKE", "LOCATION": "Banda Sea", "LAT": -6.6, "LON": 124.675, "ELEV": -2285, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 124.674999996766758, -6.59999997878559 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0605-03=", "NAME_": "GUNUNGAPI", "LOCATION": "Banda Sea", "LAT": -6.642, "LON": 126.65, "ELEV": 282, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D5", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1500-1699", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 126.649999900380692, -6.641999908273291 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0605-05=", "NAME_": "TEON", "LOCATION": "Banda Sea", "LAT": -6.92, "LON": 129.125, "ELEV": 655, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 129.124999901469153, -6.920000049541656 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0605-06=", "NAME_": "NILA", "LOCATION": "Banda Sea", "LAT": -6.73, "LON": 129.5, "ELEV": 781, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 129.500000079229551, -6.730000079480192 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0605-07=", "NAME_": "SERUA", "LOCATION": "Banda Sea", "LAT": -6.3, "LON": 130.0, "ELEV": 641, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 129.999999967395183, -6.300000004024426 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0605-08=", "NAME_": "MANUK", "LOCATION": "Banda Sea", "LAT": -5.53, "LON": 130.292, "ELEV": 282, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 130.291999945620148, -5.529999971126628 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0605-09=", "NAME_": "BANDA API", "LOCATION": "Banda Sea", "LAT": -4.525, "LON": 129.871, "ELEV": 640, "TYPE_": "Caldera", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Caldera & Complex", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 129.87099994475841, -4.52500001381496 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0606-01=", "NAME_": "COLO [UNA", "LOCATION": "Sulawesi-", "LAT": -0.17, "LON": 121.608, "ELEV": 507, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 121.60800004269214, -0.169999989488815 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0607-01=", "NAME_": "RUANG", "LOCATION": "Sangihe I", "LAT": 2.28, "LON": 125.425, "ELEV": 725, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 125.424999933669653, 2.279999943933262 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0607-02=", "NAME_": "KARANGETA", "LOCATION": "Sangihe", "LAT": 2.78, "LON": 125.48, "ELEV": 1784, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 125.480000040673929, 2.780000041407817 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0607-03=", "NAME_": "BANUA WUH", "LOCATION": "Sangihe I", "LAT": 3.138, "LON": 125.491, "ELEV": -5, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1900-1963", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 125.491000062074818, 3.137999938729038 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0607-04=", "NAME_": "AWU", "LOCATION": "Sangihe I", "LAT": 3.67, "LON": 125.5, "ELEV": 1320, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 125.499999927359909, 3.670000022348304 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0607-05=", "NAME_": "UNNAMED", "LOCATION": "Sangihe I", "LAT": 3.97, "LON": 124.17, "ELEV": -5000, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 124.169999927620722, 3.969999997109454 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0608-05=", "NAME_": "TODOKO-RA", "LOCATION": "Halmahera", "LAT": 1.3, "LON": 127.43, "ELEV": 979, "TYPE_": "Calderas", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Caldera & Complex", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 127.430000085930374, 1.300000054288006 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0608-051", "NAME_": "JAILOLO", "LOCATION": "Halmahera", "LAT": 1.17, "LON": 127.32, "ELEV": 1130, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 127.320000081230717, 1.169999953593404 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0608-06=", "NAME_": "GAMALAMA", "LOCATION": "Halmahera", "LAT": 0.8, "LON": 127.325, "ELEV": 1715, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 127.325000052902226, 0.799999956813451 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0608-061", "NAME_": "MOTIR", "LOCATION": "Halmahera", "LAT": 0.45, "LON": 127.4, "ELEV": 690, "TYPE_": "Stratovol", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 127.400000046592481, 0.450000056028415 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0608-07=", "NAME_": "MAKIAN", "LOCATION": "Halmahera", "LAT": 0.32, "LON": 127.4, "ELEV": 1357, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 127.400000046592481, 0.319999955333813 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0701-01=", "NAME_": "BALUT", "LOCATION": "Mindanao-", "LAT": 5.4, "LON": 125.375, "ELEV": 852, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 125.375000007645724, 5.400000058205379 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0703-045", "NAME_": "DAGIT-DAG", "LOCATION": "Luzon-Phi", "LAT": 13.53, "LON": 121.078, "ELEV": 364, "TYPE_": "Stratovol", "STATUS": "Pleistoce", "TIME_FRAME": "Q", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 121.077999905879665, 13.530000044021349 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0703-046", "NAME_": "PANAY", "LOCATION": "Luzon-Phi", "LAT": 13.723, "LON": 120.893, "ELEV": 501, "TYPE_": "Stratovol", "STATUS": "Pleistoce", "TIME_FRAME": "Q", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 120.892999907489695, 13.723000038947504 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0704-02=", "NAME_": "DIDICAS", "LOCATION": "Luzon Is-", "LAT": 19.077, "LON": 122.202, "ELEV": 244, "TYPE_": "Compound", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Caldera & Complex", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 122.201999942485088, 19.076999970855951 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0704-03=", "NAME_": "BABUYAN C", "LOCATION": "Luzon Is-", "LAT": 19.523, "LON": 121.94, "ELEV": 1180, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 121.940000003598016, 19.523000039384058 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0704-05=", "NAME_": "UNNAMED", "LOCATION": "Luzon Is-", "LAT": 20.33, "LON": 121.75, "ELEV": -24, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1800-1899", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 121.750000033536537, 20.330000030098077 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0704-06-", "NAME_": "IRAYA", "LOCATION": "Luzon Is-", "LAT": 20.469, "LON": 122.01, "ELEV": 1009, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D6", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 122.010000025616762, 20.468999996077798 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0705-02-", "NAME_": "CU-LAO RE", "LOCATION": "SE Asia", "LAT": 15.38, "LON": 109.12, "ELEV": 181, "TYPE_": "Cones", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 109.120000007685348, 15.380000027921113 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0705-06-", "NAME_": "CENDRES,", "LOCATION": "SE Asia", "LAT": 10.158, "LON": 109.014, "ELEV": -20, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1900-1963", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 109.013999896599273, 10.157999934205137 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0705-07-", "NAME_": "VETERAN", "LOCATION": "SE Asia", "LAT": 9.83, "LON": 109.05, "ELEV": 0, "TYPE_": "Submarine", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 109.049999985666545, 9.830000076221822 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0801-01=", "NAME_": "UNNAMED", "LOCATION": "Taiwan-E", "LAT": 20.93, "LON": 134.75, "ELEV": -6000, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 134.750000056167664, 20.929999979620391 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0801-011", "NAME_": "UNNAMED", "LOCATION": "Taiwan-E", "LAT": 19.17, "LON": 132.25, "ELEV": -10, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 132.249999987412764, 19.16999990442541 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0801-02=", "NAME_": "UNNAMED", "LOCATION": "Taiwan-E", "LAT": 21.83, "LON": 121.18, "ELEV": -115, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1800-1899", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 121.179999914043151, 21.829999903903868 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0801-03=", "NAME_": "UNNAMED", "LOCATION": "Taiwan-E", "LAT": 24.0, "LON": 121.83, "ELEV": 0, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 121.829999998898302, 23.999999958559698 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0801-031", "NAME_": "KUEI-SHAN", "LOCATION": "Taiwan", "LAT": 24.85, "LON": 121.92, "ELEV": 401, "TYPE_": "Stratovol", "STATUS": "Pleistoce", "TIME_FRAME": "Q", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 121.919999907603085, 24.849999956819289 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0801-04=", "NAME_": "UNNAMED", "LOCATION": "Taiwan-N", "LAT": 25.42, "LON": 122.33, "ELEV": -100, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1800-1899", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 122.330000096372828, 25.420000076312633 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0801-041", "NAME_": "PENG-CHIA", "LOCATION": "Taiwan-N", "LAT": 25.63, "LON": 122.07, "ELEV": 129, "TYPE_": "Stratovol", "STATUS": "Pleistoce", "TIME_FRAME": "Q", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 122.070000104292603, 25.629999933060091 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0801-05=", "NAME_": "ZENGYU", "LOCATION": "Taiwan-N", "LAT": 26.18, "LON": 122.458, "ELEV": -418, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1900-1963", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 122.458000040951731, 26.179999956558518 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0802-01=", "NAME_": "IRIOMOTE-", "LOCATION": "Ryukyu Is", "LAT": 24.558, "LON": 124.0, "ELEV": -200, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1900-1963", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 124.000000053554118, 24.55799997859431 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0802-02=", "NAME_": "OKINAWA-T", "LOCATION": "Ryukyu Is", "LAT": 27.85, "LON": 128.25, "ELEV": 217, "TYPE_": "Complex v", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Other", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 128.250000044852072, 27.849999913739794 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0802-021", "NAME_": "AKUSEKI-J", "LOCATION": "Ryukyu Is", "LAT": 29.45, "LON": 129.6, "ELEV": 586, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 129.599999931277296, 29.450000058211202 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0802-03=", "NAME_": "SUWANOSE-", "LOCATION": "Ryukyu Is", "LAT": 29.53, "LON": 129.72, "ELEV": 799, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 129.720000088628922, 29.530000023572995 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0802-04=", "NAME_": "NAKANO-SH", "LOCATION": "Ryukyu Is", "LAT": 29.85, "LON": 129.87, "ELEV": 979, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 129.870000076009489, 29.850000094329062 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0802-041", "NAME_": "KUCHINO-S", "LOCATION": "Ryukyu Is", "LAT": 29.97, "LON": 129.93, "ELEV": 627, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 129.92999994537638, 29.970000042371737 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0802-05=", "NAME_": "KUCHINOER", "LOCATION": "Ryukyu Is", "LAT": 30.43, "LON": 130.22, "ELEV": 649, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 130.219999976794554, 30.429999947856487 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0802-06=", "NAME_": "KIKAI", "LOCATION": "Ryukyu Is", "LAT": 30.78, "LON": 130.28, "ELEV": 717, "TYPE_": "Caldera", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Caldera & Complex", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 130.280000055470339, 30.780000057950446 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-01=", "NAME_": "OSHIMA", "LOCATION": "Izu Is-Ja", "LAT": 34.73, "LON": 139.38, "ELEV": 758, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 139.379999987588576, 34.730000074487236 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-011", "NAME_": "TO-SHIMA", "LOCATION": "Izu Is-Ja", "LAT": 34.52, "LON": 139.28, "ELEV": 508, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 139.279999926231881, 34.520000008430856 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-02=", "NAME_": "NII-JIMA", "LOCATION": "Izu Is-Ja", "LAT": 34.37, "LON": 139.27, "ELEV": 432, "TYPE_": "Lava dome", "STATUS": "Historica", "TIME_FRAME": "D6", "CONTINENT": "Sea", "Type": "Explosive & Crater Features", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 139.269999982888862, 34.370000021050288 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-03=", "NAME_": "KOZU-SHIM", "LOCATION": "Izu Is-Ja", "LAT": 34.22, "LON": 139.15, "ELEV": 574, "TYPE_": "Lava dome", "STATUS": "Historica", "TIME_FRAME": "D6", "CONTINENT": "Sea", "Type": "Explosive & Crater Features", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 139.150000034846187, 34.220000033669692 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-04=", "NAME_": "MIYAKE-JI", "LOCATION": "Izu Is-Ja", "LAT": 34.08, "LON": 139.53, "ELEV": 815, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 139.529999974969144, 34.079999989632114 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-041", "NAME_": "KUROSE HO", "LOCATION": "Izu Is-Ja", "LAT": 33.4, "LON": 139.68, "ELEV": -107, "TYPE_": "Submarine", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 139.679999962349711, 33.400000074748021 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-05=", "NAME_": "HACHIJO-J", "LOCATION": "Izu Is-Ja", "LAT": 33.13, "LON": 139.77, "ELEV": 854, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D5", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1500-1699", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 139.770000080363445, 33.129999930015828 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-06=", "NAME_": "AOGA-SHIM", "LOCATION": "Izu Is-Ja", "LAT": 32.45, "LON": 139.77, "ELEV": 423, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D4", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1700-1799", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 139.770000080363445, 32.450000015131735 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-07=", "NAME_": "BAYONNAIS", "LOCATION": "Izu Is-Ja", "LAT": 31.92, "LON": 139.92, "ELEV": 10, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 139.920000067744013, 31.92000008762821 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-08=", "NAME_": "SMITH ROC", "LOCATION": "Izu Is-Ja", "LAT": 31.32, "LON": 140.05, "ELEV": 136, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 140.04999995912965, 31.31999992879696 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-09=", "NAME_": "TORI-SHIM", "LOCATION": "Izu Is-Ja", "LAT": 30.48, "LON": 140.32, "ELEV": 403, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 140.320000103861844, 30.480000083189282 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-091", "NAME_": "OMACHI SE", "LOCATION": "Izu Is-Ja", "LAT": 29.22, "LON": 140.8, "ELEV": -1700, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 140.799999896032546, 29.219999896159919 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-092", "NAME_": "NISHINO-S", "LOCATION": "Volcano I", "LAT": 27.243, "LON": 140.877, "ELEV": 52, "TYPE_": "Caldera", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Caldera & Complex", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 140.877000045838599, 27.24300004573918 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-093", "NAME_": "UNNAMED", "LOCATION": "Volcano I", "LAT": 26.13, "LON": 144.48, "ELEV": -3200, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 144.479999977146122, 26.130000030534632 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-10=", "NAME_": "KAITOKU S", "LOCATION": "Volcano I", "LAT": 26.122, "LON": 141.102, "ELEV": -10, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1964 or later", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 141.102000026909479, 26.122000033998461 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-11=", "NAME_": "KITA-IWO-", "LOCATION": "Volcano I", "LAT": 25.43, "LON": 141.23, "ELEV": 792, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 141.229999971488326, 25.430000019655623 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-12=", "NAME_": "IWO-JIMA", "LOCATION": "Volcano I", "LAT": 24.75, "LON": 141.33, "ELEV": 161, "TYPE_": "Caldera", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Caldera & Complex", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 141.330000032845021, 24.749999895462594 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-13=", "NAME_": "SHIN-IWO-", "LOCATION": "Volcano I", "LAT": 24.28, "LON": 141.52, "ELEV": -14, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1964 or later", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 141.5200000029065, 24.280000046634868 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-131", "NAME_": "MINAMI-HI", "LOCATION": "Volcano I", "LAT": 23.507, "LON": 141.905, "ELEV": -30, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1964 or later", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 141.904999914700909, 23.50699998887238 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-132", "NAME_": "NIKKO", "LOCATION": "Volcano I", "LAT": 23.075, "LON": 142.308, "ELEV": -391, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 142.307999975683458, 23.074999966609823 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-133", "NAME_": "FUKUJIN", "LOCATION": "Volcano I", "LAT": 21.925, "LON": 143.442, "ELEV": -217, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1964 or later", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 143.441999955631843, 21.924999993589068 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-134", "NAME_": "KASUGA SE", "LOCATION": "Volcano I", "LAT": 21.77, "LON": 143.72, "ELEV": -558, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 143.720000096900208, 21.770000034536992 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-135", "NAME_": "UNNAMED", "LOCATION": "Mariana I", "LAT": 21.0, "LON": 142.9, "ELEV": 0, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 142.899999928669615, 21.000000001639179 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-136", "NAME_": "UNNAMED", "LOCATION": "Mariana I", "LAT": 20.3, "LON": 143.2, "ELEV": 0, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 143.199999903430751, 20.29999999076017 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-14=", "NAME_": "FARALLON", "LOCATION": "Mariana I", "LAT": 20.53, "LON": 144.9, "ELEV": 360, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 144.899999899949933, 20.529999943502531 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-141", "NAME_": "AHYI", "LOCATION": "Mariana I", "LAT": 20.43, "LON": 145.03, "ELEV": -70, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 145.03000000064452, 20.430000091454772 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-142", "NAME_": "SUPPLY RE", "LOCATION": "Mariana I", "LAT": 20.13, "LON": 145.1, "ELEV": -8, "TYPE_": "Submarine", "STATUS": "Hydrophon", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1964 or later", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 145.100000022663323, 20.129999907384686 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-15=", "NAME_": "ASUNCION", "LOCATION": "Mariana I", "LAT": 19.67, "LON": 145.4, "ELEV": 857, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 145.399999997424516, 19.67000000189995 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-16=", "NAME_": "AGRIGAN", "LOCATION": "Mariana I", "LAT": 18.77, "LON": 145.67, "ELEV": 965, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 145.669999932847759, 18.770000077616487 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-17=", "NAME_": "PAGAN", "LOCATION": "Mariana I", "LAT": 18.13, "LON": 145.8, "ELEV": 570, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 145.800000033542347, 18.12999993610434 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-18=", "NAME_": "ALAMAGAN", "LOCATION": "Mariana I", "LAT": 17.6, "LON": 145.83, "ELEV": 744, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D6", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 145.830000072880239, 17.600000008600816 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-19=", "NAME_": "GUGUAN", "LOCATION": "Mariana I", "LAT": 17.32, "LON": 145.85, "ELEV": 287, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 145.849999959566219, 17.319999920525646 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-191", "NAME_": "SARIGAN", "LOCATION": "Mariana I", "LAT": 16.708, "LON": 145.78, "ELEV": 538, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 145.779999937547416, 16.708000080853523 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-20=", "NAME_": "ANATAHAN", "LOCATION": "Mariana I", "LAT": 16.35, "LON": 145.67, "ELEV": 788, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 145.669999932847759, 16.34999997422338 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-201", "NAME_": "RUBY", "LOCATION": "Mariana I", "LAT": 15.62, "LON": 145.57, "ELEV": -230, "TYPE_": "Submarine", "STATUS": "Hydrophon", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1964 or later", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 145.570000080799957, 15.619999924006464 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0804-21=", "NAME_": "ESMERALDA", "LOCATION": "Mariana I", "LAT": 15.0, "LON": 145.25, "ELEV": -43, "TYPE_": "Submarine", "STATUS": "Fumarolic", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 145.250000010043891, 15.000000087798156 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0805-01=", "NAME_": "OSHIMA-OS", "LOCATION": "Hokkaido-", "LAT": 41.5, "LON": 139.37, "ELEV": 737, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D4", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1700-1799", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 139.370000044245558, 41.500000021226072 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-041", "NAME_": "LVINAYA P", "LOCATION": "Kurile Is", "LAT": 44.62, "LON": 147.0, "ELEV": 528, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 146.999999932587002, 44.619999926189251 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-05=", "NAME_": "ATSONUPUR", "LOCATION": "Kurile Is", "LAT": 44.804, "LON": 147.13, "ELEV": 1205, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 147.13000003328159, 44.804000055830301 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-061", "NAME_": "UNNAMED", "LOCATION": "Kurile Is", "LAT": 45.03, "LON": 147.208, "ELEV": -930, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 147.208000051836564, 45.029999905650101 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-11-", "NAME_": "DEMON", "LOCATION": "Kurile Is", "LAT": 45.5, "LON": 148.85, "ELEV": 1205, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 148.849999916486752, 45.499999963786763 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-13-", "NAME_": "UNNAMED", "LOCATION": "Kurile Is", "LAT": 46.1, "LON": 150.5, "ELEV": -100, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 150.499999986982061, 46.099999913309063 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-15=", "NAME_": "CHIRPOI", "LOCATION": "Kurile Is", "LAT": 46.525, "LON": 150.875, "ELEV": 742, "TYPE_": "Caldera", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Caldera & Complex", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 150.874999955433509, 46.525000017093333 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-16-", "NAME_": "UNNAMED", "LOCATION": "Kurile Is", "LAT": 46.47, "LON": 151.28, "ELEV": -502, "TYPE_": "Submarine", "STATUS": "Hydrophon", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1964 or later", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 151.279999963222849, 46.46999991008903 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-20=", "NAME_": "KETOI", "LOCATION": "Kurile Is", "LAT": 47.35, "LON": 152.475, "ELEV": 1172, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 152.475000099904889, 47.349999947686513 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-21=", "NAME_": "USHISHUR", "LOCATION": "Kurile Is", "LAT": 47.52, "LON": 152.8, "ELEV": 401, "TYPE_": "Caldera", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Sea", "Type": "Caldera & Complex", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 152.799999933023571, 47.520000031062011 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-211", "NAME_": "SREDNII", "LOCATION": "Kurile Is", "LAT": 47.6, "LON": 152.92, "ELEV": 36, "TYPE_": "Submarine", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 152.92000009037514, 47.599999996423804 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-22=", "NAME_": "RASSHUA", "LOCATION": "Kurile Is", "LAT": 47.77, "LON": 153.02, "ELEV": 956, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 153.019999942422942, 47.770000079799274 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-23=", "NAME_": "UNNAMED", "LOCATION": "Kurile Is", "LAT": 48.08, "LON": 153.33, "ELEV": -150, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1900-1963", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 153.33000006983599, 48.079999997903428 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-24=", "NAME_": "SARYCHEV", "LOCATION": "Kurile Is", "LAT": 48.092, "LON": 153.2, "ELEV": 1496, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 153.199999969141402, 48.09200009736216 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-25=", "NAME_": "RAIKOKE", "LOCATION": "Kurile Is", "LAT": 48.292, "LON": 153.25, "ELEV": 551, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 153.250000104474225, 48.292000010766628 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-26=", "NAME_": "CHIRINKOT", "LOCATION": "Kurile Is", "LAT": 48.98, "LON": 153.48, "ELEV": 724, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 153.480000057216557, 48.97999992218692 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-27=", "NAME_": "EKARMA", "LOCATION": "Kurile Is", "LAT": 48.958, "LON": 153.93, "ELEV": 1170, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 153.930000019358317, 48.958000088694121 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "0900-331", "NAME_": "SHIRINKI", "LOCATION": "Kurile Is", "LAT": 50.2, "LON": 154.98, "ELEV": 761, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 154.979999931022348, 50.199999917226449 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-001", "NAME_": "MASHKOVTS", "LOCATION": "Kamchatka", "LAT": 51.1, "LON": 156.72, "ELEV": 503, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 156.719999910222441, 51.100000050818863 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1000-271", "NAME_": "PIIP", "LOCATION": "Kamchatka", "LAT": 55.42, "LON": 167.33, "ELEV": -300, "TYPE_": "Submarine", "STATUS": "Tephrochr", "TIME_FRAME": "D7", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 167.330000078107332, 55.420000064135593 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1006-03-", "NAME_": "ULREUNG", "LOCATION": "Korea", "LAT": 37.5, "LON": 130.87, "ELEV": 984, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D7", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "B.C. (Holocene)", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 130.870000061649648, 37.50000007866538 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-01-", "NAME_": "BULDIR", "LOCATION": "Aleutian", "LAT": 52.37, "LON": 175.98, "ELEV": 656, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 175.976977453099494, 52.368439241488602 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-03-", "NAME_": "SEGULA", "LOCATION": "Aleutian", "LAT": 52.02, "LON": 178.13, "ELEV": 1153, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 178.127167517018677, 52.018443246527433 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-04-", "NAME_": "DAVIDOF", "LOCATION": "Aleutian", "LAT": 51.97, "LON": 178.33, "ELEV": 328, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 178.327173047072648, 51.96844717841347 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-07-", "NAME_": "GARELOI", "LOCATION": "Aleutian", "LAT": 51.78, "LON": -178.8, "ELEV": 1573, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -178.802618312764054, 51.778522627865236 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-10-", "NAME_": "BOBROF", "LOCATION": "Aleutian", "LAT": 51.9, "LON": -177.43, "ELEV": 738, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -177.432506899031068, 51.898591693690506 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-13-", "NAME_": "KASATOCHI", "LOCATION": "Aleutian", "LAT": 52.18, "LON": -175.5, "ELEV": 314, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D4", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1700-1799", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -175.50244909351548, 52.17869035452982 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-14-", "NAME_": "KONIUJI", "LOCATION": "Aleutian", "LAT": 52.22, "LON": -175.13, "ELEV": 272, "TYPE_": "Stratovol", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -175.132429064985388, 52.218707409049074 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-15-", "NAME_": "SERGIEF", "LOCATION": "Aleutian", "LAT": 52.03, "LON": -174.93, "ELEV": 560, "TYPE_": "Stratovol", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -174.932406551216815, 52.028703577170099 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-19-", "NAME_": "AMUKTA", "LOCATION": "Aleutian", "LAT": 52.5, "LON": -171.25, "ELEV": 1066, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -171.252350860767734, 52.498853437587094 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-20-", "NAME_": "CHAGULAK", "LOCATION": "Aleutian", "LAT": 52.57, "LON": -171.13, "ELEV": 1142, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -171.132350874771873, 52.568861087627965 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-22-", "NAME_": "HERBERT", "LOCATION": "Aleutian", "LAT": 52.75, "LON": -170.12, "ELEV": 1290, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -170.12227578685409, 52.748913413533359 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-23-", "NAME_": "CARLISLE", "LOCATION": "Aleutian", "LAT": 52.9, "LON": -170.05, "ELEV": 1620, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -170.052278493045804, 52.898939460583669 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-25-", "NAME_": "ULIAGA", "LOCATION": "Aleutian", "LAT": 53.07, "LON": -169.77, "ELEV": 888, "TYPE_": "Stratovol", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -169.772249886471229, 53.06897916172678 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-26-", "NAME_": "KAGAMIL", "LOCATION": "Aleutian", "LAT": 52.97, "LON": -169.72, "ELEV": 893, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -169.722234787556687, 52.968962723050431 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-30-", "NAME_": "BOGOSLOF", "LOCATION": "Aleutian", "LAT": 53.93, "LON": -168.03, "ELEV": 101, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -168.031952829570031, 53.929136039468588 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1101-39-", "NAME_": "AMAK", "LOCATION": "Aleutian", "LAT": 55.42, "LON": -163.15, "ELEV": 513, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D4", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1700-1799", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -163.152029242331849, 55.419122506746504 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1105-05-", "NAME_": "DUNCAN CA", "LOCATION": "Alaska-SE", "LAT": 56.5, "LON": -133.1, "ELEV": 15, "TYPE_": "Unknown", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -133.101710254264049, 56.499646915133603 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1301-01-", "NAME_": "UNNAMED", "LOCATION": "Pacific-N", "LAT": 46.52, "LON": -129.58, "ELEV": -2400, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1964 or later", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -129.58141230397888, 46.519773279018942 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1301-02-", "NAME_": "UNNAMED", "LOCATION": "Pacific-N", "LAT": 45.03, "LON": -130.2, "ELEV": -2300, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1964 or later", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -130.201390994115798, 45.029775457379394 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1301-03-", "NAME_": "UNNAMED", "LOCATION": "Pacific-N", "LAT": 31.75, "LON": -124.25, "ELEV": -2533, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -124.251038630245191, 31.750045505365218 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1302-00-", "NAME_": "LOIHI SEA", "LOCATION": "Hawaiian", "LAT": 18.92, "LON": -155.27, "ELEV": -980, "TYPE_": "Submarine", "STATUS": "Seismicit", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -155.270000061655253, 18.920000064997055 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1302-05-", "NAME_": "KAHOOLAWE", "LOCATION": "Hawaiian", "LAT": 20.57, "LON": -156.57, "ELEV": 450, "TYPE_": "Shield vo", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -156.570000022056604, 20.569999926183428 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1302-08-", "NAME_": "UNNAMED", "LOCATION": "Hawaiian", "LAT": 21.75, "LON": -158.75, "ELEV": -3000, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -158.75000002005541, 21.749999938542075 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1302-09-", "NAME_": "UNNAMED", "LOCATION": "Hawaiian", "LAT": 23.58, "LON": -163.83, "ELEV": -4000, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1900-1963", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -163.829999913618053, 23.580000035755859 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1303-01-", "NAME_": "UNNAMED", "LOCATION": "Pacific-E", "LAT": 9.82, "LON": -104.3, "ELEV": -2500, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1964 or later", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -104.299999996108752, 9.819999923569895 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1303-02-", "NAME_": "GALAPAGOS", "LOCATION": "Pacific-E", "LAT": 0.792, "LON": -86.15, "ELEV": -2500, "TYPE_": "Submarine", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -86.150000057896165, 0.79199996027728 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1303-03-", "NAME_": "TEAHITIA", "LOCATION": "Society I", "LAT": -17.57, "LON": -148.85, "ELEV": -1600, "TYPE_": "Submarine", "STATUS": "Seismicit", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -148.850000015701482, -17.569999990798493 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1303-04-", "NAME_": "ROCARD", "LOCATION": "Society I", "LAT": -17.642, "LON": -148.6, "ELEV": -2100, "TYPE_": "Submarine", "STATUS": "Seismicit", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -148.599999966964191, -17.641999959624101 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1303-05-", "NAME_": "MOUA PIHA", "LOCATION": "Society I", "LAT": -18.32, "LON": -148.67, "ELEV": -180, "TYPE_": "Submarine", "STATUS": "Seismicit", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -148.669999988982994, -18.319999927701389 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1303-06-", "NAME_": "MEHETIA", "LOCATION": "Society I", "LAT": -17.87, "LON": -148.07, "ELEV": 435, "TYPE_": "Stratovol", "STATUS": "Anthropol", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -148.070000039460666, -17.869999965559657 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1303-07-", "NAME_": "MACDONALD", "LOCATION": "Austral I", "LAT": -28.98, "LON": -140.25, "ELEV": -50, "TYPE_": "Submarine", "STATUS": "Hydrophon", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1964 or later", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -140.249999971748878, -28.980000021610138 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1303-08-", "NAME_": "EASTER IS", "LOCATION": "Pacific-C", "LAT": -27.12, "LON": -109.45, "ELEV": 530, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -109.449999911690185, -27.120000094367384 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1304-02-", "NAME_": "UNNAMED", "LOCATION": "Pacific-S", "LAT": -53.9, "LON": -140.3, "ELEV": -1000, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -140.29999989777275, -53.899999906561547 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1304-03-", "NAME_": "UNNAMED", "LOCATION": "Pacific-S", "LAT": -55.97, "LON": -143.17, "ELEV": 0, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -143.169999963307589, -55.969999899860682 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1401-003", "NAME_": "SAN LUIS", "LOCATION": "Mexico", "LAT": 29.814, "LON": -114.384, "ELEV": 160, "TYPE_": "Explosion", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -114.384718897898338, 29.814120657040217 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1401-005", "NAME_": "CORONADO", "LOCATION": "Mexico", "LAT": 29.08, "LON": -113.513, "ELEV": 460, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -113.513667686451996, 29.080138847858326 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1401-008", "NAME_": "UNNAMED", "LOCATION": "Mexico", "LAT": 28.0, "LON": -115.0, "ELEV": 0, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -115.000678946872512, 28.000158548070694 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1401-011", "NAME_": "TORTUGA,", "LOCATION": "Mexico", "LAT": 27.392, "LON": -111.858, "ELEV": 310, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -111.858562767413829, 27.392180447581772 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1401-02=", "NAME_": "BARCENA", "LOCATION": "Mexico-Is", "LAT": 19.3, "LON": -110.82, "ELEV": 332, "TYPE_": "Cinder co", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Cone Types", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -110.820546459054526, 19.300632686984137 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1403-12=", "NAME_": "CONCHAGUI", "LOCATION": "El Salvad", "LAT": 13.22, "LON": -87.765, "ELEV": 550, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -87.764954932663642, 13.221010559265158 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1403-13-", "NAME_": "TIGRE, IS", "LOCATION": "Honduras", "LAT": 13.27, "LON": -87.63, "ELEV": 760, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -87.629952344745107, 13.27100792286755 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1403-14-", "NAME_": "ZACATE GR", "LOCATION": "Honduras", "LAT": 13.33, "LON": -87.63, "ELEV": 600, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -87.629952333011119, 13.331004497380523 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1403-16-", "NAME_": "UTILA ISL", "LOCATION": "Honduras", "LAT": 16.1, "LON": -86.9, "ELEV": 90, "TYPE_": "Pyroclast", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Other", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -86.899936806969563, 16.100854689321121 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1503-07=", "NAME_": "PINTA", "LOCATION": "Galapagos", "LAT": 0.58, "LON": -90.75, "ELEV": 780, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -90.749999949979184, 0.57999994741408 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1503-08=", "NAME_": "MARCHENA", "LOCATION": "Galapagos", "LAT": 0.33, "LON": -90.47, "ELEV": 343, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -90.470000071212922, 0.329999898676803 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1503-081", "NAME_": "GENOVESA", "LOCATION": "Galapagos", "LAT": 0.32, "LON": -89.958, "ELEV": 64, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -89.958000083588558, 0.319999955333813 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1506-01=", "NAME_": "SAN FELIX", "LOCATION": "Chile-Is", "LAT": -26.27, "LON": -80.12, "ELEV": 183, "TYPE_": "Shield vo", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -80.119999895408313, -26.270000096107793 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1506-02=", "NAME_": "ROBINSON", "LOCATION": "Chile-Is", "LAT": -33.658, "LON": -78.85, "ELEV": 922, "TYPE_": "Shield vo", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -78.849999974344883, -33.657999932248117 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1506-04=", "NAME_": "UNNAMED", "LOCATION": "Chile-Is", "LAT": -33.62, "LON": -76.83, "ELEV": -642, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -76.829999907069634, -33.619999896374026 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1508-09-", "NAME_": "COOK, ISL", "LOCATION": "Chile-S", "LAT": -54.95, "LON": -70.27, "ELEV": 150, "TYPE_": "Lava dome", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Explosive & Crater Features", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -70.270000026387208, -54.950000027534529 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1600-01=", "NAME_": "SABA", "LOCATION": "W Indies", "LAT": 17.63, "LON": -63.23, "ELEV": 887, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D5", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1500-1699", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -63.229422493526876, 17.63068895411573 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1600-02=", "NAME_": "QUILL, TH", "LOCATION": "W Indies", "LAT": 17.48, "LON": -62.95, "ELEV": 601, "TYPE_": "Stratovol", "STATUS": "Radiocarb", "TIME_FRAME": "D6", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "A.D. 1-1499", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -62.949417201247343, 17.480695770903342 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1600-04=", "NAME_": "NEVIS PEA", "LOCATION": "W Indies", "LAT": 17.15, "LON": -62.58, "ELEV": 985, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -62.57941049746362, 17.15071153723034 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1600-16=", "NAME_": "KICK-'EM-", "LOCATION": "W Indies", "LAT": 12.3, "LON": -61.63, "ELEV": -160, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1964 or later", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -61.629999999753693, 12.299999896329879 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1701-01=", "NAME_": "REYKJANES", "LOCATION": "Iceland-S", "LAT": 63.67, "LON": -23.33, "ELEV": 80, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -23.329999942739278, 63.669999997994239 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1702-01=", "NAME_": "VESTMANNA", "LOCATION": "Iceland-S", "LAT": 63.43, "LON": -20.28, "ELEV": 279, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D1", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1964 or later", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -20.280000059794872, 63.430000101908888 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1703-10=", "NAME_": "TJORNES F", "LOCATION": "Iceland-N", "LAT": 66.3, "LON": -17.1, "ELEV": 0, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -17.100000076155879, 66.299999958134805 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1705-01=", "NAME_": "KOLBEINSE", "LOCATION": "Iceland-N", "LAT": 66.67, "LON": -18.5, "ELEV": 0, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D4", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1700-1799", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -18.500000097913897, 66.669999954914744 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1707-01-", "NAME_": "UNNAMED", "LOCATION": "Arctic Oc", "LAT": 88.27, "LON": -65.6, "ELEV": -1500, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1900-1963", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -65.599999902976464, 88.270000021498504 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1801-02=", "NAME_": "UNNAMED", "LOCATION": "Atlantic-", "LAT": 49.0, "LON": -34.5, "ELEV": -1650, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1800-1899", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -34.500000077465558, 49.000000018181822 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1801-03=", "NAME_": "UNNAMED", "LOCATION": "Atlantic-", "LAT": 39.95, "LON": -25.83, "ELEV": -2835, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -25.83000001149415, 39.950000012087457 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1801-04=", "NAME_": "UNNAMED", "LOCATION": "Atlantic-", "LAT": 38.75, "LON": -38.08, "ELEV": -4200, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1800-1899", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -38.08000009722241, 38.749999903733908 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1802-04=", "NAME_": "GRACIOSA", "LOCATION": "Azores", "LAT": 39.02, "LON": -27.97, "ELEV": 402, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -27.970000026812102, 39.020000048466102 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1802-07=", "NAME_": "DON JOAO", "LOCATION": "Azores", "LAT": 38.23, "LON": -26.63, "ELEV": -14, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D4", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1700-1799", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -26.630000083729868, 38.229999919573373 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1802-11=", "NAME_": "MONACO BA", "LOCATION": "Azores", "LAT": 37.6, "LON": -25.88, "ELEV": -197, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1900-1963", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -25.879999937518051, 37.599999930713153 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1804-02-", "NAME_": "BRAVA", "LOCATION": "Cape Verd", "LAT": 14.85, "LON": -24.72, "ELEV": 900, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -24.720000021154306, 14.850000100417589 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1805-01=", "NAME_": "UNNAMED", "LOCATION": "Atlantic-", "LAT": 7.0, "LON": -21.83, "ELEV": -1415, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -21.830000068933487, 6.999999993367865 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1805-02=", "NAME_": "UNNAMED", "LOCATION": "Atlantic-", "LAT": 4.2, "LON": -21.45, "ELEV": -2900, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -21.449999919501607, 4.199999949851829 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1805-03=", "NAME_": "UNNAMED", "LOCATION": "Atlantic-", "LAT": -0.58, "LON": -15.83, "ELEV": -1528, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1800-1899", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -15.829999945783527, -0.57999996894965 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1805-04=", "NAME_": "UNNAMED", "LOCATION": "Atlantic-", "LAT": -3.5, "LON": -24.5, "ELEV": -5300, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -24.500000011754935, -3.49999996050839 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1805-05-", "NAME_": "ASCENSION", "LOCATION": "Atlantic-", "LAT": -7.95, "LON": -14.37, "ELEV": 858, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -14.370000054658618, -7.950000074519735 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1805-051", "NAME_": "TRINDADE", "LOCATION": "Atlantic-", "LAT": -20.514, "LON": -29.331, "ELEV": 600, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -29.330999934638157, -20.51399997196576 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1806-01=", "NAME_": "TRISTAN D", "LOCATION": "Atlantic-", "LAT": -37.092, "LON": -12.28, "ELEV": 2060, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -12.279999965364595, -37.092000067546934 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1806-03-", "NAME_": "THOMPSON", "LOCATION": "Atlantic-", "LAT": -53.93, "LON": 5.5, "ELEV": 0, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 5.49999997606804, -53.929999945899446 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1900-01=", "NAME_": "BUCKLE IS", "LOCATION": "Antarctic", "LAT": -66.8, "LON": 163.25, "ELEV": 1239, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 163.249999960875925, -66.800000077144915 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1900-011", "NAME_": "YOUNG ISL", "LOCATION": "Antarctic", "LAT": -66.42, "LON": 162.45, "ELEV": 1340, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 162.450000097949157, -66.41999992771305 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1900-012", "NAME_": "STURGE IS", "LOCATION": "Antarctic", "LAT": -67.4, "LON": 164.83, "ELEV": 1167, "TYPE_": "Stratovol", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 164.830000009352432, -67.400000026667243 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1900-016", "NAME_": "UNNAMED", "LOCATION": "Antarctic", "LAT": -76.83, "LON": 163.0, "ELEV": -500, "TYPE_": "Submarine", "STATUS": "Holocene?", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ 162.999999912138662, -76.829999972884536 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1900-031", "NAME_": "PENGUIN I", "LOCATION": "Antarctic", "LAT": -62.1, "LON": -57.93, "ELEV": 180, "TYPE_": "Stratovol", "STATUS": "Lichenome", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -57.930000031954165, -62.0999999143963 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1900-04=", "NAME_": "BRIDGEMAN", "LOCATION": "Antarctic", "LAT": -62.05, "LON": -56.75, "ELEV": 240, "TYPE_": "Stratovol", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -56.750000019595518, -62.04999998837242 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1900-041", "NAME_": "PAULET", "LOCATION": "Antarctic", "LAT": -63.58, "LON": -55.77, "ELEV": 353, "TYPE_": "Cinder co", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Cone Types", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -55.769999920641339, -63.579999901516111 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1900-05=", "NAME_": "SEAL NUNA", "LOCATION": "Antarctic", "LAT": -65.03, "LON": -60.05, "ELEV": 368, "TYPE_": "Pyroclast", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Sea", "Type": "Other", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -60.049999951277186, -65.030000058606944 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1900-051", "NAME_": "UNNAMED", "LOCATION": "Antarctic", "LAT": -56.25, "LON": -72.17, "ELEV": 0, "TYPE_": "Submarine", "STATUS": "Uncertain", "TIME_FRAME": "?", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -72.16999993631083, -56.249999987935858 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1900-07=", "NAME_": "THULE ISL", "LOCATION": "Antarctic", "LAT": -59.45, "LON": -27.37, "ELEV": 1075, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -27.370000077289774, -59.450000067569761 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1900-08=", "NAME_": "BRISTOL I", "LOCATION": "Antarctic", "LAT": -59.03, "LON": -26.58, "ELEV": 1100, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1900-1963", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -26.579999948397045, -59.029999935456999 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1900-09=", "NAME_": "MICHAEL", "LOCATION": "Antarctic", "LAT": -57.78, "LON": -26.45, "ELEV": 990, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -26.45000005701138, -57.779999901079549 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1900-10=", "NAME_": "CANDLEMAS", "LOCATION": "Antarctic", "LAT": -57.08, "LON": -26.72, "ELEV": 550, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -26.719999992434651, -57.080000099509469 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1900-11=", "NAME_": "HODSON", "LOCATION": "Antarctic", "LAT": -56.7, "LON": -27.15, "ELEV": 1005, "TYPE_": "Stratovol", "STATUS": "Holocene", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -27.150000067890403, -56.699999950077597 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1900-12=", "NAME_": "LESKOV IS", "LOCATION": "Antarctic", "LAT": -56.67, "LON": -28.13, "ELEV": 190, "TYPE_": "Stratovol", "STATUS": "Fumarolic", "TIME_FRAME": "U", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "Unknown", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -28.129999957535659, -56.669999910739691 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1900-13=", "NAME_": "ZAVODOVSK", "LOCATION": "Antarctic", "LAT": -56.3, "LON": -27.57, "ELEV": 551, "TYPE_": "Stratovol", "STATUS": "Historica", "TIME_FRAME": "D3", "CONTINENT": "Sea", "Type": "Shield & Stratovolcanoes", "Last_eruption": "1800-1899", "Sea_level": "Above Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -27.569999990694242, -56.299999913959745 ] } }, +{ "type": "Feature", "properties": { "NUMBER_": "1900-14-", "NAME_": "PROTECTOR", "LOCATION": "Antarctic", "LAT": -55.92, "LON": -28.08, "ELEV": -27, "TYPE_": "Submarine", "STATUS": "Historica", "TIME_FRAME": "D2", "CONTINENT": "Sea", "Type": "Submarine & Subglacial", "Last_eruption": "1900-1963", "Sea_level": "Below Sea Level" }, "geometry": { "type": "Point", "coordinates": [ -28.080000031511787, -55.919999973836795 ] } } +] +} diff --git a/examples/philly-park-lead-levels/.gitignore b/examples/philly-park-lead-levels/.gitignore deleted file mode 100644 index c2658d7..0000000 --- a/examples/philly-park-lead-levels/.gitignore +++ /dev/null @@ -1 +0,0 @@ -node_modules/ diff --git a/examples/philly-park-lead-levels/css/chart-style.css b/examples/philly-park-lead-levels/css/chart-style.css deleted file mode 100644 index f1041d1..0000000 --- a/examples/philly-park-lead-levels/css/chart-style.css +++ /dev/null @@ -1,136 +0,0 @@ -#chart-title { - font-size: 0.9rem; - color: rgb(61, 60, 60); - box-sizing: border-box; - display:block; - margin: 1vh; - margin-top: 1.5vh; -} - -/* Bottom right chart style start */ - - -#lead-level-chart { - /* position: absolute; */ - padding-top: 5rem; - box-sizing: border-box; - width: 100%; - height: calc(100% - 16px); /* 16px is the height of the chart title */ -} - -#lead-level-chart .scale { - height: 1.5rem; - box-sizing: border-box; - /* The following gradient code is from https://cssgradient.io/ */ - background: rgb(116, 141, 107); - background: linear-gradient(90deg, rgba(101, 160, 79, 0.41) 0%, rgba(246,177,114,0.73) 100%); - /* background: rgb(112,133,95); - background: linear-gradient(90deg, rgba(112,133,95,1) 0%, rgba(201,100,60,1) 100%); */ -} - -#lead-level-chart .safe-level { - position: relative; - top: -1.5rem; - left: 0; - border-right: 2px solid rgb(85, 65, 65); - height: 4.5rem; - box-sizing: border-box; - transition: width 0.5s; - /* calculate the relative width using log scale: 5.9914645471/9.8016762864 */ - width: 61.1%; -} - -#lead-level-chart .level { - position: relative; - top: -6.5rem; - left: 0; - border-right: 2px solid rgb(158, 65, 65); - height: 2.5rem; - box-sizing: border-box; - transition: width 0.5s; - width: 61.1%; -} - -#lead-level-chart .level-label { - position: relative; - width: fit-content; - top: -11rem; - left: 0; - font-size: 0.8rem; - padding: 5px; - border-radius: 0.5rem; - box-sizing: border-box; - transition: left 0.5s, background-color 0.5s; - } - -#safe-lead-level-description { - position: relative; - right: -2.5em; - bottom: 4rem; - box-sizing: border-box; - font-size: 0.8rem; - width: 9rem; - text-align: center; -} - -/* Bottom right chart style end */ - - -/* mobile compatibility */ -/* phone vertical */ -@media screen and (width <= 450px) { - - #lead-level-chart { - padding-top: 2.5rem; - - } - - #safe-lead-level-description { - bottom: 4rem; - right: -4.5em; - } - -} - -@media screen and (width <= 300px) { - - #lead-level-chart { - padding-top: 2.5rem; - - } - - #safe-lead-level-description { - bottom: 4rem; - right: -0.5em; - } - -} - -/* phone horizontal, except iPad vertical */ -@media screen and (max-width: 1000px) and (min-width: 450px) and (max-height: 700px) { - - #safe-lead-level-description { - position: relative; - right: -25px; - bottom: 5rem; - box-sizing: border-box; - font-size: 0.8rem; - width: 9rem; - text-align: center; - } - - #lead-level-chart { - padding-top: 4rem; - - } - -} - -/* computer with short screen */ -@media screen and (max-height: 750px) { - - #lead-level-chart { - padding-top: 3rem; - - } -} \ No newline at end of file diff --git a/examples/philly-park-lead-levels/css/input-style.css b/examples/philly-park-lead-levels/css/input-style.css deleted file mode 100644 index 997a44b..0000000 --- a/examples/philly-park-lead-levels/css/input-style.css +++ /dev/null @@ -1,59 +0,0 @@ -.address-choices, -.park-choices { - z-index: 1000000; - position: relative; - stroke: true; - border: 1px solid gray; - background: rgba(250, 250, 250, 0.9); - box-shadow: 3px 3px 10px #888888; - color: rgb(61, 60, 60); - /* need to specify max-height, otherwise overflow won't work */ - max-height: 15rem; - overflow: auto; - cursor: pointer; -} - -.address-choices li, -.park-choices li { - stroke: true; - border-bottom: 1px solid gray; -} - -.input-box-group { - display: flex; - flex-direction: row; - align-items: center; - height: 50%; -} - -#entry { - height: 20px; - margin: 0; - padding: 0; - margin-right: 2px; - border: 1px solid #a5a2a2; - border-radius: 3px; -} - -.cross-icon { - margin: 0; - padding: 0; - width: 22px; - height: 22px; - display: flex; - flex-direction: row; - align-items: center; - justify-content: center; - background-color: #fff; - border: 1px solid #ccc; - border-radius: 3px; - cursor: pointer; -} - -.cross-icon:hover { - background-color: #f4f4f4; -} - -.cross-icon:hover path{ - stroke: brown; -} \ No newline at end of file diff --git a/examples/philly-park-lead-levels/css/map-style.css b/examples/philly-park-lead-levels/css/map-style.css deleted file mode 100644 index 013ca85..0000000 --- a/examples/philly-park-lead-levels/css/map-style.css +++ /dev/null @@ -1,122 +0,0 @@ -/* style of the legend */ -.legend-wrapper { - display: flex; - flex-direction: column; - align-items: flex-end; -} - -.legend { - background-color: rgba(230, 224, 224, 0.438); - padding: 0.7rem; - width: min-content; -} - -.legend-content { - display:flex; - box-sizing: border-box; - flex-direction: row; -} - -.legend h2 { - font-size: 0.8rem; - margin: 0%; -} - -.soil-legend h3, -.park-legend h3 { - font-size: 0.7rem; - padding: 0.3rem; -} - -.soil-entries, -.park-entries { - font-size: 0.7rem; - list-style: none; - padding-left: 0; -} - -.lead-entry, -.park-entry { - display: flex; - flex-direction: row; - align-items: center; - gap: 0.2rem; -} - -.lead-color, -.park-color { - width: 1rem; - height: 1rem; - display: inline-block; -} - -/* map tooltip and popup */ -.tool-lead, -.tool-park { - margin: 0; -} - -.pop-title { - margin: 0; -} - -.pop-content { - margin: 0; - height: 0.3rem; -} - -li { - margin: 0.2rem; -} - -/* style of the back button and mobile button*/ -.back-button { - border: 2px solid #ccc; - height: 30px; - width: 30px; - border-radius: 4px; - background-color: #fff; - display: flex; - align-items: center; - justify-content: center; - /* change cursor to hand when hover over the button */ - cursor: pointer; -} - -.back-button:hover { - background-color: #f4f4f4; -} - -.back-button:hover path { - fill: brown; - stroke: brown; -} - -.mobile-menu { - display: none; -} - -/* media query for mobile menu */ - -@media screen and (width <= 1000px) { - .mobile-menu { - border: 2px solid #ccc; - height: 30px; - width: 30px; - border-radius: 4px; - background-color: #fff; - display: flex; - align-items: center; - justify-content: center; - /* change cursor to hand when hover over the button */ - cursor: pointer; - margin-top: 4px; - } - - .legend { - display: none; - background-color: rgba(255, 255, 255, 0.8); - border: 2px solid #ccc; - border-radius: 4px; - } -} diff --git a/examples/philly-park-lead-levels/css/right-style.css b/examples/philly-park-lead-levels/css/right-style.css deleted file mode 100644 index 09f9e08..0000000 --- a/examples/philly-park-lead-levels/css/right-style.css +++ /dev/null @@ -1,159 +0,0 @@ -/* filtering block styles */ - -fieldset { - FONT-WEIGHT: 400; - font-size: 0.8rem; - color: rgb(61, 60, 60); - height: 100%; - min-height: 70px; - box-sizing: border-box; - margin: 0; - border-width: 1px; -} - -.form-wrapper { - display: flex; - flex-direction: column; - height: 100%; -} - -#by-address, -#by-park { - cursor: pointer; -} - -legend { - font-size: 0.9rem; -} - -.radio { - display: flex; - flex-direction: row; - align-items: center; - height: 50%; - min-height: 22px; -} - -.input-box-group { - min-height: 22px; -} - -.input-choice{ - display: flex; - flex-direction: row; - align-items: center; -} - -.input-choice span { - display: none; -} - -.explain:hover + span { - display: block; - position: absolute; - width: 90px; - margin: 0px; - padding: 0.5rem; - border-radius: 5px; - color: '#4f5b8c'; - background: rgba(255, 255, 255, 0.8); - text-align: left; - border: 1px solid #a7a7a7; -} - -#address-pop { - bottom: 85vh; - right: 130px; -} - -#park-pop { - bottom: 85vh; - right: 30px; -} - -.explain { - display: flex; - flex-direction: row; - align-items: center; - justify-content: center; - margin-left: 2px; - width: 20px; - height: 20px; - border-radius: 5px; - text-indent: 4px; -} - - -#address-radio { - margin-right: 10px; -} - -/* park list style */ - -.park-list { - padding: 0; - list-style: none; - margin: 0; - border-bottom: 1px solid rgb(187, 186, 186); - border-top: 1px solid rgb(187, 186, 186); -} - -#list-title { - font-size: 0.9rem; - color: rgb(61, 60, 60); - height: 16px; - box-sizing: border-box; - margin: 0.2rem; -} - -.park-list li { - margin: 0.2rem; - margin-bottom: 7px; - border-top: 1px solid rgb(85, 65, 65); -} - -.park-name { - font-weight: bold; - font-size: 0.8rem; - margin-top: 5px; - color: rgb(84, 83, 83); - margin-bottom: 4px; -} - -.park-parent { - font-size: 0.7rem; - display: inline-block; - border: 1px solid gray; - border-radius: 0.7rem; - padding: 0.2rem; - background-color: #e6f3e5; - margin: 2px; -} - -.park-use { - font-size: 0.7rem; - display: inline-block; - border: 1px solid gray; - border-radius: 0.7rem; - padding: 0.2rem; - background-color: #f5efe5; - margin: 2px; -} - - -/* mobile compatibility */ - -@media screen and (width <= 1000px) { - .explain { - display: none; - } - - - #fold-title { - font-size: 0.9rem; - color: rgb(61, 60, 60); - height: 16px; - box-sizing: border-box; - } - -} \ No newline at end of file diff --git a/examples/philly-park-lead-levels/css/style.css b/examples/philly-park-lead-levels/css/style.css deleted file mode 100644 index 9cdb10f..0000000 --- a/examples/philly-park-lead-levels/css/style.css +++ /dev/null @@ -1,253 +0,0 @@ -/* at the start of CSS, make sure design go to the edge of the browser */ -html, -body { - padding: 0; - /* border-box doesn't include margin, only padding */ - margin: 0; - height: 100%; -} - -/* layout style */ -html { - font-family: sans-serif; - box-sizing: border-box; - height: 100%; - /* overflow: hidden; */ -} - -header { - height: 9vh; - font-size: 12px; - box-sizing: border-box; - background-image: url("../img/lead-h1-background.png"); - background-size: 100% 100%; - /* background-size: cover; This option do not reshape img*/ - /* background-position: bottom; */ - /* background-image: url(https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg) */ -} - -h1 { - color: #577446; - height: 100%; - padding: 2vh; - margin: 0; - box-sizing: border-box; - /* adjust background image transparency */ - background-color: rgba(255, 255, 255, 0.3); -} - -main { - display:flex; - box-sizing: border-box; - flex-direction: row; - height: 88vh; - padding: 1vh; -} - -footer { - height: 3vh; - font-size: 12px; - box-sizing: border-box; -} - -#footnote { - margin: 0; - margin-left: 1%; - box-sizing: border-box; -} - -/* specify link color */ -a { - color: black; - } - - a:visited { - color: black; - } - - a:hover { - color: brown; - } - - a:active { - color: brown; - } -/* specify link color end */ - -/* style of each componet */ -.map { - width: 100%; - height: 100%; - box-sizing: border-box; -} - -.right-side { - /* border: 1px solid blue; */ - width: 500px; - padding: 2vh; - display: flex; - flex-direction: column; - box-sizing: border-box; -} - -.address-section { - /* border: 1px solid green; */ - height: 17%; - min-height: calc(70px + 2vh); - max-height: 140px; - padding: 1vh; - box-sizing: border-box; -} - -.park-list-section { - /* border: 1px solid orange; */ - height: calc(100% - min(140px, 17%) - min(220px, 30%)); /* use address-section and lead-level-chart-wrapper height to specify park-section height */ - min-height: 150px; - padding: 1vh; - box-sizing: border-box; - /* flexbox is easy to fill the mother componet */ - display: flex; - flex-direction: column; - overflow: hidden; -} - -.park-list { - /* overflow will add scroll bar */ - overflow: auto; - box-sizing: border-box; - cursor: pointer; -} - -.lead-level-chart-wrapper { - /* border: 1px solid pink; */ - height: 30%; - /* min-height: 150px; */ - max-height: 220px; - width: 100%; - box-sizing: border-box; - position: relative; - display: flex; - flex-direction: column; - left: 0; -} - -/* define "remove" status */ -.hidden { - display: none; - } - -.fold { - display: none; -} - - -/* mobile compatibility */ -/* phone vertical */ -@media screen and (width <= 450px) { - - header { - background-size: 150% 100%; - height: 7vh; - } - - main { - flex-direction: column; - height: 89vh; - } - - footer { - height: 4vh; - font-size: 10.5px; - box-sizing: border-box; - padding: 4px; - } - - h1 { - font-size: 17px; - padding: 1.5vh; - } - - #map { - height: 50vh; - } - - .right-side { - width: 100%; - height: 39vh; - padding: 1vh; - overflow: auto; - } - - .address-section { - height: calc(40% - 8px - 2.5vh); - } - - .fold { - display: flex; - justify-content: space-between; - height: 16px; - padding: 1vh; - border: 1px solid rgba(182, 182, 182, 0.8); - border-radius: 5px; - margin-top: 1vh; - margin-bottom: 1vh; - } - - .park-list-section { - display: none; - } - - .lead-level-chart-wrapper { - height: calc(60% - 8px - 2.5vh); - min-height: 150px; - } -} - -/* phone horizontal, except iPad vertical */ -@media screen and (max-width: 1000px) and (min-width: 450px) and (max-height: 700px) { - - .address-section { - /* height: 85px; */ - min-height: 85px; - } - - .fold { - display: flex; - justify-content: space-between; - height: 16px; - padding: 1vh; - border: 1px solid rgba(182, 182, 182, 0.8); - border-radius: 5px; - margin-top: 1vh; - margin-bottom: 1vh; - } - - .park-list-section { - display: none; - } - - .lead-level-chart-wrapper { - height: 60%; - } - - .right-side { - overflow: auto; - } -} - -/* iPad vertical */ -@media screen and (max-width: 1000px) and (min-width: 450px) and (max-height: 1000px) { - - .address-section { - /* height: 85px; */ - min-height: 85px; - } - - .lead-level-chart-wrapper { - height: 60%; - } - - .right-side { - overflow: auto; - } -} diff --git a/examples/philly-park-lead-levels/data/City_Limits.geojson b/examples/philly-park-lead-levels/data/City_Limits.geojson deleted file mode 100644 index f0a0568..0000000 --- a/examples/philly-park-lead-levels/data/City_Limits.geojson +++ /dev/null @@ -1,11848 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": { - "OBJECTID": 1, - "Shape__Area": 0.0389108413857585, - "Shape__Length": 1.25968697571337 - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -75.014967420252, - 40.1379348411103 - ], - [ - -75.0145624026331, - 40.1376887640483 - ], - [ - -75.0138701657226, - 40.1372674733598 - ], - [ - -75.0122356769837, - 40.1362663974397 - ], - [ - -75.0114610675033, - 40.1357919508281 - ], - [ - -75.0106239309707, - 40.1352791923891 - ], - [ - -75.0104294899661, - 40.1351600910614 - ], - [ - -75.0094649315829, - 40.134579241422 - ], - [ - -75.0090955558155, - 40.1343642958905 - ], - [ - -75.0083377035815, - 40.1339232772711 - ], - [ - -75.0069035152425, - 40.1330886718995 - ], - [ - -75.0059603446353, - 40.1325400187223 - ], - [ - -75.0032717449477, - 40.1309759482038 - ], - [ - -75.0009534549348, - 40.1296193835195 - ], - [ - -74.9997418462085, - 40.1289151436467 - ], - [ - -74.9985364224734, - 40.128206046463 - ], - [ - -74.9978867907005, - 40.1278260414592 - ], - [ - -74.9978036374974, - 40.1279118510547 - ], - [ - -74.9975739308586, - 40.1281276996892 - ], - [ - -74.997451389746, - 40.1282592864533 - ], - [ - -74.9941970212644, - 40.1315182491619 - ], - [ - -74.9938485406916, - 40.1318627640496 - ], - [ - -74.9936749056037, - 40.1317424740609 - ], - [ - -74.9935095842249, - 40.1316238697983 - ], - [ - -74.9934327945279, - 40.1315596307938 - ], - [ - -74.9933570665784, - 40.1314692953683 - ], - [ - -74.9932125097317, - 40.1313279679337 - ], - [ - -74.9931026653123, - 40.1311932842242 - ], - [ - -74.9929984857158, - 40.13105873619 - ], - [ - -74.992923289968, - 40.130955347791 - ], - [ - -74.9928426122745, - 40.1308242644 - ], - [ - -74.9927819908899, - 40.1307342906942 - ], - [ - -74.9927528299976, - 40.1306145972137 - ], - [ - -74.9927456302877, - 40.1305128477614 - ], - [ - -74.9927734908616, - 40.1304322487858 - ], - [ - -74.9928153286559, - 40.1303099052305 - ], - [ - -74.9928656694302, - 40.130234197285 - ], - [ - -74.9929424557548, - 40.1302055640661 - ], - [ - -74.9930486965254, - 40.1301965051136 - ], - [ - -74.9931055267271, - 40.1301006426666 - ], - [ - -74.9931142581311, - 40.1300253879289 - ], - [ - -74.99310227844, - 40.1299017542429 - ], - [ - -74.9931355602409, - 40.129803876603 - ], - [ - -74.9931879662706, - 40.129770297682 - ], - [ - -74.9932798683992, - 40.129742026576 - ], - [ - -74.9933907103227, - 40.12971275864 - ], - [ - -74.9934827774214, - 40.1296801391955 - ], - [ - -74.993526096082, - 40.1296376470682 - ], - [ - -74.9935043098344, - 40.1295224826709 - ], - [ - -74.9934511348907, - 40.1294355891952 - ], - [ - -74.9934188374572, - 40.1291837699219 - ], - [ - -74.9934239671146, - 40.129011204136 - ], - [ - -74.9935080105542, - 40.128781032543 - ], - [ - -74.9936619222448, - 40.1287615099276 - ], - [ - -74.9936934392398, - 40.1286838998149 - ], - [ - -74.9937848077448, - 40.1286222401824 - ], - [ - -74.9938137159589, - 40.128515544283 - ], - [ - -74.9937967219974, - 40.1284687052484 - ], - [ - -74.993661854386, - 40.1283914597438 - ], - [ - -74.993688760753, - 40.1282179651458 - ], - [ - -74.9936699958175, - 40.1281217414323 - ], - [ - -74.9937537844645, - 40.1279205868243 - ], - [ - -74.9938955418348, - 40.1277585578858 - ], - [ - -74.9940063200965, - 40.1276842978372 - ], - [ - -74.9941017577285, - 40.1276154819414 - ], - [ - -74.994238435819, - 40.1275084669372 - ], - [ - -74.9944091111173, - 40.1272861824338 - ], - [ - -74.9944744896849, - 40.127119412334 - ], - [ - -74.9945281859007, - 40.1269610755808 - ], - [ - -74.9945458226824, - 40.1266901340554 - ], - [ - -74.9944824273471, - 40.1265289828383 - ], - [ - -74.9944281315897, - 40.1264232036672 - ], - [ - -74.9943519856768, - 40.1262269207704 - ], - [ - -74.9942776196871, - 40.1261496838481 - ], - [ - -74.994154981529, - 40.1260974029544 - ], - [ - -74.9939260501201, - 40.1260556400943 - ], - [ - -74.9934828267381, - 40.12600728997 - ], - [ - -74.993148841445, - 40.1259455899412 - ], - [ - -74.9928778920653, - 40.1259144234193 - ], - [ - -74.9926376344311, - 40.1259188272398 - ], - [ - -74.9923654524835, - 40.1259413243307 - ], - [ - -74.9920456991586, - 40.1259946046615 - ], - [ - -74.9917038676268, - 40.1260792792817 - ], - [ - -74.9914555262654, - 40.1261429750054 - ], - [ - -74.9910680098495, - 40.1262120448239 - ], - [ - -74.9907837247814, - 40.1262763275562 - ], - [ - -74.990621899764, - 40.1263043696318 - ], - [ - -74.9903970500227, - 40.1262589672418 - ], - [ - -74.9902956563647, - 40.1262384949081 - ], - [ - -74.9900829566078, - 40.1262391935574 - ], - [ - -74.9897425398272, - 40.126242638399 - ], - [ - -74.9895610568235, - 40.1262426346027 - ], - [ - -74.9893395733679, - 40.1262039427588 - ], - [ - -74.9891575608259, - 40.126170550179 - ], - [ - -74.9890604793327, - 40.1261174265633 - ], - [ - -74.9890435978073, - 40.1260212471237 - ], - [ - -74.9890139258597, - 40.125914596604 - ], - [ - -74.9889786960649, - 40.1258049202236 - ], - [ - -74.9889929773383, - 40.1257327003469 - ], - [ - -74.9890684648348, - 40.1256430905905 - ], - [ - -74.9890740076926, - 40.1255764727877 - ], - [ - -74.9890152366548, - 40.1254879919646 - ], - [ - -74.9889402280427, - 40.125426693851 - ], - [ - -74.9887991782908, - 40.1253159274978 - ], - [ - -74.9887147350683, - 40.1251615209435 - ], - [ - -74.988696259145, - 40.1251044904557 - ], - [ - -74.9885019325857, - 40.1247007517535 - ], - [ - -74.9884844165225, - 40.1245740829413 - ], - [ - -74.9883915278435, - 40.124278717943 - ], - [ - -74.9883633909041, - 40.1241808173583 - ], - [ - -74.9882749231827, - 40.1240785665277 - ], - [ - -74.9882090611415, - 40.1240247411027 - ], - [ - -74.9880592278791, - 40.1239674482524 - ], - [ - -74.9878406895098, - 40.1239491430678 - ], - [ - -74.9877082662376, - 40.1239053243443 - ], - [ - -74.9875443893643, - 40.1237983601584 - ], - [ - -74.9873869451537, - 40.1236726819466 - ], - [ - -74.9873164251824, - 40.1235940729172 - ], - [ - -74.9871965711663, - 40.1235200905099 - ], - [ - -74.9870467322343, - 40.1234860166123 - ], - [ - -74.9868459110817, - 40.1233346242778 - ], - [ - -74.9866711743422, - 40.1231693511967 - ], - [ - -74.9865487286254, - 40.1230662734659 - ], - [ - -74.9864927890067, - 40.1230475206326 - ], - [ - -74.9864262753206, - 40.1230560772646 - ], - [ - -74.986245029415, - 40.123143143713 - ], - [ - -74.9860381168676, - 40.1232571656201 - ], - [ - -74.9859213187293, - 40.1233399776622 - ], - [ - -74.9856760475369, - 40.1234908046031 - ], - [ - -74.9855293215445, - 40.1236120752202 - ], - [ - -74.9851344879623, - 40.1238376713861 - ], - [ - -74.98500016048, - 40.1239099060827 - ], - [ - -74.9848666101887, - 40.123940070517 - ], - [ - -74.9847001302037, - 40.1239433210744 - ], - [ - -74.9845541857174, - 40.1239064361354 - ], - [ - -74.984456338673, - 40.1238489379014 - ], - [ - -74.9843878872642, - 40.1237660245952 - ], - [ - -74.9843596380331, - 40.1236710216165 - ], - [ - -74.9843076454922, - 40.1236015695324 - ], - [ - -74.9842144687135, - 40.1235688545898 - ], - [ - -74.9840802615994, - 40.1235685282417 - ], - [ - -74.9839767524841, - 40.1236037663145 - ], - [ - -74.9836784893598, - 40.1236169110862 - ], - [ - -74.9835452231339, - 40.1236398272346 - ], - [ - -74.9834398196472, - 40.1236285873003 - ], - [ - -74.9831386956917, - 40.1234573576701 - ], - [ - -74.9829073601995, - 40.1233356981595 - ], - [ - -74.9828207953579, - 40.1232799206639 - ], - [ - -74.9826830715828, - 40.1231576117254 - ], - [ - -74.9826126821864, - 40.1230296693943 - ], - [ - -74.9825867261817, - 40.1229245660685 - ], - [ - -74.9825862126555, - 40.1227983052229 - ], - [ - -74.9826035179058, - 40.1227450270871 - ], - [ - -74.9827392671636, - 40.1225451301886 - ], - [ - -74.9827579928275, - 40.1224570599772 - ], - [ - -74.9827241302375, - 40.122360470726 - ], - [ - -74.9826352065444, - 40.1222233690619 - ], - [ - -74.9825071214152, - 40.1219576346778 - ], - [ - -74.9824486516597, - 40.1219083358402 - ], - [ - -74.98232749708, - 40.1219126736451 - ], - [ - -74.9822596287925, - 40.1219081387909 - ], - [ - -74.9821921225219, - 40.1218484673016 - ], - [ - -74.9821949642698, - 40.121778883209 - ], - [ - -74.9822531579452, - 40.1216961151425 - ], - [ - -74.9823800048518, - 40.1215293799411 - ], - [ - -74.9823898715392, - 40.1214265893901 - ], - [ - -74.9824136754358, - 40.121306716634 - ], - [ - -74.9824562326538, - 40.1212366376323 - ], - [ - -74.9826017571078, - 40.121190797344 - ], - [ - -74.982771313872, - 40.1211586006536 - ], - [ - -74.9829324258028, - 40.1211015293035 - ], - [ - -74.9830039629593, - 40.1210161805264 - ], - [ - -74.983069238919, - 40.1208987562572 - ], - [ - -74.9830825251351, - 40.1208047522534 - ], - [ - -74.9830794187597, - 40.1206494056599 - ], - [ - -74.9830350027892, - 40.1204640327227 - ], - [ - -74.9829845645679, - 40.1203568896577 - ], - [ - -74.9829230185252, - 40.1202901083945 - ], - [ - -74.9827893686679, - 40.1202302963365 - ], - [ - -74.9827159042697, - 40.1201777353329 - ], - [ - -74.982674899663, - 40.1201172511141 - ], - [ - -74.9826197898278, - 40.120054976715 - ], - [ - -74.9825162865412, - 40.119997340522 - ], - [ - -74.9823726538262, - 40.11995035318 - ], - [ - -74.9821658240249, - 40.1199236053357 - ], - [ - -74.9819827068885, - 40.1199177469712 - ], - [ - -74.9818348776112, - 40.1199272539707 - ], - [ - -74.9816989723712, - 40.1199689636411 - ], - [ - -74.9815887263966, - 40.1200301592382 - ], - [ - -74.9815088746023, - 40.1200877343207 - ], - [ - -74.9813598037396, - 40.1201508964311 - ], - [ - -74.9812054815101, - 40.1201805563726 - ], - [ - -74.9810539351252, - 40.120188522167 - ], - [ - -74.9808711251681, - 40.1201754158499 - ], - [ - -74.9807267826042, - 40.1201458179696 - ], - [ - -74.9804136154862, - 40.1200845813038 - ], - [ - -74.9802927069845, - 40.1200134673956 - ], - [ - -74.9801059740656, - 40.1198582840885 - ], - [ - -74.9799670203007, - 40.119742808093 - ], - [ - -74.9798521207827, - 40.1196473203805 - ], - [ - -74.9797635077849, - 40.1195726226911 - ], - [ - -74.9797132331771, - 40.119507561865 - ], - [ - -74.9796011235901, - 40.1194294055587 - ], - [ - -74.9794705430226, - 40.119387072111 - ], - [ - -74.9792848373039, - 40.1193521236371 - ], - [ - -74.9791336480513, - 40.1193513911485 - ], - [ - -74.9790096023547, - 40.119380326941 - ], - [ - -74.9788923966572, - 40.1194268360729 - ], - [ - -74.9788008016941, - 40.1194942813699 - ], - [ - -74.978689199423, - 40.1195423850687 - ], - [ - -74.9786048667658, - 40.1195476062482 - ], - [ - -74.9784798310863, - 40.119508315752 - ], - [ - -74.9783682471955, - 40.1194635464575 - ], - [ - -74.9782443195074, - 40.119489582841 - ], - [ - -74.9779769716132, - 40.1196021336133 - ], - [ - -74.9777382579339, - 40.1196616794154 - ], - [ - -74.9776477289697, - 40.1197030275452 - ], - [ - -74.977588343266, - 40.1197683560014 - ], - [ - -74.9775496285609, - 40.1198370752292 - ], - [ - -74.9775210823053, - 40.1200264854636 - ], - [ - -74.9773841647864, - 40.1200696254303 - ], - [ - -74.9772480885458, - 40.1200692458774 - ], - [ - -74.9771437000239, - 40.1200333532197 - ], - [ - -74.9770424450129, - 40.1199670618755 - ], - [ - -74.9769306244901, - 40.1199280793505 - ], - [ - -74.9767961987698, - 40.1199335509531 - ], - [ - -74.9766130717373, - 40.1199741158791 - ], - [ - -74.9764002031562, - 40.1200487985047 - ], - [ - -74.9761380499194, - 40.1201498646463 - ], - [ - -74.9760673951625, - 40.120213460799 - ], - [ - -74.9760303767988, - 40.1202865726403 - ], - [ - -74.9760679451392, - 40.1203847042437 - ], - [ - -74.9760314605474, - 40.1204447724699 - ], - [ - -74.9759323208683, - 40.1204656014853 - ], - [ - -74.9758160712304, - 40.1204424869955 - ], - [ - -74.9757327576358, - 40.120399838853 - ], - [ - -74.9757338961077, - 40.1203258614978 - ], - [ - -74.9757252278222, - 40.1202603518819 - ], - [ - -74.9756729618393, - 40.1201981426129 - ], - [ - -74.9755678620173, - 40.1201796400096 - ], - [ - -74.9753913580647, - 40.1201971512679 - ], - [ - -74.9752277127136, - 40.1202236768617 - ], - [ - -74.9751021913099, - 40.120219197295 - ], - [ - -74.9749736778663, - 40.1201725564291 - ], - [ - -74.9748072184432, - 40.1200829197108 - ], - [ - -74.9746893907878, - 40.1200060712336 - ], - [ - -74.974613582023, - 40.1199186219746 - ], - [ - -74.9745376545552, - 40.1198572918063 - ], - [ - -74.9744282576251, - 40.1198053088038 - ], - [ - -74.9742888694403, - 40.1197932400189 - ], - [ - -74.974077080147, - 40.1197953812906 - ], - [ - -74.9736094051838, - 40.1198145649803 - ], - [ - -74.9733678742331, - 40.1198043810855 - ], - [ - -74.973112404774, - 40.1197880572019 - ], - [ - -74.9729927848922, - 40.1198011264975 - ], - [ - -74.972869210835, - 40.1198184613554 - ], - [ - -74.9727726125336, - 40.1198233820595 - ], - [ - -74.9726735334578, - 40.1197963268569 - ], - [ - -74.9725723546577, - 40.1197285735694 - ], - [ - -74.9725485277294, - 40.1196641482333 - ], - [ - -74.9725074268637, - 40.1195601271268 - ], - [ - -74.9724301361823, - 40.1195089176472 - ], - [ - -74.9722406121046, - 40.1194288840546 - ], - [ - -74.9720574660852, - 40.1193083659349 - ], - [ - -74.9719346927635, - 40.1192139773544 - ], - [ - -74.9718601227504, - 40.1191425140557 - ], - [ - -74.9717865034199, - 40.1190478620931 - ], - [ - -74.9717114858514, - 40.1188951293224 - ], - [ - -74.9716044686363, - 40.1188083746532 - ], - [ - -74.9714959668543, - 40.1187346495322 - ], - [ - -74.9712979131799, - 40.1185861971436 - ], - [ - -74.9712084823978, - 40.118462139206 - ], - [ - -74.9711429622727, - 40.1183546259883 - ], - [ - -74.9710214703112, - 40.1181136991189 - ], - [ - -74.9709156003414, - 40.1179297459178 - ], - [ - -74.9708441252169, - 40.1177596804022 - ], - [ - -74.9707521068269, - 40.1176529772208 - ], - [ - -74.9706152948292, - 40.1175321257445 - ], - [ - -74.9704528280711, - 40.1173917855351 - ], - [ - -74.9703483148315, - 40.1171977094601 - ], - [ - -74.9702694529873, - 40.1170927655992 - ], - [ - -74.9701801415548, - 40.1170122494057 - ], - [ - -74.9700836099478, - 40.1169692774321 - ], - [ - -74.9699877882815, - 40.1169553550573 - ], - [ - -74.9699175030485, - 40.1169638108715 - ], - [ - -74.9698673401677, - 40.1169887201355 - ], - [ - -74.969814992287, - 40.1170208301749 - ], - [ - -74.9697392217771, - 40.1170248100958 - ], - [ - -74.9696472830948, - 40.1170080708614 - ], - [ - -74.9695935979582, - 40.1169806507189 - ], - [ - -74.9694806718423, - 40.116922774561 - ], - [ - -74.9693265611566, - 40.1168551980133 - ], - [ - -74.9692040047653, - 40.1168246614831 - ], - [ - -74.9690876887141, - 40.1168494213231 - ], - [ - -74.9689181479555, - 40.1168815981375 - ], - [ - -74.9686869269359, - 40.1169427660793 - ], - [ - -74.9684412424243, - 40.1170340489379 - ], - [ - -74.9683213127194, - 40.1171008006616 - ], - [ - -74.9682180150423, - 40.1171766679886 - ], - [ - -74.9681263072827, - 40.1172237920895 - ], - [ - -74.9680362236718, - 40.1172999699309 - ], - [ - -74.9678919143925, - 40.1174082204784 - ], - [ - -74.96773372436, - 40.1175320929869 - ], - [ - -74.9675652786309, - 40.1176295950524 - ], - [ - -74.967517568823, - 40.1176864876655 - ], - [ - -74.9674851913827, - 40.1178076012412 - ], - [ - -74.9674631593929, - 40.117883983629 - ], - [ - -74.9673551487168, - 40.1179365155548 - ], - [ - -74.9671239398909, - 40.1179512395045 - ], - [ - -74.9669513766337, - 40.1180109131709 - ], - [ - -74.9667227526597, - 40.1180547134112 - ], - [ - -74.9665343181719, - 40.1180864385083 - ], - [ - -74.9663854788422, - 40.1181205635139 - ], - [ - -74.9660808829017, - 40.1182423404039 - ], - [ - -74.9659212346106, - 40.1183095788667 - ], - [ - -74.9657744126658, - 40.1183408595006 - ], - [ - -74.9655936890761, - 40.1184148408692 - ], - [ - -74.9654319135932, - 40.1184878390848 - ], - [ - -74.9653342143111, - 40.1185652902382 - ], - [ - -74.9652619132207, - 40.1186230371896 - ], - [ - -74.9651493534038, - 40.118671095753 - ], - [ - -74.9649946288751, - 40.1186644471037 - ], - [ - -74.9648370821139, - 40.1186345092409 - ], - [ - -74.9647346614187, - 40.1185972020407 - ], - [ - -74.9646289900009, - 40.118546750448 - ], - [ - -74.9645354791723, - 40.1184762831379 - ], - [ - -74.9644893646108, - 40.1184026116845 - ], - [ - -74.9645090852029, - 40.1182449060168 - ], - [ - -74.9644892392856, - 40.1181297907635 - ], - [ - -74.9644184761576, - 40.1179887616842 - ], - [ - -74.9643342759168, - 40.117829998304 - ], - [ - -74.9642820793335, - 40.1176284703124 - ], - [ - -74.9642072219441, - 40.1174031816524 - ], - [ - -74.9641469904297, - 40.1173329074784 - ], - [ - -74.9641170312843, - 40.1172979588926 - ], - [ - -74.9639988035777, - 40.1172312444427 - ], - [ - -74.9638309069236, - 40.1171314013778 - ], - [ - -74.9637362665215, - 40.1170884788188 - ], - [ - -74.9635763752843, - 40.117046867479 - ], - [ - -74.9634436115788, - 40.1170117252276 - ], - [ - -74.9633790197465, - 40.1169738827206 - ], - [ - -74.963295249267, - 40.1168963877034 - ], - [ - -74.9632211871253, - 40.1167668926712 - ], - [ - -74.9631755536177, - 40.1166827257599 - ], - [ - -74.963151551881, - 40.1165069032679 - ], - [ - -74.9631422206438, - 40.1163659113988 - ], - [ - -74.9631564590906, - 40.1162037298371 - ], - [ - -74.9631340732537, - 40.1161045017082 - ], - [ - -74.9631154624912, - 40.116005374078 - ], - [ - -74.9631121596104, - 40.1158790446004 - ], - [ - -74.9631476001315, - 40.1157986357198 - ], - [ - -74.963250094403, - 40.1156501989344 - ], - [ - -74.9633175967362, - 40.1155255854413 - ], - [ - -74.963330770684, - 40.1154809141051 - ], - [ - -74.9633959317563, - 40.1152981966717 - ], - [ - -74.9634143709022, - 40.1152173757032 - ], - [ - -74.9633497406266, - 40.1151345506066 - ], - [ - -74.9632612632181, - 40.1150337207592 - ], - [ - -74.9632374467871, - 40.1149692934729 - ], - [ - -74.9631461832468, - 40.1147755313469 - ], - [ - -74.9630908927682, - 40.1146493925669 - ], - [ - -74.9631123919586, - 40.1145860635605 - ], - [ - -74.9632495215157, - 40.1144689405697 - ], - [ - -74.9634577401934, - 40.1142084223194 - ], - [ - -74.9636704360662, - 40.1140002564656 - ], - [ - -74.9640016402372, - 40.1136904732295 - ], - [ - -74.9640919694081, - 40.1135620602441 - ], - [ - -74.9641392098073, - 40.1134703311733 - ], - [ - -74.9641570670191, - 40.1133807916396 - ], - [ - -74.9641381694018, - 40.1132889108651 - ], - [ - -74.9640226875976, - 40.1130176470047 - ], - [ - -74.9639201643148, - 40.1126378563162 - ], - [ - -74.9638791793614, - 40.112439501063 - ], - [ - -74.9638842267449, - 40.1122016408123 - ], - [ - -74.9638807076042, - 40.1120114470236 - ], - [ - -74.9638504139899, - 40.111920740763 - ], - [ - -74.9637848160761, - 40.1117464604338 - ], - [ - -74.9637772926804, - 40.1116534044595 - ], - [ - -74.9637965761132, - 40.1115522937016 - ], - [ - -74.9638524193388, - 40.1114810834256 - ], - [ - -74.9639358914199, - 40.1113815280305 - ], - [ - -74.9640465349061, - 40.1112187808704 - ], - [ - -74.964105594848, - 40.1110692910615 - ], - [ - -74.9641214485585, - 40.1109593837778 - ], - [ - -74.9641214867007, - 40.1108665110424 - ], - [ - -74.9640408328206, - 40.110713635977 - ], - [ - -74.963903172288, - 40.1105680838699 - ], - [ - -74.9638393801992, - 40.1104649600257 - ], - [ - -74.9638410679805, - 40.1103779301672 - ], - [ - -74.9638131587113, - 40.1102292344727 - ], - [ - -74.9637468916222, - 40.1100941165325 - ], - [ - -74.963710598207, - 40.1099655368425 - ], - [ - -74.9637105177666, - 40.1098755626713 - ], - [ - -74.9637719222369, - 40.1097609563493 - ], - [ - -74.9638915244847, - 40.1096100323027 - ], - [ - -74.9639785309584, - 40.1095163654814 - ], - [ - -74.964075324918, - 40.1094606637131 - ], - [ - -74.9642351140798, - 40.109435511785 - ], - [ - -74.9644098463174, - 40.1095064967897 - ], - [ - -74.9645093425658, - 40.1094769822585 - ], - [ - -74.9646028257182, - 40.1094095940204 - ], - [ - -74.9646801552256, - 40.109321495177 - ], - [ - -74.9647384975204, - 40.1091893964526 - ], - [ - -74.9647652097132, - 40.1090913669837 - ], - [ - -74.9648103203989, - 40.1090053890278 - ], - [ - -74.9648774967795, - 40.1089344618654 - ], - [ - -74.9649361586032, - 40.1088865400707 - ], - [ - -74.9650594948382, - 40.1088285789919 - ], - [ - -74.9651181681653, - 40.108780657388 - ], - [ - -74.965206243959, - 40.1086608934815 - ], - [ - -74.9653872415777, - 40.1083953607365 - ], - [ - -74.9655166323913, - 40.108235967836 - ], - [ - -74.9655760434003, - 40.1081600675336 - ], - [ - -74.9655924290844, - 40.1081391269423 - ], - [ - -74.9656091964499, - 40.1080988946016 - ], - [ - -74.9655838054978, - 40.1080716619841 - ], - [ - -74.9655621349104, - 40.108048421108 - ], - [ - -74.9655041061956, - 40.1079889686051 - ], - [ - -74.9654323953118, - 40.1078943582127 - ], - [ - -74.9653689492697, - 40.107782530194 - ], - [ - -74.9652958460768, - 40.1076298388313 - ], - [ - -74.9652124905488, - 40.1074507769676 - ], - [ - -74.9651236809855, - 40.1073122213389 - ], - [ - -74.9650573955216, - 40.1072235450071 - ], - [ - -74.9649790523858, - 40.1071984266295 - ], - [ - -74.9647265411097, - 40.1071806948261 - ], - [ - -74.9644217532576, - 40.1071471976283 - ], - [ - -74.9641957856419, - 40.1071272062981 - ], - [ - -74.963958493135, - 40.1071069491034 - ], - [ - -74.9637107108389, - 40.1070661089718 - ], - [ - -74.9635173378043, - 40.1069888680249 - ], - [ - -74.9633366009106, - 40.1068800079581 - ], - [ - -74.963250033448, - 40.106779224075 - ], - [ - -74.9632012144719, - 40.1066793641252 - ], - [ - -74.9632199721622, - 40.1066489750232 - ], - [ - -74.9632700591816, - 40.1065678398985 - ], - [ - -74.9633740413863, - 40.1065210264162 - ], - [ - -74.9633971912198, - 40.1065128200596 - ], - [ - -74.9634660918014, - 40.1064884219376 - ], - [ - -74.9635962593928, - 40.1064480458261 - ], - [ - -74.9636593022436, - 40.1063857235894 - ], - [ - -74.9636709038138, - 40.1062873281341 - ], - [ - -74.9636067665612, - 40.1061464586756 - ], - [ - -74.9636287512336, - 40.1060715265328 - ], - [ - -74.9636930928774, - 40.1059773107076 - ], - [ - -74.9637865720165, - 40.1059099231166 - ], - [ - -74.9639077975552, - 40.1058112737786 - ], - [ - -74.963963766416, - 40.1057371741343 - ], - [ - -74.9639638047712, - 40.1056443013653 - ], - [ - -74.9639279518035, - 40.105596991186 - ], - [ - -74.9637976933992, - 40.1055474021948 - ], - [ - -74.9635927619325, - 40.1054756840703 - ], - [ - -74.9633996322379, - 40.1053926367728 - ], - [ - -74.9631845575466, - 40.1052916484454 - ], - [ - -74.9629648862631, - 40.1052108584869 - ], - [ - -74.9626936363512, - 40.1051433339417 - ], - [ - -74.9625561881065, - 40.1050848557982 - ], - [ - -74.9624994642787, - 40.1049935082087 - ], - [ - -74.9624293223279, - 40.1048612057942 - ], - [ - -74.9624333759175, - 40.1047626274042 - ], - [ - -74.9624679854061, - 40.1046560764907 - ], - [ - -74.9625401268959, - 40.1045562474913 - ], - [ - -74.9625393329027, - 40.1044836647074 - ], - [ - -74.9623784435384, - 40.1043520634385 - ], - [ - -74.9620921485836, - 40.1041448574131 - ], - [ - -74.9619930898486, - 40.104026369772 - ], - [ - -74.9617673352904, - 40.1038177295369 - ], - [ - -74.9615650235519, - 40.1036822119683 - ], - [ - -74.9614028260541, - 40.1035825025935 - ], - [ - -74.961228696704, - 40.1034970198614 - ], - [ - -74.961157464205, - 40.1034532207306 - ], - [ - -74.9611107347592, - 40.1034244962383 - ], - [ - -74.9610201614786, - 40.1033294252249 - ], - [ - -74.9609899948182, - 40.1032358195875 - ], - [ - -74.9609952432632, - 40.1031082465456 - ], - [ - -74.961024898392, - 40.1030305994589 - ], - [ - -74.9610897813661, - 40.1027854771144 - ], - [ - -74.9611992461486, - 40.1026052863955 - ], - [ - -74.9612027473308, - 40.1024283280918 - ], - [ - -74.9612351334023, - 40.1022839955641 - ], - [ - -74.9612906673474, - 40.1021286186902 - ], - [ - -74.9612949612675, - 40.1020242341811 - ], - [ - -74.9612693832113, - 40.1019568620786 - ], - [ - -74.9611782033811, - 40.1018762927452 - ], - [ - -74.9611017764751, - 40.101804776603 - ], - [ - -74.9610617179328, - 40.1016761044357 - ], - [ - -74.9611257974518, - 40.1014048404218 - ], - [ - -74.961226604723, - 40.1012969942651 - ], - [ - -74.9613948016608, - 40.1011588576111 - ], - [ - -74.9614779069704, - 40.1010679996385 - ], - [ - -74.9616434012472, - 40.1009036839338 - ], - [ - -74.9617015155083, - 40.1007773840985 - ], - [ - -74.9617442809454, - 40.1006565239037 - ], - [ - -74.9617684003504, - 40.1005294085377 - ], - [ - -74.9618007960332, - 40.1003850761165 - ], - [ - -74.9618471383828, - 40.1001772317633 - ], - [ - -74.9618542514177, - 40.1000961453305 - ], - [ - -74.9618902035652, - 40.0999112606611 - ], - [ - -74.9619327293437, - 40.0997962065321 - ], - [ - -74.9619775990354, - 40.0997160267739 - ], - [ - -74.9620139540018, - 40.0996588612051 - ], - [ - -74.9620203633113, - 40.0995951664679 - ], - [ - -74.9619860648719, - 40.0995101652423 - ], - [ - -74.9619181423153, - 40.0994156441431 - ], - [ - -74.9618159997749, - 40.0993260959635 - ], - [ - -74.9617392170689, - 40.0992632849461 - ], - [ - -74.9616736386171, - 40.0992036470962 - ], - [ - -74.9616866430101, - 40.0991633330395 - ], - [ - -74.9617307969412, - 40.0991005537989 - ], - [ - -74.9617860356728, - 40.0990438463197 - ], - [ - -74.9620710914563, - 40.0987750307868 - ], - [ - -74.9620942556563, - 40.098671112906 - ], - [ - -74.9620624322019, - 40.0986180968006 - ], - [ - -74.9619083909015, - 40.0985040783226 - ], - [ - -74.9617242628042, - 40.0983864194034 - ], - [ - -74.9616069052905, - 40.0982994034109 - ], - [ - -74.9615792027045, - 40.0982377827259 - ], - [ - -74.9615969237196, - 40.0981743623785 - ], - [ - -74.9616603187221, - 40.0981033364892 - ], - [ - -74.9617750366497, - 40.0980248600207 - ], - [ - -74.9618127142268, - 40.0979358015127 - ], - [ - -74.9618082542057, - 40.0978602282914 - ], - [ - -74.9617888272995, - 40.0977813996036 - ], - [ - -74.9617847590536, - 40.0977773271884 - ], - [ - -74.9617234890238, - 40.0977159556327 - ], - [ - -74.9616195603705, - 40.0976699038341 - ], - [ - -74.9614146550105, - 40.0975981817902 - ], - [ - -74.9611909862244, - 40.0975230937002 - ], - [ - -74.961060280105, - 40.0974850961471 - ], - [ - -74.960924476035, - 40.097478899859 - ], - [ - -74.9607912652077, - 40.0975017899737 - ], - [ - -74.9606797459815, - 40.0975484269876 - ], - [ - -74.960569181032, - 40.0975718663343 - ], - [ - -74.9604633565445, - 40.0975721998905 - ], - [ - -74.960078299786, - 40.0974699724982 - ], - [ - -74.9597342957053, - 40.0973803641292 - ], - [ - -74.9596269528442, - 40.0973255142075 - ], - [ - -74.9594762156882, - 40.0972231783531 - ], - [ - -74.9593757057185, - 40.0971859118521 - ], - [ - -74.9587841489349, - 40.0969132383045 - ], - [ - -74.9587587244019, - 40.0969040877759 - ], - [ - -74.9585160173351, - 40.0968167550096 - ], - [ - -74.9582523772974, - 40.0967029623445 - ], - [ - -74.9581682909896, - 40.0966341684737 - ], - [ - -74.9581111023264, - 40.096554421939 - ], - [ - -74.9580801071617, - 40.0964811054667 - ], - [ - -74.957996618501, - 40.0963978096313 - ], - [ - -74.9576530751024, - 40.0961137446742 - ], - [ - -74.9573548853885, - 40.0959671944482 - ], - [ - -74.9572093148485, - 40.095923019329 - ], - [ - -74.9570590259916, - 40.0959019591435 - ], - [ - -74.9568997323492, - 40.0959154975739 - ], - [ - -74.956640623694, - 40.09596724889 - ], - [ - -74.9564625775969, - 40.0959774385765 - ], - [ - -74.9562866941583, - 40.0959354270882 - ], - [ - -74.9561871433839, - 40.0958749692731 - ], - [ - -74.9560967069036, - 40.0957769867671 - ], - [ - -74.9560878932764, - 40.0957158236942 - ], - [ - -74.9561092735594, - 40.09565539448 - ], - [ - -74.9561194505479, - 40.0955917915019 - ], - [ - -74.9558381225872, - 40.0952656928815 - ], - [ - -74.9557600734586, - 40.0951418979573 - ], - [ - -74.9557485615157, - 40.0950545470246 - ], - [ - -74.9557739667289, - 40.0949884127686 - ], - [ - -74.9558808665628, - 40.094732708421 - ], - [ - -74.9560087745175, - 40.0944717026678 - ], - [ - -74.9562351814594, - 40.0940215397807 - ], - [ - -74.9563925873608, - 40.0937322268831 - ], - [ - -74.9564035294383, - 40.0935583506326 - ], - [ - -74.9564026710437, - 40.0933958024787 - ], - [ - -74.9563824527056, - 40.0932443896893 - ], - [ - -74.9563744048348, - 40.0930729533855 - ], - [ - -74.956454737276, - 40.0928659368947 - ], - [ - -74.9566917172474, - 40.092479880546 - ], - [ - -74.9568239407962, - 40.0922973455772 - ], - [ - -74.9569425724861, - 40.0921696171137 - ], - [ - -74.9570654549853, - 40.0920303949611 - ], - [ - -74.9571172047093, - 40.09187491901 - ], - [ - -74.9571987037553, - 40.0916853482375 - ], - [ - -74.9572868907204, - 40.0915626916914 - ], - [ - -74.9574428413964, - 40.0913546103342 - ], - [ - -74.9574733193831, - 40.0912566738451 - ], - [ - -74.9576438519498, - 40.0911534263712 - ], - [ - -74.9578154210879, - 40.0908412350971 - ], - [ - -74.9579607744923, - 40.0905690453752 - ], - [ - -74.9579799295255, - 40.0904708337327 - ], - [ - -74.9579647609267, - 40.0903804927565 - ], - [ - -74.9579092495333, - 40.0902601481292 - ], - [ - -74.9578240243257, - 40.0901274757995 - ], - [ - -74.9577938679479, - 40.0900338692421 - ], - [ - -74.9577908573683, - 40.0899235042908 - ], - [ - -74.9578286550373, - 40.0898315484731 - ], - [ - -74.9578913179485, - 40.0897779247496 - ], - [ - -74.9579937496028, - 40.0897223655361 - ], - [ - -74.958067507021, - 40.0896748141476 - ], - [ - -74.9581134487213, - 40.0895685487273 - ], - [ - -74.9581172689735, - 40.089475767527 - ], - [ - -74.9581095288474, - 40.0893885084647 - ], - [ - -74.9581229995175, - 40.0893365912243 - ], - [ - -74.9581552319666, - 40.0892880311612 - ], - [ - -74.9582344338483, - 40.0891999823656 - ], - [ - -74.958251797234, - 40.0891452672047 - ], - [ - -74.9582305019545, - 40.0890199418182 - ], - [ - -74.9581820460834, - 40.0887285370259 - ], - [ - -74.9580108680342, - 40.0882512956927 - ], - [ - -74.957869943656, - 40.0879112030194 - ], - [ - -74.9577143564508, - 40.0876520130514 - ], - [ - -74.9576096908055, - 40.0872112224087 - ], - [ - -74.9576105737791, - 40.0870980505471 - ], - [ - -74.9576386736788, - 40.0870580946447 - ], - [ - -74.9580179311936, - 40.0868409303234 - ], - [ - -74.9580277206259, - 40.0866031756501 - ], - [ - -74.9580345021808, - 40.0864843441461 - ], - [ - -74.9580263198709, - 40.0863158061683 - ], - [ - -74.9580497364225, - 40.0862060921649 - ], - [ - -74.9580821944042, - 40.0861517346897 - ], - [ - -74.9582038702806, - 40.0860414969591 - ], - [ - -74.9582255422238, - 40.0858823975722 - ], - [ - -74.9582162119832, - 40.0856499814082 - ], - [ - -74.9582521390118, - 40.0852822594924 - ], - [ - -74.9582988402847, - 40.0850657116553 - ], - [ - -74.9583411241867, - 40.0849564558832 - ], - [ - -74.9586278278801, - 40.0846006277165 - ], - [ - -74.9586799489036, - 40.0843900233311 - ], - [ - -74.9586306755011, - 40.084301755575 - ], - [ - -74.9585490648929, - 40.0842649468499 - ], - [ - -74.9584226370777, - 40.0842154346364 - ], - [ - -74.958366067315, - 40.0841211865983 - ], - [ - -74.9583735411804, - 40.0840313955854 - ], - [ - -74.9583838336288, - 40.0839648937897 - ], - [ - -74.9584231332119, - 40.0839281112293 - ], - [ - -74.9585929915347, - 40.0839322367663 - ], - [ - -74.9587224024987, - 40.0839092665337 - ], - [ - -74.9589035648813, - 40.083730810603 - ], - [ - -74.9589659082175, - 40.0835930180852 - ], - [ - -74.9589846171083, - 40.083459959847 - ], - [ - -74.958944692717, - 40.0833283882187 - ], - [ - -74.9589078144901, - 40.0832142993545 - ], - [ - -74.9590187596199, - 40.0830892929673 - ], - [ - -74.9591350294258, - 40.0829266786803 - ], - [ - -74.9591547770606, - 40.0828139739404 - ], - [ - -74.9591320615665, - 40.0827234498102 - ], - [ - -74.9590392850598, - 40.0825905857662 - ], - [ - -74.9590009864782, - 40.0825112980649 - ], - [ - -74.9590521049377, - 40.0824167639605 - ], - [ - -74.9591030933673, - 40.0823715606418 - ], - [ - -74.9592500565275, - 40.0823809322608 - ], - [ - -74.9592797539152, - 40.0823767695382 - ], - [ - -74.9596668348601, - 40.0823224978793 - ], - [ - -74.9597441048451, - 40.0823116596671 - ], - [ - -74.9598597305748, - 40.0822564284108 - ], - [ - -74.9599549704239, - 40.0821455472501 - ], - [ - -74.9600115089982, - 40.0820569472694 - ], - [ - -74.9600507601655, - 40.0819297670099 - ], - [ - -74.9600737659124, - 40.0817934249034 - ], - [ - -74.960078431872, - 40.0816800115208 - ], - [ - -74.9600797108035, - 40.0815431419875 - ], - [ - -74.9600614267193, - 40.0814592223902 - ], - [ - -74.9600407280882, - 40.0813284963143 - ], - [ - -74.9600431982946, - 40.0812684544639 - ], - [ - -74.9601074260399, - 40.0811865378746 - ], - [ - -74.9601811604483, - 40.0810848210888 - ], - [ - -74.9606276212488, - 40.0807984828184 - ], - [ - -74.9608158985546, - 40.0806594747727 - ], - [ - -74.9608839237274, - 40.0805910038971 - ], - [ - -74.9609868197862, - 40.0805200452447 - ], - [ - -74.9610766845179, - 40.0804487702747 - ], - [ - -74.9611222969297, - 40.0803964523215 - ], - [ - -74.961274040246, - 40.0801947792142 - ], - [ - -74.9614065521543, - 40.0800377201403 - ], - [ - -74.9615239865468, - 40.0799303859297 - ], - [ - -74.961636101541, - 40.0798462874542 - ], - [ - -74.9617300380119, - 40.0797817877737 - ], - [ - -74.9617500084141, - 40.0797682425277 - ], - [ - -74.9618945693363, - 40.0796701443314 - ], - [ - -74.9619580888832, - 40.0796270459936 - ], - [ - -74.9620160452631, - 40.079591724114 - ], - [ - -74.9621075533493, - 40.0794804174006 - ], - [ - -74.9621332443082, - 40.0793842109768 - ], - [ - -74.9621308166264, - 40.0793374042555 - ], - [ - -74.9621569024513, - 40.0791260138325 - ], - [ - -74.9622005086327, - 40.0790168790252 - ], - [ - -74.9622704384257, - 40.0789017147798 - ], - [ - -74.9623341128592, - 40.0788331375804 - ], - [ - -74.9623859237107, - 40.0787843575699 - ], - [ - -74.96239289129, - 40.0787777955382 - ], - [ - -74.9624701446216, - 40.0786961936926 - ], - [ - -74.9625069342338, - 40.0786470042295 - ], - [ - -74.9625354636818, - 40.0785875944404 - ], - [ - -74.9625335840911, - 40.0785274470781 - ], - [ - -74.9625186854841, - 40.0784669839381 - ], - [ - -74.9624817987582, - 40.0784126644385 - ], - [ - -74.9624315100525, - 40.0782611902107 - ], - [ - -74.9624243184088, - 40.0781191052935 - ], - [ - -74.962431670486, - 40.0780458279012 - ], - [ - -74.9624596513969, - 40.0779997587759 - ], - [ - -74.9625140815513, - 40.0779443112177 - ], - [ - -74.9626300025151, - 40.0778736671455 - ], - [ - -74.9631843928671, - 40.0773929351543 - ], - [ - -74.9632874576826, - 40.0772117861277 - ], - [ - -74.9633954355973, - 40.0771225847937 - ], - [ - -74.9635064587061, - 40.0770651750708 - ], - [ - -74.9636376876698, - 40.0770449830055 - ], - [ - -74.9637807136512, - 40.0770551276835 - ], - [ - -74.9643241790285, - 40.0770516056032 - ], - [ - -74.9648001579223, - 40.0771584580701 - ], - [ - -74.964913141056, - 40.0771838222482 - ], - [ - -74.9649745086499, - 40.0771975911176 - ], - [ - -74.9650426261838, - 40.077204089658 - ], - [ - -74.965149767909, - 40.0772143181481 - ], - [ - -74.9652559283043, - 40.0772244506722 - ], - [ - -74.9654420965464, - 40.0772423156398 - ], - [ - -74.9657368330319, - 40.0772628106985 - ], - [ - -74.9660319568062, - 40.077273303436 - ], - [ - -74.9661841459923, - 40.0772719801393 - ], - [ - -74.9662989668076, - 40.0772280136959 - ], - [ - -74.966490064038, - 40.0771257929669 - ], - [ - -74.9665976954916, - 40.0770449242914 - ], - [ - -74.9666708681535, - 40.0769565439858 - ], - [ - -74.9667510225083, - 40.0766980386015 - ], - [ - -74.9667755070796, - 40.0765250034869 - ], - [ - -74.9668222191366, - 40.0764460022056 - ], - [ - -74.9669419212384, - 40.0763887994508 - ], - [ - -74.9672693660921, - 40.0763533150634 - ], - [ - -74.9675528358463, - 40.0763301369774 - ], - [ - -74.9678088885869, - 40.0763396702371 - ], - [ - -74.9682834195156, - 40.0763211067489 - ], - [ - -74.9687457522021, - 40.0762822152115 - ], - [ - -74.9688938535743, - 40.076274112491 - ], - [ - -74.9690416365381, - 40.0762743458215 - ], - [ - -74.9691275207009, - 40.076299797973 - ], - [ - -74.9692969643173, - 40.0764074044792 - ], - [ - -74.9694816266964, - 40.0764619632816 - ], - [ - -74.9696285779612, - 40.0764822065968 - ], - [ - -74.9697503002311, - 40.0764818175018 - ], - [ - -74.9698253424553, - 40.0764535821538 - ], - [ - -74.9699016269864, - 40.0763953260004 - ], - [ - -74.9700125068705, - 40.0763412406619 - ], - [ - -74.9701107661628, - 40.0762768390022 - ], - [ - -74.9702519051223, - 40.076226828383 - ], - [ - -74.9703691430658, - 40.0762296641467 - ], - [ - -74.9705118949581, - 40.0762464707937 - ], - [ - -74.970693851038, - 40.07626089144 - ], - [ - -74.9708389266879, - 40.0762209952564 - ], - [ - -74.9709420676902, - 40.0761433480461 - ], - [ - -74.9710548595894, - 40.0760425692892 - ], - [ - -74.9711719984905, - 40.0759418955429 - ], - [ - -74.9712619832916, - 40.0758672729186 - ], - [ - -74.9713489991149, - 40.0757591846616 - ], - [ - -74.9713826750749, - 40.0756798664614 - ], - [ - -74.9714161462691, - 40.075605544259 - ], - [ - -74.9713982595074, - 40.0755116254172 - ], - [ - -74.9713501136524, - 40.0754136319476 - ], - [ - -74.9712904531625, - 40.0752786232687 - ], - [ - -74.9712333514686, - 40.0751870901433 - ], - [ - -74.9712374517176, - 40.0750870169547 - ], - [ - -74.9712502344198, - 40.0749871627216 - ], - [ - -74.9712813398139, - 40.0748643686783 - ], - [ - -74.9713200460839, - 40.0747684752439 - ], - [ - -74.9713675601484, - 40.0746694517842 - ], - [ - -74.9714527974131, - 40.074604734194 - ], - [ - -74.9715936586416, - 40.0745613922688 - ], - [ - -74.9716233283284, - 40.0744736242018 - ], - [ - -74.9716172420871, - 40.0744100324778 - ], - [ - -74.9715765612921, - 40.0743422703681 - ], - [ - -74.9714881079116, - 40.0742733531797 - ], - [ - -74.9712718502741, - 40.074141244023 - ], - [ - -74.9710806969163, - 40.0740331063545 - ], - [ - -74.9710287637111, - 40.0739216672083 - ], - [ - -74.9710319073968, - 40.0738449447304 - ], - [ - -74.9710430502832, - 40.0737851125873 - ], - [ - -74.9711064377391, - 40.0737232008543 - ], - [ - -74.971200356728, - 40.0736586934123 - ], - [ - -74.9715396373512, - 40.0734398446669 - ], - [ - -74.9717337648136, - 40.0733694157071 - ], - [ - -74.9718742019189, - 40.0733360741722 - ], - [ - -74.9720146502346, - 40.0733027417507 - ], - [ - -74.9721300069641, - 40.0732454287765 - ], - [ - -74.9722205335271, - 40.0731574646927 - ], - [ - -74.9722728019042, - 40.073048544909 - ], - [ - -74.9722982028252, - 40.0729590065263 - ], - [ - -74.9723328329817, - 40.0728563283101 - ], - [ - -74.9724142144271, - 40.0724609581735 - ], - [ - -74.9724352795485, - 40.0723713149657 - ], - [ - -74.9725018628435, - 40.0722310143142 - ], - [ - -74.972575432542, - 40.0721326201996 - ], - [ - -74.9726560452275, - 40.0720744669888 - ], - [ - -74.972798129724, - 40.0720011025042 - ], - [ - -74.9729182405299, - 40.0719338837678 - ], - [ - -74.9730637037481, - 40.071883974456 - ], - [ - -74.9732135138293, - 40.0718341700045 - ], - [ - -74.9733819175794, - 40.0717547638601 - ], - [ - -74.9734755586132, - 40.0716969249039 - ], - [ - -74.9735299860566, - 40.0716414813947 - ], - [ - -74.9735671735946, - 40.0715822783422 - ], - [ - -74.9736040997315, - 40.0715297459132 - ], - [ - -74.9736066942886, - 40.0714663640596 - ], - [ - -74.9736181075651, - 40.0713998613058 - ], - [ - -74.9736330369985, - 40.0713534743548 - ], - [ - -74.9736699629599, - 40.071300941904 - ], - [ - -74.9738081755993, - 40.0712157957721 - ], - [ - -74.9739771348659, - 40.0711230483292 - ], - [ - -74.9741193405405, - 40.0710463512484 - ], - [ - -74.9742599196909, - 40.0710096764012 - ], - [ - -74.9744175903788, - 40.070980091168 - ], - [ - -74.9746120489133, - 40.0709013216442 - ], - [ - -74.9748018874172, - 40.0708291081607 - ], - [ - -74.9748999979029, - 40.0707680330635 - ], - [ - -74.97498156236, - 40.07068652747 - ], - [ - -74.9750415630368, - 40.0706011671149 - ], - [ - -74.9750717042072, - 40.0705017227631 - ], - [ - -74.9751017090227, - 40.0704056090803 - ], - [ - -74.9751235886524, - 40.0702959542989 - ], - [ - -74.9751218347655, - 40.0702324674342 - ], - [ - -74.9750980599435, - 40.0700699525655 - ], - [ - -74.9751063645095, - 40.0699733238614 - ], - [ - -74.9751659435261, - 40.0698979641893 - ], - [ - -74.9752510345467, - 40.0698365834442 - ], - [ - -74.9753490065714, - 40.0697788476398 - ], - [ - -74.9754595984363, - 40.0697314273841 - ], - [ - -74.9755822637261, - 40.0697076813605 - ], - [ - -74.9757239193133, - 40.0696443140028 - ], - [ - -74.9759685862663, - 40.0695066439676 - ], - [ - -74.9761850231397, - 40.069421716549 - ], - [ - -74.9764022660628, - 40.0693167773589 - ], - [ - -74.9766094624595, - 40.0692449800123 - ], - [ - -74.9767336270696, - 40.0691845322725 - ], - [ - -74.9768286937897, - 40.0690916644291 - ], - [ - -74.9768728149974, - 40.0689691922724 - ], - [ - -74.9769120440878, - 40.0688599469146 - ], - [ - -74.9770073315357, - 40.0686552342071 - ], - [ - -74.977079283032, - 40.0684900199499 - ], - [ - -74.9771535239492, - 40.0683749424776 - ], - [ - -74.9772049626644, - 40.0682860315084 - ], - [ - -74.9772710665234, - 40.068157403729 - ], - [ - -74.9773302323474, - 40.0680920529723 - ], - [ - -74.9774604337307, - 40.0679900125298 - ], - [ - -74.9776286981802, - 40.0679139401114 - ], - [ - -74.9778586901849, - 40.0678159828727 - ], - [ - -74.9780098511574, - 40.0677328113354 - ], - [ - -74.9781611478702, - 40.0676463089175 - ], - [ - -74.9783722750795, - 40.0675846232923 - ], - [ - -74.9786179934237, - 40.0675271055573 - ], - [ - -74.9788827102512, - 40.0674299838529 - ], - [ - -74.9790935636345, - 40.067374967269 - ], - [ - -74.9791831198134, - 40.0673103394572 - ], - [ - -74.9794133917092, - 40.0672057090192 - ], - [ - -74.9795572180983, - 40.0670889739828 - ], - [ - -74.9796068933289, - 40.0670434241112 - ], - [ - -74.979713743868, - 40.0669808888732 - ], - [ - -74.9797814517434, - 40.0669190858504 - ], - [ - -74.9798054783371, - 40.0668628976231 - ], - [ - -74.9798384591262, - 40.0668002483272 - ], - [ - -74.9798458028862, - 40.0667269700564 - ], - [ - -74.979910117264, - 40.0666417113693 - ], - [ - -74.9800493458886, - 40.0665315418565 - ], - [ - -74.9801658988995, - 40.0664441903459 - ], - [ - -74.9802688893423, - 40.0663698836938 - ], - [ - -74.9803793358453, - 40.0663257983816 - ], - [ - -74.9805152944619, - 40.066295681754 - ], - [ - -74.9806774224678, - 40.0662628617277 - ], - [ - -74.9807539585526, - 40.0661979279671 - ], - [ - -74.980858582623, - 40.0660835805513 - ], - [ - -74.9809231791461, - 40.0659916512046 - ], - [ - -74.9809715583208, - 40.0658709382643 - ], - [ - -74.9809657363965, - 40.0658006766315 - ], - [ - -74.980947975339, - 40.0657034195354 - ], - [ - -74.9809223495991, - 40.0655859420957 - ], - [ - -74.9809461024685, - 40.0655364239981 - ], - [ - -74.9809816148088, - 40.065507958971 - ], - [ - -74.9810269724421, - 40.0654715945227 - ], - [ - -74.9810864045997, - 40.0653995714499 - ], - [ - -74.9811241387853, - 40.0653270164664 - ], - [ - -74.9811479934045, - 40.0652686793011 - ], - [ - -74.981157934467, - 40.0652443556675 - ], - [ - -74.9811525206483, - 40.065164092983 - ], - [ - -74.9811009745931, - 40.0650426479879 - ], - [ - -74.9810642848804, - 40.064939654483 - ], - [ - -74.9810541957098, - 40.064911297939 - ], - [ - -74.9809681390381, - 40.0646771622727 - ], - [ - -74.980927193433, - 40.0645092250865 - ], - [ - -74.9809082409775, - 40.0642282919944 - ], - [ - -74.9809149133753, - 40.0640648453544 - ], - [ - -74.9809385520792, - 40.0639118184997 - ], - [ - -74.9809827988328, - 40.063786005042 - ], - [ - -74.9810214162254, - 40.0635849246147 - ], - [ - -74.9810408439322, - 40.0634284622997 - ], - [ - -74.9810848178961, - 40.0633093191727 - ], - [ - -74.9810978565388, - 40.0632027844019 - ], - [ - -74.9810929878882, - 40.0631091719561 - ], - [ - -74.98101745359, - 40.0629370672529 - ], - [ - -74.9809351107746, - 40.0628248908246 - ], - [ - -74.980866216017, - 40.0627030275438 - ], - [ - -74.9808051061536, - 40.0626030496337 - ], - [ - -74.9808089188494, - 40.0625096554069 - ], - [ - -74.9808305147714, - 40.0624066608617 - ], - [ - -74.9808695973613, - 40.0623007538004 - ], - [ - -74.9809132982303, - 40.0621882901069 - ], - [ - -74.9809869811715, - 40.062086550865 - ], - [ - -74.9810089732198, - 40.0619735549416 - ], - [ - -74.981030704626, - 40.0618672296697 - ], - [ - -74.9810165983365, - 40.0617867574654 - ], - [ - -74.9810029124094, - 40.0616962754793 - ], - [ - -74.9809547624867, - 40.0615982859551 - ], - [ - -74.980909960673, - 40.0614185688594 - ], - [ - -74.9809186528121, - 40.0613119293442 - ], - [ - -74.98093603774, - 40.0612054993329 - ], - [ - -74.9809446055651, - 40.0611021907829 - ], - [ - -74.9809273903499, - 40.0609915929099 - ], - [ - -74.9809185839584, - 40.060887874632 - ], - [ - -74.9808874002835, - 40.0608003048645 - ], - [ - -74.9808439944545, - 40.0606924096989 - ], - [ - -74.9807689854927, - 40.0606138035213 - ], - [ - -74.9805492356529, - 40.060461596117 - ], - [ - -74.9804825679581, - 40.0603915347194 - ], - [ - -74.9804258747153, - 40.0602900050236 - ], - [ - -74.9804340345132, - 40.060196706567 - ], - [ - -74.9804862800908, - 40.060087773967 - ], - [ - -74.9805580543931, - 40.0600327456058 - ], - [ - -74.9806682180814, - 40.0599953303739 - ], - [ - -74.9808169067756, - 40.0599722064771 - ], - [ - -74.9809353425481, - 40.0599450102828 - ], - [ - -74.9810893308662, - 40.0598986309723 - ], - [ - -74.9812096725802, - 40.0598247328692 - ], - [ - -74.981312924449, - 40.059743745877 - ], - [ - -74.9814028762503, - 40.0596691242478 - ], - [ - -74.9815262124431, - 40.0595218336755 - ], - [ - -74.9816129183716, - 40.0594204169268 - ], - [ - -74.9819913984786, - 40.0589837763074 - ], - [ - -74.9821053703797, - 40.0588529654109 - ], - [ - -74.9821874561771, - 40.0587581138944 - ], - [ - -74.9822987054863, - 40.0586940155856 - ], - [ - -74.9824768356529, - 40.0585881146631 - ], - [ - -74.9826104726472, - 40.0585078585091 - ], - [ - -74.9827560475379, - 40.0584546064881 - ], - [ - -74.9829596744251, - 40.0583626728276 - ], - [ - -74.9833293086435, - 40.0581428559164 - ], - [ - -74.9835157082375, - 40.0580471724944 - ], - [ - -74.983686915329, - 40.0580045564467 - ], - [ - -74.9838410331759, - 40.0579548427546 - ], - [ - -74.9839985331811, - 40.0579285840499 - ], - [ - -74.9841127540767, - 40.0578979402493 - ], - [ - -74.9842094890553, - 40.05787021836 - ], - [ - -74.984288715088, - 40.0578454088601 - ], - [ - -74.9843733629359, - 40.0577940311146 - ], - [ - -74.984540240048, - 40.0576444516912 - ], - [ - -74.984915219718, - 40.0573997088128 - ], - [ - -74.9850670283288, - 40.0572998564855 - ], - [ - -74.9851533863927, - 40.0572067727847 - ], - [ - -74.985187581091, - 40.0571141006848 - ], - [ - -74.9851827068686, - 40.0570204973829 - ], - [ - -74.9851681890596, - 40.0569500267443 - ], - [ - -74.9851227514533, - 40.056892165847 - ], - [ - -74.9849514326164, - 40.0567244354808 - ], - [ - -74.9848213534394, - 40.0566111218745 - ], - [ - -74.9846947937534, - 40.0565179146008 - ], - [ - -74.9845904849815, - 40.0564118979302 - ], - [ - -74.9844951289418, - 40.0562994197344 - ], - [ - -74.9844117120624, - 40.056213936577 - ], - [ - -74.9843393557548, - 40.0560702852131 - ], - [ - -74.9842967749965, - 40.0559423804538 - ], - [ - -74.9842854804852, - 40.0558834759138 - ], - [ - -74.9842716913955, - 40.0558115539279 - ], - [ - -74.9842649206789, - 40.0556577944949 - ], - [ - -74.9842611359672, - 40.0555375006089 - ], - [ - -74.9842512240644, - 40.0554262771639 - ], - [ - -74.9842492147828, - 40.0554036569818 - ], - [ - -74.9842539746793, - 40.0552869027572 - ], - [ - -74.9842450281565, - 40.0551865153932 - ], - [ - -74.9842123465636, - 40.055135647116 - ], - [ - -74.98417992562, - 40.0550780991615 - ], - [ - -74.9840657834541, - 40.0550002289115 - ], - [ - -74.983957633557, - 40.0549350096738 - ], - [ - -74.9839215948625, - 40.0549132821898 - ], - [ - -74.9837985692628, - 40.0548401987123 - ], - [ - -74.9837372697899, - 40.0547452276383 - ], - [ - -74.9836813927464, - 40.0546236793664 - ], - [ - -74.9836213057369, - 40.054498695725 - ], - [ - -74.9834771187803, - 40.0544117484433 - ], - [ - -74.9827929631278, - 40.0539278045724 - ], - [ - -74.9825407351042, - 40.0538265666903 - ], - [ - -74.9823242401874, - 40.0538079973396 - ], - [ - -74.9822070788333, - 40.0537780794835 - ], - [ - -74.9821221208563, - 40.0537563802412 - ], - [ - -74.9818288544649, - 40.0537025665511 - ], - [ - -74.9815927073004, - 40.0536334407309 - ], - [ - -74.9813941183197, - 40.0536019382142 - ], - [ - -74.9812071940313, - 40.0536041101885 - ], - [ - -74.9810118618552, - 40.053599402265 - ], - [ - -74.9808328005096, - 40.0536218029797 - ], - [ - -74.98064533157, - 40.0536373147931 - ], - [ - -74.9804928550141, - 40.0536470019571 - ], - [ - -74.9802885703087, - 40.0536487539233 - ], - [ - -74.9800890285012, - 40.0536405999656 - ], - [ - -74.9798382910768, - 40.0536095133731 - ], - [ - -74.9796592426777, - 40.0535250544728 - ], - [ - -74.9795118182713, - 40.0534113161979 - ], - [ - -74.9793821516155, - 40.0532879860715 - ], - [ - -74.9792519522964, - 40.0531779968265 - ], - [ - -74.9791430388417, - 40.0530785407496 - ], - [ - -74.9790087785958, - 40.0529617763172 - ], - [ - -74.9788660995342, - 40.0528381316937 - ], - [ - -74.9787050957803, - 40.0527374096288 - ], - [ - -74.9785568572126, - 40.0526436812396 - ], - [ - -74.9784045457098, - 40.0525431774393 - ], - [ - -74.9782746250669, - 40.0524542788258 - ], - [ - -74.9756632572405, - 40.0501114115977 - ], - [ - -74.9747858554791, - 40.0493241795738 - ], - [ - -74.9757626193923, - 40.0481580226451 - ], - [ - -74.9762157377708, - 40.0477076063673 - ], - [ - -74.9766416800879, - 40.0474156257855 - ], - [ - -74.9771897338726, - 40.0471743121951 - ], - [ - -74.9782580376979, - 40.0468660128806 - ], - [ - -74.9792002989965, - 40.0466023844146 - ], - [ - -74.9798937562338, - 40.0463486616079 - ], - [ - -74.9805930467174, - 40.045951895051 - ], - [ - -74.9811688932107, - 40.0455362450234 - ], - [ - -74.9817466897915, - 40.045072909507 - ], - [ - -74.9823503376082, - 40.0444829178069 - ], - [ - -74.9831349548273, - 40.0435154806166 - ], - [ - -74.983829711175, - 40.0427208715315 - ], - [ - -74.9844320244529, - 40.0421626544379 - ], - [ - -74.9849444930397, - 40.0417772775627 - ], - [ - -74.985561632836, - 40.0413625919678 - ], - [ - -74.9862821691894, - 40.0409504001735 - ], - [ - -74.987025298072, - 40.0404910178521 - ], - [ - -74.9876773226224, - 40.0399908561423 - ], - [ - -74.9877089910119, - 40.0399665680127 - ], - [ - -74.9925571401932, - 40.0357718001092 - ], - [ - -74.9977315733216, - 40.031171044267 - ], - [ - -74.9987606983065, - 40.0302889053986 - ], - [ - -74.9997607435644, - 40.0296128833026 - ], - [ - -75.0004689543452, - 40.0292004743823 - ], - [ - -75.0008628566931, - 40.0289711040212 - ], - [ - -75.0062316052086, - 40.0256791488885 - ], - [ - -75.0096937573799, - 40.0234709725239 - ], - [ - -75.0106315831164, - 40.0227933757625 - ], - [ - -75.0125962636426, - 40.0212811823164 - ], - [ - -75.0132309531673, - 40.0208858951205 - ], - [ - -75.0136787239953, - 40.0206070099496 - ], - [ - -75.014865805852, - 40.0199034944899 - ], - [ - -75.0162796094222, - 40.019221278068 - ], - [ - -75.0182579099327, - 40.0183933848325 - ], - [ - -75.0193707400513, - 40.0179903280745 - ], - [ - -75.0204164384653, - 40.0177129307521 - ], - [ - -75.0214802375557, - 40.0174995871042 - ], - [ - -75.0225027007942, - 40.017285251862 - ], - [ - -75.0237731908036, - 40.0170767879119 - ], - [ - -75.0265828895558, - 40.0166662104776 - ], - [ - -75.0294547301075, - 40.0162866823171 - ], - [ - -75.0309717879949, - 40.0160861621944 - ], - [ - -75.03305475304, - 40.0157377615553 - ], - [ - -75.0347843830506, - 40.0154286884517 - ], - [ - -75.0365823657438, - 40.0149621236911 - ], - [ - -75.0378810762183, - 40.0145632751148 - ], - [ - -75.0384858553602, - 40.0143410773265 - ], - [ - -75.0391829329289, - 40.0140849503958 - ], - [ - -75.0403807953513, - 40.013620069763 - ], - [ - -75.0416651118097, - 40.0130617587421 - ], - [ - -75.0426362066632, - 40.0125755933483 - ], - [ - -75.0431899883352, - 40.0123075668474 - ], - [ - -75.0435999146733, - 40.0121091682265 - ], - [ - -75.0437332026165, - 40.0120446589691 - ], - [ - -75.0459522371496, - 40.0108719976797 - ], - [ - -75.0470091082732, - 40.0103082720318 - ], - [ - -75.0480252579433, - 40.0097276661257 - ], - [ - -75.0488327993872, - 40.0091898814645 - ], - [ - -75.0499404381957, - 40.0083886989607 - ], - [ - -75.0509221493079, - 40.0076322655391 - ], - [ - -75.0517127599191, - 40.0069986063176 - ], - [ - -75.0523574390001, - 40.0063933290882 - ], - [ - -75.0526660104436, - 40.0060149477808 - ], - [ - -75.0528793426681, - 40.005753357035 - ], - [ - -75.054222741549, - 40.0037009073002 - ], - [ - -75.0543575195518, - 40.0035149687389 - ], - [ - -75.0551637806963, - 40.0024026117704 - ], - [ - -75.0560290581187, - 40.0009275294738 - ], - [ - -75.0569368888817, - 39.9994216327347 - ], - [ - -75.0578058708195, - 39.9978511774302 - ], - [ - -75.0584317487322, - 39.9966727303636 - ], - [ - -75.0588208455685, - 39.9957273540145 - ], - [ - -75.0593985442346, - 39.9941977873942 - ], - [ - -75.0597869839563, - 39.9932682964466 - ], - [ - -75.060083328383, - 39.9925752709154 - ], - [ - -75.0605324730302, - 39.9916790255191 - ], - [ - -75.0611144043486, - 39.9905631682957 - ], - [ - -75.0626157306181, - 39.9881643557775 - ], - [ - -75.0631856500964, - 39.9873504647426 - ], - [ - -75.0639484175093, - 39.9863660922065 - ], - [ - -75.0644662992012, - 39.9858214180421 - ], - [ - -75.0649804020084, - 39.985372110297 - ], - [ - -75.0651434485413, - 39.9852510575208 - ], - [ - -75.0658113278111, - 39.9847552093158 - ], - [ - -75.0658787645119, - 39.9847059404168 - ], - [ - -75.0678179255645, - 39.9832890847147 - ], - [ - -75.0680898677753, - 39.9830903797996 - ], - [ - -75.0688806572999, - 39.9824336577834 - ], - [ - -75.0693940924853, - 39.9820072745684 - ], - [ - -75.0701397891142, - 39.9814519851436 - ], - [ - -75.0712016435127, - 39.9807450008748 - ], - [ - -75.0722390511095, - 39.9801328755867 - ], - [ - -75.0732332420533, - 39.9795674616799 - ], - [ - -75.0744984957453, - 39.9789447277385 - ], - [ - -75.0758244574467, - 39.9783552109566 - ], - [ - -75.0772305292608, - 39.9778311859925 - ], - [ - -75.0782997774542, - 39.9774583731746 - ], - [ - -75.079261976622, - 39.9771785158434 - ], - [ - -75.0803061775843, - 39.9769164617967 - ], - [ - -75.0814968472271, - 39.9766100853172 - ], - [ - -75.0863928475171, - 39.9756738949797 - ], - [ - -75.0913475589179, - 39.9748183939839 - ], - [ - -75.0934708863226, - 39.9744539565155 - ], - [ - -75.0940170953653, - 39.9743465007604 - ], - [ - -75.0960755365991, - 39.9739415349951 - ], - [ - -75.0991827657207, - 39.9732656760135 - ], - [ - -75.1013541349598, - 39.9727272142739 - ], - [ - -75.103173039632, - 39.9722123981819 - ], - [ - -75.1050782702605, - 39.9716040970616 - ], - [ - -75.1067568530655, - 39.9709746320134 - ], - [ - -75.1084536946677, - 39.9703168925436 - ], - [ - -75.1105144347801, - 39.9695180457534 - ], - [ - -75.1128887841478, - 39.9685386229117 - ], - [ - -75.1130008371342, - 39.9684898483088 - ], - [ - -75.1188240262007, - 39.9659551164612 - ], - [ - -75.11945000478, - 39.9656826085411 - ], - [ - -75.1233688195791, - 39.9637838864671 - ], - [ - -75.1259308005412, - 39.9624740628441 - ], - [ - -75.1277765807967, - 39.9615303309043 - ], - [ - -75.1290896648604, - 39.960717206445 - ], - [ - -75.1298321876917, - 39.9602251126746 - ], - [ - -75.1304797886247, - 39.9596200386088 - ], - [ - -75.1304969874799, - 39.9596039785318 - ], - [ - -75.1308816125968, - 39.9591522534863 - ], - [ - -75.1310816005479, - 39.958917370744 - ], - [ - -75.1315398317535, - 39.9582915153602 - ], - [ - -75.1322697868276, - 39.957051438197 - ], - [ - -75.133823853256, - 39.9542711783811 - ], - [ - -75.1344842609497, - 39.9529520415452 - ], - [ - -75.1345404076134, - 39.9528398913859 - ], - [ - -75.1346900477091, - 39.9525063910107 - ], - [ - -75.1348795510965, - 39.9520840479426 - ], - [ - -75.1353208638982, - 39.9508214703307 - ], - [ - -75.1357427384986, - 39.949526633105 - ], - [ - -75.1358927933516, - 39.9488932251349 - ], - [ - -75.1360388498233, - 39.9482766471896 - ], - [ - -75.1361726763732, - 39.9474843064723 - ], - [ - -75.1362895129136, - 39.9465961147422 - ], - [ - -75.1363182460593, - 39.9458490975536 - ], - [ - -75.1362291962277, - 39.9449403201743 - ], - [ - -75.136027248437, - 39.9437426234946 - ], - [ - -75.1359735850436, - 39.9433893963664 - ], - [ - -75.1358623368358, - 39.942657119287 - ], - [ - -75.1357647374247, - 39.9419708532118 - ], - [ - -75.1356981767417, - 39.9410148602617 - ], - [ - -75.1357005921687, - 39.9408029757635 - ], - [ - -75.1357155786621, - 39.9394880883371 - ], - [ - -75.1359462588623, - 39.9340220043775 - ], - [ - -75.135948976401, - 39.933957435656 - ], - [ - -75.1359310595024, - 39.9328116597847 - ], - [ - -75.1359142385492, - 39.9324532442748 - ], - [ - -75.1358742866535, - 39.9316013586163 - ], - [ - -75.1357245438417, - 39.9306593722325 - ], - [ - -75.1354582740836, - 39.9295238372385 - ], - [ - -75.1351797841755, - 39.9287061844986 - ], - [ - -75.135147780318, - 39.9286257408521 - ], - [ - -75.1348029673488, - 39.9277590184218 - ], - [ - -75.1344261606743, - 39.9268118600961 - ], - [ - -75.1341206898353, - 39.9260937920684 - ], - [ - -75.1340093130428, - 39.9258319625209 - ], - [ - -75.1335712048127, - 39.9248674901819 - ], - [ - -75.1322369503316, - 39.9219404665281 - ], - [ - -75.1313802851231, - 39.9200609844379 - ], - [ - -75.1307591087689, - 39.9184878182428 - ], - [ - -75.1304431137416, - 39.9175738397707 - ], - [ - -75.13018843053, - 39.9166771733737 - ], - [ - -75.1299913929992, - 39.9158931817451 - ], - [ - -75.1297005372598, - 39.9143275472372 - ], - [ - -75.1296845544264, - 39.9142322044728 - ], - [ - -75.1295157650123, - 39.9132256724014 - ], - [ - -75.1293849577548, - 39.9123318349067 - ], - [ - -75.1293003332305, - 39.911311791519 - ], - [ - -75.1292406328674, - 39.9101809595662 - ], - [ - -75.1291985155096, - 39.9091300633474 - ], - [ - -75.1292334371606, - 39.9082241108549 - ], - [ - -75.1292859268665, - 39.9073980938423 - ], - [ - -75.1293978834179, - 39.906637066948 - ], - [ - -75.1296508242017, - 39.9054338389366 - ], - [ - -75.1296933107365, - 39.9052621638958 - ], - [ - -75.1298465459135, - 39.9046429201472 - ], - [ - -75.1301290972551, - 39.9037426184222 - ], - [ - -75.1304104281656, - 39.9028741036092 - ], - [ - -75.1312341537651, - 39.9007930773551 - ], - [ - -75.1317571313492, - 39.8995482874507 - ], - [ - -75.133205057537, - 39.8962724968739 - ], - [ - -75.1345919335695, - 39.8936293963225 - ], - [ - -75.1355227899204, - 39.8918552464649 - ], - [ - -75.1358549099517, - 39.8912742260167 - ], - [ - -75.1362877273092, - 39.8907591317546 - ], - [ - -75.1368917178685, - 39.8900888625786 - ], - [ - -75.1377318162576, - 39.8891853534259 - ], - [ - -75.1395563744851, - 39.8873816065038 - ], - [ - -75.1403909153144, - 39.8866211258719 - ], - [ - -75.1411192267732, - 39.8859377549051 - ], - [ - -75.142344511267, - 39.8852179706459 - ], - [ - -75.143308188062, - 39.8848581029212 - ], - [ - -75.1446080383101, - 39.8843467947022 - ], - [ - -75.1461657306672, - 39.8841117644277 - ], - [ - -75.1492489108619, - 39.8839431585428 - ], - [ - -75.1523739445368, - 39.8837595067288 - ], - [ - -75.1576330696055, - 39.8833854485228 - ], - [ - -75.1599734608959, - 39.8831997502478 - ], - [ - -75.1621730592039, - 39.882915380204 - ], - [ - -75.1641887714887, - 39.8825790922725 - ], - [ - -75.166996893556, - 39.8820379283491 - ], - [ - -75.1696569241522, - 39.8815888069195 - ], - [ - -75.1721458665667, - 39.8812948504535 - ], - [ - -75.173368483709, - 39.8811791756363 - ], - [ - -75.1747256420967, - 39.8810553208655 - ], - [ - -75.1750467876546, - 39.8810260103085 - ], - [ - -75.1768889107791, - 39.8809083049343 - ], - [ - -75.1782347038406, - 39.8808112562065 - ], - [ - -75.1792892696317, - 39.8807712886249 - ], - [ - -75.1845694808472, - 39.8809214332665 - ], - [ - -75.1848295526439, - 39.8809028827989 - ], - [ - -75.1854183310106, - 39.8808608919221 - ], - [ - -75.1862677785665, - 39.8807844548227 - ], - [ - -75.1870370994022, - 39.8806425899495 - ], - [ - -75.1876631987589, - 39.8804656938851 - ], - [ - -75.1883323504021, - 39.8802420393064 - ], - [ - -75.1889814718519, - 39.880002030418 - ], - [ - -75.1901370701705, - 39.8794710799229 - ], - [ - -75.1934152291798, - 39.878028475751 - ], - [ - -75.1941663440569, - 39.877697909849 - ], - [ - -75.1942310311573, - 39.8776694481066 - ], - [ - -75.1954290008332, - 39.8771075764455 - ], - [ - -75.1970090317776, - 39.8762678738912 - ], - [ - -75.1981869274372, - 39.8756896153989 - ], - [ - -75.1994302583694, - 39.8750173579744 - ], - [ - -75.2006505593546, - 39.8744082134262 - ], - [ - -75.2021043020595, - 39.8736292627725 - ], - [ - -75.2029903427383, - 39.8731240076408 - ], - [ - -75.2050977776197, - 39.8719777656418 - ], - [ - -75.2057939490667, - 39.8715796279012 - ], - [ - -75.2066587081188, - 39.8710897848273 - ], - [ - -75.207314212877, - 39.8706748237855 - ], - [ - -75.2079478885612, - 39.8702911983967 - ], - [ - -75.2119766212498, - 39.8674718597081 - ], - [ - -75.2160399281396, - 39.8711243572268 - ], - [ - -75.2157910004772, - 39.8750502820667 - ], - [ - -75.2157290524611, - 39.8760272397775 - ], - [ - -75.2157246965249, - 39.8760964486405 - ], - [ - -75.2157240656354, - 39.8761133825662 - ], - [ - -75.2159021656214, - 39.876068829367 - ], - [ - -75.2160496060116, - 39.8760339414238 - ], - [ - -75.2162059129003, - 39.8760002404576 - ], - [ - -75.2163506282444, - 39.8759669226928 - ], - [ - -75.2163731013434, - 39.8759616621835 - ], - [ - -75.2167024885011, - 39.8758859623491 - ], - [ - -75.2168476774403, - 39.8758524742372 - ], - [ - -75.2170156633297, - 39.8758163273597 - ], - [ - -75.2175183895229, - 39.8757547552699 - ], - [ - -75.2177032800022, - 39.8757290902593 - ], - [ - -75.2178617121754, - 39.8757101924657 - ], - [ - -75.2180361461287, - 39.8756921165607 - ], - [ - -75.2183212065813, - 39.8756875129024 - ], - [ - -75.2183321695511, - 39.8756876740273 - ], - [ - -75.2187964377829, - 39.8756815683683 - ], - [ - -75.2188269735618, - 39.8756811797115 - ], - [ - -75.2188875076524, - 39.875682904299 - ], - [ - -75.2189233085825, - 39.8756786675067 - ], - [ - -75.2192428752128, - 39.8756008964857 - ], - [ - -75.2194461968771, - 39.8755531557424 - ], - [ - -75.2196236956873, - 39.8755117641092 - ], - [ - -75.2196499401089, - 39.8755006756708 - ], - [ - -75.2197066491977, - 39.8754854485967 - ], - [ - -75.2197370573132, - 39.8754825160534 - ], - [ - -75.2197733536373, - 39.8754888496871 - ], - [ - -75.2208671769972, - 39.8755795816408 - ], - [ - -75.221042793429, - 39.8755950896128 - ], - [ - -75.2212327312852, - 39.8756113278294 - ], - [ - -75.2212826336638, - 39.8756156186409 - ], - [ - -75.2220856672719, - 39.8756836672529 - ], - [ - -75.2227009799346, - 39.8757394069607 - ], - [ - -75.2228723497252, - 39.8757600172273 - ], - [ - -75.2230692759779, - 39.8757833261957 - ], - [ - -75.2231553715982, - 39.8757935950907 - ], - [ - -75.223767719304, - 39.8758671845641 - ], - [ - -75.2246559303646, - 39.8760324277885 - ], - [ - -75.2248594608887, - 39.8760693942136 - ], - [ - -75.2250303716666, - 39.8761027222489 - ], - [ - -75.225954495885, - 39.8762759816589 - ], - [ - -75.2268466358722, - 39.8764118675419 - ], - [ - -75.226891965549, - 39.8764136675516 - ], - [ - -75.2271209273828, - 39.8764451081236 - ], - [ - -75.2284734633572, - 39.8766404465367 - ], - [ - -75.22872734466, - 39.8766766759269 - ], - [ - -75.2289085708468, - 39.8767018547834 - ], - [ - -75.2299881252441, - 39.8768562281056 - ], - [ - -75.2304785817254, - 39.8768981155429 - ], - [ - -75.2306465501775, - 39.8769106023695 - ], - [ - -75.2308490670718, - 39.8769283534699 - ], - [ - -75.2309991512328, - 39.876942212562 - ], - [ - -75.2310579986939, - 39.8769478309798 - ], - [ - -75.231872134395, - 39.877019226031 - ], - [ - -75.2319308461727, - 39.877025669935 - ], - [ - -75.2323122683833, - 39.8770656579844 - ], - [ - -75.2325511634287, - 39.8770910799502 - ], - [ - -75.2326596156473, - 39.8771024454735 - ], - [ - -75.2328166793042, - 39.8771204829609 - ], - [ - -75.2329934726969, - 39.8771375300267 - ], - [ - -75.2332728367086, - 39.8771640376067 - ], - [ - -75.2339583309726, - 39.8771866864517 - ], - [ - -75.2340207426947, - 39.8771885883958 - ], - [ - -75.2341240577847, - 39.8771902531098 - ], - [ - -75.2343048316263, - 39.8771452166564 - ], - [ - -75.2344837043416, - 39.8771038322813 - ], - [ - -75.2346552903233, - 39.8770627922405 - ], - [ - -75.2346868958295, - 39.8770549895938 - ], - [ - -75.2350273453366, - 39.8769737769387 - ], - [ - -75.2355407633882, - 39.8767609209111 - ], - [ - -75.23579853814, - 39.8765884497808 - ], - [ - -75.23593012591, - 39.8764974799475 - ], - [ - -75.2360526539553, - 39.8764130596835 - ], - [ - -75.2363724474572, - 39.8761966998301 - ], - [ - -75.2366429493627, - 39.8757458005058 - ], - [ - -75.2367163113596, - 39.8756234683828 - ], - [ - -75.2367758084317, - 39.8754842447572 - ], - [ - -75.2369350870671, - 39.8751260326568 - ], - [ - -75.2375019801102, - 39.875089630092 - ], - [ - -75.2375933428914, - 39.8749911901633 - ], - [ - -75.2375384603889, - 39.8749209974371 - ], - [ - -75.2375031289012, - 39.8748764793189 - ], - [ - -75.2374626820419, - 39.8748134236285 - ], - [ - -75.2381127963308, - 39.8746022204127 - ], - [ - -75.2382480002116, - 39.8744558799805 - ], - [ - -75.2383282079191, - 39.874371619947 - ], - [ - -75.2383794681348, - 39.8743109441573 - ], - [ - -75.2386916382521, - 39.8739683346082 - ], - [ - -75.2389955132922, - 39.8738456109843 - ], - [ - -75.2391741008568, - 39.8736180583409 - ], - [ - -75.2392630725869, - 39.8734996887943 - ], - [ - -75.2393503164263, - 39.8733812362756 - ], - [ - -75.2394064481866, - 39.8733089178063 - ], - [ - -75.2401015669655, - 39.8730392510868 - ], - [ - -75.2401071068035, - 39.8728678677423 - ], - [ - -75.2401038306874, - 39.8727401968491 - ], - [ - -75.2401021858227, - 39.8726386725677 - ], - [ - -75.2401042325868, - 39.8726066509344 - ], - [ - -75.2404736788684, - 39.872390953481 - ], - [ - -75.2408999402108, - 39.8724092353947 - ], - [ - -75.2409400088579, - 39.8724144285789 - ], - [ - -75.2410911771595, - 39.872447174241 - ], - [ - -75.2412184551441, - 39.87247518897 - ], - [ - -75.2413730697237, - 39.8725108838886 - ], - [ - -75.2414217197539, - 39.8725208778808 - ], - [ - -75.2415578852366, - 39.8725495192813 - ], - [ - -75.2417486814708, - 39.8725946733541 - ], - [ - -75.2422209313236, - 39.8727862274401 - ], - [ - -75.2422920371669, - 39.8728176787017 - ], - [ - -75.2425699982454, - 39.8729643260704 - ], - [ - -75.2426971231523, - 39.8730307992835 - ], - [ - -75.2427323295949, - 39.8730486345256 - ], - [ - -75.2467369138141, - 39.8750775646331 - ], - [ - -75.2467785722555, - 39.8751123791261 - ], - [ - -75.246826868008, - 39.8751527265446 - ], - [ - -75.2484329543199, - 39.8764945665016 - ], - [ - -75.2517718754259, - 39.8760163166458 - ], - [ - -75.2522590693915, - 39.8759465236872 - ], - [ - -75.2527277909551, - 39.8759750208647 - ], - [ - -75.2534380609965, - 39.8760182124439 - ], - [ - -75.253980804168, - 39.8760512183745 - ], - [ - -75.256130162545, - 39.8761818719147 - ], - [ - -75.257422994598, - 39.8762604479309 - ], - [ - -75.2595228820756, - 39.8763880333243 - ], - [ - -75.2612516634932, - 39.8764930417555 - ], - [ - -75.2625317774647, - 39.8765707881236 - ], - [ - -75.2625411005934, - 39.8765873344666 - ], - [ - -75.264833853359, - 39.880655404318 - ], - [ - -75.2650052502575, - 39.880990883453 - ], - [ - -75.2651142136831, - 39.8816649608136 - ], - [ - -75.264546860068, - 39.8821217123242 - ], - [ - -75.2642997506363, - 39.8822502397205 - ], - [ - -75.2630835791054, - 39.8823638407813 - ], - [ - -75.2622646890641, - 39.8825798920749 - ], - [ - -75.2619474074273, - 39.882896937078 - ], - [ - -75.2618873595602, - 39.883076759449 - ], - [ - -75.261966637006, - 39.8832482271922 - ], - [ - -75.2624343666615, - 39.8836423378021 - ], - [ - -75.2641361467868, - 39.8841418235036 - ], - [ - -75.2644459077851, - 39.8843229647498 - ], - [ - -75.2646400306211, - 39.8847418101678 - ], - [ - -75.2642291727224, - 39.8850102779464 - ], - [ - -75.2631550189752, - 39.8853086907952 - ], - [ - -75.2627313340111, - 39.8855621078404 - ], - [ - -75.2626187682924, - 39.8858130501938 - ], - [ - -75.2626846622853, - 39.886034006555 - ], - [ - -75.2628055642861, - 39.8860911313505 - ], - [ - -75.2636856189718, - 39.8861533394903 - ], - [ - -75.2639832750925, - 39.8861049533773 - ], - [ - -75.2642854626889, - 39.8862010573726 - ], - [ - -75.2648002855746, - 39.8864534712846 - ], - [ - -75.2648533214467, - 39.8865451257253 - ], - [ - -75.2649358921666, - 39.8866818303266 - ], - [ - -75.2650395192928, - 39.886841480113 - ], - [ - -75.265107095501, - 39.8869891038029 - ], - [ - -75.265137195829, - 39.8871640167739 - ], - [ - -75.2651308339053, - 39.8873381481912 - ], - [ - -75.2650977172688, - 39.8875454235524 - ], - [ - -75.2649803383151, - 39.8877621162493 - ], - [ - -75.2648793909909, - 39.8879285655752 - ], - [ - -75.2647276123416, - 39.8880882994013 - ], - [ - -75.264598531682, - 39.8882260365735 - ], - [ - -75.2644483824598, - 39.8883408279976 - ], - [ - -75.2642630133433, - 39.8884211313259 - ], - [ - -75.2639982589321, - 39.8884772237383 - ], - [ - -75.2637276490959, - 39.8884938332939 - ], - [ - -75.2633782700024, - 39.8884693960099 - ], - [ - -75.2629786771769, - 39.8884213703108 - ], - [ - -75.2626815674037, - 39.8883643320558 - ], - [ - -75.262474946644, - 39.8884273047878 - ], - [ - -75.2622950184809, - 39.8885583136775 - ], - [ - -75.2622017666152, - 39.8887136925024 - ], - [ - -75.2621356182858, - 39.8889258723829 - ], - [ - -75.2620978299613, - 39.8891611475661 - ], - [ - -75.2620827292582, - 39.889374435531 - ], - [ - -75.262089648154, - 39.8896837605048 - ], - [ - -75.2621031015315, - 39.8899145348393 - ], - [ - -75.2621250807203, - 39.8901117611671 - ], - [ - -75.2621114180863, - 39.8902857341128 - ], - [ - -75.2621042264371, - 39.8904823272288 - ], - [ - -75.2620376770788, - 39.8907057337381 - ], - [ - -75.2618840198427, - 39.8913151345559 - ], - [ - -75.261856798285, - 39.8914607022477 - ], - [ - -75.2617920963035, - 39.8916335671628 - ], - [ - -75.2617353038262, - 39.8917897282143 - ], - [ - -75.2616072258172, - 39.8918993821798 - ], - [ - -75.2615067281571, - 39.8919534130332 - ], - [ - -75.2613152862603, - 39.8919998469521 - ], - [ - -75.2611003323199, - 39.8920907474337 - ], - [ - -75.2607318271632, - 39.8921895480921 - ], - [ - -75.2601435279168, - 39.8923116840123 - ], - [ - -75.2599308336835, - 39.8923407964468 - ], - [ - -75.2597475053845, - 39.8923649153335 - ], - [ - -75.2595431206812, - 39.8923660966799 - ], - [ - -75.2593516762826, - 39.8924125273198 - ], - [ - -75.2591093980856, - 39.8924522397382 - ], - [ - -75.2589602708123, - 39.8925389356643 - ], - [ - -75.2587799134338, - 39.8926811744593 - ], - [ - -75.2585705891517, - 39.8928171611499 - ], - [ - -75.2583889956376, - 39.8929930965956 - ], - [ - -75.258214488045, - 39.8931748170181 - ], - [ - -75.2580247762114, - 39.8933730641786 - ], - [ - -75.257831210872, - 39.8935768494476 - ], - [ - -75.2576719044358, - 39.8937420240602 - ], - [ - -75.25743554853, - 39.894017957658 - ], - [ - -75.2569124199775, - 39.8945518603494 - ], - [ - -75.2567449920003, - 39.8947393458729 - ], - [ - -75.2566675411966, - 39.8948613312307 - ], - [ - -75.2566644520218, - 39.8949455878475 - ], - [ - -75.2567119917673, - 39.8950421901619 - ], - [ - -75.2567937329407, - 39.8952013624523 - ], - [ - -75.2569700688695, - 39.8953682233702 - ], - [ - -75.2571267907462, - 39.8954728223646 - ], - [ - -75.2572764260729, - 39.8955716358226 - ], - [ - -75.2573916064392, - 39.8957146773043 - ], - [ - -75.2573645794192, - 39.8958546262172 - ], - [ - -75.2572788055354, - 39.896004541928 - ], - [ - -75.2571490773086, - 39.8961591148316 - ], - [ - -75.256937062059, - 39.8963681197489 - ], - [ - -75.2567641896399, - 39.8965048962935 - ], - [ - -75.2564522205202, - 39.896852262861 - ], - [ - -75.2562385649166, - 39.8971061993975 - ], - [ - -75.2560927914701, - 39.8972997774464 - ], - [ - -75.2559841023713, - 39.897477304662 - ], - [ - -75.2558068989083, - 39.8977320335965 - ], - [ - -75.2556199898617, - 39.8979528269503 - ], - [ - -75.2555090323506, - 39.8981921304752 - ], - [ - -75.2553324435098, - 39.8984300055581 - ], - [ - -75.2552276661332, - 39.8985008046545 - ], - [ - -75.2551585321109, - 39.8985948682073 - ], - [ - -75.2550977220461, - 39.8986610019427 - ], - [ - -75.2550942185374, - 39.8987564939254 - ], - [ - -75.2550991368067, - 39.8987773958729 - ], - [ - -75.2551194659533, - 39.8988638470553 - ], - [ - -75.2551688728579, - 39.8989098909163 - ], - [ - -75.2552364396331, - 39.8990575204159 - ], - [ - -75.2553417112321, - 39.8991722463197 - ], - [ - -75.2554892916603, - 39.8993272301597 - ], - [ - -75.2556220906617, - 39.8994875233422 - ], - [ - -75.2556678496272, - 39.8995265229211 - ], - [ - -75.2555198804455, - 39.899678363706 - ], - [ - -75.2555222618055, - 39.8996813707817 - ], - [ - -75.2537143664679, - 39.9016677786329 - ], - [ - -75.2512911002388, - 39.9044127015494 - ], - [ - -75.2534921019503, - 39.9055973656611 - ], - [ - -75.2524782979666, - 39.9066373646305 - ], - [ - -75.2523961354077, - 39.9066408454304 - ], - [ - -75.2521542155456, - 39.9066692987446 - ], - [ - -75.251992728916, - 39.9066938910381 - ], - [ - -75.2517570594281, - 39.9067505907017 - ], - [ - -75.2516303937818, - 39.9068209098743 - ], - [ - -75.2514994496536, - 39.9069080022579 - ], - [ - -75.2513048624666, - 39.9070386759265 - ], - [ - -75.2510586055878, - 39.9071850805785 - ], - [ - -75.250872136887, - 39.9072934507313 - ], - [ - -75.2507158785371, - 39.9073743592094 - ], - [ - -75.2504467026136, - 39.9075483829477 - ], - [ - -75.2503194031785, - 39.907635544503 - ], - [ - -75.2502725498517, - 39.907718846868 - ], - [ - -75.2502250651059, - 39.9078190020466 - ], - [ - -75.250206552361, - 39.9079254021431 - ], - [ - -75.2501865937645, - 39.908071126107 - ], - [ - -75.2502002169307, - 39.9082962841138 - ], - [ - -75.2501942282021, - 39.9084591702837 - ], - [ - -75.2501680071568, - 39.9085766557063 - ], - [ - -75.2501184685149, - 39.9087329700466 - ], - [ - -75.2500468386848, - 39.9088944338546 - ], - [ - -75.250004582551, - 39.9090509069605 - ], - [ - -75.2499348108817, - 39.909161820442 - ], - [ - -75.2498937934133, - 39.9092845963378 - ], - [ - -75.2499198741604, - 39.9093694890804 - ], - [ - -75.2499935156765, - 39.909448931811 - ], - [ - -75.2500362900845, - 39.9094788315101 - ], - [ - -75.250151548623, - 39.9095207002022 - ], - [ - -75.2502818102396, - 39.9095516424957 - ], - [ - -75.2504714507009, - 39.9095557772703 - ], - [ - -75.2506525456818, - 39.9095934586242 - ], - [ - -75.2508836838471, - 39.90966033256 - ], - [ - -75.2511071030509, - 39.909738282167 - ], - [ - -75.2512286255027, - 39.9098083882633 - ], - [ - -75.2512986716926, - 39.9098886167024 - ], - [ - -75.2512866290484, - 39.9100176467526 - ], - [ - -75.2512381239051, - 39.9101458820888 - ], - [ - -75.2511235520566, - 39.9102839218013 - ], - [ - -75.251002097849, - 39.9104105669953 - ], - [ - -75.2508723275451, - 39.9105651417824 - ], - [ - -75.2507216928232, - 39.910691150604 - ], - [ - -75.2506154464835, - 39.9108012603522 - ], - [ - -75.2505381729147, - 39.9109176238582 - ], - [ - -75.2504011056627, - 39.9110720390719 - ], - [ - -75.2501947358378, - 39.9112249430633 - ], - [ - -75.2499284353688, - 39.9113203178399 - ], - [ - -75.2497504880213, - 39.9113951390713 - ], - [ - -75.2495202362017, - 39.911502543475 - ], - [ - -75.2493350046411, - 39.9115772052125 - ], - [ - -75.2491639259883, - 39.9116634197821 - ], - [ - -75.248984737318, - 39.9117719369847 - ], - [ - -75.2488568194725, - 39.9118759592508 - ], - [ - -75.2487645382886, - 39.9120032386537 - ], - [ - -75.2487222772727, - 39.9121597112823 - ], - [ - -75.2486871157987, - 39.9123219700028 - ], - [ - -75.2485994421685, - 39.9125224294333 - ], - [ - -75.2485592470239, - 39.912622734077 - ], - [ - -75.2485111362469, - 39.9127397416189 - ], - [ - -75.2484338568748, - 39.9128561037046 - ], - [ - -75.2483792891076, - 39.9129504815034 - ], - [ - -75.2482961611292, - 39.9130273604737 - ], - [ - -75.2482134460722, - 39.9130930130024 - ], - [ - -75.2480569524774, - 39.9131795442924 - ], - [ - -75.2478335852856, - 39.9132983401428 - ], - [ - -75.247603530435, - 39.9134001320076 - ], - [ - -75.2474022540598, - 39.9135137870021 - ], - [ - -75.2472024126276, - 39.91358812656 - ], - [ - -75.2471184552892, - 39.9136874754365 - ], - [ - -75.2470709617305, - 39.913787629303 - ], - [ - -75.2470662055977, - 39.9139168181641 - ], - [ - -75.2471196045326, - 39.9140528987822 - ], - [ - -75.2472246674859, - 39.9141732405553 - ], - [ - -75.2473358800833, - 39.9143077089012 - ], - [ - -75.2474138805446, - 39.9144277300533 - ], - [ - -75.2474882279904, - 39.914542103268 - ], - [ - -75.247496815789, - 39.9145586437575 - ], - [ - -75.2475546402691, - 39.9145913775916 - ], - [ - -75.2476343859771, - 39.9146455649846 - ], - [ - -75.2477084265044, - 39.9147310995311 - ], - [ - -75.2477177917207, - 39.9148466852379 - ], - [ - -75.2476567052283, - 39.9149642382074 - ], - [ - -75.2475568039127, - 39.9150879266855 - ], - [ - -75.2474882697022, - 39.9152227963094 - ], - [ - -75.2473497509672, - 39.9154085851887 - ], - [ - -75.2471902043815, - 39.9156411179915 - ], - [ - -75.2471390249919, - 39.9157361548951 - ], - [ - -75.2470595344488, - 39.9158602975486 - ], - [ - -75.2469907886958, - 39.9159392105447 - ], - [ - -75.2469221710613, - 39.9160146394516 - ], - [ - -75.246844223493, - 39.916096856347 - ], - [ - -75.2467846141249, - 39.9161742207653 - ], - [ - -75.2467548760162, - 39.916241758764 - ], - [ - -75.2467660929848, - 39.916338157785 - ], - [ - -75.2467889371076, - 39.9164575337318 - ], - [ - -75.2468370639109, - 39.9165687310072 - ], - [ - -75.2468793041191, - 39.9167165062574 - ], - [ - -75.2469419408337, - 39.9168794940605 - ], - [ - -75.2469419725937, - 39.9168795848533 - ], - [ - -75.2469637419425, - 39.9169360028345 - ], - [ - -75.247003121786, - 39.9169761999284 - ], - [ - -75.2470419580062, - 39.9170006537793 - ], - [ - -75.247105326499, - 39.9170369956717 - ], - [ - -75.2471574181698, - 39.9170713524485 - ], - [ - -75.2471902830324, - 39.9171035415786 - ], - [ - -75.2472035264989, - 39.9171449160039 - ], - [ - -75.2472120290439, - 39.9171914307275 - ], - [ - -75.2471950587345, - 39.9172207750833 - ], - [ - -75.2471740531872, - 39.9172456254909 - ], - [ - -75.2472412233137, - 39.9174116853428 - ], - [ - -75.2473066640639, - 39.9176247302901 - ], - [ - -75.2473492615777, - 39.9177949478844 - ], - [ - -75.2473599481117, - 39.9180020944652 - ], - [ - -75.2473499640482, - 39.9184392191461 - ], - [ - -75.2473346926984, - 39.918688127856 - ], - [ - -75.2473359524026, - 39.9188198266487 - ], - [ - -75.2473925977072, - 39.9190232731516 - ], - [ - -75.247499194333, - 39.9192795449148 - ], - [ - -75.2475860608713, - 39.9194084088593 - ], - [ - -75.2476244594801, - 39.9195268085958 - ], - [ - -75.2476250278135, - 39.9196773050406 - ], - [ - -75.24759806961, - 39.9199118491441 - ], - [ - -75.2475829225562, - 39.9199914637823 - ], - [ - -75.2475296108106, - 39.9201125651885 - ], - [ - -75.2474891854478, - 39.9202151440715 - ], - [ - -75.2474785848512, - 39.9203371776225 - ], - [ - -75.2474678112168, - 39.9204639105862 - ], - [ - -75.2474629678766, - 39.9205954761687 - ], - [ - -75.2474703312115, - 39.9207273081625 - ], - [ - -75.2474701452109, - 39.9209812493102 - ], - [ - -75.2474625831229, - 39.921352591194 - ], - [ - -75.247487391779, - 39.921508319871 - ], - [ - -75.247518292619, - 39.9216641724877 - ], - [ - -75.2475161543302, - 39.9216882454344 - ], - [ - -75.2475078645177, - 39.921781515628 - ], - [ - -75.2474733806016, - 39.9218889183729 - ], - [ - -75.2473939115446, - 39.922056480771 - ], - [ - -75.2472917700284, - 39.9221765163758 - ], - [ - -75.247165398589, - 39.9222913288495 - ], - [ - -75.2470703980073, - 39.9223833009987 - ], - [ - -75.2469377379022, - 39.9225026701494 - ], - [ - -75.2466435772875, - 39.9227784129283 - ], - [ - -75.2465231227422, - 39.9228980480973 - ], - [ - -75.2463643273376, - 39.9230638779351 - ], - [ - -75.2462684591454, - 39.9231793464793 - ], - [ - -75.2461902089714, - 39.9233140124126 - ], - [ - -75.2461606024068, - 39.9234544436611 - ], - [ - -75.2461423374268, - 39.9236186385131 - ], - [ - -75.2461355875263, - 39.9238018885595 - ], - [ - -75.2461314334427, - 39.9239146654361 - ], - [ - -75.2460971076814, - 39.9240173680972 - ], - [ - -75.246074481159, - 39.9241344448008 - ], - [ - -75.2460337053244, - 39.9242464129857 - ], - [ - -75.2459925831323, - 39.9243677799786 - ], - [ - -75.2459465802789, - 39.9244561270489 - ], - [ - -75.245868327998, - 39.9245907927603 - ], - [ - -75.2457968599213, - 39.9247067938132 - ], - [ - -75.2457281085553, - 39.9248322695505 - ], - [ - -75.2456819038984, - 39.9248917712829 - ], - [ - -75.2456383405116, - 39.9249478708633 - ], - [ - -75.2455550218507, - 39.9250542155946 - ], - [ - -75.2454406651005, - 39.9251739829305 - ], - [ - -75.2452665379326, - 39.9254241159984 - ], - [ - -75.2452004907432, - 39.9255590478973 - ], - [ - -75.2451291933523, - 39.9256703581252 - ], - [ - -75.2450519771371, - 39.9257768268174 - ], - [ - -75.2449942840549, - 39.9258508086052 - ], - [ - -75.2448701417269, - 39.9259045259616 - ], - [ - -75.244764137104, - 39.9259633516458 - ], - [ - -75.2446279716594, - 39.9260121028862 - ], - [ - -75.2445219669911, - 39.9260709193438 - ], - [ - -75.2444032348095, - 39.9261435671932 - ], - [ - -75.2443378664385, - 39.9262597007031 - ], - [ - -75.2443035481454, - 39.9263624120822 - ], - [ - -75.2443326042542, - 39.9264853120013 - ], - [ - -75.2444145940741, - 39.9265811583597 - ], - [ - -75.2445094730628, - 39.9266584734948 - ], - [ - -75.2445788977837, - 39.9267634425683 - ], - [ - -75.244599491246, - 39.9268673537461 - ], - [ - -75.2445819261362, - 39.9270127509607 - ], - [ - -75.2445816217162, - 39.9271867444504 - ], - [ - -75.2445535691107, - 39.9272848805948 - ], - [ - -75.2444998881121, - 39.927415379143 - ], - [ - -75.2444282528652, - 39.9275360880056 - ], - [ - -75.2443440633021, - 39.9276659198946 - ], - [ - -75.2442717348892, - 39.9278054172909 - ], - [ - -75.2442011269321, - 39.9278979203013 - ], - [ - -75.2441233866515, - 39.9280184955929 - ], - [ - -75.2440571614181, - 39.9281581262367 - ], - [ - -75.244003412454, - 39.9283732715893 - ], - [ - -75.243987046813, - 39.9284857725973 - ], - [ - -75.2439686136633, - 39.9286546667548 - ], - [ - -75.2439688157615, - 39.9288145617589 - ], - [ - -75.2439734422096, - 39.9291861611517 - ], - [ - -75.2439688052798, - 39.9294776218284 - ], - [ - -75.243969855044, - 39.9296100820344 - ], - [ - -75.2439698853991, - 39.9296140200462 - ], - [ - -75.2439842130763, - 39.9297224976014 - ], - [ - -75.2440117886892, - 39.9298030454865 - ], - [ - -75.2441010873233, - 39.9298661293419 - ], - [ - -75.2441910791244, - 39.9299104154945 - ], - [ - -75.2442803777339, - 39.9299735082129 - ], - [ - -75.2443569491023, - 39.9300504143401 - ], - [ - -75.2444075444494, - 39.9301690906249 - ], - [ - -75.2444303366326, - 39.9302965568076 - ], - [ - -75.2443834498527, - 39.9304084000308 - ], - [ - -75.2442763989752, - 39.930495403706 - ], - [ - -75.2441330803467, - 39.9305722174301 - ], - [ - -75.2439526162035, - 39.9306623288481 - ], - [ - -75.243815389402, - 39.930739275312 - ], - [ - -75.2436959671913, - 39.9308307113076 - ], - [ - -75.2436377367777, - 39.9309187903743 - ], - [ - -75.2436070818675, - 39.9310874173921 - ], - [ - -75.2435600319166, - 39.9312039509375 - ], - [ - -75.2435182078986, - 39.9313441146596 - ], - [ - -75.2434769153132, - 39.9314701804004 - ], - [ - -75.2434363037757, - 39.9315774572451 - ], - [ - -75.243420109733, - 39.9316852587595 - ], - [ - -75.2434044352354, - 39.9317789710533 - ], - [ - -75.2434023558524, - 39.9318353549341 - ], - [ - -75.2433448291478, - 39.9319046364785 - ], - [ - -75.2432813712959, - 39.9319690851589 - ], - [ - -75.2431877378737, - 39.9320234768303 - ], - [ - -75.2431064749853, - 39.9320734266367 - ], - [ - -75.2430513066202, - 39.9321615723784 - ], - [ - -75.2429369335043, - 39.932281337205 - ], - [ - -75.2428462841308, - 39.9324204333505 - ], - [ - -75.2427240722359, - 39.932587058573 - ], - [ - -75.2426264511085, - 39.9327495091124 - ], - [ - -75.2425312560679, - 39.9328461858959 - ], - [ - -75.2424548941923, - 39.9329291648028 - ], - [ - -75.2423527276207, - 39.9330491959897 - ], - [ - -75.2422880540299, - 39.9331465399562 - ], - [ - -75.242241682273, - 39.9332442750806 - ], - [ - -75.2421712506658, - 39.9333320866869 - ], - [ - -75.242126785704, - 39.9333781373126 - ], - [ - -75.2420145011937, - 39.9334415176167 - ], - [ - -75.2418908625735, - 39.9334811425307 - ], - [ - -75.2417189199205, - 39.9335056012717 - ], - [ - -75.2415595216341, - 39.9335209187292 - ], - [ - -75.2413996142805, - 39.9335503434352 - ], - [ - -75.2411906977455, - 39.9335833900117 - ], - [ - -75.240975687878, - 39.9336163119153 - ], - [ - -75.2407615339248, - 39.9336257271432 - ], - [ - -75.2405182565903, - 39.9335968971392 - ], - [ - -75.2402458452927, - 39.9335298034566 - ], - [ - -75.240162943733, - 39.9335016801288 - ], - [ - -75.239904968621, - 39.9334141786384 - ], - [ - -75.2396147659934, - 39.9333325844265 - ], - [ - -75.2394227440895, - 39.9332390382074 - ], - [ - -75.2392858366563, - 39.9331419860464 - ], - [ - -75.2391133443185, - 39.9330159444262 - ], - [ - -75.2388574859255, - 39.9328316387385 - ], - [ - -75.2386541258636, - 39.9327143269036 - ], - [ - -75.2384976921713, - 39.9326497595707 - ], - [ - -75.2383157988896, - 39.9326128626543 - ], - [ - -75.2381279754219, - 39.9325711233452 - ], - [ - -75.2379523606278, - 39.932529660156 - ], - [ - -75.2377885960553, - 39.9324978536781 - ], - [ - -75.2375613791992, - 39.9325305017407 - ], - [ - -75.2374379136971, - 39.9325654134552 - ], - [ - -75.2373256144638, - 39.9326287889144 - ], - [ - -75.2372190719435, - 39.9327016968098 - ], - [ - -75.2371233480421, - 39.9328124672981 - ], - [ - -75.2370150678107, - 39.9329323599748 - ], - [ - -75.2369118490613, - 39.9330805826989 - ], - [ - -75.2367919906064, - 39.9332660573247 - ], - [ - -75.236719281494, - 39.9334149484833 - ], - [ - -75.2366591402745, - 39.9335547086209 - ], - [ - -75.2366440001693, - 39.9337989164546 - ], - [ - -75.2366490305529, - 39.9339065877345 - ], - [ - -75.2366508226093, - 39.933944847306 - ], - [ - -75.2366635758228, - 39.934095611334 - ], - [ - -75.2366531274119, - 39.934212944462 - ], - [ - -75.2366051827537, - 39.9343529718748 - ], - [ - -75.2365551644478, - 39.9345493832776 - ], - [ - -75.2365255330876, - 39.9346898120141 - ], - [ - -75.2364704404595, - 39.9348579019592 - ], - [ - -75.2363943629214, - 39.9351807197139 - ], - [ - -75.23632148911, - 39.9353343012653 - ], - [ - -75.2361718611362, - 39.9354156703768 - ], - [ - -75.2360150968701, - 39.9355251021074 - ], - [ - -75.2358647847758, - 39.9356252596538 - ], - [ - -75.2356658083973, - 39.9357196559513 - ], - [ - -75.2354600316458, - 39.9358327066349 - ], - [ - -75.2352655941751, - 39.9359695216313 - ], - [ - -75.2349810070638, - 39.9362313280365 - ], - [ - -75.2349219028911, - 39.9363428998962 - ], - [ - -75.2349236605984, - 39.936460500608 - ], - [ - -75.234918444025, - 39.9366014644149 - ], - [ - -75.2348479877856, - 39.9366892712631 - ], - [ - -75.2347750124338, - 39.9367629132034 - ], - [ - -75.2347457242736, - 39.9368939426878 - ], - [ - -75.2347888238323, - 39.9370500757193 - ], - [ - -75.2347834330148, - 39.9371957389121 - ], - [ - -75.234802275816, - 39.9373466367626 - ], - [ - -75.2348711864165, - 39.9374657101297 - ], - [ - -75.2349226402755, - 39.9375608936147 - ], - [ - -75.2349702689806, - 39.937759445733 - ], - [ - -75.2349774360403, - 39.9378959778865 - ], - [ - -75.2349846031289, - 39.9380325100391 - ], - [ - -75.2350051970345, - 39.9381364231761 - ], - [ - -75.2350756618782, - 39.9382132106214 - ], - [ - -75.2351647893713, - 39.938281000818 - ], - [ - -75.235297346925, - 39.9383309303501 - ], - [ - -75.2354914633496, - 39.9383681087383 - ], - [ - -75.2357834093619, - 39.9384027191686 - ], - [ - -75.2359477087468, - 39.9384204303204 - ], - [ - -75.2361486143163, - 39.9384389435783 - ], - [ - -75.2363491840621, - 39.938466855532 - ], - [ - -75.2365017953211, - 39.9384702001078 - ], - [ - -75.2366856146594, - 39.9384554155408 - ], - [ - -75.2368816437509, - 39.9384408982178 - ], - [ - -75.2371462048765, - 39.9383902654554 - ], - [ - -75.2374507949895, - 39.9383311025967 - ], - [ - -75.2376236196789, - 39.9382831622693 - ], - [ - -75.2377711562812, - 39.9382581747846 - ], - [ - -75.2379675319757, - 39.9382342568103 - ], - [ - -75.2381750752048, - 39.9382388022919 - ], - [ - -75.2383280213673, - 39.9382327543879 - ], - [ - -75.2384998035318, - 39.9382130001304 - ], - [ - -75.2387389131227, - 39.9381900166081 - ], - [ - -75.2388742389889, - 39.9381647693664 - ], - [ - -75.2390092295233, - 39.938148912018 - ], - [ - -75.2391860744676, - 39.9381574867875 - ], - [ - -75.2393384998696, - 39.9381655267337 - ], - [ - -75.2394546548146, - 39.9381633661458 - ], - [ - -75.2395648784466, - 39.9381563724135 - ], - [ - -75.2397113725745, - 39.9381595788374 - ], - [ - -75.2398210754538, - 39.9381666830616 - ], - [ - -75.2399243263247, - 39.9381830523763 - ], - [ - -75.2400390931462, - 39.9382184774033 - ], - [ - -75.240141476391, - 39.9382583435294 - ], - [ - -75.2402604276902, - 39.938345595091 - ], - [ - -75.240411753665, - 39.9384664682965 - ], - [ - -75.2405945633837, - 39.9386444685194 - ], - [ - -75.2407133427593, - 39.9387364100103 - ], - [ - -75.2407658585145, - 39.9388033947141 - ], - [ - -75.2407630826877, - 39.9388785761498 - ], - [ - -75.2407411243849, - 39.9389768539077 - ], - [ - -75.2407005043779, - 39.9390841207673 - ], - [ - -75.2406290236085, - 39.9392001278313 - ], - [ - -75.240546200554, - 39.9392923616903 - ], - [ - -75.2404267468925, - 39.9393838030158 - ], - [ - -75.240344096548, - 39.9394713463294 - ], - [ - -75.2402424370608, - 39.9395772774179 - ], - [ - -75.2401456674072, - 39.9397162378213 - ], - [ - -75.2400185456732, - 39.9398498307351 - ], - [ - -75.2399529944255, - 39.9399706703794 - ], - [ - -75.2399064530236, - 39.9400433082697 - ], - [ - -75.2398816853549, - 39.9400819685721 - ], - [ - -75.2397988598795, - 39.9401742108928 - ], - [ - -75.2396379850228, - 39.9403117679039 - ], - [ - -75.2395293500823, - 39.9404410617391 - ], - [ - -75.2394128852334, - 39.9406172160951 - ], - [ - -75.2394017461296, - 39.9407533470604 - ], - [ - -75.2394329840616, - 39.9408998120091 - ], - [ - -75.2394645810349, - 39.9410368784045 - ], - [ - -75.2394963400434, - 39.9411692451345 - ], - [ - -75.2395645683449, - 39.941307113275 - ], - [ - -75.2396333060117, - 39.9414308829172 - ], - [ - -75.2397369392608, - 39.9416024482316 - ], - [ - -75.2398480552052, - 39.9417365516013 - ], - [ - -75.2399886680097, - 39.9418995195467 - ], - [ - -75.2400764167116, - 39.9420049011303 - ], - [ - -75.2401524761947, - 39.9420959082511 - ], - [ - -75.2402543450176, - 39.9421498634743 - ], - [ - -75.2403692919219, - 39.9421805977698 - ], - [ - -75.2405213794144, - 39.9421980349469 - ], - [ - -75.2407919873728, - 39.942232174372 - ], - [ - -75.2409561124495, - 39.9422545684935 - ], - [ - -75.2411814634874, - 39.9422736073983 - ], - [ - -75.2414498867988, - 39.9422841814879 - ], - [ - -75.2415850583749, - 39.9422636217068 - ], - [ - -75.2418299275203, - 39.9422501728159 - ], - [ - -75.2420376566994, - 39.9422500119059 - ], - [ - -75.2422940429231, - 39.9422556176266 - ], - [ - -75.2426109620579, - 39.9422766466435 - ], - [ - -75.2430686257115, - 39.9422913536661 - ], - [ - -75.2431776305059, - 39.9423172520467 - ], - [ - -75.2433356626582, - 39.9423395185883 - ], - [ - -75.2434172098435, - 39.9424059561054 - ], - [ - -75.2434364943671, - 39.9424216674217 - ], - [ - -75.2435331276319, - 39.9424519892824 - ], - [ - -75.2438464634728, - 39.9424870551447 - ], - [ - -75.2440716428001, - 39.9425107877794 - ], - [ - -75.2444119335703, - 39.9425605415514 - ], - [ - -75.2446610031082, - 39.9425989044671 - ], - [ - -75.2450150757681, - 39.942606637746 - ], - [ - -75.245228207128, - 39.9426253927711 - ], - [ - -75.2454116890755, - 39.9426200020439 - ], - [ - -75.2455644832916, - 39.9426186351547 - ], - [ - -75.2457418602172, - 39.9426131015898 - ], - [ - -75.2458887105716, - 39.9426069013062 - ], - [ - -75.246053357362, - 39.942615198909 - ], - [ - -75.2461935946465, - 39.9426229634396 - ], - [ - -75.2463512708664, - 39.9426546153897 - ], - [ - -75.2464726729473, - 39.9426760780138 - ], - [ - -75.2465691344779, - 39.9427111057307 - ], - [ - -75.2466645577674, - 39.9427743208295 - ], - [ - -75.2467467319334, - 39.942865465828 - ], - [ - -75.2468249884731, - 39.9429800322008 - ], - [ - -75.2468740401987, - 39.9431409930685 - ], - [ - -75.2469668683226, - 39.9432746900811 - ], - [ - -75.2470237685674, - 39.9433887902575 - ], - [ - -75.2470301188886, - 39.9434191391594 - ], - [ - -75.2470445438915, - 39.9434880015551 - ], - [ - -75.2470538125239, - 39.9435681490033 - ], - [ - -75.2471103669931, - 39.943691647959 - ], - [ - -75.2472121073488, - 39.943914890782 - ], - [ - -75.2473059752889, - 39.9440204000508 - ], - [ - -75.2473806738746, - 39.9441489979255 - ], - [ - -75.2474239684222, - 39.9443004265201 - ], - [ - -75.2475113859665, - 39.9444151922331 - ], - [ - -75.2476354363819, - 39.9445307660682 - ], - [ - -75.2477589567308, - 39.9446604287484 - ], - [ - -75.2479004597091, - 39.9447998899251 - ], - [ - -75.2480936754919, - 39.9449451820613 - ], - [ - -75.2481699216812, - 39.9450314934511 - ], - [ - -75.2482154673607, - 39.9451218383779 - ], - [ - -75.2482352189234, - 39.9452492371873 - ], - [ - -75.2483226390576, - 39.94536400228 - ], - [ - -75.2484163377248, - 39.9454742100506 - ], - [ - -75.2485654945243, - 39.9455715085845 - ], - [ - -75.2487078656142, - 39.9456874806978 - ], - [ - -75.2488975139473, - 39.945846803149 - ], - [ - -75.2490810578809, - 39.9460059831639 - ], - [ - -75.2492461124968, - 39.9461694719704 - ], - [ - -75.2494296577868, - 39.9463286604293 - ], - [ - -75.2494952522402, - 39.9463724099999 - ], - [ - -75.2495550866321, - 39.9464066366112 - ], - [ - -75.2496154515331, - 39.946426765201 - ], - [ - -75.2497117474264, - 39.9464664806854 - ], - [ - -75.2498125929631, - 39.9465486239081 - ], - [ - -75.2499191869307, - 39.9466402986934 - ], - [ - -75.249968146341, - 39.9467213108829 - ], - [ - -75.2500375999835, - 39.9468262766152 - ], - [ - -75.2501173635274, - 39.9469832020084 - ], - [ - -75.2501549177142, - 39.9471250979223 - ], - [ - -75.2502050175895, - 39.9472578608575 - ], - [ - -75.2502303606161, - 39.9473994906253 - ], - [ - -75.2502722805843, - 39.947588513462 - ], - [ - -75.2503098354289, - 39.9477304093233 - ], - [ - -75.2503417915558, - 39.9478580736165 - ], - [ - -75.25036748083, - 39.9479903045202 - ], - [ - -75.2504182728917, - 39.9481042786984 - ], - [ - -75.2504762201478, - 39.9481901806547 - ], - [ - -75.2505590974001, - 39.9482625252478 - ], - [ - -75.2507255434853, - 39.9483884255907 - ], - [ - -75.2510653505937, - 39.9487014904858 - ], - [ - -75.2511948294947, - 39.9488359911444 - ], - [ - -75.2513190556816, - 39.9489468523115 - ], - [ - -75.2514438120329, - 39.9490436243486 - ], - [ - -75.2515082008499, - 39.9491202686887 - ], - [ - -75.251559007697, - 39.9492342336113 - ], - [ - -75.2515697120041, - 39.9494413796908 - ], - [ - -75.2515195530449, - 39.949642496976 - ], - [ - -75.2514144397342, - 39.9498424262936 - ], - [ - -75.2513117451351, - 39.9499765636724 - ], - [ - -75.2512448220181, - 39.9501349960782 - ], - [ - -75.2511968961909, - 39.9502750295445 - ], - [ - -75.2511547425727, - 39.950424586086 - ], - [ - -75.2511519203208, - 39.9505844147626 - ], - [ - -75.2511419261124, - 39.9506900096314 - ], - [ - -75.2511756130694, - 39.9507706885176 - ], - [ - -75.2512693532584, - 39.9509631822413 - ], - [ - -75.2513511978815, - 39.9510637227605 - ], - [ - -75.2514274554025, - 39.9511500229717 - ], - [ - -75.2514930671613, - 39.9511937806531 - ], - [ - -75.2515439207901, - 39.9512230983161 - ], - [ - -75.2515872973866, - 39.9512898875682 - ], - [ - -75.2516109623804, - 39.9513938549305 - ], - [ - -75.2516113150687, - 39.9515090725217 - ], - [ - -75.2516281078522, - 39.951634063531 - ], - [ - -75.2516480287969, - 39.9517567620628 - ], - [ - -75.2516505066748, - 39.9518555738126 - ], - [ - -75.2516465331497, - 39.9519636424114 - ], - [ - -75.2516156862934, - 39.9520546736223 - ], - [ - -75.2515790904681, - 39.9521361732579 - ], - [ - -75.2515137957599, - 39.9522499610926 - ], - [ - -75.2514125437133, - 39.9523864816381 - ], - [ - -75.2512842971147, - 39.9525506332106 - ], - [ - -75.2511881364521, - 39.9526731549308 - ], - [ - -75.2511544200692, - 39.9527594203503 - ], - [ - -75.2511538441463, - 39.9528581656039 - ], - [ - -75.2511809077992, - 39.9529528007224 - ], - [ - -75.2512082421303, - 39.9530403959666 - ], - [ - -75.251184710244, - 39.9530986641483 - ], - [ - -75.2511515121306, - 39.953170831316 - ], - [ - -75.2511032093956, - 39.9532379662731 - ], - [ - -75.2510503327044, - 39.9533050015759 - ], - [ - -75.2509245894157, - 39.9534010202063 - ], - [ - -75.2507924057965, - 39.9535062957544 - ], - [ - -75.2506506181191, - 39.9536231288835 - ], - [ - -75.2504902637174, - 39.9537466030799 - ], - [ - -75.250354322351, - 39.9538706090078 - ], - [ - -75.2501390375136, - 39.954075182524 - ], - [ - -75.2500503619126, - 39.954160250032 - ], - [ - -75.2500061242753, - 39.954241582699 - ], - [ - -75.249956707406, - 39.9543392636232 - ], - [ - -75.2498907869041, - 39.9543872014431 - ], - [ - -75.2498399476359, - 39.9544401710841 - ], - [ - -75.2498008887434, - 39.9545051554025 - ], - [ - -75.2497706552056, - 39.9545797384163 - ], - [ - -75.2497497424298, - 39.9546498213793 - ], - [ - -75.249762587762, - 39.9547159368882 - ], - [ - -75.2497697590295, - 39.9547701707766 - ], - [ - -75.2497520719997, - 39.9548356298695 - ], - [ - -75.2496976878195, - 39.9549849194367 - ], - [ - -75.2496152929672, - 39.9551900456978 - ], - [ - -75.2495978654222, - 39.9552484466424 - ], - [ - -75.2495593246653, - 39.9552993326349 - ], - [ - -75.2494959373369, - 39.9553614350162 - ], - [ - -75.2494246005356, - 39.9553904508162 - ], - [ - -75.2493595317306, - 39.9554148910055 - ], - [ - -75.2492827801999, - 39.9554249759571 - ], - [ - -75.2492364745, - 39.9554380761258 - ], - [ - -75.2492015055083, - 39.955474930313 - ], - [ - -75.2491661037183, - 39.9555235420258 - ], - [ - -75.2491457206464, - 39.9555795268919 - ], - [ - -75.2491242015067, - 39.9556660576861 - ], - [ - -75.2491373567095, - 39.9557650933062 - ], - [ - -75.2491766430898, - 39.9558600043818 - ], - [ - -75.2492194035611, - 39.9559432332112 - ], - [ - -75.2492642781136, - 39.9560523666063 - ], - [ - -75.249276592644, - 39.9561325801531 - ], - [ - -75.2492365061279, - 39.956225761013 - ], - [ - -75.2491163428196, - 39.9563360000044 - ], - [ - -75.2490474526717, - 39.9563815300746 - ], - [ - -75.2489904182045, - 39.9564367159217 - ], - [ - -75.2489596639529, - 39.9565253969577 - ], - [ - -75.2489280332999, - 39.9566375657924 - ], - [ - -75.2489496563219, - 39.9567555987751 - ], - [ - -75.2490078829224, - 39.9569167583722 - ], - [ - -75.2490671326135, - 39.9569674334307 - ], - [ - -75.2491964988505, - 39.9570219794807 - ], - [ - -75.2493167170712, - 39.9570763259793 - ], - [ - -75.2494033490738, - 39.9571299402923 - ], - [ - -75.2495107393353, - 39.9572055046678 - ], - [ - -75.2495343972983, - 39.9572221480764 - ], - [ - -75.2496404140286, - 39.9573302713022 - ], - [ - -75.2497801792295, - 39.9574344177171 - ], - [ - -75.2500391033394, - 39.9576634343142 - ], - [ - -75.2501807128259, - 39.9578005426764 - ], - [ - -75.2502449356121, - 39.9578818871249 - ], - [ - -75.2503619579654, - 39.9580231626984 - ], - [ - -75.25046501035, - 39.958128868927 - ], - [ - -75.250561697342, - 39.9582414821422 - ], - [ - -75.2506681494841, - 39.9583378558778 - ], - [ - -75.2507378750541, - 39.9584357810384 - ], - [ - -75.2507952147919, - 39.9585381305128 - ], - [ - -75.2508416140977, - 39.9586473054168 - ], - [ - -75.250878024333, - 39.9587374409719 - ], - [ - -75.2508842461789, - 39.9588175215716 - ], - [ - -75.2508945752248, - 39.9589517782194 - ], - [ - -75.2508854557245, - 39.9590338672193 - ], - [ - -75.2508521562632, - 39.9591083837433 - ], - [ - -75.2507553520013, - 39.9591650557538 - ], - [ - -75.2506086558079, - 39.9592488598768 - ], - [ - -75.2504560370237, - 39.9593278316056 - ], - [ - -75.2502942576453, - 39.9594066035488 - ], - [ - -75.2500833638505, - 39.9594913598644 - ], - [ - -75.2498279417116, - 39.9595821912164 - ], - [ - -75.2496543796747, - 39.9596489475615 - ], - [ - -75.2495550387528, - 39.9596914627757 - ], - [ - -75.2494454999789, - 39.9597619657313 - ], - [ - -75.2493200887508, - 39.9598485747592 - ], - [ - -75.2492162356009, - 39.9599309593906 - ], - [ - -75.2491251032149, - 39.9599995116697 - ], - [ - -75.2489754362657, - 39.9600808974381 - ], - [ - -75.248838847771, - 39.960139052215 - ], - [ - -75.2486926778597, - 39.9602087559045 - ], - [ - -75.2485495610992, - 39.9602785259818 - ], - [ - -75.2484616423617, - 39.9603424446404 - ], - [ - -75.2483864433329, - 39.9604348596879 - ], - [ - -75.2483372674952, - 39.9605254905276 - ], - [ - -75.248284530955, - 39.960630144252 - ], - [ - -75.2482012592129, - 39.9607341411257 - ], - [ - -75.2480608620543, - 39.9608956640208 - ], - [ - -75.247977330043, - 39.9610067098482 - ], - [ - -75.247925186295, - 39.9610949242152 - ], - [ - -75.2478941692658, - 39.9611906450693 - ], - [ - -75.2478745388089, - 39.9613501072429 - ], - [ - -75.2478743041992, - 39.961439453638 - ], - [ - -75.247868914498, - 39.9615028200893 - ], - [ - -75.2478431388291, - 39.9616221711668 - ], - [ - -75.2478250157917, - 39.961699369476 - ], - [ - -75.2478100327709, - 39.9617742846706 - ], - [ - -75.2477768151363, - 39.9618464505918 - ], - [ - -75.2477437822166, - 39.9619139173477 - ], - [ - -75.2477105644434, - 39.9619860832495 - ], - [ - -75.2477045687337, - 39.9620658976289 - ], - [ - -75.2477295041935, - 39.9621769573093 - ], - [ - -75.2477640699213, - 39.9622341403777 - ], - [ - -75.2477795355842, - 39.9623120712178 - ], - [ - -75.247755676235, - 39.9624620347811 - ], - [ - -75.2476939258428, - 39.9628110303115 - ], - [ - -75.2476900589945, - 39.9628266863316 - ], - [ - -75.2476616094964, - 39.9629419966764 - ], - [ - -75.2476074488711, - 39.9630019478351 - ], - [ - -75.2474912512795, - 39.9631287330683 - ], - [ - -75.2474214013738, - 39.9632000999073 - ], - [ - -75.2474009163057, - 39.9632584339027 - ], - [ - -75.2474072210245, - 39.9633361649768 - ], - [ - -75.2474375100035, - 39.9634261771514 - ], - [ - -75.2474823000816, - 39.9635376609282 - ], - [ - -75.2475668616415, - 39.9636476695387 - ], - [ - -75.2476870168114, - 39.9637866644596 - ], - [ - -75.2477811725716, - 39.9638851241764 - ], - [ - -75.2479056920207, - 39.9639889401391 - ], - [ - -75.2480595612134, - 39.9640839986007 - ], - [ - -75.2486176897071, - 39.9643618616031 - ], - [ - -75.2489699880923, - 39.964503564215 - ], - [ - -75.2494673455997, - 39.9647307238316 - ], - [ - -75.2498515949047, - 39.9649178001988 - ], - [ - -75.2499143268552, - 39.9649567835579 - ], - [ - -75.2499918080506, - 39.9650102068054 - ], - [ - -75.2500575073662, - 39.9650516063286 - ], - [ - -75.2501360380555, - 39.9650768332514 - ], - [ - -75.2502243233401, - 39.9650858115056 - ], - [ - -75.2503162675243, - 39.9650784082697 - ], - [ - -75.2504495399569, - 39.9650272340848 - ], - [ - -75.2506079447823, - 39.9649577944987 - ], - [ - -75.2507602302643, - 39.9648882214086 - ], - [ - -75.2509160648555, - 39.9648469354978 - ], - [ - -75.2510506617211, - 39.9648428122729 - ], - [ - -75.251104763263, - 39.9648675064707 - ], - [ - -75.2512036212565, - 39.9649213854377 - ], - [ - -75.2512858282925, - 39.9650125271389 - ], - [ - -75.2513443839916, - 39.965081989416 - ], - [ - -75.2513389108143, - 39.9651477057321 - ], - [ - -75.2513430307661, - 39.9652018730083 - ], - [ - -75.2513714933878, - 39.9652589309888 - ], - [ - -75.2514306543266, - 39.9653119452667 - ], - [ - -75.2514996677449, - 39.9653463613377 - ], - [ - -75.2516059299945, - 39.9653651363324 - ], - [ - -75.2517101755443, - 39.965355648242 - ], - [ - -75.2518146799539, - 39.9653391199352 - ], - [ - -75.2519251191993, - 39.9653274149155 - ], - [ - -75.2520967067125, - 39.9653146894355 - ], - [ - -75.2523375141136, - 39.9652893699916 - ], - [ - -75.2526380353062, - 39.9652606375825 - ], - [ - -75.2528460822132, - 39.965253407722 - ], - [ - -75.2529747568429, - 39.9652444501579 - ], - [ - -75.2530794334997, - 39.9652232212814 - ], - [ - -75.2532241419469, - 39.9651934480674 - ], - [ - -75.2533173261801, - 39.9652354527705 - ], - [ - -75.2534107699137, - 39.9652703992671 - ], - [ - -75.2535850437752, - 39.9653094649619 - ], - [ - -75.253715390971, - 39.9653381593565 - ], - [ - -75.2539392567654, - 39.9653994587077 - ], - [ - -75.2540488324477, - 39.9654112487419 - ], - [ - -75.2541434850368, - 39.9654133077069 - ], - [ - -75.2542253722457, - 39.9653469018936 - ], - [ - -75.2543041192929, - 39.9652827793108 - ], - [ - -75.2543400400763, - 39.9652200767672 - ], - [ - -75.2543828450035, - 39.9651363596591 - ], - [ - -75.2544591421909, - 39.9650557225802 - ], - [ - -75.2545467044377, - 39.9650011979211 - ], - [ - -75.2546346980875, - 39.9649349246437 - ], - [ - -75.254741358763, - 39.9648596509143 - ], - [ - -75.2549401347398, - 39.9647722797272 - ], - [ - -75.2551153982311, - 39.964700849048 - ], - [ - -75.2552695361966, - 39.9646642235746 - ], - [ - -75.2554110159472, - 39.9646390896319 - ], - [ - -75.2555467454258, - 39.964604415147 - ], - [ - -75.2556890876671, - 39.9645557837515 - ], - [ - -75.2558140684588, - 39.9644809073273 - ], - [ - -75.2558550481534, - 39.964446524347 - ], - [ - -75.2558941069704, - 39.9643815379839 - ], - [ - -75.2559696251614, - 39.9643220473007 - ], - [ - -75.2560852717898, - 39.9642516708733 - ], - [ - -75.256195414688, - 39.9641647136076 - ], - [ - -75.2562837506491, - 39.9640890402183 - ], - [ - -75.2563854217981, - 39.9639830949749 - ], - [ - -75.25658881869, - 39.9638111643655 - ], - [ - -75.256689626587, - 39.9637287159702 - ], - [ - -75.2567488525235, - 39.9636970807793 - ], - [ - -75.2568195050652, - 39.9636868581283 - ], - [ - -75.2569021995742, - 39.9636816002658 - ], - [ - -75.2569841180379, - 39.9636974897528 - ], - [ - -75.2571293864327, - 39.9637359198694 - ], - [ - -75.2572536993921, - 39.9637621275885 - ], - [ - -75.2573385854377, - 39.9637804328773 - ], - [ - -75.2574212800205, - 39.9637751746407 - ], - [ - -75.257489321338, - 39.9637531459339 - ], - [ - -75.2575457402291, - 39.963714394604 - ], - [ - -75.2576327810506, - 39.9636739658639 - ], - [ - -75.2577073490551, - 39.9636403118723 - ], - [ - -75.2577909167871, - 39.9636115654994 - ], - [ - -75.2578614828877, - 39.9636036919197 - ], - [ - -75.2579367774352, - 39.9636335373481 - ], - [ - -75.2579959417503, - 39.9636865572466 - ], - [ - -75.2580165973844, - 39.9637481380703 - ], - [ - -75.2580154283373, - 39.9638633223193 - ], - [ - -75.2580164510072, - 39.964002070019 - ], - [ - -75.2579943488558, - 39.9641050507026 - ], - [ - -75.2579644531104, - 39.9641702367518 - ], - [ - -75.2579464270851, - 39.9642450869409 - ], - [ - -75.2579470676419, - 39.9643109362213 - ], - [ - -75.2579778998705, - 39.9643868475884 - ], - [ - -75.2580107025389, - 39.9644087242998 - ], - [ - -75.2580615805688, - 39.964438039319 - ], - [ - -75.2581220384947, - 39.9644558134579 - ], - [ - -75.2581921745084, - 39.9644596882397 - ], - [ - -75.258274611305, - 39.9644614785273 - ], - [ - -75.2583419639244, - 39.9644582380172 - ], - [ - -75.2584090463048, - 39.964462046353 - ], - [ - -75.2584720409396, - 39.9644939848981 - ], - [ - -75.2585129827126, - 39.9645442482055 - ], - [ - -75.2585496527718, - 39.9646273409218 - ], - [ - -75.2585937047352, - 39.9647176396576 - ], - [ - -75.2586404952173, - 39.9647750936751 - ], - [ - -75.2586864127244, - 39.9648560355501 - ], - [ - -75.2587087743597, - 39.9649129500999 - ], - [ - -75.2587156953404, - 39.9649742325553 - ], - [ - -75.2587183563128, - 39.9650683446938 - ], - [ - -75.2587147760613, - 39.9652493119169 - ], - [ - -75.2587025132766, - 39.965333693683 - ], - [ - -75.2587127464897, - 39.9653879933018 - ], - [ - -75.2587407848709, - 39.9654567890182 - ], - [ - -75.2587688116089, - 39.9655255844736 - ], - [ - -75.258800420796, - 39.965580348197 - ], - [ - -75.2588416099285, - 39.9656235709943 - ], - [ - -75.2588923169017, - 39.9656575850711 - ], - [ - -75.2589768611187, - 39.9656852880009 - ], - [ - -75.2590801584151, - 39.965701640065 - ], - [ - -75.2592174655776, - 39.9657069724107 - ], - [ - -75.2593366345237, - 39.9657072076979 - ], - [ - -75.2594032013242, - 39.9657251137352 - ], - [ - -75.2594259945662, - 39.9657702795747 - ], - [ - -75.2594302071463, - 39.9658220968457 - ], - [ - -75.2594303322915, - 39.965902044398 - ], - [ - -75.2594527810375, - 39.9659566090874 - ], - [ - -75.2595543560633, - 39.9660199550015 - ], - [ - -75.2596510183772, - 39.9660502630159 - ], - [ - -75.2597809385643, - 39.9660907080937 - ], - [ - -75.2599111176193, - 39.9661240948791 - ], - [ - -75.260067046189, - 39.9662050719599 - ], - [ - -75.2603122966871, - 39.9662668227495 - ], - [ - -75.2604805175545, - 39.9663191351964 - ], - [ - -75.2604928241455, - 39.9663229701295 - ], - [ - -75.2605859980794, - 39.966282654167 - ], - [ - -75.2606640794493, - 39.9662790593847 - ], - [ - -75.260753086938, - 39.9662898110833 - ], - [ - -75.2608314269255, - 39.96627915804 - ], - [ - -75.2609356027803, - 39.9662514330387 - ], - [ - -75.2610289053222, - 39.9662075966455 - ], - [ - -75.2611182671129, - 39.9661460333257 - ], - [ - -75.2611638578488, - 39.9660905752563 - ], - [ - -75.2612186096752, - 39.96603531588 - ], - [ - -75.261286140352, - 39.9660067957114 - ], - [ - -75.2613891420366, - 39.9660107866987 - ], - [ - -75.2614476739193, - 39.9660402841823 - ], - [ - -75.2614827046289, - 39.9660851383603 - ], - [ - -75.2615499989381, - 39.9661254034451 - ], - [ - -75.2616641929247, - 39.9661684515332 - ], - [ - -75.2617390124113, - 39.9661912473387 - ], - [ - -75.2618143486502, - 39.9661999357991 - ], - [ - -75.261895292694, - 39.9661805178209 - ], - [ - -75.2620158198978, - 39.9661443257395 - ], - [ - -75.2620955145946, - 39.966096670562 - ], - [ - -75.2621059022561, - 39.9660633789998 - ], - [ - -75.2621190994317, - 39.9660160388647 - ], - [ - -75.2621412642167, - 39.9659741819755 - ], - [ - -75.262165129571, - 39.9659482373835 - ], - [ - -75.2622452113084, - 39.965890003879 - ], - [ - -75.2622732418278, - 39.965862870169 - ], - [ - -75.2622753053445, - 39.9658608786736 - ], - [ - -75.2622756575036, - 39.9658605349231 - ], - [ - -75.2623450236976, - 39.9657933834898 - ], - [ - -75.262385651129, - 39.9657484039744 - ], - [ - -75.2624246190677, - 39.9656857471018 - ], - [ - -75.2624605953627, - 39.9656424326633 - ], - [ - -75.2625141194985, - 39.9656206628751 - ], - [ - -75.26256202477, - 39.965626990228 - ], - [ - -75.2626201731598, - 39.9656353055546 - ], - [ - -75.2626816321582, - 39.9656472244955 - ], - [ - -75.2627684222376, - 39.9656561606351 - ], - [ - -75.262839752362, - 39.965648886166 - ], - [ - -75.2629210823952, - 39.9656188982416 - ], - [ - -75.262963474714, - 39.9655880662738 - ], - [ - -75.2630317141189, - 39.9655401531645 - ], - [ - -75.2630952378388, - 39.9654956696837 - ], - [ - -75.2631466619083, - 39.9654685652851 - ], - [ - -75.2631971829625, - 39.9654661283873 - ], - [ - -75.2632538620681, - 39.9654832322304 - ], - [ - -75.2632720743845, - 39.9654933486137 - ], - [ - -75.2633100368458, - 39.9655144345996 - ], - [ - -75.2633864927792, - 39.9655548971518 - ], - [ - -75.2634701506808, - 39.9655867040553 - ], - [ - -75.2635333227225, - 39.9656145260732 - ], - [ - -75.2636175616711, - 39.9656304610265 - ], - [ - -75.2636980524649, - 39.9656233935456 - ], - [ - -75.2637731976971, - 39.9656056145521 - ], - [ - -75.2638572075916, - 39.9655650974259 - ], - [ - -75.2639315400247, - 39.9655384890506 - ], - [ - -75.2639925236965, - 39.9655010047914 - ], - [ - -75.2640190039028, - 39.9654662958087 - ], - [ - -75.2640592958105, - 39.9654301291376 - ], - [ - -75.2641344021733, - 39.965382364172 - ], - [ - -75.2642443871147, - 39.9653212453074 - ], - [ - -75.2643752979688, - 39.9652517589898 - ], - [ - -75.2644985020865, - 39.9652050447505 - ], - [ - -75.2645563537071, - 39.9651904225138 - ], - [ - -75.2646458119376, - 39.9651888284236 - ], - [ - -75.2647602782024, - 39.9651930737511 - ], - [ - -75.2649216963916, - 39.9651983358835 - ], - [ - -75.2650614289345, - 39.9652013622004 - ], - [ - -75.2652557413057, - 39.9652161479222 - ], - [ - -75.2653903718937, - 39.965233172827 - ], - [ - -75.2654510575988, - 39.9652662377501 - ], - [ - -75.2655301669447, - 39.9653596803554 - ], - [ - -75.2655694640703, - 39.9654134462915 - ], - [ - -75.2656589969206, - 39.9655353334463 - ], - [ - -75.2657470102133, - 39.965636023413 - ], - [ - -75.2658079158009, - 39.9657255307905 - ], - [ - -75.2658601873006, - 39.9658007507395 - ], - [ - -75.2659241710463, - 39.9658691694913 - ], - [ - -75.266051265512, - 39.9659354225981 - ], - [ - -75.2661964498886, - 39.965977371075 - ], - [ - -75.2663166256368, - 39.9660134892282 - ], - [ - -75.2663986370225, - 39.9660276079609 - ], - [ - -75.2665475325165, - 39.9660308307653 - ], - [ - -75.2667102926201, - 39.966030830582 - ], - [ - -75.2667978453535, - 39.9660186069448 - ], - [ - -75.2669125063106, - 39.9660175655077 - ], - [ - -75.2670265233171, - 39.9660341423511 - ], - [ - -75.267140913762, - 39.9660719003718 - ], - [ - -75.267217759206, - 39.9661017821314 - ], - [ - -75.2672956095266, - 39.9661669682578 - ], - [ - -75.2673672362044, - 39.96621437833 - ], - [ - -75.2673847602546, - 39.9662231637091 - ], - [ - -75.2674775434673, - 39.9662696799844 - ], - [ - -75.2675344291331, - 39.9662814973473 - ], - [ - -75.2676008508808, - 39.9662829343896 - ], - [ - -75.2676733151068, - 39.9663074322506 - ], - [ - -75.2677817918991, - 39.9663503504741 - ], - [ - -75.2679125864813, - 39.9664096267736 - ], - [ - -75.2681327642197, - 39.966500821184 - ], - [ - -75.2683951276478, - 39.9665982163461 - ], - [ - -75.2684628243437, - 39.9666279083891 - ], - [ - -75.2685166330612, - 39.9666608229006 - ], - [ - -75.268570196044, - 39.9667007868018 - ], - [ - -75.2687038930387, - 39.9668059851881 - ], - [ - -75.2687749419908, - 39.9668692572466 - ], - [ - -75.2688497404268, - 39.9669555494699 - ], - [ - -75.2689196309723, - 39.9670505471711 - ], - [ - -75.2690191223255, - 39.9672449690928 - ], - [ - -75.2690470975634, - 39.9672949570787 - ], - [ - -75.2690821453077, - 39.9673398181912 - ], - [ - -75.2691268579606, - 39.9673707697912 - ], - [ - -75.2691607714495, - 39.9673838465587 - ], - [ - -75.2692086782541, - 39.9673901801397 - ], - [ - -75.2692747909683, - 39.9674004301708 - ], - [ - -75.2693592264509, - 39.9674110762872 - ], - [ - -75.2694468445893, - 39.9673970950909 - ], - [ - -75.2695000463738, - 39.9673841267485 - ], - [ - -75.2695512119297, - 39.9673640686455 - ], - [ - -75.2696162542095, - 39.9673407786242 - ], - [ - -75.269671813281, - 39.9673261042365 - ], - [ - -75.2697429511467, - 39.9673241191027 - ], - [ - -75.2698044132505, - 39.967336025226 - ], - [ - -75.2698588023117, - 39.9673530762367 - ], - [ - -75.2699216565135, - 39.9673897174462 - ], - [ - -75.269963573322, - 39.9674347177353 - ], - [ - -75.2700051680986, - 39.9674885407188 - ], - [ - -75.2700334543668, - 39.9675614652835 - ], - [ - -75.2700572707776, - 39.9676625301602 - ], - [ - -75.2700751202821, - 39.9677387610102 - ], - [ - -75.2701006743876, - 39.9677922282584 - ], - [ - -75.2701432761344, - 39.9678813465805 - ], - [ - -75.2701944603851, - 39.9679865257538 - ], - [ - -75.2703003864263, - 39.9681934290337 - ], - [ - -75.2703916340083, - 39.9683312246671 - ], - [ - -75.2704040952669, - 39.9683667765919 - ], - [ - -75.2704152700277, - 39.9684375743438 - ], - [ - -75.2704248476306, - 39.9684889303267 - ], - [ - -75.2704506068862, - 39.9685371131251 - ], - [ - -75.2705035173864, - 39.9685947032849 - ], - [ - -75.2705726740393, - 39.9686473556772 - ], - [ - -75.2706016801333, - 39.9686691466182 - ], - [ - -75.2706061755959, - 39.9686704600876 - ], - [ - -75.2706538415507, - 39.9686843831557 - ], - [ - -75.2707204702853, - 39.9686805340213 - ], - [ - -75.270775772948, - 39.968672908266 - ], - [ - -75.2708406755666, - 39.9686531463835 - ], - [ - -75.2709149445764, - 39.9686282890272 - ], - [ - -75.2709888918956, - 39.9686122453321 - ], - [ - -75.2710459729792, - 39.9686187763293 - ], - [ - -75.2711120754653, - 39.9686290250489 - ], - [ - -75.2711711812895, - 39.9686426454389 - ], - [ - -75.27124345616, - 39.9686724346719 - ], - [ - -75.2713306906448, - 39.9687007720662 - ], - [ - -75.2714104770552, - 39.9687130821375 - ], - [ - -75.2714928143291, - 39.9687183835185 - ], - [ - -75.271593474403, - 39.9687240896098 - ], - [ - -75.2717006932222, - 39.9687387489167 - ], - [ - -75.2718051567963, - 39.9687657011386 - ], - [ - -75.2718652701008, - 39.9688146255473 - ], - [ - -75.2719251903851, - 39.9688688435533 - ], - [ - -75.2719886048057, - 39.9689531127966 - ], - [ - -75.2720260657036, - 39.9689944931954 - ], - [ - -75.2720893084529, - 39.969020554961 - ], - [ - -75.2721991844477, - 39.9690564443462 - ], - [ - -75.2723464798696, - 39.9691037191878 - ], - [ - -75.2725078975408, - 39.9691407211753 - ], - [ - -75.2726276967891, - 39.9691874019712 - ], - [ - -75.2727294296791, - 39.9692266468914 - ], - [ - -75.272817864479, - 39.9692532521173 - ], - [ - -75.2729605097453, - 39.9693021916953 - ], - [ - -75.2730563391339, - 39.9693148379115 - ], - [ - -75.2731881821733, - 39.9693141609829 - ], - [ - -75.2732825536436, - 39.9693038454494 - ], - [ - -75.2734182866484, - 39.9692908997036 - ], - [ - -75.273494141789, - 39.9692854821518 - ], - [ - -75.2735720215736, - 39.9692871629644 - ], - [ - -75.2736840093215, - 39.9692966345256 - ], - [ - -75.2738120384229, - 39.9693064611555 - ], - [ - -75.2739147362845, - 39.9693192548708 - ], - [ - -75.2740153974519, - 39.969324958838 - ], - [ - -75.2741528981591, - 39.9693261598036 - ], - [ - -75.2743282999614, - 39.9693255384464 - ], - [ - -75.2744901580481, - 39.9693193268381 - ], - [ - -75.274810009501, - 39.969302413754 - ], - [ - -75.2748927649979, - 39.9692962611618 - ], - [ - -75.2750290985507, - 39.9692983188684 - ], - [ - -75.2750872516074, - 39.9693066278777 - ], - [ - -75.2751997119379, - 39.9693346324057 - ], - [ - -75.2752693752147, - 39.9693731743593 - ], - [ - -75.2753226875102, - 39.9694201842825 - ], - [ - -75.2753657302013, - 39.9695128418642 - ], - [ - -75.2753975270364, - 39.9695840837484 - ], - [ - -75.2754583209011, - 39.9697873596496 - ], - [ - -75.2754963583543, - 39.9699389958439 - ], - [ - -75.2755700432247, - 39.9701346209917 - ], - [ - -75.2756093421102, - 39.9702201340075 - ], - [ - -75.2756545642382, - 39.9702687352325 - ], - [ - -75.2757072122019, - 39.9703025041679 - ], - [ - -75.2758212385437, - 39.9703190722724 - ], - [ - -75.2760074283118, - 39.9703213297985 - ], - [ - -75.2761892519194, - 39.9703331874925 - ], - [ - -75.2762474819627, - 39.9703397316206 - ], - [ - -75.2763051869193, - 39.9703603738241 - ], - [ - -75.2763737691145, - 39.9703971348439 - ], - [ - -75.276414008431, - 39.9704253381597 - ], - [ - -75.2764407470224, - 39.970477955441 - ], - [ - -75.2764698114884, - 39.9705297308769 - ], - [ - -75.2765102623604, - 39.9705994020421 - ], - [ - -75.2766146883224, - 39.9707851025068 - ], - [ - -75.2766425742334, - 39.9708377354545 - ], - [ - -75.2766585435564, - 39.9708715963015 - ], - [ - -75.2766706441526, - 39.9709168342857 - ], - [ - -75.2766772913444, - 39.9709549000133 - ], - [ - -75.2766644560604, - 39.9709925548208 - ], - [ - -75.2766391797337, - 39.9710255176315 - ], - [ - -75.2765901420413, - 39.9710659149519 - ], - [ - -75.2765314215981, - 39.9711043376067 - ], - [ - -75.2764737952363, - 39.9711445497473 - ], - [ - -75.2764882852106, - 39.9711871993714 - ], - [ - -75.2765267043547, - 39.97123388765 - ], - [ - -75.2765849588374, - 39.9712712998579 - ], - [ - -75.2766912852315, - 39.9712630050917 - ], - [ - -75.276762715791, - 39.9712530841551 - ], - [ - -75.2768279517252, - 39.9712245054157 - ], - [ - -75.2768993266532, - 39.971184589413 - ], - [ - -75.2770755479305, - 39.9711142992569 - ], - [ - -75.2771380090896, - 39.9710988870042 - ], - [ - -75.2772001811673, - 39.9710914151736 - ], - [ - -75.2772689771529, - 39.9710911317485 - ], - [ - -75.2773411373045, - 39.9710926867044 - ], - [ - -75.2774243038106, - 39.9711068222659 - ], - [ - -75.277493753439, - 39.9711197882542 - ], - [ - -75.2775435723585, - 39.9711367370416 - ], - [ - -75.277579418141, - 39.9711595564831 - ], - [ - -75.2776129180232, - 39.971184091298 - ], - [ - -75.2776598020504, - 39.9712186180758 - ], - [ - -75.2776893808788, - 39.971256294839 - ], - [ - -75.277707504412, - 39.971293724789 - ], - [ - -75.2777153307079, - 39.9713309418916 - ], - [ - -75.2776915540323, - 39.9713542426418 - ], - [ - -75.2776496461418, - 39.9713718549519 - ], - [ - -75.277598672303, - 39.9713866320276 - ], - [ - -75.2775536447248, - 39.9713953654575 - ], - [ - -75.2775267282461, - 39.9714106608493 - ], - [ - -75.2775109988263, - 39.9714332519901 - ], - [ - -75.2775065320713, - 39.9714613835934 - ], - [ - -75.2775075425929, - 39.971496678914 - ], - [ - -75.2775167286003, - 39.9715277445749 - ], - [ - -75.2775326021823, - 39.9715642521186 - ], - [ - -75.2775568004618, - 39.9715921093777 - ], - [ - -75.2775945869995, - 39.9716246742289 - ], - [ - -75.2776428745951, - 39.971652176539 - ], - [ - -75.277678188725, - 39.9716690199703 - ], - [ - -75.2777680620469, - 39.9716877686487 - ], - [ - -75.2778893283138, - 39.971702400333 - ], - [ - -75.2779697650635, - 39.9717233511837 - ], - [ - -75.2780215074891, - 39.9717605052206 - ], - [ - -75.2782992678032, - 39.9719370898474 - ], - [ - -75.2783555000055, - 39.9720223989396 - ], - [ - -75.2784520383337, - 39.9721157840102 - ], - [ - -75.278539740043, - 39.9721945629264 - ], - [ - -75.2786118325254, - 39.9722730055974 - ], - [ - -75.2786593159211, - 39.9723413047272 - ], - [ - -75.2787000385965, - 39.9724238739837 - ], - [ - -75.2787270414284, - 39.9725397905069 - ], - [ - -75.2787622974042, - 39.9726438746375 - ], - [ - -75.2787789233154, - 39.9727018956726 - ], - [ - -75.2787832385306, - 39.9727548493454 - ], - [ - -75.2787859933443, - 39.9728510166558 - ], - [ - -75.2787976606211, - 39.9729593950259 - ], - [ - -75.2788127142146, - 39.9730606384441 - ], - [ - -75.2788336672531, - 39.9731716133934 - ], - [ - -75.2788618178064, - 39.9732563174658 - ], - [ - -75.278918663264, - 39.9733248180722 - ], - [ - -75.2789545354161, - 39.9733688467825 - ], - [ - -75.2789732379451, - 39.97345574399 - ], - [ - -75.2790015516451, - 39.9735356492889 - ], - [ - -75.2790497308891, - 39.9736279924572 - ], - [ - -75.2790845556538, - 39.9737008210494 - ], - [ - -75.2791113964739, - 39.9738215452194 - ], - [ - -75.2791264510533, - 39.9739227795912 - ], - [ - -75.2791737612465, - 39.9739958859945 - ], - [ - -75.279243954829, - 39.9740406445775 - ], - [ - -75.2793611408855, - 39.9740816126191 - ], - [ - -75.2794686164712, - 39.974131984982 - ], - [ - -75.2796037511961, - 39.9741949627963 - ], - [ - -75.2798081081198, - 39.9743291126261 - ], - [ - -75.279957357454, - 39.9744332444428 - ], - [ - -75.2800294542759, - 39.9745116772156 - ], - [ - -75.2800475967391, - 39.9745496117044 - ], - [ - -75.2800875053525, - 39.9746330728706 - ], - [ - -75.2801334205844, - 39.9747445847873 - ], - [ - -75.280195370649, - 39.974844431676 - ], - [ - -75.2803067548922, - 39.9750008970805 - ], - [ - -75.2794306199978, - 39.97544583771 - ], - [ - -75.2763815860374, - 39.9770137758103 - ], - [ - -75.2735747901653, - 39.9782688334729 - ], - [ - -75.272268825846, - 39.9788495400227 - ], - [ - -75.271339102835, - 39.9792629368738 - ], - [ - -75.2692722147077, - 39.980179612223 - ], - [ - -75.2655936704636, - 39.9818108970617 - ], - [ - -75.2643847956977, - 39.9823469472954 - ], - [ - -75.263716282033, - 39.9826433708692 - ], - [ - -75.2621862436918, - 39.9834903364965 - ], - [ - -75.2607313209032, - 39.9842901412001 - ], - [ - -75.259511407678, - 39.9849607355129 - ], - [ - -75.2587293382094, - 39.9853906262351 - ], - [ - -75.2585695429964, - 39.9855211707988 - ], - [ - -75.2585027339608, - 39.9855757530751 - ], - [ - -75.2568396126864, - 39.986808673586 - ], - [ - -75.256298406317, - 39.9872098670426 - ], - [ - -75.2561209101713, - 39.9873210939954 - ], - [ - -75.2556992193778, - 39.9875187349742 - ], - [ - -75.2540024441351, - 39.9883139585762 - ], - [ - -75.2514697745872, - 39.9895016731112 - ], - [ - -75.2508233751784, - 39.9898047855846 - ], - [ - -75.2491914925102, - 39.9905717378042 - ], - [ - -75.2480130050434, - 39.9911255737929 - ], - [ - -75.2456862023063, - 39.992219020627 - ], - [ - -75.2416531118157, - 39.9941141089694 - ], - [ - -75.2390269115599, - 39.9953450416478 - ], - [ - -75.2352879210774, - 39.997097367402 - ], - [ - -75.2343106217632, - 39.9975530404504 - ], - [ - -75.2332307885509, - 39.9980565078863 - ], - [ - -75.2321531091363, - 39.9985589495731 - ], - [ - -75.230889523751, - 39.9991480414857 - ], - [ - -75.2294552307656, - 39.9998202641393 - ], - [ - -75.2287416678027, - 40.0001554881166 - ], - [ - -75.2283776580287, - 40.0003264941606 - ], - [ - -75.2264164997586, - 40.0012477826728 - ], - [ - -75.2236317347134, - 40.0025558711229 - ], - [ - -75.2206982805234, - 40.0039336806679 - ], - [ - -75.219226470653, - 40.0046249194965 - ], - [ - -75.2183476918577, - 40.0050376280713 - ], - [ - -75.214572156047, - 40.0068106248498 - ], - [ - -75.2137571924415, - 40.0071551243985 - ], - [ - -75.2130475297215, - 40.0074551111408 - ], - [ - -75.2107685868178, - 40.0085605458731 - ], - [ - -75.2089222156156, - 40.0094560992868 - ], - [ - -75.2083008209416, - 40.0097506950676 - ], - [ - -75.2080293201576, - 40.0098794023889 - ], - [ - -75.2073170425458, - 40.010217076071 - ], - [ - -75.2073109693888, - 40.0102809939307 - ], - [ - -75.2072994350568, - 40.0104025001361 - ], - [ - -75.2072939618394, - 40.0104600972252 - ], - [ - -75.2072868000726, - 40.0105355598635 - ], - [ - -75.2072639349276, - 40.0107762611975 - ], - [ - -75.2072536010625, - 40.0108851078528 - ], - [ - -75.2072404612082, - 40.0110235083577 - ], - [ - -75.2069940560659, - 40.0112052796626 - ], - [ - -75.2061646584963, - 40.0118171049076 - ], - [ - -75.2065132223827, - 40.0120337338126 - ], - [ - -75.2067182269055, - 40.0121642984134 - ], - [ - -75.2070561089367, - 40.012385590439 - ], - [ - -75.2075584799508, - 40.0127218428538 - ], - [ - -75.2075641523513, - 40.0127205628933 - ], - [ - -75.2075919368421, - 40.0127442888686 - ], - [ - -75.2079326208378, - 40.0129713255587 - ], - [ - -75.208167892312, - 40.0131251907505 - ], - [ - -75.2084027752592, - 40.0132750644007 - ], - [ - -75.2086447685639, - 40.0134244011517 - ], - [ - -75.208785952149, - 40.0135068232473 - ], - [ - -75.2089298142966, - 40.013586565391 - ], - [ - -75.2091492856864, - 40.0137024709307 - ], - [ - -75.2096680887124, - 40.0139661951496 - ], - [ - -75.2100355308835, - 40.0141577051128 - ], - [ - -75.2105527226798, - 40.0144230203503 - ], - [ - -75.210772114218, - 40.0145390109981 - ], - [ - -75.2109522394619, - 40.0146384014161 - ], - [ - -75.2115184118863, - 40.0149694151227 - ], - [ - -75.2117986126054, - 40.015138970172 - ], - [ - -75.212037441403, - 40.0152924551985 - ], - [ - -75.2121699217011, - 40.0153831499992 - ], - [ - -75.2122669186699, - 40.0154528779697 - ], - [ - -75.2123925844953, - 40.0155484584921 - ], - [ - -75.2124838759819, - 40.0156222408258 - ], - [ - -75.2126030244176, - 40.0157225965445 - ], - [ - -75.2127486274656, - 40.0158506838903 - ], - [ - -75.2130025428078, - 40.0160875545202 - ], - [ - -75.2132747865813, - 40.0163579953403 - ], - [ - -75.2136182337525, - 40.0167162251576 - ], - [ - -75.2140320100111, - 40.0171603048323 - ], - [ - -75.2143055164714, - 40.0174715141832 - ], - [ - -75.2146682414955, - 40.0179006065887 - ], - [ - -75.2150568073148, - 40.0183595957938 - ], - [ - -75.215331048757, - 40.0186698906709 - ], - [ - -75.2154852388801, - 40.0188363302289 - ], - [ - -75.2156169371251, - 40.018973071705 - ], - [ - -75.2157521011552, - 40.0191077090843 - ], - [ - -75.2158651676589, - 40.0192146303827 - ], - [ - -75.2160076650239, - 40.0193427708787 - ], - [ - -75.2161858220482, - 40.0194947997121 - ], - [ - -75.2163687781156, - 40.019643861725 - ], - [ - -75.2165553608704, - 40.0197905977699 - ], - [ - -75.2176309735497, - 40.0206066541519 - ], - [ - -75.2179506695749, - 40.0208440806761 - ], - [ - -75.2182416956977, - 40.0210549974414 - ], - [ - -75.21847069541, - 40.0212165587867 - ], - [ - -75.2186691236635, - 40.0213529115196 - ], - [ - -75.218903435844, - 40.0215090839514 - ], - [ - -75.2190817006819, - 40.0216236558221 - ], - [ - -75.2192486855336, - 40.0217239502426 - ], - [ - -75.2193982942769, - 40.0218068776458 - ], - [ - -75.2195050422404, - 40.0218619384956 - ], - [ - -75.2196185231095, - 40.0219165259131 - ], - [ - -75.2198121738035, - 40.022000071828 - ], - [ - -75.2198911613416, - 40.0220305630645 - ], - [ - -75.2200112262899, - 40.0220729604612 - ], - [ - -75.2201332519299, - 40.0221121212858 - ], - [ - -75.2202570080145, - 40.0221485630399 - ], - [ - -75.2204242485555, - 40.0221936480682 - ], - [ - -75.2205934458164, - 40.0222356044298 - ], - [ - -75.221191829234, - 40.022372129978 - ], - [ - -75.2214467770221, - 40.0224326508594 - ], - [ - -75.2215779512895, - 40.0224578028036 - ], - [ - -75.2218457575036, - 40.0225000272988 - ], - [ - -75.221975822571, - 40.0225260193219 - ], - [ - -75.2220588595644, - 40.022548200868 - ], - [ - -75.2220989110361, - 40.0225612370167 - ], - [ - -75.2221754626037, - 40.0225920424304 - ], - [ - -75.2222818796429, - 40.0226494719735 - ], - [ - -75.2223847029676, - 40.0227115165178 - ], - [ - -75.2224849925909, - 40.0227767758249 - ], - [ - -75.2226154421658, - 40.0228679988722 - ], - [ - -75.2228373019411, - 40.0230360523753 - ], - [ - -75.2233055992104, - 40.0234074503096 - ], - [ - -75.2234335442394, - 40.0235033655303 - ], - [ - -75.2235314429505, - 40.0235730942828 - ], - [ - -75.2236316508612, - 40.023640296893 - ], - [ - -75.2237003667305, - 40.0236833085831 - ], - [ - -75.2238058550653, - 40.0237456176465 - ], - [ - -75.223875920002, - 40.0237848206503 - ], - [ - -75.2239283240044, - 40.023813625032 - ], - [ - -75.224661944513, - 40.0242179641757 - ], - [ - -75.2261365454036, - 40.0250377366815 - ], - [ - -75.2267139525439, - 40.0253554668111 - ], - [ - -75.2274400719401, - 40.0257477655145 - ], - [ - -75.2280823433663, - 40.0260845637887 - ], - [ - -75.2288411890747, - 40.0264695891078 - ], - [ - -75.2295892645575, - 40.0268368394546 - ], - [ - -75.2299324009824, - 40.0269943855586 - ], - [ - -75.2307419849719, - 40.0273511657683 - ], - [ - -75.2309700819058, - 40.0274566122335 - ], - [ - -75.2311574036039, - 40.0275475769019 - ], - [ - -75.231414410505, - 40.0276809476964 - ], - [ - -75.2317040574135, - 40.0278393154659 - ], - [ - -75.2319889632553, - 40.0280035701472 - ], - [ - -75.2322270566196, - 40.0281489581017 - ], - [ - -75.2324032714371, - 40.0282623462101 - ], - [ - -75.2326028209053, - 40.0283978784364 - ], - [ - -75.232764452691, - 40.0285142259264 - ], - [ - -75.2329211400513, - 40.0286343390901 - ], - [ - -75.2330731867989, - 40.0287582426257 - ], - [ - -75.2332509299927, - 40.028910775073 - ], - [ - -75.2338859557367, - 40.0294837749037 - ], - [ - -75.2340326011555, - 40.0296121538257 - ], - [ - -75.2341822559303, - 40.0297380937032 - ], - [ - -75.2343359348175, - 40.0298607788265 - ], - [ - -75.234462431274, - 40.02995603672 - ], - [ - -75.2346576266233, - 40.0300944971414 - ], - [ - -75.2348626148391, - 40.0302328112754 - ], - [ - -75.2350606253377, - 40.0303611333638 - ], - [ - -75.2353014364257, - 40.0305120161262 - ], - [ - -75.2362095604171, - 40.0310616633052 - ], - [ - -75.2365894058283, - 40.0312980452979 - ], - [ - -75.2373664843676, - 40.0318069551994 - ], - [ - -75.2381813664359, - 40.0323515458016 - ], - [ - -75.2392331570867, - 40.0330687321734 - ], - [ - -75.2397047581451, - 40.0333832431018 - ], - [ - -75.2398715625771, - 40.033496963085 - ], - [ - -75.2400987812188, - 40.0336603593642 - ], - [ - -75.2402845006331, - 40.0338062070229 - ], - [ - -75.2404021809735, - 40.0339073200462 - ], - [ - -75.2404865626849, - 40.0339855860087 - ], - [ - -75.2405672468327, - 40.0340662218191 - ], - [ - -75.2406697321467, - 40.0341769855595 - ], - [ - -75.240767487189, - 40.0342907903247 - ], - [ - -75.2408617007072, - 40.0344068692227 - ], - [ - -75.2412036908858, - 40.0348495194073 - ], - [ - -75.2412972668915, - 40.0349660795327 - ], - [ - -75.24141898146, - 40.0351087702671 - ], - [ - -75.2415215959069, - 40.0352196080771 - ], - [ - -75.2416581772285, - 40.0353530186418 - ], - [ - -75.2418037678644, - 40.0354814901141 - ], - [ - -75.2419884808453, - 40.0356297455189 - ], - [ - -75.24218195021, - 40.0357719839571 - ], - [ - -75.2424156976209, - 40.0359309768956 - ], - [ - -75.2426894593165, - 40.0361043577203 - ], - [ - -75.2429713162791, - 40.0362696434471 - ], - [ - -75.2432601237757, - 40.0364286290387 - ], - [ - -75.2436640833992, - 40.0366406813209 - ], - [ - -75.2441070061812, - 40.0368689801425 - ], - [ - -75.244219392075, - 40.0369245725088 - ], - [ - -75.2444140770449, - 40.0370112513279 - ], - [ - -75.2449336471443, - 40.0372247847324 - ], - [ - -75.2450502135395, - 40.0372763949501 - ], - [ - -75.2451634645227, - 40.0373305005707 - ], - [ - -75.2452724111123, - 40.0373878548901 - ], - [ - -75.2453760987991, - 40.0374492299795 - ], - [ - -75.2454735265568, - 40.0375153878882 - ], - [ - -75.2455637402064, - 40.0375870916899 - ], - [ - -75.2456489321969, - 40.0376627403896 - ], - [ - -75.2457582440696, - 40.0377670798854 - ], - [ - -75.24586308582, - 40.0378750338996 - ], - [ - -75.2459638950358, - 40.0379861795081 - ], - [ - -75.2460611083076, - 40.0381001207928 - ], - [ - -75.2461551508454, - 40.038216452576 - ], - [ - -75.2462464953733, - 40.0383347526943 - ], - [ - -75.2463575105414, - 40.0384847999474 - ], - [ - -75.2464872450187, - 40.0386669699727 - ], - [ - -75.2469105625164, - 40.0392738951171 - ], - [ - -75.2469909912469, - 40.0393955156178 - ], - [ - -75.2470470588334, - 40.0394886114262 - ], - [ - -75.247117669105, - 40.0396145678814 - ], - [ - -75.2473709137708, - 40.0400913490483 - ], - [ - -75.2474439383117, - 40.0402157631194 - ], - [ - -75.2475024804645, - 40.0403072727831 - ], - [ - -75.247565149787, - 40.0403968541069 - ], - [ - -75.2476327225655, - 40.0404841185496 - ], - [ - -75.2478295297683, - 40.0407094639145 - ], - [ - -75.2480621272997, - 40.0409586358135 - ], - [ - -75.2483326112774, - 40.0412301209515 - ], - [ - -75.2485856806151, - 40.0414694122009 - ], - [ - -75.2488761562014, - 40.0417294292225 - ], - [ - -75.2491749482214, - 40.0419830042381 - ], - [ - -75.2494803910905, - 40.042230163995 - ], - [ - -75.2499146443741, - 40.0425711805152 - ], - [ - -75.2503631515558, - 40.0429139290304 - ], - [ - -75.250705700784, - 40.0431698034677 - ], - [ - -75.2510646570583, - 40.0434328812696 - ], - [ - -75.2515468330164, - 40.0437787809908 - ], - [ - -75.2520723451705, - 40.044146875278 - ], - [ - -75.252636217153, - 40.0445325774057 - ], - [ - -75.2531053498812, - 40.0448453275929 - ], - [ - -75.2535137838603, - 40.0451077608803 - ], - [ - -75.2539617825532, - 40.0453871890359 - ], - [ - -75.2544489225649, - 40.0456839898054 - ], - [ - -75.2551327906287, - 40.04609406269 - ], - [ - -75.2558500107313, - 40.0465238302567 - ], - [ - -75.2563560757822, - 40.0468318182821 - ], - [ - -75.2568035940162, - 40.047163544767 - ], - [ - -75.2579630127917, - 40.048010420435 - ], - [ - -75.2583134884878, - 40.0482718668345 - ], - [ - -75.2586029331687, - 40.0484927775779 - ], - [ - -75.2589685776942, - 40.0487809047026 - ], - [ - -75.2593011744763, - 40.0490550245407 - ], - [ - -75.2596241878803, - 40.0493360624145 - ], - [ - -75.2599674580439, - 40.0496491720264 - ], - [ - -75.2604148373552, - 40.0500738444067 - ], - [ - -75.2612416580132, - 40.0508772211093 - ], - [ - -75.2615104974845, - 40.0511487185506 - ], - [ - -75.2619456767932, - 40.051603519527 - ], - [ - -75.2623028553305, - 40.0519718109235 - ], - [ - -75.2625767883522, - 40.0522401994422 - ], - [ - -75.2634476100095, - 40.0530590716358 - ], - [ - -75.2644683422448, - 40.054004263629 - ], - [ - -75.2645070418694, - 40.0540421133303 - ], - [ - -75.2645076410112, - 40.0540427209423 - ], - [ - -75.2638705817802, - 40.0545589689292 - ], - [ - -75.2636446577769, - 40.0547669737764 - ], - [ - -75.2635210358778, - 40.0548807778161 - ], - [ - -75.2434599787257, - 40.0733436946174 - ], - [ - -75.2432905701292, - 40.0735042140708 - ], - [ - -75.2430687903438, - 40.0737143616853 - ], - [ - -75.2421170668702, - 40.0746546385218 - ], - [ - -75.2277544055454, - 40.0888405528667 - ], - [ - -75.2235880790303, - 40.0929541643561 - ], - [ - -75.2196355956394, - 40.0906799361569 - ], - [ - -75.2167902079696, - 40.0890425395912 - ], - [ - -75.214133399524, - 40.0875135294646 - ], - [ - -75.2137537623448, - 40.0872999961576 - ], - [ - -75.2117785605871, - 40.0861510150684 - ], - [ - -75.2103546718505, - 40.0853227014099 - ], - [ - -75.20997348342, - 40.0851772093161 - ], - [ - -75.2097815379252, - 40.0850981214156 - ], - [ - -75.2096379979661, - 40.0850310681931 - ], - [ - -75.2094835639459, - 40.0849514122804 - ], - [ - -75.209286009258, - 40.0848423584343 - ], - [ - -75.2091574944444, - 40.084763464205 - ], - [ - -75.2089125136962, - 40.0845834166742 - ], - [ - -75.2084368226792, - 40.0842069670061 - ], - [ - -75.2063260699741, - 40.0829789272118 - ], - [ - -75.2041476192794, - 40.0817308768391 - ], - [ - -75.2026756066653, - 40.0808876935125 - ], - [ - -75.2004548426196, - 40.0796155394987 - ], - [ - -75.1964361841159, - 40.0773132497973 - ], - [ - -75.1950052001508, - 40.0764974279923 - ], - [ - -75.1908345798214, - 40.0741235653502 - ], - [ - -75.1896788213728, - 40.0734684334361 - ], - [ - -75.1896165230409, - 40.07352213299 - ], - [ - -75.1884787434373, - 40.0728787597618 - ], - [ - -75.1823016204659, - 40.0789287705473 - ], - [ - -75.1793457784734, - 40.0818507463322 - ], - [ - -75.1771474773766, - 40.0840528465883 - ], - [ - -75.1765098010576, - 40.0847011910469 - ], - [ - -75.1764400366377, - 40.084660831537 - ], - [ - -75.1761726421772, - 40.0845061234775 - ], - [ - -75.1758734115476, - 40.0843323031647 - ], - [ - -75.1756555595147, - 40.0842034541031 - ], - [ - -75.1753454694943, - 40.0840200546668 - ], - [ - -75.1751341928796, - 40.0838951000625 - ], - [ - -75.1747874746205, - 40.0836900291222 - ], - [ - -75.1745146052245, - 40.0835286440159 - ], - [ - -75.174159882845, - 40.0833188416381 - ], - [ - -75.1739266187796, - 40.0831808679076 - ], - [ - -75.1735755369293, - 40.0829732085498 - ], - [ - -75.1733065735758, - 40.082814133494 - ], - [ - -75.1729393084356, - 40.0825969009684 - ], - [ - -75.1720708974978, - 40.0820832399601 - ], - [ - -75.1717143782206, - 40.0818723442029 - ], - [ - -75.1699341183111, - 40.0808192790443 - ], - [ - -75.1682686931571, - 40.0798340790087 - ], - [ - -75.1676626122889, - 40.0794755282718 - ], - [ - -75.1640900695755, - 40.0773619301949 - ], - [ - -75.1634076482644, - 40.0769798337121 - ], - [ - -75.1633936807179, - 40.0769721040063 - ], - [ - -75.1591232675899, - 40.0746073538161 - ], - [ - -75.1583854492458, - 40.074189945922 - ], - [ - -75.1566294190439, - 40.0731927771207 - ], - [ - -75.155835833546, - 40.0727421075461 - ], - [ - -75.154696738569, - 40.0720936774567 - ], - [ - -75.1540778672561, - 40.0717413673493 - ], - [ - -75.1533348349984, - 40.0713183746495 - ], - [ - -75.1527581009199, - 40.0709900392398 - ], - [ - -75.1521873521898, - 40.0706651068048 - ], - [ - -75.1515913239733, - 40.0703257781864 - ], - [ - -75.1507265366457, - 40.069833438506 - ], - [ - -75.1500424818277, - 40.0694439689583 - ], - [ - -75.1483571051256, - 40.0684843793628 - ], - [ - -75.1476804683429, - 40.068099108636 - ], - [ - -75.1466233228154, - 40.0674971592741 - ], - [ - -75.1452208395403, - 40.0666985633537 - ], - [ - -75.144556345583, - 40.0663201711455 - ], - [ - -75.1439462211547, - 40.0659727236635 - ], - [ - -75.140904114022, - 40.0642402780626 - ], - [ - -75.1394173489337, - 40.0633945891585 - ], - [ - -75.1368393286587, - 40.061981453405 - ], - [ - -75.1330715752259, - 40.0596562523498 - ], - [ - -75.1301118384342, - 40.0578779989704 - ], - [ - -75.12535574215, - 40.055020137085 - ], - [ - -75.1221242172024, - 40.053168971935 - ], - [ - -75.1208084724403, - 40.0524224156835 - ], - [ - -75.1199921220328, - 40.0519589824944 - ], - [ - -75.1185669934603, - 40.0511499498167 - ], - [ - -75.1170621479655, - 40.0502956059965 - ], - [ - -75.1145092547542, - 40.0488155576919 - ], - [ - -75.1123661986469, - 40.0475729028638 - ], - [ - -75.11205831477, - 40.0473943669943 - ], - [ - -75.1110653328605, - 40.0468227061045 - ], - [ - -75.1094338463437, - 40.0458834086381 - ], - [ - -75.1092665917505, - 40.0457871089643 - ], - [ - -75.1089076377796, - 40.0461364130073 - ], - [ - -75.1090472465218, - 40.0462188955162 - ], - [ - -75.1081054801477, - 40.0471759230598 - ], - [ - -75.1082140935016, - 40.0472393937502 - ], - [ - -75.1074294999535, - 40.0480308168485 - ], - [ - -75.1076470724685, - 40.048148621839 - ], - [ - -75.10749294337, - 40.0483371585024 - ], - [ - -75.1063133001714, - 40.0492998190896 - ], - [ - -75.1007531174971, - 40.0525970623212 - ], - [ - -75.1007504029044, - 40.0525987206964 - ], - [ - -75.1001663800141, - 40.0529560539743 - ], - [ - -75.099832160382, - 40.0531619257355 - ], - [ - -75.0993771570212, - 40.0533081185886 - ], - [ - -75.0991122296221, - 40.0535715773198 - ], - [ - -75.0988043175626, - 40.053723072129 - ], - [ - -75.0984651498517, - 40.0538969382878 - ], - [ - -75.0976673620796, - 40.0543745873961 - ], - [ - -75.0974895911395, - 40.054488059161 - ], - [ - -75.0965067705403, - 40.0551801636169 - ], - [ - -75.0957593106692, - 40.0556387252387 - ], - [ - -75.0951211018254, - 40.0559459100065 - ], - [ - -75.0946824714384, - 40.0563788394233 - ], - [ - -75.0936176144997, - 40.0574298171655 - ], - [ - -75.0920767661016, - 40.0589749231609 - ], - [ - -75.0897647527541, - 40.0612943221315 - ], - [ - -75.0897204756581, - 40.0613427098345 - ], - [ - -75.08746628867, - 40.0635933942064 - ], - [ - -75.0878987743647, - 40.0638450462874 - ], - [ - -75.0887668392713, - 40.064350146973 - ], - [ - -75.0895396052112, - 40.0647997740046 - ], - [ - -75.0903723465124, - 40.0652842843635 - ], - [ - -75.0967400272034, - 40.068988780984 - ], - [ - -75.0940443530482, - 40.0716413797961 - ], - [ - -75.0938223116995, - 40.0718603531479 - ], - [ - -75.0895217042028, - 40.0761041239756 - ], - [ - -75.0879400614009, - 40.0776067026674 - ], - [ - -75.0869494515202, - 40.078668591888 - ], - [ - -75.0868785471886, - 40.0786151122417 - ], - [ - -75.0834174643408, - 40.0819625419337 - ], - [ - -75.0824596334299, - 40.0828932258138 - ], - [ - -75.081190904804, - 40.0841259380126 - ], - [ - -75.0778041300301, - 40.0857787025409 - ], - [ - -75.0762867890888, - 40.0873499338347 - ], - [ - -75.0762127704342, - 40.0874265844561 - ], - [ - -75.0712353805989, - 40.0925800971421 - ], - [ - -75.0707105628441, - 40.093123420645 - ], - [ - -75.0694578596478, - 40.0944202693399 - ], - [ - -75.0671763479094, - 40.0967820179528 - ], - [ - -75.065672021466, - 40.098339123705 - ], - [ - -75.0649353701051, - 40.0991015925258 - ], - [ - -75.0637467735929, - 40.1003307258608 - ], - [ - -75.0614187598757, - 40.1027379831316 - ], - [ - -75.0603173876079, - 40.103876775462 - ], - [ - -75.0592297572396, - 40.1050012917356 - ], - [ - -75.0584259233873, - 40.1058319804854 - ], - [ - -75.0582930273241, - 40.1059249025164 - ], - [ - -75.0553413704723, - 40.1079905260041 - ], - [ - -75.0542747040423, - 40.1087369517922 - ], - [ - -75.052975055656, - 40.1096463719206 - ], - [ - -75.0485440699696, - 40.1127385704577 - ], - [ - -75.0390453232731, - 40.1193658176379 - ], - [ - -75.03833942774, - 40.1198792256774 - ], - [ - -75.0379104465839, - 40.120176646522 - ], - [ - -75.031655425866, - 40.1245128500225 - ], - [ - -75.0257887163292, - 40.1285790444876 - ], - [ - -75.0253571177891, - 40.1288984887945 - ], - [ - -75.0248946183558, - 40.1292258405015 - ], - [ - -75.0205740142967, - 40.1322837078261 - ], - [ - -75.0179525281366, - 40.1348574233312 - ], - [ - -75.014967420252, - 40.1379348411103 - ] - ] - ] - } - } - ] - } \ No newline at end of file diff --git a/examples/philly-park-lead-levels/data/philly-park.json b/examples/philly-park-lead-levels/data/philly-park.json deleted file mode 100644 index 84265f0..0000000 --- a/examples/philly-park-lead-levels/data/philly-park.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type" : "FeatureCollection", - "features" : [{"type":"Feature","id":1,"geometry":{"type":"Polygon","coordinates":[[[-75.171950466059457,39.991249546421173],[-75.171901070736283,39.991243455255848],[-75.171864778195612,39.991407819298338],[-75.171916000548549,39.991414355167464],[-75.171950466059457,39.991249546421173]]]}, - "properties":{"OBJECTID_1":1,"OBJECTID":1006,"ASSET_NAME":"York St Mini Park","SITE_NAME":"York St Mini Park","CHILD_OF":"York St Mini Park","ADDRESS":"2400 W YORK ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.019925999999999999,"ZIPCODE":"19132","ALLIAS":" ","GLOBALID":"50a63f0d-7254-4fbb-900f-a34ec6cf2cf9","Shape_Length":150.10652971113811,"Shape_Area":867.95784652438658}}, - {"type":"Feature","id":2,"geometry":{"type":"Polygon","coordinates":[[[-75.161127694350313,39.990227295735679],[-75.161138544614204,39.990177988144914],[-75.160979869912225,39.990157322203906],[-75.160969602944107,39.990207304285832],[-75.161127694350313,39.990227295735679]]]},"properties":{"OBJECTID_1":2,"OBJECTID":1007,"ASSET_NAME":"Colorado St Mini Park","SITE_NAME":"Colorado St Mini Park","CHILD_OF":"Colorado St Mini Park","ADDRESS":"2400 N COLORADO ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.018928,"ZIPCODE":"19132","ALLIAS":" ","GLOBALID":"bfccdbc3-3116-4d53-a522-972556586588","Shape_Length":126.63639196180256,"Shape_Area":824.49239297692145}},{"type":"Feature","id":3,"geometry":{"type":"Polygon","coordinates":[[[-75.162876714791665,39.97280893981965],[-75.162906468642248,39.972662581821425],[-75.162851233266409,39.972655597914063],[-75.162819471836116,39.972801346600477],[-75.162876714791665,39.97280893981965]]]},"properties":{"OBJECTID_1":3,"OBJECTID":1008,"ASSET_NAME":"Stiles Street Playlot","SITE_NAME":"Stiles Street Playlot","CHILD_OF":"Stiles Street Playlot","ADDRESS":"1608 W STILES ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.019778,"ZIPCODE":"19121","ALLIAS":" ","GLOBALID":"c48743f4-9a5f-4d9c-a076-f6fe8ff78570","Shape_Length":139.76754005304659,"Shape_Area":861.5157746560194}},{"type":"Feature","id":4,"geometry":{"type":"Polygon","coordinates":[[[-75.179751252583699,39.962928786516692],[-75.179769541345493,39.963006617478356],[-75.179683546592756,39.963166847944343],[-75.179814498562095,39.963210022519085],[-75.17991569015561,39.963243676054141],[-75.180005011757046,39.963273380277712],[-75.180037384857698,39.963284659873388],[-75.180056311529555,39.96329125484818],[-75.180072259018687,39.963296652318888],[-75.180091886494608,39.963303200815176],[-75.180122385770531,39.963313376121619],[-75.18012710126591,39.963314949490538],[-75.180132329012437,39.963316693812004],[-75.180137687428712,39.963318481605619],[-75.180143787051961,39.96332051665987],[-75.180149904020155,39.963322557508363],[-75.18015645807975,39.963324744199461],[-75.180161002436378,39.963326260573979],[-75.180165366429705,39.963327716144796],[-75.180170254237353,39.963329346531111],[-75.180176704196512,39.96333149935387],[-75.180182154188216,39.963333311721797],[-75.180187057660532,39.963334961379466],[-75.180194500080304,39.963337436467363],[-75.180199820368969,39.963339210789819],[-75.180205404268889,39.96334107390949],[-75.180210542990523,39.963342788302],[-75.180217275111829,39.963345034840479],[-75.180225301197055,39.963347712211643],[-75.180230792593704,39.963349544425782],[-75.180238496049512,39.963352114557544],[-75.180244845455022,39.963354232687848],[-75.180249713582029,39.963355857223789],[-75.18025636245855,39.963358075766067],[-75.180260722980165,39.96335953035441],[-75.180266579785922,39.963361484278479],[-75.180273205537333,39.963363695093726],[-75.18027725385636,39.963365045379611],[-75.18028387499686,39.963367254288954],[-75.180289239202693,39.963369044007003],[-75.180294744471666,39.963370881033711],[-75.180301713676045,39.963373205859071],[-75.180308806565066,39.963375573098588],[-75.180315160620637,39.963377692230061],[-75.18032402617375,39.963380650590111],[-75.180328947712667,39.96338228713104],[-75.180331682248337,39.963383204337106],[-75.180334647046294,39.963384194276124],[-75.180337306626342,39.96338508097093],[-75.180339880619101,39.963385939619414],[-75.18034318191701,39.963387041612066],[-75.180346464734527,39.963388136883616],[-75.180348716130695,39.963388887393535],[-75.18035148439057,39.963389810760489],[-75.180355245906995,39.963391066321002],[-75.180357935531163,39.963391963599335],[-75.180361665834241,39.963393208549419],[-75.180364863099044,39.96339427487402],[-75.180368369091909,39.963395444521225],[-75.180371924813002,39.963396630599249],[-75.180376310771578,39.963398093861848],[-75.180379696488131,39.963399223873459],[-75.180385457320185,39.96340114590847],[-75.180394144821292,39.963404044412499],[-75.180416529057709,39.963411512356117],[-75.180484679699987,39.963434249358187],[-75.180528464617623,39.963424388057412],[-75.1805667205725,39.963415792280799],[-75.180607729801238,39.963409289931036],[-75.180692819309357,39.963440503534265],[-75.180906824225858,39.963506946499336],[-75.181013874798765,39.963546485898483],[-75.1814742553955,39.963616037462018],[-75.181519591521308,39.963457864377695],[-75.181439625525627,39.963380291023121],[-75.181224663657616,39.963187477876147],[-75.181045398324599,39.963009249051588],[-75.180846798120996,39.962807936438452],[-75.180672912741372,39.962617044802847],[-75.180573454160125,39.962495326197832],[-75.180424315392244,39.962319067558148],[-75.180286094509412,39.962138546380046],[-75.180139360310889,39.961918044742056],[-75.180074497562217,39.96202786053356],[-75.180055877193354,39.962077900114195],[-75.180069946911516,39.962260517914913],[-75.180070503499365,39.962330337182379],[-75.180068190518995,39.962391481202147],[-75.180065812074005,39.962436743420248],[-75.180052787848737,39.96248859594796],[-75.180001022732071,39.962650211438721],[-75.179909201511805,39.962836405748234],[-75.179751252583699,39.962928786516692]]]},"properties":{"OBJECTID_1":4,"OBJECTID":1011,"ASSET_NAME":"Paines Park","SITE_NAME":"Paines Park","CHILD_OF":"Schuylkill Banks","ADDRESS":"MARTIN LUTHER KING DRIVE","TYPE":"Land","USE_":"Park- Skate Park","ACREAGE":3.371191,"ZIPCODE":"19103","ALLIAS":" ","GLOBALID":"aa180000-f341-405e-8907-680f1e726c32","Shape_Length":1772.4241525296095,"Shape_Area":128087.0625163346}},{"type":"Feature","id":5,"geometry":{"type":"Polygon","coordinates":[[[-75.146545480435748,39.988682589351548],[-75.146580147445007,39.98866764026176],[-75.146274480579734,39.988221867674909],[-75.146259052616784,39.988209279110144],[-75.146243289783271,39.988205424655547],[-75.146220781338414,39.988199669186884],[-75.146200409405679,39.98819745904688],[-75.146179702624366,39.988203982115124],[-75.146158928840833,39.988212252542183],[-75.146147239233912,39.988220729955934],[-75.146044124708865,39.988716673452736],[-75.146085001638625,39.988717600833496],[-75.146240172059038,39.988642444791537],[-75.146545480435748,39.988682589351548]]]},"properties":{"OBJECTID_1":5,"OBJECTID":1012,"ASSET_NAME":"Officer Daniel Boyle Park","SITE_NAME":"Officer Daniel Boyle Park","CHILD_OF":"Officer Daniel Boyle Park","ADDRESS":"2401-13 GERMANTOWN AVE","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.35155599999999998,"ZIPCODE":"19133","ALLIAS":"Vandergift","GLOBALID":"756085e2-b527-485a-8053-2985360b50e3","Shape_Length":567.99154661679074,"Shape_Area":15313.706909400873}},{"type":"Feature","id":6,"geometry":{"type":"Polygon","coordinates":[[[-75.192789466202527,40.06901472593777],[-75.192627862392229,40.068898090501733],[-75.1924391962839,40.068640394957463],[-75.192397443328417,40.068335660533513],[-75.192381462970033,40.068345726773977],[-75.19117717531708,40.069238551148835],[-75.191157066486625,40.069253778154106],[-75.190889145103171,40.069451587623988],[-75.19081667380928,40.06950850474896],[-75.190649349231478,40.069634513916654],[-75.19002350190631,40.069573714881287],[-75.190040168615013,40.069597932166339],[-75.190055370009617,40.069626452441661],[-75.190094433882351,40.069689856007265],[-75.190164599472979,40.069849337268238],[-75.190236275110678,40.069945817813377],[-75.190283351351255,40.069998227323119],[-75.190310242969076,40.070021837991796],[-75.190382399508962,40.070076807241783],[-75.190433197330265,40.070111123609678],[-75.190479362098259,40.070141666968816],[-75.190570082046577,40.070199384061681],[-75.190681878237513,40.070352137230159],[-75.191107173773446,40.070618922626508],[-75.192789466202527,40.06901472593777]]]},"properties":{"OBJECTID_1":6,"OBJECTID":1013,"ASSET_NAME":"Wissahickon East","SITE_NAME":"Wissahickon East","CHILD_OF":"Wissahickon East","ADDRESS":"7530 ANDERSON ST","TYPE":"Land","USE_":"Park- Watershed\\Conservation","ACREAGE":5.6148210000000001,"ZIPCODE":"19119","ALLIAS":" ","GLOBALID":"5276ea53-71b4-4c63-b161-8296e21a0cba","Shape_Length":2387.1076353766862,"Shape_Area":244580.67059835239}},{"type":"Feature","id":7,"geometry":{"type":"Polygon","coordinates":[[[-75.176595053555019,39.953863543580205],[-75.176599079909479,39.953864004217827],[-75.176675013139544,39.953526500449264],[-75.176669799115984,39.953525899644454],[-75.176606153644329,39.953518507226022],[-75.176529675550526,39.953855983416396],[-75.176595053555019,39.953863543580205]]]},"properties":{"OBJECTID_1":7,"OBJECTID":1014,"ASSET_NAME":"22nd & Market Memorial Park","SITE_NAME":"22nd & Market Memorial Park","CHILD_OF":"22nd & Market Memorial Park","ADDRESS":"2140 MARKET ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.056131,"ZIPCODE":"19103","ALLIAS":"Salvation Army Collapse Site","GLOBALID":"f3d848d8-6a3b-4454-8ce2-a8142e539db2","Shape_Length":288.76706279073557,"Shape_Area":2445.073635125761}},{"type":"Feature","id":8,"geometry":{"type":"Polygon","coordinates":[[[-75.162163137787161,39.974858174930247],[-75.162866229215467,39.974949708477681],[-75.163018913789173,39.974190329218878],[-75.162321121598893,39.974102410976201],[-75.162320613054504,39.974104785401195],[-75.162164214076896,39.974853040880014],[-75.162163137787161,39.974858174930247]]]},"properties":{"OBJECTID_1":8,"OBJECTID":1015,"ASSET_NAME":"Ingersoll Park","SITE_NAME":"Ingersoll Park","CHILD_OF":"Ingersoll Park","ADDRESS":"1608 MASTER ST","TYPE":"Land","USE_":"Park- Neighborhood","ACREAGE":1.2763770000000001,"ZIPCODE":"19121","ALLIAS":" ","GLOBALID":"de7cce6d-4c15-40fc-bfe0-6ce4b9795e61","Shape_Length":956.79310494925699,"Shape_Area":55598.8207280391}},{"type":"Feature","id":9,"geometry":{"type":"Polygon","coordinates":[[[-75.177842394410604,39.962862602780838],[-75.177746621054979,39.962871778655625],[-75.177686652360833,39.962884034056607],[-75.177642932401028,39.96289598067446],[-75.177642148244786,39.962896156811077],[-75.17764077003649,39.962896683637908],[-75.177603218795497,39.962911032790792],[-75.177565803984379,39.962924839877964],[-75.177485349582184,39.96296901915936],[-75.17744909401496,39.96299491405891],[-75.177385854693028,39.963053367479837],[-75.177359319653618,39.963085486462425],[-75.177336480727618,39.963119256079487],[-75.177317403551683,39.963151984677964],[-75.177302045440996,39.96318585085217],[-75.177288902533846,39.963228162333657],[-75.177282922529628,39.963255992973941],[-75.177279209761593,39.963330564933194],[-75.177283272679716,39.963369250017081],[-75.177291452070961,39.963407546264726],[-75.177305447913412,39.963450746500378],[-75.17733065095814,39.963519170500952],[-75.177343883620296,39.963552161362216],[-75.177355694042362,39.96358065761526],[-75.177375670229523,39.963626569732831],[-75.177419361273081,39.963715832410976],[-75.177464183332518,39.963801297432276],[-75.177505602848072,39.963874886482266],[-75.177558474643121,39.963959749867378],[-75.177619979570579,39.964045023024966],[-75.177677782370452,39.964123579890718],[-75.177736654071111,39.964195897749661],[-75.177783659139322,39.964249734671483],[-75.177856039028839,39.964328701130384],[-75.177911604792982,39.964385234723991],[-75.177980441164749,39.96445243192445],[-75.178051563470888,39.964513223667254],[-75.178136104262819,39.964583929949235],[-75.178225174885071,39.964654686342143],[-75.17829712925203,39.964706779278217],[-75.178361198149759,39.964747871564128],[-75.178399776744683,39.964766136590448],[-75.17845586244232,39.964786745578472],[-75.178499157628451,39.964799010120991],[-75.178569666249004,39.964812836017828],[-75.178625337753445,39.964817940028659],[-75.178673919767206,39.964819130613414],[-75.17871231681336,39.964817971945713],[-75.178776275520619,39.964810442901154],[-75.17880858771403,39.964804876141308],[-75.178855175188218,39.964793361829798],[-75.178886251053186,39.964782777537621],[-75.178928109404325,39.964766025056889],[-75.178963969073763,39.964748496620842],[-75.178999338187552,39.964727902750269],[-75.179025275511364,39.964710769149228],[-75.179088168170935,39.964663737297094],[-75.179177239312637,39.964591987957093],[-75.179243670784118,39.964539158014567],[-75.179366822575133,39.964440745329497],[-75.179473733109859,39.964354648595631],[-75.17952377882753,39.964313618660711],[-75.179598331092535,39.964253368620376],[-75.179673876475164,39.964190480094153],[-75.179743844448595,39.964136291089481],[-75.179773798333215,39.964102457848739],[-75.179804019099024,39.964059062733156],[-75.179841293954766,39.963980434779614],[-75.179857303841686,39.963911824552703],[-75.179858949566551,39.963872688121391],[-75.179855484004932,39.963833618296711],[-75.179846939942834,39.963795017663799],[-75.17983340831023,39.963757268485352],[-75.179803920885902,39.963702857163199],[-75.179790515238537,39.96367812051286],[-75.179738960276424,39.963622511135668],[-75.179699595357931,39.963588951377481],[-75.179635611527942,39.963541007738385],[-75.179540938230801,39.96347476532808],[-75.179440677817809,39.963409504101662],[-75.179324978598416,39.963339952237796],[-75.179222469446984,39.963282885589301],[-75.179076396427902,39.963208893866927],[-75.178931312787896,39.963144502783649],[-75.17875267431441,39.963073773253576],[-75.178634759945709,39.96303153386544],[-75.178483176508919,39.962983868883562],[-75.178358527213021,39.962949118839163],[-75.178108888830181,39.962893490816143],[-75.177986593217767,39.962870745952905],[-75.177918111116497,39.962863943422185],[-75.177842394410604,39.962862602780838]]]},"properties":{"OBJECTID_1":9,"OBJECTID":1016,"ASSET_NAME":"Eakins Oval","SITE_NAME":"Eakins Oval","CHILD_OF":"Benjamin Franklin Parkway","ADDRESS":"2451 BENJ FRANKLIN PKY","TYPE":"Land","USE_":"Park- Linear\\Parkway","ACREAGE":7.8179780000000001,"ZIPCODE":" ","ALLIAS":" ","GLOBALID":"08a9acbe-5ca2-4404-8734-7df7855c2c29","Shape_Length":2173.42420818759,"Shape_Area":340549.73432838666}},{"type":"Feature","id":10,"geometry":{"type":"Polygon","coordinates":[[[-75.176903106364449,39.962179781636962],[-75.177041913736772,39.962284144111742],[-75.17709482948942,39.962323927465384],[-75.177213692720187,39.9624129721484],[-75.177237345343428,39.962430309130504],[-75.177262308161374,39.962448606233295],[-75.17731281214941,39.962481493108598],[-75.177323038082406,39.962487264537813],[-75.177323145838329,39.962487325519881],[-75.177323228401661,39.96248737152083],[-75.177366099462319,39.962511565437325],[-75.177408560730555,39.962531739740868],[-75.177423069549207,39.962538632546412],[-75.177471470664045,39.962556369422266],[-75.177471507658169,39.962556381964902],[-75.177521749044757,39.962571656167334],[-75.177573020721923,39.96258430537123],[-75.177625281748121,39.962594359291977],[-75.177835923846189,39.962639503957725],[-75.178012207523992,39.962670841264384],[-75.178022926530375,39.962672745724589],[-75.17802296142338,39.962672751912869],[-75.178101759926761,39.962687851506807],[-75.178162348084172,39.962700208322168],[-75.178263791311664,39.962720895311769],[-75.178270905479039,39.96272161430457],[-75.178277241754699,39.962719127177515],[-75.178280995916509,39.962714234133898],[-75.178281073548121,39.962712183367628],[-75.17828121017024,39.962708574271069],[-75.17825942369187,39.962680409527884],[-75.178253140134586,39.962672286611863],[-75.178248175542095,39.962663964403127],[-75.178230487214819,39.962634316544772],[-75.178211460204352,39.962594841967423],[-75.178207349427254,39.962583359222371],[-75.178196934885619,39.962554266344256],[-75.178187794887108,39.962512909521543],[-75.178183133798584,39.962471053022007],[-75.178184845475954,39.962441024603997],[-75.178184847940884,39.962440990420767],[-75.178185787924079,39.962424511249601],[-75.178192001428869,39.962378221356857],[-75.17819895370512,39.962345542500373],[-75.178201769466526,39.962332311178493],[-75.178204449967851,39.962308641298016],[-75.178203914162182,39.962301514892978],[-75.178202669870473,39.962284957026277],[-75.178196061520211,39.962263516168122],[-75.178195530946695,39.962261757211692],[-75.178183862073666,39.962239694745982],[-75.178177891567358,39.962231716696806],[-75.178168575202747,39.962219269408621],[-75.178148744968723,39.962201016379602],[-75.178135694127945,39.962192262420018],[-75.178125250256954,39.962185257197348],[-75.178123256873349,39.962184466474426],[-75.17811733904577,39.962182118227922],[-75.178113412981872,39.962181686032487],[-75.178107672572352,39.962181053686329],[-75.178107566485522,39.962181041397073],[-75.178098673546472,39.962182122386267],[-75.178098603011136,39.962182129815218],[-75.178071911749171,39.962184557083411],[-75.178071743736496,39.962184572238336],[-75.178044994748404,39.962184101450958],[-75.17803087563108,39.962182255921867],[-75.178019246452962,39.962180734710572],[-75.177993606450897,39.962174538509622],[-75.177977519708932,39.962168716845717],[-75.177968961773843,39.962165619230554],[-75.177957518000412,39.962159077222253],[-75.17792966211276,39.962143153555196],[-75.177903162243538,39.962128154986289],[-75.177889480721902,39.962120411310096],[-75.177850203381311,39.962097388379952],[-75.177152372629536,39.961699750106156],[-75.176808257234924,39.961503825597589],[-75.176496710207488,39.961325505627237],[-75.176066840505769,39.961079456426766],[-75.175877834331416,39.960973301462467],[-75.175712150451531,39.960880244921029],[-75.175361942881793,39.960680490440545],[-75.175347772718695,39.960677715383348],[-75.175333495712621,39.96067779053503],[-75.175333416614095,39.960677807681222],[-75.175327944313267,39.960678940888407],[-75.17532785699143,39.960678958751089],[-75.175327780266741,39.960678975049539],[-75.175319107372616,39.960680772558639],[-75.175306400047347,39.960686452096475],[-75.175296291784107,39.960694425374271],[-75.175288777973918,39.96070416519639],[-75.175282754912573,39.960733486859567],[-75.175273460682618,39.960778743416576],[-75.175262858952337,39.960822568653604],[-75.175255474313644,39.960853090543679],[-75.175236606946257,39.960927202555133],[-75.175237036909095,39.960935105081724],[-75.175237132787956,39.960936869615622],[-75.175238759985774,39.96094157428363],[-75.175238772727866,39.960941608808085],[-75.175240349230279,39.960946168176214],[-75.175241454787752,39.960947521080904],[-75.175247170484738,39.960954517777374],[-75.175255785745648,39.960961255180386],[-75.175255826769785,39.960961284933475],[-75.175455071379176,39.961095679596816],[-75.175475356746318,39.96111063931248],[-75.175475393193423,39.961110666259742],[-75.175897727907824,39.961421910863251],[-75.17605315884154,39.961547289782438],[-75.176136677454068,39.961614661714528],[-75.176338824837558,39.961766209394362],[-75.17640603015974,39.961815245371021],[-75.176406128145359,39.961815316946982],[-75.176518547404456,39.961897343114032],[-75.176691294425225,39.96202424209752],[-75.176903106364449,39.962179781636962]]]},"properties":{"OBJECTID_1":10,"OBJECTID":1017,"ASSET_NAME":"Park Towne","SITE_NAME":"Benjamin Franklin Parkway","CHILD_OF":"Benjamin Franklin Parkway","ADDRESS":"BENJAMIN FRANKLIN PKY","TYPE":"Land","USE_":"Park- Linear\\Parkway","ACREAGE":3.683392,"ZIPCODE":" ","ALLIAS":" ","GLOBALID":"96a7cfc3-6c1d-41c9-ba80-ccaa9ce7bd05","Shape_Length":2369.5907847063654,"Shape_Area":160447.94539403616}},{"type":"Feature","id":11,"geometry":{"type":"Polygon","coordinates":[[[-74.974555222987462,40.09895127277634],[-74.974476149664511,40.099153513648815],[-74.974516156156014,40.099202581349779],[-74.974723175674157,40.099439090218567],[-74.974880270359051,40.099622452249257],[-74.97508324603713,40.099729057412176],[-74.975697453377833,40.100230892436862],[-74.975848996806448,40.100355035049546],[-74.975865678896497,40.100372863386063],[-74.976078953852735,40.100392910729106],[-74.97610090670257,40.100420663533981],[-74.976311761401689,40.100680152598059],[-74.976373572964491,40.100752269707982],[-74.976723029249811,40.101179389232996],[-74.97676213073909,40.101232950403535],[-74.976970019063387,40.101482953101062],[-74.977267694939044,40.101848449261205],[-74.977459891143539,40.102089511451339],[-74.977195348052192,40.102876860133847],[-74.977153550450609,40.102984171291276],[-74.977148442147495,40.10302308327968],[-74.976949946906927,40.103609299358006],[-74.976854523941626,40.103883532951357],[-74.97662972863003,40.103998903162562],[-74.977088154142066,40.104705395750138],[-74.977690394635246,40.105288740588982],[-74.97782427989479,40.105217200102793],[-74.978040793376323,40.105426235869025],[-74.978211691890039,40.105591228372774],[-74.97879534324629,40.106154707100998],[-74.978847185762461,40.10618843927498],[-74.979149627487516,40.105953478368669],[-74.979395570296603,40.105774059422004],[-74.979571523551286,40.105653552970182],[-74.979545771563849,40.105626314881825],[-74.978679164213503,40.104785027080105],[-74.978641993717076,40.104803782471329],[-74.978144230425158,40.104306288860748],[-74.978200717052118,40.104309537568824],[-74.97768046265675,40.103805180322865],[-74.977443236606263,40.103574704264865],[-74.977437109628113,40.103439093465418],[-74.97742543681295,40.103030521576521],[-74.977426598516075,40.102991156677021],[-74.977495596852833,40.10287632060605],[-74.977564292478462,40.102871055242368],[-74.977632646526772,40.102863582993649],[-74.977700528539572,40.102853908824358],[-74.977767818934709,40.102842058686157],[-74.977822390888718,40.102832528442086],[-74.977843417539773,40.102828044441772],[-74.977876312279065,40.102821029870363],[-74.977914056852043,40.102811486694009],[-74.977959923692055,40.102798645006715],[-74.977996615620654,40.102787238242911],[-74.978033005656584,40.102775006919664],[-74.978060506169498,40.102764549005769],[-74.978098384332597,40.102749441289838],[-74.978144612148014,40.102729749301737],[-74.978117439640684,40.102711637760265],[-74.977935783371834,40.102586916468965],[-74.977808955808698,40.102498820858635],[-74.977750376074212,40.102121713176302],[-74.977891463428676,40.102018687379434],[-74.977971831921337,40.101957930726257],[-74.977674506387828,40.101586834890092],[-74.977570077485737,40.101452428935964],[-74.977405185328436,40.101250234308139],[-74.977297439143342,40.101119443356389],[-74.97708860271247,40.100859972473941],[-74.976536104332666,40.100185079858534],[-74.976510368180016,40.100161349244722],[-74.976403285775376,40.100084053628393],[-74.976386547465964,40.100066192477414],[-74.976248495822304,40.100013068586264],[-74.976235699946287,40.100008144571774],[-74.975620502373516,40.099565872676642],[-74.975419301698921,40.099420991529982],[-74.975269789274066,40.099305262824714],[-74.975226284778941,40.099264443159093],[-74.975098479666087,40.099156863013889],[-74.974855556796086,40.098953857610162],[-74.974813337128239,40.098920043071303],[-74.974781125377234,40.098792716521935],[-74.974764497714702,40.098780425496066],[-74.974655284807127,40.098594076108725],[-74.974626067923438,40.098539607515882],[-74.974345141694897,40.098058470192349],[-74.974050971904077,40.097557377051416],[-74.973944154109091,40.097371601028911],[-74.97381227896004,40.097144148980973],[-74.973715784124693,40.096990864102054],[-74.973605492849998,40.09699519090357],[-74.973523027471373,40.096996918788903],[-74.973384670780689,40.096997802135562],[-74.973226049081731,40.096995007823779],[-74.973086630851185,40.096990268622214],[-74.972936489091055,40.096981219883233],[-74.972774780393692,40.09696596696152],[-74.972712732547691,40.096959169622416],[-74.972599721794253,40.096947249234915],[-74.972487211631815,40.096932790800928],[-74.972375301226037,40.096915808431682],[-74.972264087582317,40.096896311681213],[-74.972153667078842,40.096874325406944],[-74.972035222402695,40.096850477233538],[-74.971917651940473,40.096824194645272],[-74.9718010455166,40.09679549062831],[-74.971685487786829,40.096764389757979],[-74.971643036003002,40.096751971503991],[-74.97150507806947,40.096711011078611],[-74.971408778706333,40.096680410545595],[-74.971381601778504,40.096671583633004],[-74.97128843048678,40.096639124007233],[-74.971196377619009,40.096604827924764],[-74.971105507788039,40.096568722180074],[-74.971087703508502,40.096564098195344],[-74.971069219593218,40.096561485187934],[-74.970857411773295,40.096482495798284],[-74.970850088183312,40.096470612927895],[-74.970840080482418,40.09645995099369],[-74.970724858008623,40.096402606333243],[-74.970714790486383,40.096397525977736],[-74.970610109079786,40.09634470532702],[-74.970495841939467,40.09628624727479],[-74.970384841560033,40.096223923205358],[-74.970275824217211,40.096159568204527],[-74.97016885059891,40.096093218887169],[-74.970073416107795,40.096031058265758],[-74.970040129512014,40.096008170732667],[-74.96995966128739,40.095951688266169],[-74.969857356106729,40.09587680125901],[-74.969757113640824,40.095800287149586],[-74.969635233814188,40.095697015810075],[-74.969513720218757,40.095593491879413],[-74.969392581243639,40.095489711056288],[-74.969258786790391,40.095376223074908],[-74.969196655265165,40.09532259127289],[-74.968719528027037,40.094917151766218],[-74.968715840282741,40.094915896553218],[-74.968698069742558,40.09491206594317],[-74.968683207008695,40.09491137113293],[-74.968667897151846,40.094912537929631],[-74.968653241739062,40.094916141739226],[-74.96863989281735,40.094922018124592],[-74.968518169077456,40.094997341746563],[-74.968043401183309,40.095291277492834],[-74.967909531836668,40.095373367365326],[-74.967813537234221,40.095427117767059],[-74.967666906310612,40.095491689825131],[-74.967544081433417,40.095539386871749],[-74.967475900045585,40.095562210524832],[-74.967427585244337,40.095576331308116],[-74.967384216659724,40.095588230817292],[-74.967333528472111,40.095600459527063],[-74.967337925503955,40.095640950222624],[-74.967367654560078,40.095954350046156],[-74.966421450998126,40.096014850397523],[-74.966359026105749,40.096357309694355],[-74.966039943271923,40.096512081101764],[-74.964801046010052,40.096369805190122],[-74.964748069131076,40.096364003628658],[-74.964743986177325,40.096684221748596],[-74.964744432601677,40.096703829101287],[-74.964612274739849,40.096709306078289],[-74.964483745749334,40.096716614413388],[-74.964470639372408,40.096821033959571],[-74.96441735666447,40.096874328031298],[-74.964233574611029,40.096914223494935],[-74.964126846545895,40.096647238729808],[-74.964131232642231,40.096619191893232],[-74.963579340563797,40.096711299843619],[-74.963424538349315,40.096864290959815],[-74.963251616924794,40.096925969375043],[-74.96306409687223,40.096970462460227],[-74.962669071908039,40.097007910124077],[-74.962601591645878,40.097234947478142],[-74.961980883553295,40.096906925067593],[-74.960685568233416,40.096225153599811],[-74.95966356018404,40.095684105677265],[-74.959409583658953,40.09601042620212],[-74.959297233938457,40.096198167949595],[-74.959163942957161,40.096389202826508],[-74.959050672425448,40.096532129573085],[-74.958860868850081,40.096830007549542],[-74.958826343360499,40.096883975331885],[-74.958776362027564,40.09696210319057],[-74.958697252063601,40.097085765104076],[-74.958653876986872,40.09715321609815],[-74.958848044474891,40.097167366781058],[-74.959084418524839,40.097254346696609],[-74.959333678685724,40.097341638035232],[-74.959585095372802,40.097376747669607],[-74.95965568275868,40.097416825231896],[-74.959739032787056,40.097460459102791],[-74.959961310975117,40.097513805722116],[-74.960111547343587,40.097615593372844],[-74.960362018627549,40.09759021804043],[-74.960422848751151,40.097584054883853],[-74.960532951380642,40.097604559801688],[-74.960578093598073,40.097619398379564],[-74.960670721208103,40.097649845987057],[-74.96080417086992,40.097666045030223],[-74.960899898543374,40.09764244554524],[-74.960932542616902,40.097629132147212],[-74.960952139083872,40.097621128488377],[-74.961009473750082,40.097597711148246],[-74.961085411877477,40.09756669672187],[-74.961159910403325,40.09756117925744],[-74.961163495270583,40.097560913906726],[-74.961217241279272,40.097556933878572],[-74.961317852062962,40.097567193233914],[-74.961411473023475,40.097595290005877],[-74.961537827455601,40.097638251885485],[-74.961676419103625,40.097718890595665],[-74.96178663044175,40.09775094509849],[-74.961831427160988,40.097839557429261],[-74.961809476493372,40.097934136085172],[-74.961759522000918,40.098032789581879],[-74.961682587813399,40.098094408701776],[-74.961603483419609,40.098174841819073],[-74.961611691505439,40.098253166728632],[-74.961663662288387,40.098342745176431],[-74.961718009815129,40.098401525771266],[-74.961801035538755,40.09845307696402],[-74.961899363091419,40.098489959391706],[-74.962043619180932,40.098577452488485],[-74.962099071760463,40.098671604307818],[-74.962084557994999,40.098770659684021],[-74.961726991567957,40.099124187711126],[-74.961683144253342,40.099186530968367],[-74.961713071356016,40.099274442048362],[-74.961771266518795,40.099335804684159],[-74.961834246872741,40.099402214021765],[-74.961951953872358,40.099505375408505],[-74.961992863491915,40.099541230105984],[-74.961972112185123,40.0996396196837],[-74.96196097925602,40.099692405807083],[-74.961929755044281,40.099840453662274],[-74.961697758113019,40.100776025505205],[-74.961763783653609,40.100787139523874],[-74.962023749254783,40.100830896583894],[-74.962155609312532,40.100419320201986],[-74.962305425029371,40.099910379282306],[-74.962322321159874,40.099754040036082],[-74.96240362289538,40.09886810707853],[-74.962438019946205,40.098529307580719],[-74.962429609516562,40.098491864967585],[-74.962362375992655,40.098235492076213],[-74.962324062280373,40.098096197709097],[-74.962692130431734,40.097747529830414],[-74.962946014468159,40.097726344129271],[-74.963385009835292,40.098002722974407],[-74.963407859179995,40.098028875447383],[-74.963478466706931,40.097986885822642],[-74.963563058489711,40.097943654640069],[-74.963618503554372,40.097919634250424],[-74.963673693377132,40.097895970780982],[-74.963729983377533,40.097873886500835],[-74.963787296073178,40.097853411068066],[-74.963845550502342,40.097834573155247],[-74.963922903527191,40.097813271402593],[-74.964008744380251,40.097794653255214],[-74.964086287731547,40.097779910413792],[-74.964151056057361,40.097770302215487],[-74.964208810614863,40.097763596672536],[-74.964272231541429,40.09775756725562],[-74.964355126891761,40.097752006110227],[-74.964448560144319,40.097748923201557],[-74.964553886282388,40.09774780979069],[-74.964569032917368,40.09774517893046],[-74.964596308557418,40.097733972694726],[-74.964616728995381,40.097716127043128],[-74.964623510398738,40.09770539918572],[-74.964629138820939,40.097682038281064],[-74.964626845797454,40.097508119783043],[-74.964626332134173,40.097419750820059],[-74.964766635186891,40.097414564853509],[-74.964795611857085,40.097412643895765],[-74.96571647055049,40.09735589473825],[-74.966473331691034,40.097822464096147],[-74.966674309235401,40.09750475365356],[-74.967070442060916,40.097381635175772],[-74.967312237163938,40.097496852503177],[-74.968809284540527,40.098240125039297],[-74.968842223529762,40.098258345958904],[-74.96901422174669,40.098178277516261],[-74.969086594807337,40.098148340325565],[-74.969234896618971,40.098093884364062],[-74.969370218765192,40.098051902265361],[-74.969513468949842,40.098014840591809],[-74.969629001506931,40.097990021615303],[-74.969716183307625,40.097974403405956],[-74.969821426425625,40.097958692108335],[-74.96989639863969,40.097949994258876],[-74.969999638966101,40.0979405454678],[-74.970100766597483,40.097935233674313],[-74.970145304215805,40.097930273504247],[-74.970186950443619,40.097908122145341],[-74.970204555865109,40.097885810237457],[-74.97021158515156,40.097860287070212],[-74.97021462550201,40.097820016928807],[-74.970218364542475,40.097777357822352],[-74.970226052989929,40.097715725748202],[-74.970235606660154,40.097660913030055],[-74.970260610922935,40.097552693486868],[-74.970280384269671,40.097491468069165],[-74.970310958354162,40.097412176028541],[-74.970339371576458,40.097349270873515],[-74.970374515288825,40.097280832785124],[-74.970413945127817,40.097214310378746],[-74.970679687782194,40.096804807534831],[-74.97080907117973,40.096849711088943],[-74.970835975807915,40.096858626166096],[-74.971254283898091,40.096898772075413],[-74.971234622881525,40.096935955275235],[-74.972407692646911,40.097302616017949],[-74.972596313281258,40.097359227311614],[-74.972887701769935,40.097357030202289],[-74.973263001003019,40.097446941931942],[-74.973622997731155,40.097535273596449],[-74.973538153850981,40.097752015990707],[-74.973692975822843,40.097882513227347],[-74.974093180242406,40.098225555686291],[-74.974116318904919,40.098212589360678],[-74.974500138722831,40.098854437577792],[-74.974542455774298,40.098940124667536],[-74.974555222987462,40.09895127277634]]]},"properties":{"OBJECTID_1":11,"OBJECTID":1018,"ASSET_NAME":"Poquessing Creek Park 4","SITE_NAME":"Poquessing Creek Park","CHILD_OF":"Poquessing Creek Park","ADDRESS":"3601 ACADEMY RD","TYPE":"Land","USE_":"Park- Watershed\\Conservation","ACREAGE":61.709045000000003,"ZIPCODE":"19154","ALLIAS":" ","GLOBALID":"fe3a1e4c-a0d3-4fd3-b175-5ab2ea68c60e","Shape_Length":21179.069470484643,"Shape_Area":2688045.5884789969}},{"type":"Feature","id":12,"geometry":{"type":"Polygon","coordinates":[[[-74.964466566631202,40.117309941188019],[-74.964662827644972,40.117334891017151],[-74.964832811895505,40.1173592040603],[-74.964949408779731,40.117402417735768],[-74.96511269985821,40.117403679228573],[-74.965260103212913,40.117423845872764],[-74.965383409378376,40.117429202668298],[-74.96551866691641,40.117444332512228],[-74.965678702986068,40.117457691457943],[-74.965835458516452,40.117475712187769],[-74.965946035056078,40.117490243938747],[-74.966001633852457,40.117478620925304],[-74.96602792940682,40.117376053355841],[-74.966001484971741,40.117192853359931],[-74.965712905170165,40.115873334857149],[-74.965545199062447,40.114994410876591],[-74.965360378189487,40.114081169188772],[-74.965231335081043,40.113463979776995],[-74.965207619003138,40.1132144608695],[-74.96525225471116,40.112203166028706],[-74.96523860051461,40.111859054769702],[-74.965179881769188,40.111634767786015],[-74.965067610859123,40.111285896300664],[-74.965040862178881,40.111086514271513],[-74.965052332919811,40.110906182129142],[-74.965304389952863,40.110483153308088],[-74.965482448901284,40.110207699030859],[-74.965584518688701,40.10998623831243],[-74.965592353489271,40.109963662466171],[-74.965170959987347,40.109721322579539],[-74.964645416612868,40.109418997558052],[-74.964623478518646,40.109406377308296],[-74.964571204605917,40.109406639141902],[-74.96450437681294,40.109432226217365],[-74.96445702025288,40.109450358255913],[-74.964418572462066,40.109465079296719],[-74.964348468986799,40.10947368100296],[-74.964294390976121,40.109462242729713],[-74.964189350306299,40.109439262275608],[-74.964055441323211,40.109466838835345],[-74.963982337149275,40.109526690897319],[-74.963854387180334,40.109625558507453],[-74.963770113758471,40.109722620798514],[-74.963690530468782,40.109855833287185],[-74.9636890776857,40.109982364534105],[-74.963885074627257,40.110403891643891],[-74.963905982706862,40.110448857196943],[-74.963969104653231,40.110588986081034],[-74.96397563786708,40.110603489460026],[-74.963985963443236,40.11061335229838],[-74.964161528642364,40.110997906542387],[-74.964154598684516,40.111036172073419],[-74.964108393570896,40.111108551219637],[-74.964066834956597,40.11116958309556],[-74.964020042394381,40.111229696095315],[-74.963967667897933,40.111301924803534],[-74.963911623392818,40.11138829069241],[-74.963781513279443,40.111548730296384],[-74.963751812598318,40.111598009284357],[-74.963725177447273,40.111642201208852],[-74.963738245125739,40.111711207525886],[-74.963741657695294,40.111729226968897],[-74.963745474141845,40.111749383630723],[-74.963748903837526,40.111756137379949],[-74.963813899115863,40.111884146331782],[-74.963831684849396,40.111908352106916],[-74.963920230891375,40.112038551789844],[-74.963926962705983,40.112063444837986],[-74.963937308968852,40.11210170456939],[-74.963931749188617,40.112154739427076],[-74.963927014174729,40.112199899974563],[-74.963933946131263,40.112261724716241],[-74.963940755437108,40.112322450781114],[-74.963941107863846,40.112357390290178],[-74.963931863154997,40.112383182946083],[-74.963922106687122,40.112410404916794],[-74.963920469625037,40.112525353791327],[-74.963960250530619,40.112609300155569],[-74.96396051194435,40.11267806191006],[-74.963968762837368,40.112777839329809],[-74.963976916371863,40.112879986010945],[-74.9640191007922,40.112980585631],[-74.964102721665114,40.113124866683869],[-74.964153444056834,40.113256740276952],[-74.964169233099838,40.113384906569159],[-74.964114499252503,40.113599993662248],[-74.963986585137391,40.113731299238928],[-74.963850226924762,40.113872185721448],[-74.96382739318156,40.113905534380919],[-74.96380324846713,40.113927263480541],[-74.963766137892208,40.113959837272255],[-74.963735404455193,40.113989561407593],[-74.96369331929975,40.114034372840706],[-74.96363556686309,40.114090477992846],[-74.963382365999607,40.114320137313094],[-74.963235985354885,40.114452907559844],[-74.963134606454517,40.114590333884429],[-74.96307229134085,40.114678918177852],[-74.963102641848764,40.114766902830908],[-74.963213766175258,40.114843093872942],[-74.963289178251344,40.115007867859944],[-74.963396306854364,40.115210266980625],[-74.96343233243671,40.115332738835484],[-74.963434237406972,40.115339215052288],[-74.963368416392541,40.115513066818636],[-74.963366454695944,40.115515906313625],[-74.963283045511986,40.115636655109398],[-74.963234013624728,40.115741121139145],[-74.96320081507659,40.115811849979345],[-74.963150889418287,40.116024964542653],[-74.963134504947192,40.116094906953876],[-74.963178866857618,40.116292767296194],[-74.963184195425896,40.116463601883019],[-74.963180093117273,40.11663847538189],[-74.963215914263614,40.116743663366556],[-74.9633007067183,40.116859521029234],[-74.963377607091829,40.116941995470583],[-74.96339169131484,40.116949439035857],[-74.96346223651507,40.116986722917119],[-74.963565349031256,40.117016772788872],[-74.963605260900081,40.117030925322538],[-74.963855147237609,40.117119531071239],[-74.963986693144122,40.117186160982406],[-74.964012456209815,40.117199210961822],[-74.964019166991193,40.117204698887448],[-74.964093124151972,40.117265180230611],[-74.964113488490696,40.117260210406883],[-74.964146155334703,40.117252238908335],[-74.96426988995222,40.117295079263251],[-74.964466566631202,40.117309941188019]]]},"properties":{"OBJECTID_1":12,"OBJECTID":1019,"ASSET_NAME":"Poquessing Creek Park 3","SITE_NAME":"Poquessing Creek Park","CHILD_OF":"Poquessing Creek Park","ADDRESS":"3125 MECHANICSVILLE RD","TYPE":"Land","USE_":"Park- Watershed\\Conservation","ACREAGE":32.201062999999998,"ZIPCODE":"19154","ALLIAS":" ","GLOBALID":"39c88024-0601-4bf1-8a5f-58d136df757c","Shape_Length":7071.5854685488339,"Shape_Area":1402678.192868137}},{"type":"Feature","id":13,"geometry":{"type":"Polygon","coordinates":[[[-74.968053457807969,40.079500986714983],[-74.968359171821689,40.079726128148742],[-74.968413906553266,40.079796234517737],[-74.968494038722298,40.080044820102621],[-74.968499921607886,40.080118344047484],[-74.968488354560478,40.080173165596619],[-74.968464203723045,40.080221685042822],[-74.968405834259428,40.080266093679889],[-74.968349045217622,40.080308947444379],[-74.967337774470224,40.080761681101755],[-74.967348478120627,40.080776696235056],[-74.967419874978745,40.080845503475615],[-74.967462514169981,40.080886600243076],[-74.96749055766692,40.080913622978954],[-74.967708860331285,40.081216413553001],[-74.967805138737788,40.081139531893449],[-74.967849827463297,40.081105835005125],[-74.967900416495738,40.081072281832462],[-74.967950818403494,40.081043260109894],[-74.967997722434916,40.081003568791736],[-74.968054395286529,40.080965625920939],[-74.968101174103481,40.080928955532677],[-74.968155571754963,40.080898518444144],[-74.968252320675191,40.080843400619294],[-74.968330440095997,40.080810512718195],[-74.968440271930632,40.080772345198866],[-74.96852226201645,40.080741062852255],[-74.968588211060634,40.080716953133916],[-74.968648445556298,40.080688169081391],[-74.968716484798819,40.08066108587667],[-74.968776800644505,40.080644702487675],[-74.968848524752332,40.080623757280861],[-74.968954175466507,40.080591535202551],[-74.969170942111845,40.080537808800976],[-74.969232399291514,40.080527198933808],[-74.969294228075157,40.080507526027539],[-74.969348067392787,40.080490683783538],[-74.969405963368231,40.080470914763445],[-74.969472345404853,40.080436230129536],[-74.969559444112633,40.08037634176965],[-74.96963590562352,40.080335852901435],[-74.969684588779188,40.080300739968862],[-74.969743537290128,40.080255291356664],[-74.969889605873149,40.080165898209714],[-74.970014910863583,40.080074605968996],[-74.970072024483656,40.080033246031569],[-74.970133159972676,40.08000279711765],[-74.970190590050308,40.079975519527231],[-74.970248002481242,40.079948671293764],[-74.970304497301981,40.079922401853729],[-74.970361852277165,40.079896924508787],[-74.970419209516066,40.079871448092021],[-74.970523898739728,40.079825144636288],[-74.970603082667679,40.079790496866146],[-74.970655882447176,40.079767141171025],[-74.970714139464079,40.079741514267553],[-74.970771483581586,40.079716294169401],[-74.970830661535942,40.079690003763986],[-74.97077840834551,40.079612783377407],[-74.970731157325858,40.079566151883036],[-74.97069075358911,40.079526981940539],[-74.970597005410283,40.079437170168831],[-74.970555851779721,40.079394463352358],[-74.970457221857671,40.079292947406664],[-74.970401334664274,40.079238983916682],[-74.970347998739328,40.079188170979599],[-74.970296412457017,40.079138344658325],[-74.970240613373008,40.079082237761604],[-74.970175854649241,40.079009427197789],[-74.970112619176732,40.079053183714954],[-74.970006575412185,40.079139362504122],[-74.969762928100081,40.079337365855721],[-74.969545749461986,40.07914427234553],[-74.969498794758096,40.079104574929268],[-74.969456601564602,40.079067475149799],[-74.969406673403981,40.079021483845892],[-74.969119075375588,40.078768843098906],[-74.968900926580844,40.078620518026028],[-74.968774077974189,40.078509734943061],[-74.968726626338807,40.078468075240757],[-74.96868174801368,40.078429053962502],[-74.968609262937136,40.078365761824486],[-74.968876581966228,40.078189762175903],[-74.969077257950673,40.078068104126956],[-74.969101548731516,40.078048695312141],[-74.969112673766006,40.078031263843151],[-74.969116713357579,40.078019225044706],[-74.969116925796556,40.078017848840858],[-74.969117926427174,40.078011324958794],[-74.969118251530872,40.078009203590852],[-74.969154092161872,40.077983627972777],[-74.969185470540253,40.077961232384006],[-74.969193972451421,40.07795516483894],[-74.969199110246834,40.077951500148608],[-74.969209531667801,40.077949224808215],[-74.969217247470752,40.077947539078806],[-74.969235163384255,40.077943625814498],[-74.969288490030749,40.077921300827647],[-74.969448985845787,40.07780935305744],[-74.969530752588923,40.077751947992866],[-74.969500576383211,40.077729292096237],[-74.969091678245945,40.077412737957012],[-74.969227325061013,40.077352508190359],[-74.969320195867411,40.077310983052705],[-74.969385734080902,40.07728209994881],[-74.969379641881176,40.077256289994345],[-74.968827216988103,40.076756281676353],[-74.968390182160789,40.07636103707636],[-74.968331664099509,40.076308113508311],[-74.968233261581929,40.076310194617783],[-74.967959820428064,40.076352325189973],[-74.967721539259458,40.076375076374362],[-74.967687399148517,40.076378336183936],[-74.967471200637434,40.07638614555843],[-74.96727153361411,40.076393357342361],[-74.967222123732626,40.076397564632806],[-74.967042112014525,40.076412891270635],[-74.967041518961764,40.076413022882832],[-74.96689614874316,40.07644519845833],[-74.966818486374947,40.076518586996734],[-74.966826266160041,40.076624265887119],[-74.966827473279096,40.076640668527922],[-74.966824198526211,40.076834136200368],[-74.966758902308484,40.076947250666052],[-74.966726049577844,40.076979067561993],[-74.9665888410251,40.077111948895002],[-74.966504283426843,40.077175377373386],[-74.966468492038871,40.077202224787939],[-74.966312028100376,40.077262950905954],[-74.966274492087493,40.077272116586165],[-74.966151785476569,40.07730208025869],[-74.966020834330777,40.077309660544906],[-74.966021086371981,40.077316207544762],[-74.966034315060838,40.077660439909188],[-74.965993211987239,40.07820938117554],[-74.966288708257267,40.077847910883129],[-74.966614544735862,40.078119121011774],[-74.966826549185598,40.0783397787242],[-74.966981165484995,40.078505316194949],[-74.967469793665941,40.078973801883528],[-74.967673626874387,40.079148847768522],[-74.968053457807969,40.079500986714983]]]},"properties":{"OBJECTID_1":13,"OBJECTID":1020,"ASSET_NAME":"Poquessing Creek Park 5","SITE_NAME":"Poquessing Creek Park","CHILD_OF":"Poquessing Creek Park","ADDRESS":"4341 WHITING RD","TYPE":"Land","USE_":"Park- Watershed\\Conservation","ACREAGE":23.065407,"ZIPCODE":"19154","ALLIAS":" ","GLOBALID":"6f606545-3223-47b6-a26a-97825dcdd0c1","Shape_Length":6076.448357734359,"Shape_Area":1004729.1085316243}},{"type":"Feature","id":14,"geometry":{"type":"Polygon","coordinates":[[[-74.980818172873796,40.059950556857736],[-74.980731322978073,40.059961955252199],[-74.980681300233911,40.059981551634735],[-74.980621056967664,40.060010356566721],[-74.980568035239557,40.060043118232244],[-74.980529689235709,40.060078124977856],[-74.9805055562002,40.060126711935943],[-74.980500706089828,40.060185219536308],[-74.980491093348419,40.060239830541967],[-74.980508757749178,40.060289425027925],[-74.980514436718764,40.060331167021999],[-74.980522729039819,40.060369188417326],[-74.980526411808114,40.060399535118449],[-74.980549379961815,40.060439802514978],[-74.980611532513592,40.060484796204982],[-74.980737834157978,40.060586177872096],[-74.980790461634641,40.060623378296377],[-74.980828104798562,40.060665889777695],[-74.980858525123921,40.060704445372252],[-74.980930418343561,40.060872595784147],[-74.980966287975875,40.060958560009063],[-74.981008033464335,40.06113655512187],[-74.981016698781815,40.061222560215441],[-74.981016935740087,40.061224914113943],[-74.981017737879355,40.061270936660222],[-74.980993512907432,40.061397702819995],[-74.980983648445118,40.061449321646087],[-74.980976111807152,40.061524496472096],[-74.980974342347622,40.061611653950166],[-74.980978204148116,40.061648394428481],[-74.98098994869008,40.061689016565836],[-74.981006536047758,40.06172048520893],[-74.981068116401033,40.061840380658914],[-74.981066333968528,40.061944349078786],[-74.981032895399196,40.062039990116034],[-74.980972874183081,40.062123643328043],[-74.980936060832278,40.062181380606752],[-74.980893943603888,40.062248445872491],[-74.980879104235001,40.062310494516481],[-74.980867340897944,40.062357489235133],[-74.980850352016787,40.062411922491179],[-74.980835435437385,40.062475860615301],[-74.980828590285284,40.062522972964651],[-74.98086054504715,40.062584258957749],[-74.980891044556017,40.062620925081482],[-74.98092407916748,40.062655760948324],[-74.980944034237268,40.062682473815237],[-74.980963101748998,40.062724781726644],[-74.980968318486163,40.062777858810598],[-74.981009029103689,40.062865831000884],[-74.98103798640831,40.062940282312027],[-74.981067328213399,40.06300528705539],[-74.981129035257823,40.06312156408783],[-74.981141089720907,40.06318804355157],[-74.981125941898512,40.063257649269808],[-74.981126164583173,40.063312497336597],[-74.981094499164513,40.063364685597783],[-74.981065601351574,40.063409375167389],[-74.981039084299397,40.063456014351324],[-74.981044225230335,40.06351098004405],[-74.98105466768618,40.06355661857463],[-74.981078631089957,40.063632840861125],[-74.981083539506599,40.063693474982365],[-74.981063320126481,40.06376674116639],[-74.981022734591804,40.063856535943216],[-74.981015426678184,40.063914984317663],[-74.981037545596863,40.063912055456193],[-74.981220822877248,40.063887784774749],[-74.981388603194773,40.063860676865644],[-74.981927074663588,40.063758580482116],[-74.981988179465546,40.063750142605826],[-74.981933541275708,40.063574193669304],[-74.981684873396262,40.062753047475589],[-74.981644749231847,40.062575486424443],[-74.981608178445796,40.062330057714973],[-74.981599387742108,40.062201587672206],[-74.98159558913396,40.062090850215824],[-74.981595217505429,40.062000707277747],[-74.981597674331198,40.06110709291336],[-74.981605217661567,40.061010644872454],[-74.981621904854265,40.060925593119258],[-74.981637844827162,40.06087048752719],[-74.981659007668043,40.060811910707692],[-74.981691605564052,40.060737522613103],[-74.981725051975829,40.060673691161234],[-74.981762808717846,40.060612225238366],[-74.981810402672195,40.060549301406681],[-74.981885244563131,40.060466929380304],[-74.981961667130406,40.060398378150097],[-74.982104070096838,40.060294274348301],[-74.982579329541082,40.059970560246391],[-74.982706519151492,40.060069136241452],[-74.983143781891911,40.059775385252664],[-74.984108403666809,40.059127342177966],[-74.984811465934172,40.05865500513034],[-74.984627017194725,40.058487474015934],[-74.984402731395392,40.058283756355344],[-74.984534965267414,40.058161700738232],[-74.984603474504539,40.058072000333006],[-74.984359236518131,40.057848295955274],[-74.984337969688113,40.057861929891132],[-74.98431727599835,40.05787519646816],[-74.984216063517209,40.057907649355229],[-74.984156243177409,40.057927142884509],[-74.984087350847219,40.057946417978783],[-74.9839772094804,40.05797516676148],[-74.983803420981332,40.05800587195877],[-74.983716243579352,40.058028195521182],[-74.983511627589081,40.058096881463939],[-74.983441846379847,40.058120863586538],[-74.983396251178775,40.058143368240117],[-74.983297152295066,40.058206983350402],[-74.983097267519454,40.058353739417008],[-74.982972334529151,40.058432913493732],[-74.982945919281931,40.058449653520405],[-74.982917445340348,40.058454652584636],[-74.982808143974566,40.05847384304338],[-74.982670357472614,40.058512389772872],[-74.982507474505908,40.05860964560901],[-74.982435842921248,40.058658610673284],[-74.982349183313175,40.058717848099903],[-74.982329986423508,40.058730971078468],[-74.982270120879974,40.058783730952406],[-74.982245210490248,40.058805685523673],[-74.982132613158342,40.058943401031947],[-74.982130514912512,40.058945968089333],[-74.981875329405,40.059191022923166],[-74.981793522714838,40.059304186954506],[-74.981731709164421,40.059372475522167],[-74.981636872698076,40.05947851071398],[-74.981418608325257,40.059681296606335],[-74.981339509168237,40.059780237325704],[-74.981287919094029,40.059818216763937],[-74.981231032286246,40.0598546097034],[-74.98111847171792,40.059897643479104],[-74.981045969324498,40.059910914292011],[-74.980964607625381,40.059922685714156],[-74.980818172873796,40.059950556857736]]]},"properties":{"OBJECTID_1":14,"OBJECTID":1021,"ASSET_NAME":"Poquessing Creek Park 8","SITE_NAME":"Poquessing Creek Park","CHILD_OF":"Poquessing Creek Park","ADDRESS":"9900-99 HEGERMAN ST","TYPE":"Land","USE_":"Park- Watershed\\Conservation","ACREAGE":16.43638,"ZIPCODE":"19114","ALLIAS":" ","GLOBALID":"88e6073a-600d-4aa0-ab4c-83e0ccccefac","Shape_Length":5865.1051978623691,"Shape_Area":715968.59364230616}},{"type":"Feature","id":15,"geometry":{"type":"Polygon","coordinates":[[[-74.972792728856888,40.072000700086221],[-74.972560378746479,40.072168315484568],[-74.972463997682553,40.072348333137668],[-74.972388926901928,40.072515191152718],[-74.972345990548376,40.072694222630474],[-74.972334843995725,40.072855214438675],[-74.972314605923529,40.072912915572878],[-74.972231545218875,40.073086081606753],[-74.972182987829868,40.07315871915263],[-74.972163962234134,40.073186840348882],[-74.972122238052393,40.073223595666917],[-74.972091427225209,40.073255722867273],[-74.97202450009199,40.073299597396193],[-74.971781893999065,40.073355275547534],[-74.971415445712765,40.07350312736321],[-74.971367931064108,40.073528497930873],[-74.971321039311206,40.073582293447338],[-74.971300373848877,40.073606770570237],[-74.971204357453729,40.073692332191385],[-74.971136909305997,40.073745405289628],[-74.971075388900161,40.073798622598495],[-74.971064257285789,40.073853056607],[-74.971064048343663,40.073930550077847],[-74.97111135945417,40.074006912971839],[-74.971174422848222,40.074060863232681],[-74.97128981367436,40.074141151096931],[-74.971476534188682,40.074237224748146],[-74.97157271499681,40.074332930134752],[-74.971605204020818,40.074434391525479],[-74.97162576912713,40.0744560017556],[-74.971646587832637,40.074493239098317],[-74.971622359148526,40.074561057301501],[-74.971570808391178,40.074596978354052],[-74.971489472000044,40.074626923265726],[-74.971355578364012,40.074780961687104],[-74.971246042656048,40.074954660145778],[-74.971272658927035,40.075024909756962],[-74.971258799474896,40.075079590493885],[-74.971296238849803,40.075256527432167],[-74.971318674204696,40.075276123084016],[-74.971334154323884,40.075282858055211],[-74.971366092997414,40.075296752626002],[-74.971393745233058,40.07531990748712],[-74.971409456741767,40.075372727968158],[-74.971413813600321,40.075419093451792],[-74.971475138395292,40.075493015179994],[-74.971538455300916,40.075554503386662],[-74.971975793949852,40.075942496643371],[-74.972019778457778,40.075966547147836],[-74.972049554191145,40.07595708661237],[-74.97208856847098,40.075949162252293],[-74.97213852470577,40.075943482927663],[-74.972150614463288,40.075885173958156],[-74.9721742554309,40.075575917269425],[-74.972210092583296,40.075269948741656],[-74.972207664789678,40.075268913295368],[-74.972188271667662,40.075258656181077],[-74.972185549724514,40.075257213548198],[-74.972177254815094,40.075251712937693],[-74.972167987105252,40.075245564368934],[-74.972165019309273,40.075243594973166],[-74.972159220500345,40.075238693538701],[-74.972149734889726,40.075230677185701],[-74.972147037827128,40.075228398057497],[-74.972141703879828,40.07522248514239],[-74.972132784221827,40.075212592920671],[-74.972131061887524,40.075209969716461],[-74.972122164573875,40.07519641067141],[-74.972117272716901,40.075188954092624],[-74.972114642439493,40.075184099512384],[-74.972111110284018,40.075177581378263],[-74.972108309234812,40.075169937456693],[-74.972104083952061,40.075158406123833],[-74.972103784057254,40.075157595118426],[-74.972101774304775,40.075148472743095],[-74.972099666577208,40.075138907375205],[-74.972099213491774,40.075136853692875],[-74.972097709854367,40.075127029902745],[-74.972096028587643,40.075116016008209],[-74.972095932726788,40.075114433210842],[-74.972095102177079,40.07510106285298],[-74.972095003222776,40.07509941240049],[-74.97209452024687,40.075079159947776],[-74.972094428639878,40.075075211038481],[-74.972095105257225,40.075058061974907],[-74.972095328819009,40.075052432075502],[-74.972096303143857,40.075033971039133],[-74.972097012991114,40.075020535194994],[-74.972097307729328,40.075012852572193],[-74.972098212058143,40.074989113166779],[-74.972098354424816,40.074985351028793],[-74.972099439334372,40.0749635028331],[-74.972099729493166,40.074957650176607],[-74.972100827329044,40.074938664998712],[-74.972101530787285,40.074926587816506],[-74.972102739848907,40.074912361184694],[-74.972103621924916,40.074901994049242],[-74.972104652100612,40.074891046599234],[-74.972106632040209,40.074870055332575],[-74.972106704056984,40.074869442542415],[-74.972109598706922,40.074844303226236],[-74.972110241420054,40.074838720402873],[-74.972112649635889,40.074820875219039],[-74.972113736702582,40.074812834199925],[-74.972117161802146,40.074788976415341],[-74.972118152164043,40.0747820936392],[-74.972121655387497,40.074761683441935],[-74.972124365449488,40.074745890086533],[-74.972126582176713,40.074733808034829],[-74.972128686088126,40.074722361214938],[-74.972132533856879,40.074702817166475],[-74.972133210604937,40.074699381518947],[-74.972137694652986,40.074677847966079],[-74.972138101257173,40.074676025014583],[-74.972144092049732,40.074649290853806],[-74.972144542856896,40.074647448246118],[-74.972149919342968,40.074625546101345],[-74.972151386523578,40.074620280561092],[-74.972157744362505,40.074597471330684],[-74.972163959133468,40.074575176758003],[-74.972171673661364,40.074547508402325],[-74.972173271439104,40.07454177475806],[-74.972178034696071,40.074527885438449],[-74.972186263100326,40.074503907679066],[-74.972190719173895,40.07449090299486],[-74.972191567383689,40.074488435638592],[-74.972196360906622,40.074475496779726],[-74.972199596192013,40.074466753490277],[-74.972202099366513,40.074460535328839],[-74.972206536240577,40.074449517043483],[-74.972208267670382,40.074445216630586],[-74.972210888297667,40.074440626841721],[-74.972216016858169,40.074431649984199],[-74.972218780388886,40.074427637632262],[-74.972224918887079,40.074418716724217],[-74.972225265541539,40.074418214195823],[-74.972234888260175,40.074407444708932],[-74.972240968345346,40.074400637203894],[-74.972241396527551,40.074400206028621],[-74.972247893251605,40.074393650081468],[-74.972249901563245,40.074392039752844],[-74.972254960085891,40.074387980152181],[-74.97228333026105,40.074366913131946],[-74.972319537692613,40.074346194130612],[-74.972353206892748,40.074333580180905],[-74.972379112143301,40.074327533896749],[-74.972425077851895,40.074298747351243],[-74.972555888289421,40.074016762144886],[-74.972844427227741,40.073645945945891],[-74.972833773616983,40.073629162824517],[-74.972829375605158,40.073619987250481],[-74.972825232747766,40.073611340464176],[-74.972818845303152,40.07359314664162],[-74.972816213870288,40.07358204762167],[-74.97281578889411,40.073579593644659],[-74.972813360196028,40.073565577348511],[-74.972812319043484,40.073556688344034],[-74.97281214130679,40.073555185566306],[-74.972812589457405,40.073538569821196],[-74.972812654071717,40.073536189850145],[-74.972814429202359,40.073527268888562],[-74.972816242833517,40.073518152423823],[-74.972817663678271,40.073514016601685],[-74.972820747302606,40.073505049770574],[-74.972822386668454,40.073500274963173],[-74.972824831292044,40.073494796957085],[-74.972827232934904,40.073489423337605],[-74.972831476634582,40.073481113489983],[-74.972834714032658,40.073474778801049],[-74.972836019211897,40.073472636958464],[-74.972843051518694,40.073461132623351],[-74.97284446696186,40.073458818637519],[-74.972852173789065,40.07344759822135],[-74.972860724559027,40.073436276555526],[-74.972869474421657,40.073418545872038],[-74.972950302099207,40.073321712899322],[-74.973220619902079,40.07304551407784],[-74.973285590851731,40.072988831533607],[-74.973320473597539,40.072968299192006],[-74.973355808257423,40.072955407132937],[-74.973399184846912,40.072947514790613],[-74.973463290178287,40.072948671744193],[-74.973579299160988,40.072846408833378],[-74.973796159180523,40.072638091511045],[-74.974098264553746,40.072433409943528],[-74.974219564600745,40.072395205253599],[-74.97421781094971,40.072392143403292],[-74.97421696633586,40.072389997373961],[-74.974213012709399,40.072379934220962],[-74.974211528441742,40.072376165229116],[-74.974210241788285,40.072370662844079],[-74.974207648407301,40.072359546757269],[-74.97420762755003,40.072356560103003],[-74.974207558849642,40.072346775511839],[-74.974207534790338,40.072343121987402],[-74.974209687267233,40.072334174982053],[-74.974208991235358,40.072332066782444],[-74.974235946529774,40.072289622360032],[-74.974273116043449,40.072256988628368],[-74.974345108778422,40.072212452173318],[-74.974451042784025,40.072155894314101],[-74.974533218684485,40.072114499748274],[-74.974638222616051,40.072069054698062],[-74.974736260454947,40.072034163163025],[-74.974885552521513,40.071997591668051],[-74.974961005936237,40.071984467759805],[-74.975046983965726,40.071974544458143],[-74.975116588523179,40.071970155659734],[-74.975222019506035,40.071969644201232],[-74.975358146359781,40.07197654625346],[-74.975465613389147,40.07199289501412],[-74.975539359285449,40.07200843491858],[-74.975640739283492,40.071786366364698],[-74.975592414359369,40.071722373362178],[-74.975716844179871,40.071270514193358],[-74.975509475630687,40.071088422768398],[-74.975361491496813,40.070958475330471],[-74.975211892685635,40.070827787663866],[-74.975030603302542,40.070676646091762],[-74.975022009711381,40.070669481394326],[-74.974852834087983,40.070853637725683],[-74.974850301657341,40.07085639511709],[-74.974833037738051,40.070866184617415],[-74.97468694616704,40.070949026704106],[-74.974665862706217,40.070960982015833],[-74.974649533855171,40.070963453947002],[-74.974406136531513,40.071000295800985],[-74.974151312547761,40.071064800640301],[-74.973839780278766,40.071209990992678],[-74.973702114890372,40.071311515519113],[-74.973669689850169,40.071384377595976],[-74.973641856696261,40.071446920705256],[-74.973561614526545,40.071627230901903],[-74.973368731715624,40.071773007930311],[-74.972792728856888,40.072000700086221]]]},"properties":{"OBJECTID_1":15,"OBJECTID":1022,"ASSET_NAME":"Poquessing Creek Park 6","SITE_NAME":"Poquessing Creek Park","CHILD_OF":"Poquessing Creek Park","ADDRESS":"130 DIMARCO DR","TYPE":"Land","USE_":"Park- Watershed\\Conservation","ACREAGE":15.120365,"ZIPCODE":"19154","ALLIAS":" ","GLOBALID":"9dfd316f-2b67-4594-8da1-e73ef100e9b8","Shape_Length":5263.2107836866253,"Shape_Area":658643.0776886933}},{"type":"Feature","id":16,"geometry":{"type":"Polygon","coordinates":[[[-74.980953340234123,40.065574662105242],[-74.980929905561055,40.065624401354974],[-74.980922521959513,40.0656929993497],[-74.980914860271795,40.065779009217685],[-74.980907739783802,40.065858943600986],[-74.980857085220578,40.066014506238218],[-74.980851437479032,40.066031849075188],[-74.980822935561633,40.066068303362904],[-74.980795908575985,40.066102871209274],[-74.980733352514079,40.06618287882516],[-74.98064116399749,40.066251275586502],[-74.980603056143536,40.06627235042307],[-74.98035204709106,40.066329983420651],[-74.980031569478413,40.066523676050124],[-74.979842038612446,40.066720524832569],[-74.97979302641086,40.066886625027223],[-74.97968932217502,40.067003475999194],[-74.979703366112062,40.06701872910233],[-74.980017582000471,40.067359997456521],[-74.980110826847934,40.067401886008611],[-74.980119159887224,40.067458196494997],[-74.980131175292314,40.067507964774435],[-74.980144447744578,40.067542890297396],[-74.980173451919953,40.06758965394075],[-74.980312600367455,40.067805368560556],[-74.980462955808378,40.068034096032413],[-74.980555688244493,40.068175165181771],[-74.980608244994983,40.06825511417172],[-74.980641833403212,40.068306208775248],[-74.980658525824467,40.068331606745424],[-74.980661322421312,40.068335986664273],[-74.980673615775743,40.068355894720632],[-74.98069288996507,40.068387114543647],[-74.980694973406855,40.068390663608369],[-74.980699773329007,40.068398888914039],[-74.980723527485097,40.068439593229101],[-74.980740610637653,40.068468866190344],[-74.980763897142225,40.068508759976716],[-74.980774634777731,40.068527160883754],[-74.98078207861326,40.068539283953477],[-74.980782443606216,40.068539881148034],[-74.980791722721321,40.068555800499858],[-74.980805508244615,40.06858500929652],[-74.980816959946509,40.068609275348145],[-74.980823150768046,40.068626465567711],[-74.980837412263952,40.068666078765105],[-74.980855854693274,40.068717302076088],[-74.980867391042665,40.068749349093672],[-74.98088246169236,40.068791206523883],[-74.9809011345817,40.068843077841876],[-74.980920113436298,40.068895786414089],[-74.980938597895971,40.068947132365331],[-74.980954470237037,40.068991216722765],[-74.980977686530977,40.069055705255572],[-74.980987934030054,40.069084161975304],[-74.98100553072041,40.069133038314177],[-74.981022541840204,40.069180285822625],[-74.981032578341029,40.069208166174846],[-74.981045363425295,40.069243672730515],[-74.981063160253001,40.069293107137369],[-74.981070170634254,40.069312576069649],[-74.981076626749427,40.069330510640278],[-74.981084113156868,40.069351304801195],[-74.981084394428208,40.069352573977014],[-74.981085726361698,40.069358818044037],[-74.981087123641871,40.069365386268522],[-74.981090974342308,40.069377933637618],[-74.981093306780892,40.069383457530144],[-74.981096602993503,40.069391258220641],[-74.981103524790385,40.069404278765901],[-74.981105880455331,40.069407509996402],[-74.981107764138272,40.069410092797753],[-74.981117375771021,40.069421290417594],[-74.981134395465915,40.069435579700468],[-74.981159950466491,40.069452439955008],[-74.98118823025122,40.069466420263957],[-74.98120303176421,40.06947092183588],[-74.981218573480618,40.069474241918286],[-74.981234328860708,40.069476723746028],[-74.981253540966705,40.069478449065706],[-74.981267969123735,40.069479426561891],[-74.981278398283209,40.069478671358709],[-74.981288830773806,40.069477920740219],[-74.981308472569125,40.069474291437807],[-74.981321897579292,40.069469732916261],[-74.981333655733579,40.069463571776986],[-74.981342151468979,40.069457228407451],[-74.981350408360981,40.069447857997439],[-74.981357101834476,40.069437137960556],[-74.98136110696548,40.069425819716727],[-74.981364121412312,40.069408085417869],[-74.981383361568916,40.069217450235413],[-74.981426309339483,40.06887130755652],[-74.981441692585889,40.068770040293643],[-74.981488822082525,40.068512136436844],[-74.981522334400793,40.068350904584896],[-74.981568713638666,40.068149038143126],[-74.981621376459259,40.067946109334549],[-74.981643624456225,40.067865395933786],[-74.981693435738777,40.067692007532841],[-74.981722985701623,40.067591574431006],[-74.981759125514174,40.067470853921904],[-74.981833810890123,40.067221836975285],[-74.981862822942645,40.067132131630466],[-74.981907131691798,40.066990380492093],[-74.981965920484086,40.066802307287617],[-74.982009909085278,40.066661694564942],[-74.982036133318203,40.066577929455178],[-74.98205401683677,40.066519105951095],[-74.982079558855503,40.066430932588297],[-74.982092654450014,40.06638373377227],[-74.98211401067222,40.066303350234065],[-74.982131351605361,40.06623339085273],[-74.982144651172959,40.066173518001762],[-74.98216784107143,40.066045722919668],[-74.982179202650585,40.065962208887257],[-74.98219600815132,40.065822134323462],[-74.98220473039359,40.06573314398959],[-74.982208907368047,40.065630492087784],[-74.982208113772515,40.065554291179794],[-74.982206758122786,40.065494250022638],[-74.982204867294911,40.065435109657734],[-74.982202245697124,40.065373874725026],[-74.98220167511839,40.065362537244638],[-74.982201257620559,40.065354231044033],[-74.982143672484952,40.065356449972143],[-74.981786030322695,40.065331520333224],[-74.981665699522125,40.065279646332179],[-74.981616332145947,40.065164852786431],[-74.981561774079665,40.065033083251322],[-74.981529657216967,40.064955209416809],[-74.981523033402951,40.064920903794899],[-74.981254994731032,40.064957909210321],[-74.981126570472554,40.064983350492085],[-74.980973216988147,40.065013729734105],[-74.980813193899465,40.065045430292685],[-74.980803197919485,40.06505075889406],[-74.980792163564232,40.065065665167836],[-74.980786106663487,40.065075594951914],[-74.980783109069762,40.065087545679255],[-74.980780525322047,40.065119981385614],[-74.980783552321213,40.065142700921719],[-74.980788816298897,40.065157708952754],[-74.980796425787105,40.065172113929123],[-74.980856792374766,40.065277253068622],[-74.980880721870747,40.065316194610844],[-74.980936902910386,40.065400425331518],[-74.980981508299834,40.065463038831972],[-74.980994944112325,40.065481897621538],[-74.98096595530933,40.065550884133657],[-74.980953340234123,40.065574662105242]]]},"properties":{"OBJECTID_1":16,"OBJECTID":1023,"ASSET_NAME":"Poquessing Creek Park 7","SITE_NAME":"Poquessing Creek Park","CHILD_OF":"Poquessing Creek Park","ADDRESS":"10501 KNIGHTS RD","TYPE":"Land","USE_":"Park- Watershed\\Conservation","ACREAGE":13.003107999999999,"ZIPCODE":"19154","ALLIAS":" ","GLOBALID":"12bdd780-c0a7-4656-9ae3-f15cbf39c4e8","Shape_Length":3952.3340898802958,"Shape_Area":566415.45674895262}},{"type":"Feature","id":17,"geometry":{"type":"Polygon","coordinates":[[[-74.989981463758326,40.126262940293742],[-74.990070096544287,40.126193634687191],[-74.990238229664001,40.126062164013888],[-74.990345225196748,40.125972443752069],[-74.99034481913155,40.125938773900053],[-74.990193286688523,40.126057759691044],[-74.99019011283923,40.12605798718554],[-74.990185550502574,40.126057000967435],[-74.990148939979903,40.126053413811547],[-74.99005811082813,40.126045024864339],[-74.989933728571415,40.126033721202568],[-74.989855541316203,40.126025074130702],[-74.989852092863771,40.126024320075054],[-74.989839847002344,40.126019524459458],[-74.989834374258677,40.126014290391119],[-74.989830720099079,40.126001323794561],[-74.989834941254983,40.125987428890539],[-74.989839863510852,40.125973669753364],[-74.989847834353924,40.125940941616086],[-74.989844236537209,40.125902670915252],[-74.989829768479311,40.125865947757205],[-74.989804876374208,40.12583171995206],[-74.989788284520927,40.125816765960352],[-74.989769284952388,40.125803604962137],[-74.989748215938732,40.125792462231352],[-74.989700252564177,40.125762246347584],[-74.989669220140897,40.125740877979531],[-74.989596663114497,40.125685999848805],[-74.98956895165901,40.125662464813132],[-74.989485112057451,40.125580013576354],[-74.989458858910183,40.125550850334001],[-74.989427979596755,40.125504576578123],[-74.989364098855759,40.125396843837933],[-74.988987007209758,40.124621479119838],[-74.988940989001335,40.124526923195027],[-74.988914443764244,40.124479390024533],[-74.988875421303959,40.124418776592933],[-74.988851846098072,40.124387514034325],[-74.988789942512653,40.124318449776531],[-74.988160843722383,40.123660038752092],[-74.988097883511017,40.123594988178723],[-74.988011551711324,40.123505535903405],[-74.987967033500283,40.123477562728638],[-74.987931424975599,40.123473445642375],[-74.987874344911503,40.123491386289189],[-74.987527198671287,40.123747000172699],[-74.987524875322265,40.123748710448304],[-74.987659667882809,40.123864895728474],[-74.987715438694011,40.123889885559784],[-74.987773867830612,40.123907942452185],[-74.987847812820945,40.123932428032042],[-74.987924097721077,40.123947886137586],[-74.987976863509161,40.123959750853096],[-74.988032218101424,40.123963017594328],[-74.988131711663854,40.123983151718399],[-74.98820567047909,40.124008051884417],[-74.988267164495539,40.124046964258895],[-74.988328179186794,40.124098389874028],[-74.988365049767069,40.124146148619651],[-74.988373351499291,40.124156902135184],[-74.9884078723112,40.124204457565192],[-74.988408924285395,40.124206784143396],[-74.98842668616993,40.124246096069669],[-74.988437629442643,40.12428636247639],[-74.988436783024738,40.124329084107039],[-74.988436842357103,40.124415427255691],[-74.988450565477095,40.12448284999072],[-74.988476729673152,40.124566746461703],[-74.988566246992377,40.124741489311411],[-74.988623408096586,40.124863457490768],[-74.988686290768413,40.12498847164818],[-74.988710072733241,40.125041397163912],[-74.988744970951458,40.125195431201561],[-74.988784743577639,40.125284196583188],[-74.988823732078217,40.125335368774117],[-74.988883316745316,40.125381943533611],[-74.989055972622324,40.125530415611344],[-74.98908826101912,40.125594102110298],[-74.989100563919109,40.125664973255326],[-74.989070391575623,40.125727836049009],[-74.989017437590334,40.125768956191536],[-74.988997795676966,40.125815416522265],[-74.989016840421414,40.125876214353404],[-74.989032510306473,40.125952633089248],[-74.98903909110156,40.126009525631453],[-74.989052855586195,40.126087970163589],[-74.989099010357222,40.126138808787147],[-74.989172378724589,40.126163948187767],[-74.989324671126141,40.126215382913934],[-74.989475584746287,40.126238687383932],[-74.989567820862476,40.126249397455624],[-74.989643914079721,40.126247789916185],[-74.989706537337312,40.126247490854375],[-74.989912872447661,40.126252210531533],[-74.989981463758326,40.126262940293742]]]},"properties":{"OBJECTID_1":17,"OBJECTID":1024,"ASSET_NAME":"Poquessing Creek Park 2","SITE_NAME":"Poquessing Creek Park","CHILD_OF":"Poquessing Creek Park","ADDRESS":"1300-2600 POQUESSING CRK DR","TYPE":"Land","USE_":"Park- Watershed\\Conservation","ACREAGE":3.4203030000000001,"ZIPCODE":"19116","ALLIAS":" ","GLOBALID":"dac27b3a-6b58-4c71-8892-378ea87b0ad9","Shape_Length":2898.4213371817441,"Shape_Area":148988.41102403789}},{"type":"Feature","id":18,"geometry":{"type":"Polygon","coordinates":[[[-75.053515701517554,40.100555359236125],[-75.052230235955804,40.101858919978973],[-75.05279043132343,40.102234267896996],[-75.052992224025147,40.102366400672096],[-75.053627472911558,40.102799318355224],[-75.056349068622865,40.100075976788894],[-75.056750376195922,40.098995127797515],[-75.058057868131854,40.097903406644249],[-75.058469767269756,40.097568913893802],[-75.058640040177437,40.097416260317736],[-75.059249395270243,40.096784438067317],[-75.059814208725214,40.096472977910942],[-75.059897175727571,40.096246363606284],[-75.060024175525101,40.096123049804334],[-75.060214657747977,40.095936175896],[-75.060699426387558,40.095503434299999],[-75.061440637968389,40.095351960885878],[-75.062719988355795,40.095841449919135],[-75.062878739937801,40.095902323002704],[-75.063394462816106,40.096099114925742],[-75.063547014421346,40.096331268067338],[-75.063246331971641,40.096682879929361],[-75.064351696134551,40.09730129244349],[-75.064468235900378,40.097296753490888],[-75.064619526619794,40.097284551901438],[-75.064630329282082,40.09711160786793],[-75.063778052677861,40.096219554141832],[-75.063871230521045,40.096150439200549],[-75.06366315696026,40.095898990744104],[-75.063380694057571,40.095944393306127],[-75.061074218163242,40.094658986409399],[-75.061459926144238,40.094138213911329],[-75.061911738396276,40.093515477918537],[-75.062459893308073,40.093049247693244],[-75.062178113683103,40.09288126374129],[-75.062343382882219,40.092618142849894],[-75.062760999171857,40.091963798598691],[-75.062892894018319,40.091762040769467],[-75.06363037007371,40.090870383422939],[-75.063782504998599,40.090686346337449],[-75.063794424758413,40.090669041957597],[-75.063701789620836,40.090650437605021],[-75.063611475147596,40.090637072008676],[-75.06352404627161,40.090627803241723],[-75.063324742089804,40.090612910093718],[-75.063294862671441,40.090615222093248],[-75.063270795150487,40.090629109562911],[-75.063255462781584,40.090640189918823],[-75.063244518236445,40.090659200187432],[-75.063238746808409,40.090686158725383],[-75.063231763421399,40.09072392576968],[-75.063216827833728,40.090764517320338],[-75.063202203270592,40.090797288785382],[-75.063183686558801,40.090829368277141],[-75.063165361735031,40.090856634378667],[-75.063143878881803,40.09088442945685],[-75.062596408862902,40.091535727379025],[-75.062614123256836,40.091587099978611],[-75.061888372121558,40.092706079159562],[-75.061510192354405,40.09248039978268],[-75.06147893224167,40.092519196496013],[-75.06140943658535,40.093018896796821],[-75.0604664508556,40.093959462071695],[-75.059006826691373,40.093854001565489],[-75.058017668366773,40.093740961397351],[-75.05723808985077,40.09423909958236],[-75.05912141940999,40.095408947393636],[-75.057875675137751,40.096639788591411],[-75.057045970449522,40.09745969179108],[-75.056316330216205,40.097410492174639],[-75.056509624521169,40.09754344164616],[-75.056267800351065,40.097842774298549],[-75.054879544473422,40.099375366358707],[-75.05420839093324,40.099431866808835],[-75.054070094888715,40.099492834887293],[-75.053902386476778,40.099504953992856],[-75.053694184758655,40.099484018911369],[-75.053515701517554,40.100555359236125]]]},"properties":{"OBJECTID_1":18,"OBJECTID":1025,"ASSET_NAME":"Fairmount Drainage Right of Way 1","SITE_NAME":"Fairmount Drainage Right of Way 1","CHILD_OF":"Pennypack Creek Park","ADDRESS":"190 ALBURGER AVE","TYPE":"Land","USE_":"Park- Regional/Watershed","ACREAGE":53.021163000000001,"ZIPCODE":"19115","ALLIAS":" ","GLOBALID":"09196b3f-7f8c-4ac6-9e55-33f575cf2f5d","Shape_Length":15417.564814158772,"Shape_Area":2309602.0346450354}},{"type":"Feature","id":19,"geometry":{"type":"MultiPolygon","coordinates":[[[[-74.984594608071035,40.089475442731889],[-74.98462785433594,40.089495933617918],[-74.984659113978282,40.089465807013326],[-74.984688810279891,40.089436933117675],[-74.984714933224211,40.089411536066301],[-74.984757297787141,40.089365536685577],[-74.984827197110292,40.089293376735633],[-74.984968438158575,40.08911203413556],[-74.985020181286089,40.089038573190358],[-74.985057244060869,40.088984484343754],[-74.985115727293945,40.088891160182037],[-74.985182179419454,40.088779658528487],[-74.985197999528324,40.088750541739529],[-74.985151938682478,40.088736043026181],[-74.984943544044754,40.088637127127889],[-74.98486651838104,40.088554718758068],[-74.985059848095318,40.088230824276884],[-74.984793176388891,40.088148823960019],[-74.984541692703985,40.087808605578331],[-74.984631219747442,40.087698704658841],[-74.984033742841291,40.087255532776176],[-74.984148617457009,40.087169084263309],[-74.983818204877792,40.086900395445809],[-74.983647506979111,40.086967283197893],[-74.983537439677264,40.087004817136922],[-74.983443005586935,40.087025210510426],[-74.983363171872625,40.087042450996393],[-74.983270906987755,40.087056571851278],[-74.983068358998452,40.087064226307398],[-74.982923305839833,40.08706970806228],[-74.982786084465104,40.087046156561243],[-74.982476326404907,40.086947418545527],[-74.982161579670887,40.086807299636014],[-74.981899950951728,40.086573788390105],[-74.981737601609652,40.086323733543061],[-74.981660674693529,40.086094670076442],[-74.981670327626645,40.085858224392311],[-74.981704606864653,40.085622371846057],[-74.981837392188169,40.085388891800953],[-74.982004798904327,40.085213048752998],[-74.982233383565912,40.085048145352985],[-74.982459652262307,40.0849399890852],[-74.982722860001317,40.084832720873379],[-74.983131121882963,40.08479521495719],[-74.983117301239218,40.084529802508492],[-74.983067594036257,40.084513898635329],[-74.983000726844608,40.084496586841553],[-74.982906683703888,40.084503455970712],[-74.982764863632767,40.08451381341991],[-74.982739842262731,40.084416576852774],[-74.98274065129381,40.084094714128099],[-74.98273069186439,40.083734723838695],[-74.982745744037601,40.083365869131235],[-74.98281464141013,40.083187653173304],[-74.982933561169361,40.082991706476804],[-74.983049392972319,40.082871422794014],[-74.983070707481602,40.082416919144258],[-74.98296019620831,40.082310033821024],[-74.982964662987428,40.082234717464431],[-74.982964460995944,40.081867804010159],[-74.982857006090171,40.081800170583243],[-74.982782802969126,40.081739482059866],[-74.982782773765294,40.081739910265114],[-74.982677985111977,40.081598009044122],[-74.982651033621551,40.081547208438394],[-74.98261849821246,40.081485118145977],[-74.982588432079254,40.081403280921663],[-74.982574986767005,40.081330987048418],[-74.982557695695988,40.081223926562764],[-74.982555583071857,40.081118376824243],[-74.982579160917751,40.080336467741972],[-74.982571505879378,40.080136805822129],[-74.982830061031606,40.080154654404389],[-74.983002966794871,40.080229295389429],[-74.983024661855353,40.080206264701964],[-74.983064550648123,40.080172446531606],[-74.98312863731168,40.080136104034274],[-74.983206802557859,40.080104904932384],[-74.983271599344363,40.080090888096741],[-74.983341273795773,40.080086266042869],[-74.983422637959009,40.080091117143404],[-74.983432245039509,40.080056725773858],[-74.983501174696457,40.079772983496142],[-74.983377915495041,40.079737860822974],[-74.983265516304186,40.079701526213334],[-74.983128147138856,40.079642888109362],[-74.983005634614329,40.079539940681087],[-74.982913616775619,40.079423574266137],[-74.982858307824685,40.079282411198406],[-74.982855687000125,40.079184160493803],[-74.98286907266548,40.079076917772596],[-74.982897006943787,40.078979449618203],[-74.982973850630074,40.078795957279702],[-74.983072704874303,40.078607437941507],[-74.983245444678502,40.07832188889698],[-74.983597748792477,40.077838986944933],[-74.983722311175711,40.077690215733256],[-74.984029805456444,40.077364642619905],[-74.983747703912428,40.077179863715386],[-74.983700316334463,40.077123583091876],[-74.983674278155846,40.077070747533973],[-74.983667893282004,40.077018911279261],[-74.983677388293955,40.076964651350842],[-74.983693154451004,40.076907186799311],[-74.983762054053059,40.076838689026644],[-74.984216823416915,40.076323728279306],[-74.984505084885001,40.075997110906869],[-74.984086212117447,40.075782973380626],[-74.984346705461334,40.075575885152929],[-74.984523232658844,40.07521243456879],[-74.984764237793669,40.074869218926935],[-74.984971894933736,40.074592448038722],[-74.984941244744235,40.074575633708008],[-74.98487024435822,40.074536683290496],[-74.98474691659095,40.074469025354965],[-74.984709806910971,40.074455297566878],[-74.984671299109309,40.074452616554296],[-74.984637941301258,40.074458802520049],[-74.984599873635958,40.074478551545717],[-74.984525008995547,40.074553878667693],[-74.98440516703343,40.074674459850606],[-74.984100851508956,40.07498064441841],[-74.983910552928307,40.075174291838231],[-74.983730487513625,40.075382767281369],[-74.983447585525852,40.075730136324445],[-74.983310476070216,40.07591940908781],[-74.98316145914302,40.076138068096967],[-74.982966472789442,40.076453048110302],[-74.982783064355274,40.0767966524282],[-74.982669174886865,40.077037337225192],[-74.982575195801701,40.0772579561269],[-74.982439610981871,40.07761990218598],[-74.982317250809075,40.078006231436277],[-74.982226774872728,40.078323975935412],[-74.98218125919108,40.078503440350971],[-74.982151395848931,40.078626281937076],[-74.982068953574313,40.078993049623321],[-74.981994283516045,40.079355659507613],[-74.981856503414988,40.080011766317526],[-74.981808143755615,40.080236165983145],[-74.981776401998928,40.080525968986422],[-74.981773331011212,40.080778130215002],[-74.981796112750601,40.081062555160472],[-74.981808549455067,40.08115591526164],[-74.981851427422853,40.081474953088616],[-74.981866758877061,40.081611689147906],[-74.981887604979832,40.081864004707697],[-74.981889387598628,40.082040089370359],[-74.981890397897942,40.082125173656088],[-74.981888167520395,40.082184813913827],[-74.981895107766817,40.082261876441862],[-74.981870526620156,40.082512576144858],[-74.981815843737891,40.08286134486351],[-74.981765291929733,40.083112667008088],[-74.982053693912349,40.083241367213731],[-74.982102420473552,40.083465575812667],[-74.981767689982149,40.083764109764658],[-74.981576419062435,40.083707081265004],[-74.981549777750104,40.083771002895148],[-74.981513700318388,40.083851671550939],[-74.981438820166673,40.084015996005427],[-74.9813823057505,40.084126240080884],[-74.981303013446919,40.084267022286667],[-74.981239899267408,40.08437191085396],[-74.981135018502243,40.084537639839731],[-74.980873091202142,40.08495823863376],[-74.980657641292325,40.085298528102335],[-74.980515056954204,40.085522835767513],[-74.980427848855399,40.085660824415598],[-74.980369007751918,40.085763220448321],[-74.980313369803937,40.085879011437669],[-74.980284109366224,40.085960075606636],[-74.980265962158256,40.086026656180657],[-74.98025081337164,40.086107310714375],[-74.980244021661733,40.086173207995351],[-74.98023617377919,40.086301781587856],[-74.980239672051013,40.086385213838817],[-74.980250050366479,40.086464231751954],[-74.980265044544041,40.08653185785294],[-74.980287798837182,40.086621602961095],[-74.980385172872573,40.086900903634408],[-74.980568684584156,40.087449165384555],[-74.980606076808968,40.087562553020497],[-74.980643661903741,40.087698681947515],[-74.980654455834042,40.087746858132931],[-74.980662421087629,40.087793115368584],[-74.980668038203788,40.087826405519365],[-74.98068237753769,40.087854758917096],[-74.980715704037266,40.087872002763447],[-74.980758685802954,40.087879675599908],[-74.981041783544754,40.087904208216599],[-74.981327187047768,40.087930456341127],[-74.98145268769251,40.087948662331428],[-74.981584727159273,40.08797463609713],[-74.98166135414418,40.087994199391893],[-74.981860145307579,40.088059765059675],[-74.981945595918049,40.088007335379558],[-74.982054954820995,40.087937183405309],[-74.982116752980374,40.087896370955853],[-74.982162340484905,40.087864985246433],[-74.982276124393678,40.087794939629653],[-74.982438950667344,40.087721464914473],[-74.982566401129787,40.087679072972804],[-74.982647666381069,40.087659089492341],[-74.982773081930446,40.087637750439583],[-74.982886250391445,40.087629044929322],[-74.982991789272702,40.087627282181415],[-74.983172333707387,40.087642670981694],[-74.983376454710509,40.087688773109811],[-74.983550340656905,40.087756925239276],[-74.983608119798774,40.087784576605351],[-74.983665197575135,40.087817257038772],[-74.983828753243145,40.087935795589019],[-74.983924875483083,40.088033657132215],[-74.983998890656409,40.088136821001555],[-74.984037187839021,40.088213389910216],[-74.984090490348805,40.088349191122731],[-74.984148568227894,40.088505057745863],[-74.984424542937319,40.089223075472034],[-74.984557253313611,40.089210276344836],[-74.984594608071035,40.089475442731889]]],[[[-74.981584066825462,40.090061978617712],[-74.981749707099496,40.090211630986595],[-74.982096046191771,40.090524539660642],[-74.98163932631077,40.091725182478832],[-74.981632118478515,40.091732585965602],[-74.981560578516934,40.091781594901299],[-74.981519442677069,40.091801806282092],[-74.981746501141572,40.092004000388009],[-74.981800903151253,40.092045790104443],[-74.981843072867477,40.09205643715908],[-74.981894293089113,40.092050266561166],[-74.981940504576784,40.092029387938091],[-74.981972896067475,40.092004040598432],[-74.982110866318422,40.091892429976234],[-74.982262295434353,40.091767364141418],[-74.982031614746049,40.091490501562276],[-74.982092040585385,40.091286318554658],[-74.982108984288814,40.091229063629271],[-74.982122528741726,40.091212975027595],[-74.982779556758743,40.090432557843002],[-74.981821912068185,40.089595175130476],[-74.981741594064559,40.089391460134543],[-74.981451258964029,40.088655057240757],[-74.981486930016615,40.088594491519011],[-74.981488310434756,40.088592145047357],[-74.98151279910563,40.088550565800944],[-74.981752915941755,40.088142860627876],[-74.981643173988687,40.088107640309538],[-74.981499509721161,40.088069994413729],[-74.981393408221152,40.088053624479265],[-74.981336892114726,40.088044905017199],[-74.981295289079668,40.088038485658636],[-74.981097518864317,40.088020530812322],[-74.98086184392119,40.087999134930968],[-74.980742851145607,40.087988331481064],[-74.980707417687455,40.087999580925633],[-74.980672677550544,40.088028697229603],[-74.980657346932134,40.088088469669565],[-74.980619311360712,40.088257128013112],[-74.980584742955514,40.088360308147138],[-74.980526125902287,40.088491462785811],[-74.980567026510712,40.088509197329557],[-74.980673366552821,40.088600140774432],[-74.981113078450235,40.08897618486121],[-74.98123459568275,40.089278136065253],[-74.981562015824736,40.090012521325775],[-74.981584066825462,40.090061978617712]]],[[[-74.982156467236706,40.093270835206667],[-74.982404857064552,40.093182620086104],[-74.983189633330952,40.092901874941909],[-74.983221846358347,40.092890904893011],[-74.983171984458025,40.092775109677845],[-74.98306957849536,40.092532438154919],[-74.983024079064421,40.092430876607331],[-74.983002642760297,40.092389915286347],[-74.98297547025588,40.092344994451523],[-74.982955334141508,40.092315182689624],[-74.982934411061436,40.092287837123479],[-74.982898430199867,40.09224403420442],[-74.982871820683627,40.092215822773532],[-74.982834898470358,40.092179448999367],[-74.982792600001559,40.092147401564631],[-74.982566442469277,40.091943312930702],[-74.982546718020828,40.091925843011502],[-74.98253408636208,40.091919394511507],[-74.982525926347051,40.091915779399592],[-74.982511656151758,40.091912079350521],[-74.982498974788641,40.091911131568658],[-74.982484785550568,40.09191165676927],[-74.982464920394705,40.091916864220664],[-74.982441532272361,40.091926981464567],[-74.9824220297469,40.091942763558798],[-74.982104808505781,40.092199468005759],[-74.982025882926351,40.092263335506814],[-74.981750927401336,40.092484991567915],[-74.981733990501027,40.092498644843879],[-74.981163990960098,40.092958143616116],[-74.981002467206679,40.093088352424182],[-74.981294848288954,40.093295300739811],[-74.981138045558581,40.09341015753035],[-74.981359472871603,40.093491598788624],[-74.981537987698744,40.093616204381838],[-74.981615467787734,40.093670286374596],[-74.981787839466051,40.093790604102509],[-74.981814425740936,40.093682832384573],[-74.982015853198916,40.093320774477334],[-74.982156467236706,40.093270835206667]]]]},"properties":{"OBJECTID_1":19,"OBJECTID":1026,"ASSET_NAME":"Fairmount Drainage Right of Way 7","SITE_NAME":"Fairmount Drainage Right of Way 7","CHILD_OF":"Fairmount Drainage Right of Way","ADDRESS":"10901-11899 WALDEMIRE DR","TYPE":"Land","USE_":"Park- Regional/Watershed","ACREAGE":52.473044999999999,"ZIPCODE":"19154","ALLIAS":" ","GLOBALID":"e4657cfb-f401-4513-bf10-f9a9f199a8e2","Shape_Length":20020.188753023227,"Shape_Area":2285725.6588233714}},{"type":"Feature","id":20,"geometry":{"type":"Polygon","coordinates":[[[-75.051535568077981,40.090931153611358],[-75.052042942116728,40.091275246584871],[-75.052524167277042,40.090861780436114],[-75.052693611821965,40.090831677351503],[-75.053252685469104,40.09142137394258],[-75.053363870528884,40.092008779646832],[-75.053240234915748,40.092124290018901],[-75.053366587473846,40.092225660094414],[-75.053554829346325,40.092035608802959],[-75.053449916961299,40.091500000189292],[-75.054099004515052,40.091046703428823],[-75.054570175523537,40.091364716492123],[-75.054863749685509,40.09116410579103],[-75.054990958464614,40.091077178494537],[-75.055370210861597,40.090818015194664],[-75.056167670676899,40.090335871163035],[-75.05651546013975,40.090053214643959],[-75.056757529131048,40.089784235804601],[-75.056803406989062,40.089688375499641],[-75.056643617949149,40.089474603448267],[-75.056222175989504,40.088963892762635],[-75.055689101474442,40.089145270060513],[-75.055359273391105,40.088975979215455],[-75.054613321979403,40.089750132159061],[-75.054267451292816,40.089984359063195],[-75.053840083479898,40.090152051357158],[-75.053436628752792,40.09024238700912],[-75.05319702572217,40.09025173757626],[-75.053022532067232,40.090256572016088],[-75.052875209759705,40.090253478413679],[-75.052694425971893,40.090238602162607],[-75.052512257660879,40.090217834535657],[-75.052157563974077,40.090144886315798],[-75.051619512497155,40.089922228269096],[-75.051279860303978,40.089672737033105],[-75.049824460231704,40.091156398858949],[-75.048401823345401,40.090961411996119],[-75.047375700330889,40.091373501761147],[-75.047563185800797,40.091659935660125],[-75.047597358923696,40.091712142900711],[-75.04762095785442,40.091750993103602],[-75.048836927112959,40.091511829327786],[-75.04911822907502,40.091366621969691],[-75.049315709966223,40.091533065564747],[-75.049934974085545,40.092034222579422],[-75.049994288652243,40.09210365923223],[-75.050743340292968,40.091573739456059],[-75.051016972531528,40.091326646377162],[-75.051535568077981,40.090931153611358]]]},"properties":{"OBJECTID_1":20,"OBJECTID":1027,"ASSET_NAME":"Fairmount Drainage Right of Way 2","SITE_NAME":"Fairmount Drainage Right of Way 2","CHILD_OF":"Fairmount Drainage Right of Way","ADDRESS":"8601 VERREE RD","TYPE":"Land","USE_":"Park- Regional/Watershed","ACREAGE":22.823941000000001,"ZIPCODE":"19115","ALLIAS":" ","GLOBALID":"8d8d760a-da4f-4b73-bd90-04dd22a4c352","Shape_Length":7571.3960303428157,"Shape_Area":994210.92055281834}},{"type":"Feature","id":21,"geometry":{"type":"MultiPolygon","coordinates":[[[[-74.992905277037579,40.074582518871033],[-74.993117541491046,40.074881202676806],[-74.993217205327724,40.075092146895869],[-74.99329414663211,40.07535047359049],[-74.993315567468301,40.075493091708267],[-74.993322508600698,40.075600589479343],[-74.993322821267924,40.07565534298984],[-74.993318712545715,40.075741247486157],[-74.993305739861114,40.075877335021296],[-74.993285921738348,40.075966360612995],[-74.993247069298931,40.076102358060773],[-74.993130127476221,40.07660190644917],[-74.993109465027615,40.076648788772104],[-74.993690805952269,40.076738359716714],[-74.993703970960084,40.076709590897615],[-74.993910649599144,40.075990941313592],[-74.994056345520846,40.07548427592431],[-74.994178854574827,40.075333454321992],[-74.994172296794673,40.075150907126385],[-74.994440572278691,40.074964230362362],[-74.9944502978081,40.074724861437417],[-74.994627583164956,40.074714813331717],[-74.99467409319827,40.074601486966039],[-74.995101218083079,40.074629621388418],[-74.995221526436936,40.074532363847254],[-74.995247039405754,40.074504244093056],[-74.995020493698291,40.074295795247657],[-74.994532195113081,40.073846495726869],[-74.993890675554155,40.073256644769501],[-74.993272405652135,40.072688802956804],[-74.992903519996261,40.072350969539023],[-74.992877104116474,40.072326742250205],[-74.992819220638623,40.072272378000399],[-74.992748936183432,40.072206364546503],[-74.992734003701699,40.072189906016035],[-74.992707260693464,40.072160428437044],[-74.992657232580612,40.07216257187887],[-74.992193696278477,40.072186543107648],[-74.991716871184963,40.072209613216735],[-74.991198399408205,40.072116965920031],[-74.99059566755173,40.072382592343779],[-74.990148722136311,40.072474741887483],[-74.989551444349928,40.07259943654973],[-74.989489012165549,40.07260885051263],[-74.988765919380327,40.072664359689426],[-74.988566430526518,40.072664273236114],[-74.988327998750151,40.072666683612439],[-74.987872973041831,40.072270784467932],[-74.987827462572881,40.072260860085855],[-74.987852344091337,40.072401601108439],[-74.987872506336814,40.072499826277841],[-74.987927521443595,40.072696016077522],[-74.98794332682958,40.072742798218194],[-74.987953136897957,40.072770589538571],[-74.987972756442403,40.072823710447025],[-74.987995866898416,40.07288459865395],[-74.988025243966035,40.072959488673717],[-74.988061510424657,40.073046106758767],[-74.988107774082806,40.073147775040226],[-74.988178567011929,40.073286186332503],[-74.988201933316205,40.073284432164023],[-74.988595699817253,40.073295700759665],[-74.988679830524703,40.073432104763626],[-74.988782363407736,40.073572191105193],[-74.989023597208856,40.073468527505092],[-74.988840874736411,40.073194694896422],[-74.989245215426706,40.073055470530228],[-74.989952434609549,40.073328262543036],[-74.990438838052569,40.072937972999156],[-74.99079824527648,40.072912250102625],[-74.9912363833961,40.073252326082923],[-74.991826048696808,40.073038291158269],[-74.99217462764372,40.07313801351831],[-74.992257665303796,40.073411399123039],[-74.992354656601222,40.073683829168615],[-74.993075345099811,40.073756802638229],[-74.993290992008482,40.073971878199401],[-74.993173949090703,40.074404673266372],[-74.992905277037579,40.074582518871033]]],[[[-74.992462000022016,40.078143252555485],[-74.992387793285445,40.078293474469596],[-74.992338961091562,40.078389760137583],[-74.99230900976319,40.078448818103702],[-74.99224958471784,40.078579847829857],[-74.992162697757564,40.078757540676612],[-74.991542780196312,40.079183225320364],[-74.991518728356255,40.079192413768659],[-74.9916932406082,40.079340712436739],[-74.99173704825796,40.079371233190457],[-74.991773312383856,40.079381190783046],[-74.991803465178521,40.07938258303966],[-74.991836982664012,40.079376636667455],[-74.991869110417525,40.079362059868785],[-74.992985898044068,40.078769668093003],[-74.993235403838526,40.078632990498797],[-74.993249324400949,40.078608935294945],[-74.993250352423843,40.078585896296701],[-74.993238101287233,40.078560313133181],[-74.993200368747964,40.078521329007813],[-74.993156507858558,40.078476014752113],[-74.993072931166182,40.07838966656464],[-74.9930429011103,40.078358287428742],[-74.993014778264197,40.078328901239132],[-74.992989553429268,40.078298112224772],[-74.992961249508625,40.078242395259544],[-74.992946432815032,40.078189066189644],[-74.992944977287451,40.078136002691814],[-74.992952793153961,40.078091244171077],[-74.992968028328349,40.078046883500512],[-74.992989368536357,40.078009194801254],[-74.993019761609531,40.077970932139749],[-74.993055855542153,40.077938434283681],[-74.9931120601929,40.077900739441446],[-74.993227124590135,40.07783961235107],[-74.993207361518259,40.077802986644762],[-74.993071934750645,40.077658634744047],[-74.993080373497662,40.0776363493042],[-74.993091256371997,40.077607608697484],[-74.993123513593076,40.077562205640319],[-74.993241575003708,40.077502360573909],[-74.993418816231852,40.077409405211093],[-74.993536252477398,40.077349979171913],[-74.993622875021131,40.077313664249353],[-74.993647770772242,40.077237858271694],[-74.993729443818964,40.076963685807449],[-74.993736343953515,40.076927532078081],[-74.993094012958963,40.076828367989641],[-74.993087860003271,40.07684142999711],[-74.993032051617504,40.076959912097699],[-74.993017677451562,40.076990428739997],[-74.992999382254411,40.077028413953506],[-74.99286610921628,40.077305112680257],[-74.992732591501237,40.077583532745479],[-74.992713222318443,40.07762392232506],[-74.992700581599578,40.077650282460446],[-74.99262324295681,40.077811553012367],[-74.992512469635571,40.07803539140037],[-74.992462000022016,40.078143252555485]]],[[[-74.987601550708916,40.072306627352269],[-74.987592872261047,40.072259523596522],[-74.987427183926215,40.072223831937428],[-74.987396349871787,40.07226826927279],[-74.987227711347586,40.07251130559694],[-74.987116363914566,40.072545046046713],[-74.986554956853652,40.072715160823648],[-74.986277249353975,40.072914650043266],[-74.98654286273991,40.0732116140099],[-74.986752007047187,40.073214041906198],[-74.98679676214762,40.073181890322317],[-74.986813541216364,40.073169836529424],[-74.986848950451829,40.073144397516955],[-74.986919533274943,40.073093687701117],[-74.986968599407902,40.073058435515868],[-74.987139747460731,40.073016406853391],[-74.98781994359004,40.073062102741069],[-74.987788880374254,40.072987349645032],[-74.987776556030312,40.072956727093114],[-74.987748613066685,40.072887294997585],[-74.987718227920027,40.072796271390878],[-74.987691994087555,40.072709241073667],[-74.987677640390118,40.072659304012653],[-74.987658394783438,40.072587361536556],[-74.987646332729923,40.072538725733125],[-74.987632273605783,40.072476230365346],[-74.987609877418933,40.07235182770755],[-74.987601550708916,40.072306627352269]]]]},"properties":{"OBJECTID_1":21,"OBJECTID":1028,"ASSET_NAME":"Fairmount Drainage Right of Way 5","SITE_NAME":"Fairmount Drainage Right of Way 5","CHILD_OF":"Fairmount Drainage Right of Way","ADDRESS":"3460 MORRELL AVE","TYPE":"Land","USE_":"Park- Regional/Watershed","ACREAGE":25.357154999999999,"ZIPCODE":"19114","ALLIAS":" ","GLOBALID":"0856cf87-71ad-4874-88d6-94ea842e873c","Shape_Length":11105.510640240096,"Shape_Area":1104557.4431530177}},{"type":"Feature","id":22,"geometry":{"type":"Polygon","coordinates":[[[-75.022233732631861,40.05877389965066],[-75.021956379693876,40.059114745670279],[-75.020375139392797,40.061035724570488],[-75.020599081394849,40.061172571972925],[-75.020638674453096,40.061196934599366],[-75.020686157750717,40.061226153019433],[-75.020978344515783,40.061405945042395],[-75.021191918664698,40.06116298643456],[-75.021513781140385,40.060610670327463],[-75.022157434537846,40.059968556373519],[-75.022204853520535,40.05993349125945],[-75.022361335501401,40.059817769478222],[-75.022437914026412,40.059759763621713],[-75.022621686311979,40.05962639251802],[-75.022955298371002,40.05937755991787],[-75.023531576606246,40.058950959942273],[-75.023530473657289,40.058950772479349],[-75.023528357314774,40.058950415897769],[-75.023527847302461,40.058950326303915],[-75.022667753420919,40.058805812545017],[-75.022593752588421,40.05879337834341],[-75.022223930502491,40.058731237965411],[-75.022233732631861,40.05877389965066]]]},"properties":{"OBJECTID_1":22,"OBJECTID":1029,"ASSET_NAME":"Fairmount Drainage Right of Way 4","SITE_NAME":"Fairmount Drainage Right of Way 4","CHILD_OF":"Fairmount Drainage Right of Way","ADDRESS":"2870 WILLITS RD","TYPE":"Land","USE_":"Park- Regional/Watershed","ACREAGE":5.6585570000000001,"ZIPCODE":"19136","ALLIAS":" ","GLOBALID":"2bbc36df-3c6f-476a-9769-c2465fb28d5a","Shape_Length":2737.7093967728383,"Shape_Area":246486.84888100313}},{"type":"Feature","id":23,"geometry":{"type":"Polygon","coordinates":[[[-75.032314106245721,40.062559990551762],[-75.0320982638316,40.063127216166905],[-75.03085792226355,40.064475706989306],[-75.030208830423064,40.065068006165269],[-75.029865338827605,40.065377838097341],[-75.030017282708314,40.065487422392842],[-75.03013417361521,40.06555378215613],[-75.030433425845118,40.065200507778819],[-75.031140753988723,40.064531860496679],[-75.0316405704544,40.063992552430641],[-75.03201528472168,40.063591598919231],[-75.032741232178921,40.06337559633549],[-75.033768684414625,40.063308460113035],[-75.033764036705364,40.063284276809888],[-75.033722035847333,40.063025022301076],[-75.033597266169494,40.062266917202756],[-75.032314106245721,40.062559990551762]]]},"properties":{"OBJECTID_1":23,"OBJECTID":1030,"ASSET_NAME":"Fairmount Drainage Right of Way 3","SITE_NAME":"Fairmount Drainage Right of Way 3","CHILD_OF":"Fairmount Drainage Right of Way","ADDRESS":"2620 MAXWELL ST","TYPE":"Land","USE_":"Park- Regional/Watershed","ACREAGE":5.2449539999999999,"ZIPCODE":"19152","ALLIAS":" ","GLOBALID":"f8d5420e-d5f6-41a0-836e-18fa6a29dd2e","Shape_Length":3498.2232892999714,"Shape_Area":228470.32254772016}},{"type":"Feature","id":24,"geometry":{"type":"MultiPolygon","coordinates":[[[[-74.990775194112885,40.064391170943225],[-74.99077792378273,40.064391643775807],[-74.990778214787198,40.064390025240115],[-74.990788979086958,40.064330065462762],[-74.990798643939925,40.064276231764424],[-74.990755851259578,40.064152740189563],[-74.990769670433011,40.063891751052616],[-74.990714897165319,40.063888369550028],[-74.990379639089326,40.063896148737022],[-74.990345503121802,40.063893614133455],[-74.990285180458045,40.063950074135875],[-74.990238954050923,40.063968166467255],[-74.990203474630121,40.063974266013155],[-74.990099891497792,40.063978250339993],[-74.990009448123956,40.063980292130545],[-74.989918118058625,40.063985016651529],[-74.989854321622445,40.063992791252097],[-74.989798502032031,40.06400316148995],[-74.989771054013019,40.06400956377005],[-74.989574178538788,40.064076371562827],[-74.989077956430677,40.064259391153492],[-74.988763234200235,40.064370338427402],[-74.988584331538789,40.064458513683306],[-74.988393693324483,40.06456969018739],[-74.98825269433911,40.064651202479624],[-74.988220981555202,40.064663198438453],[-74.988173925744164,40.064671535797935],[-74.988139825585947,40.064671080169724],[-74.988105545140598,40.064665922032908],[-74.988066792912974,40.06465290361168],[-74.988031534118022,40.064631998310347],[-74.987995621305259,40.064646999226824],[-74.987662392404062,40.064892357860288],[-74.987887647974787,40.065067040324152],[-74.987642356302928,40.065103347685955],[-74.987324447064637,40.065150402746077],[-74.987279675465658,40.065171779955612],[-74.987347871954,40.065227334144765],[-74.987448221374621,40.06530907955333],[-74.987454782255796,40.06531442383924],[-74.98763898760609,40.065464479397782],[-74.987696291940694,40.065455126228102],[-74.988078714698901,40.065396692343917],[-74.988153280568454,40.065385298459411],[-74.988305647696578,40.065220538669479],[-74.988545489549281,40.065140589986228],[-74.988709261129031,40.065085998825076],[-74.988750498102789,40.065069764119578],[-74.988774395976037,40.065060355496968],[-74.989345047686157,40.064725706109265],[-74.989476521536943,40.064648604155323],[-74.989513732667817,40.06454797765948],[-74.989600572696233,40.064507269595261],[-74.989608447787674,40.06450357789376],[-74.989669610881663,40.064488653264533],[-74.990060706578291,40.064393218068787],[-74.990236465840795,40.064345585148153],[-74.990254711966983,40.064340640425122],[-74.990271413192886,40.064341470472833],[-74.990575667236513,40.064356585543159],[-74.99077411924776,40.064390984741422],[-74.990775194112885,40.064391170943225]]],[[[-74.985077474185701,40.065634795283593],[-74.985465227900349,40.065691616955249],[-74.98593550334607,40.065761287534635],[-74.986211958197245,40.065775393874354],[-74.986220371101624,40.066050941840707],[-74.986329470324449,40.066041015000124],[-74.986396343629195,40.066032534177971],[-74.986490648695025,40.066017847842481],[-74.986597482832678,40.065997394063459],[-74.986681074178449,40.065977851760778],[-74.986770424258196,40.065951561027006],[-74.98684368912096,40.06592779025646],[-74.986921598465656,40.065901044970431],[-74.986982564236001,40.06587719190815],[-74.987067946539938,40.06584022069643],[-74.987141533338004,40.065804711165882],[-74.987230402178795,40.065758092142971],[-74.987261953038129,40.065739953575324],[-74.987326219926402,40.065698995451477],[-74.987374979570561,40.065666495811946],[-74.987420935055468,40.0656318661893],[-74.987436465545798,40.065605154399023],[-74.98743544943521,40.065579654088332],[-74.987431361728113,40.065554560196709],[-74.987021880630707,40.065266006061947],[-74.98638083657535,40.06550487885756],[-74.984913088365786,40.06528161426904],[-74.983219231809286,40.065431242408266],[-74.983078909432081,40.065338071008412],[-74.982623672135688,40.065344308130882],[-74.982476408062141,40.065343057139316],[-74.982483967115215,40.065491043367125],[-74.982480889739307,40.065665374765381],[-74.982605880195209,40.065663635669779],[-74.98306409110414,40.065651972752178],[-74.983231036724206,40.065771949561302],[-74.983967517631854,40.065679415597913],[-74.984753245445845,40.065586448343232],[-74.985077474185701,40.065634795283593]]]]},"properties":{"OBJECTID_1":24,"OBJECTID":1031,"ASSET_NAME":"Fairmount Drainage Right of Way 8","SITE_NAME":"Fairmount Drainage Right of Way 8","CHILD_OF":"Fairmount Drainage Right of Way","ADDRESS":"3777 MORRELL AVE","TYPE":"Land","USE_":"Park- Regional/Watershed","ACREAGE":8.4086029999999994,"ZIPCODE":"19114","ALLIAS":" ","GLOBALID":"30ae7701-2eed-46b5-bc10-920b6de8e0aa","Shape_Length":5769.6074115802094,"Shape_Area":366278.86564130272}},{"type":"Feature","id":25,"geometry":{"type":"Polygon","coordinates":[[[-74.986337910176943,40.099677002323773],[-74.985959506232149,40.099928021833712],[-74.98581499928278,40.100011675887565],[-74.985793050613978,40.100039845290198],[-74.985781720759746,40.100071498537616],[-74.98578184204159,40.100104323686701],[-74.985793395910335,40.100135927059519],[-74.985815547177779,40.10016400076379],[-74.986043891661026,40.100361977598311],[-74.986548282589268,40.100805732757422],[-74.986600452177512,40.10086778891236],[-74.986662029240833,40.100967919533765],[-74.986692354339993,40.101042324992115],[-74.986703841856425,40.101082421910164],[-74.986712303976461,40.101122961516559],[-74.98671770161711,40.101163808613819],[-74.987002569277934,40.101105257001556],[-74.987274394528896,40.100919462668479],[-74.9873413451662,40.100873701664412],[-74.987571397145146,40.100716459555045],[-74.987774833184602,40.100608994814131],[-74.987565573812788,40.100462241687978],[-74.987423296205606,40.100368744157706],[-74.98733896668584,40.100311584147022],[-74.987216016467997,40.100227320876371],[-74.987070812928792,40.100132598302729],[-74.986938778735961,40.100043452480946],[-74.986719642976283,40.099885132147115],[-74.986651570385533,40.099829236399451],[-74.986521635843445,40.099698337391153],[-74.986496774941756,40.099682704582214],[-74.986442490622323,40.099660347135234],[-74.986387570736312,40.099658935879027],[-74.986337910176943,40.099677002323773]]]},"properties":{"OBJECTID_1":25,"OBJECTID":1032,"ASSET_NAME":"Fairmount Drainage Right of Way 6","SITE_NAME":"Fairmount Drainage Right of Way 6","CHILD_OF":"Fairmount Drainage Right of Way","ADDRESS":"3099 WOODHAVEN RD","TYPE":"Land","USE_":"Park- Regional/Watershed","ACREAGE":3.2982459999999998,"ZIPCODE":"19154","ALLIAS":" ","GLOBALID":"1d0f7a6f-8bc8-40bb-8b25-4459f111605c","Shape_Length":1607.0083777880507,"Shape_Area":143671.61917287754}},{"type":"Feature","id":26,"geometry":{"type":"Polygon","coordinates":[[[-74.98170244202872,40.053567827753483],[-74.981837454649039,40.053609273818246],[-74.982001947418084,40.053649323327924],[-74.982117543743328,40.053677468195296],[-74.982174560663239,40.053528418226769],[-74.982235257943088,40.053410955598331],[-74.982299273698047,40.053314609264184],[-74.982376450099366,40.053225589376517],[-74.982448011889019,40.053149883548009],[-74.982540668835526,40.053072165568025],[-74.982607655029625,40.05301229745357],[-74.982600204517325,40.052875187829031],[-74.981778879021675,40.052059101618134],[-74.979542988707166,40.050006234188629],[-74.979485460937866,40.049953412752124],[-74.978986591323562,40.050424751524289],[-74.978746442943063,40.050714719702711],[-74.978463714580215,40.051088880739897],[-74.978232616781398,40.051478211152997],[-74.978186664213382,40.051706346608114],[-74.978174967382841,40.051992641038233],[-74.978304905982867,40.052158159975995],[-74.978418706173144,40.05229050572887],[-74.978506202958783,40.052392261581097],[-74.978722058987813,40.05259804643979],[-74.978926086967434,40.052765352762279],[-74.978968244428884,40.052803021610174],[-74.9790579759389,40.052883199802537],[-74.979109888845727,40.052932789884736],[-74.979201584410433,40.053020382483005],[-74.979248070223576,40.053058420530228],[-74.979333865411803,40.053128625113821],[-74.979453259351018,40.053246169410485],[-74.979609755694,40.053374136233785],[-74.979634193323633,40.053399250890301],[-74.97970493827232,40.053471956740772],[-74.979751316954093,40.053487736444971],[-74.979889529086023,40.05353476121708],[-74.980136630757244,40.053567001683163],[-74.980148631261471,40.053568567838958],[-74.980169542326479,40.053568231315047],[-74.980385562722731,40.053564754019973],[-74.980609497049883,40.053551012879879],[-74.980696218096526,40.053549407199149],[-74.980833038134364,40.053546874443285],[-74.981025101988749,40.053546784093456],[-74.981162523434207,40.053547614718816],[-74.981383620576452,40.053548108180649],[-74.981513409644435,40.053548397623743],[-74.98170244202872,40.053567827753483]]]},"properties":{"OBJECTID_1":26,"OBJECTID":1033,"ASSET_NAME":"Glen Foerd","SITE_NAME":"Glen Foerd","CHILD_OF":"Glen Foerd","ADDRESS":"5001 GRANT AVE","TYPE":"Land","USE_":"Park- Watershed\\Conservation","ACREAGE":21.548587000000001,"ZIPCODE":"19114","ALLIAS":" ","GLOBALID":"4af1d0f9-4283-4ad6-b7e9-ee322c824b82","Shape_Length":3935.6504340724418,"Shape_Area":938656.34991847468}},{"type":"Feature","id":27,"geometry":{"type":"Polygon","coordinates":[[[-75.202933169983709,40.051031827155775],[-75.201642899136942,40.052227777441061],[-75.2016680223104,40.052341244730222],[-75.202680677202153,40.052976290227427],[-75.202683504228233,40.052973692250674],[-75.204115818317291,40.051658353731128],[-75.204119484691248,40.051649881770601],[-75.203022027281079,40.050953331384704],[-75.202933169983709,40.051031827155775]]]},"properties":{"OBJECTID_1":27,"OBJECTID":1034,"ASSET_NAME":"Allens Lane Art Center","SITE_NAME":"Allens Lane Art Center","CHILD_OF":"Allens Lane Art Center","ADDRESS":"621 W ALLENS LA","TYPE":"Land","USE_":"Park- Community","ACREAGE":5.7638990000000003,"ZIPCODE":"19119","ALLIAS":" ","GLOBALID":"eec10d2c-95a6-4bc7-b18b-482cbfb15bf9","Shape_Length":2039.4003875823116,"Shape_Area":251075.34099724752}},{"type":"Feature","id":28,"geometry":{"type":"Polygon","coordinates":[[[-75.169337044190058,39.98022583579759],[-75.169324495003508,39.980237137948009],[-75.169320022520637,39.980250721084232],[-75.169311403493381,39.980292858737485],[-75.169021422644533,39.981621296251106],[-75.169017849660491,39.981637187283923],[-75.169015538840284,39.981653521168752],[-75.169022770692621,39.981666696263247],[-75.169038095443625,39.98167479593949],[-75.169076021555966,39.981679877323309],[-75.170412452330154,39.98185261528463],[-75.170434813176811,39.981855528104113],[-75.170451289531627,39.981857674340588],[-75.170476962677057,39.981861018403308],[-75.170486802600692,39.981861472933602],[-75.170505020747186,39.981856090692808],[-75.170511930256694,39.981850684933072],[-75.170518624308954,39.981836581344588],[-75.170522375983666,39.981819677044015],[-75.170804389567152,39.980511227434647],[-75.170818638312156,39.980452327602116],[-75.170822032283652,39.980438300302865],[-75.170819863043619,39.980423407341931],[-75.170814935968195,39.980416862467713],[-75.170799225508929,39.980408003813416],[-75.170786296251649,39.980406312159928],[-75.170755376329154,39.980402265476599],[-75.169403753662053,39.980227024128276],[-75.169390816863881,39.980225316829255],[-75.169374019183067,39.980223100134197],[-75.169355131994294,39.980220607592329],[-75.169337044190058,39.98022583579759]]]},"properties":{"OBJECTID_1":28,"OBJECTID":1035,"ASSET_NAME":"Martin Luther King Recreation Center","SITE_NAME":"Martin Luther King Recreation Center","CHILD_OF":"Martin Luther King Recreation Center","ADDRESS":"2101-35 CECIL B MOORE AVE","TYPE":"Land","USE_":"Recreation Center","ACREAGE":5.2537209999999996,"ZIPCODE":"19121","ALLIAS":" ","GLOBALID":"8a14afca-5b6a-4c3f-99eb-562f3db7d258","Shape_Length":1910.3130285123577,"Shape_Area":228852.21107134369}},{"type":"Feature","id":29,"geometry":{"type":"Polygon","coordinates":[[[-75.174419747475355,39.987097953133947],[-75.17440527596618,39.987105326640041],[-75.174399017723658,39.987115946097894],[-75.174387456707052,39.987169993414931],[-75.174193083455933,39.988064404460978],[-75.174103072628427,39.988484381945312],[-75.174094768376392,39.98852908043866],[-75.174218425620211,39.988542159577186],[-75.175177755453873,39.988016773515504],[-75.17557446034229,39.987811424159077],[-75.175718635050671,39.987735846366185],[-75.17635084070217,39.987399308874089],[-75.176453938959924,39.987356697082731],[-75.176192993828849,39.98732373874018],[-75.174541019147426,39.987108606082266],[-75.174503113533447,39.987103574795654],[-75.174470687972175,39.987099270147851],[-75.174453849317231,39.987097035298774],[-75.174436690315773,39.987095062661325],[-75.174419747475355,39.987097953133947]]]},"properties":{"OBJECTID_1":29,"OBJECTID":1036,"ASSET_NAME":"Gathers Recreation Center","SITE_NAME":"Gathers Recreation Center","CHILD_OF":"Gathers Recreation Center","ADDRESS":"2501-59 DIAMOND ST","TYPE":"Land","USE_":"Recreation Center","ACREAGE":3.7028120000000002,"ZIPCODE":"19121","ALLIAS":" ","GLOBALID":"eb9305b0-c783-4fb8-8902-727ccb92f58c","Shape_Length":1905.0762598384636,"Shape_Area":161294.45788242421}},{"type":"Feature","id":30,"geometry":{"type":"Polygon","coordinates":[[[-75.178700224129997,39.960195067990064],[-75.178663777086328,39.96019154899458],[-75.178646406471586,39.960273333809248],[-75.178611404408713,39.960467364420353],[-75.178617157241973,39.960527525110273],[-75.178619223712587,39.96059082249586],[-75.178617231346934,39.960624777544552],[-75.178618001667402,39.960674555922203],[-75.178614342447787,39.960739000813312],[-75.178609429621687,39.960810550021812],[-75.178600925051612,39.960881899795979],[-75.178588843378407,39.960952941440866],[-75.178573197868474,39.96102357163651],[-75.178542685274479,39.96116195812133],[-75.178501685944312,39.961351359143372],[-75.178460211675869,39.961535050606287],[-75.178416622540652,39.961733775801818],[-75.178374014942392,39.961926824983337],[-75.17830749935105,39.962231886430757],[-75.178306157793969,39.962238188675542],[-75.178274054387785,39.962389061722568],[-75.178267095882788,39.962424937235468],[-75.178266842127485,39.962429846570458],[-75.178273932701785,39.962476564424094],[-75.178292287787627,39.962533789192527],[-75.178308846473172,39.962567760006948],[-75.178347658473299,39.9626266884976],[-75.178371547048798,39.962655587812833],[-75.178428239036023,39.962713586240859],[-75.178489052031111,39.962757002214282],[-75.178590402261648,39.962802795338064],[-75.178649058745307,39.962824305232083],[-75.178720294136781,39.962846069070693],[-75.17879671383406,39.962871157550978],[-75.178872963893795,39.962896553026837],[-75.1789490382629,39.962922260768963],[-75.179103792016363,39.962974213808749],[-75.179128742162547,39.962982560327958],[-75.179413555236849,39.963077661855195],[-75.17968098507275,39.963170518947642],[-75.179771609642572,39.963015982979073],[-75.179748299503075,39.962927858994249],[-75.179601233048118,39.962909653465651],[-75.17967639966578,39.962574116548311],[-75.179716138664233,39.962325609377736],[-75.179725859828906,39.962068663004054],[-75.179686246475626,39.961795034705958],[-75.179644860751779,39.961544709197888],[-75.179432222645318,39.961009998678875],[-75.179274021228224,39.960640167314686],[-75.179118060491462,39.960234684190752],[-75.178700224129997,39.960195067990064]]]},"properties":{"OBJECTID_1":30,"OBJECTID":1037,"ASSET_NAME":"River Field","SITE_NAME":"Benjamin Franklin Parkway","CHILD_OF":"Benjamin Franklin Parkway","ADDRESS":"302 N 24TH ST","TYPE":"Land","USE_":"Park- Linear\\Parkway","ACREAGE":6.7925079999999998,"ZIPCODE":"19103","ALLIAS":" ","GLOBALID":"e1ddb600-3bc1-46dc-b47a-6503b5ad3662","Shape_Length":2594.5174367722748,"Shape_Area":300071.92654771323}},{"type":"Feature","id":31,"geometry":{"type":"Polygon","coordinates":[[[-75.166954696792246,39.955010490718252],[-75.166825978775307,39.954927219069653],[-75.166804048181902,39.954942819196788],[-75.166790140839808,39.954962332894659],[-75.166793199844875,39.954976473844845],[-75.166802874762325,39.954991512513551],[-75.166843294297962,39.955021212820441],[-75.166921378711081,39.955076607616853],[-75.167101859902218,39.955207245096389],[-75.167558668380778,39.95554488983587],[-75.167716308164159,39.955660722904241],[-75.167763060284202,39.95568281036843],[-75.167772556905717,39.955682709672502],[-75.167782979863432,39.955681647719338],[-75.167790937507448,39.955678542633507],[-75.167798179886191,39.955674911472613],[-75.167806100465626,39.955667236500751],[-75.167842857064414,39.955513585589962],[-75.167597344679919,39.955481732478624],[-75.167602748622173,39.955457223956053],[-75.167555991781498,39.955450575221278],[-75.167634422993757,39.955078030857202],[-75.167470673522217,39.955060756475781],[-75.166979022709171,39.954995477897228],[-75.166954696792246,39.955010490718252]]]},"properties":{"OBJECTID_1":31,"OBJECTID":1038,"ASSET_NAME":"Levy Park","SITE_NAME":"Benjamin Franklin Parkway","CHILD_OF":"Benjamin Franklin Parkway","ADDRESS":"1619-29 ARCH ST","TYPE":"Land","USE_":"Park- Linear\\Parkway","ACREAGE":0.979576,"ZIPCODE":"19103","ALLIAS":" ","GLOBALID":"17f7157a-ce29-4831-a820-939535c381c8","Shape_Length":939.53150599835317,"Shape_Area":24437.073718183914}},{"type":"Feature","id":32,"geometry":{"type":"Polygon","coordinates":[[[-75.217748141591869,39.941442905098867],[-75.217740044337219,39.941445342838058],[-75.217722186267395,39.941456915670194],[-75.217675037500953,39.941489643343544],[-75.215441962871964,39.943061209909814],[-75.215411429946485,39.943082553897447],[-75.215400319612783,39.94309032099644],[-75.215385447409147,39.943102410865158],[-75.215381445032392,39.943110514331089],[-75.215383152038271,39.943128174748232],[-75.215387750404048,39.943136606124007],[-75.215428887021631,39.943173178596524],[-75.215503329899576,39.943236327747734],[-75.215616572603537,39.943332395409136],[-75.215711432589487,39.943342880586201],[-75.215738936040509,39.94334909790259],[-75.21660454305615,39.94354476295478],[-75.217081175113989,39.943655373431369],[-75.21712945904325,39.94368664393108],[-75.217163749028217,39.943662603767663],[-75.218894517432872,39.942443982674646],[-75.218903830024686,39.942437390126322],[-75.218907855137118,39.942434540785413],[-75.218912410479177,39.94242873795114],[-75.218915904355768,39.942421986365289],[-75.218917677081734,39.942411412594865],[-75.218916347186877,39.942404062615772],[-75.218911889383577,39.942396435481434],[-75.218908942193934,39.942393506163505],[-75.218903714830233,39.942388312769147],[-75.21889965036398,39.942385021821401],[-75.21880094224862,39.942305092586999],[-75.217865607000206,39.941511188591527],[-75.217830357807131,39.941481372036435],[-75.217819319954145,39.941472035450133],[-75.217808066528235,39.941462515705183],[-75.217796957179019,39.941453118973065],[-75.217790195755427,39.94145008379266],[-75.217777024670525,39.941445505145694],[-75.217764571356241,39.94144311916267],[-75.217748141591869,39.941442905098867]]]},"properties":{"OBJECTID_1":32,"OBJECTID":1039,"ASSET_NAME":"Kingsessing Recreation Center","SITE_NAME":"Kingsessing Recreation Center","CHILD_OF":"Kingsessing Recreation Center","ADDRESS":"4901 KINGSESSING AVE","TYPE":"Land","USE_":"Recreation Center","ACREAGE":9.1587759999999996,"ZIPCODE":"19143","ALLIAS":" ","GLOBALID":"1f87d5df-e18a-4721-bfc0-7462db7ae0c8","Shape_Length":2620.6548780773128,"Shape_Area":398956.32173665013}},{"type":"Feature","id":33,"geometry":{"type":"Polygon","coordinates":[[[-75.193149431845825,39.932465372489887],[-75.193140109833678,39.932470316621078],[-75.193132978084421,39.932477083670094],[-75.193128608655712,39.932485120558148],[-75.193123487706089,39.932511827609432],[-75.193118422701758,39.932535460765479],[-75.192902778375583,39.933535617043866],[-75.192893976129355,39.933575675144823],[-75.192891453961622,39.933587152720023],[-75.192892530566553,39.933597609504588],[-75.192896332031438,39.933603458018361],[-75.192901189466454,39.93360746408797],[-75.192905330595167,39.933609915263126],[-75.192909825989886,39.93361113184617],[-75.192917621469135,39.933612671589856],[-75.192981784007884,39.933621044462939],[-75.194248379310622,39.93378445874545],[-75.194313876894114,39.93379278763615],[-75.194330849715698,39.933794946259084],[-75.19434948129522,39.933794109049941],[-75.194357883807811,39.933790836421693],[-75.194364828287192,39.933785937418307],[-75.194369797662404,39.933779778941002],[-75.19437242140134,39.933772814950409],[-75.194382708702889,39.933726420620779],[-75.194596915490976,39.932734204826914],[-75.19460424507551,39.932695495050645],[-75.194605476112287,39.932688994676823],[-75.194605704855206,39.932678490414297],[-75.194603389974375,39.93267026849103],[-75.194597533133845,39.932660780115405],[-75.194590713487273,39.932654206671359],[-75.19457496170665,39.932645789855556],[-75.194555271801136,39.93264163174856],[-75.194475337804278,39.932630366552225],[-75.193225672173284,39.932469158990457],[-75.193183817802336,39.932463908227724],[-75.193171481676359,39.932462360069714],[-75.193149431845825,39.932465372489887]]]},"properties":{"OBJECTID_1":33,"OBJECTID":1040,"ASSET_NAME":"Lanier Playground","SITE_NAME":"Lanier Playground","CHILD_OF":"Lanier Playground","ADDRESS":"1600 S 29TH ST","TYPE":"Land","USE_":"Park- Neighborhood","ACREAGE":4.1043849999999997,"ZIPCODE":"19145","ALLIAS":" ","GLOBALID":"d38495e1-28d2-46b9-a4f3-fbb693d60ad6","Shape_Length":1672.2294743917785,"Shape_Area":178787.01507755756}},{"type":"Feature","id":34,"geometry":{"type":"Polygon","coordinates":[[[-75.142489703993476,39.947219498077281],[-75.142485323779908,39.947218908348482],[-75.142450596563251,39.947214231900091],[-75.142394208233995,39.947206638365685],[-75.142334904856611,39.947198651462386],[-75.14222563961917,39.947183937828555],[-75.142167426074465,39.947176593716769],[-75.142078104223401,39.947165326553254],[-75.141980444417385,39.947153006561841],[-75.141908726115048,39.947143652328734],[-75.141847021829463,39.947135604273278],[-75.141788491684636,39.947127970748134],[-75.141746799107935,39.94712253291862],[-75.141732575287875,39.947189333049884],[-75.141725463177323,39.947222738066166],[-75.141712484783355,39.947283685533556],[-75.141700078747348,39.947341951052827],[-75.141677487600916,39.947448045575612],[-75.141636443396337,39.947640808030876],[-75.141613464891847,39.947748723715762],[-75.141554323130777,39.948026473647147],[-75.141589714336646,39.948030787928715],[-75.141654033242062,39.948038629757036],[-75.14171708916723,39.948046314885168],[-75.141869065270086,39.948064842843181],[-75.141885040577449,39.948066847743185],[-75.141982334492951,39.948079065760673],[-75.142037074713656,39.948085939935851],[-75.142147904394136,39.948099855837604],[-75.142208588791135,39.948107475964257],[-75.14221559196784,39.948108355094654],[-75.142221021128321,39.94810903715733],[-75.142257312671518,39.948113595153373],[-75.142263257985206,39.948114341207571],[-75.14229937711643,39.948118877250153],[-75.142359116690002,39.948126378506664],[-75.142370119571055,39.948126050178097],[-75.142380716726237,39.948123756503094],[-75.142393529840547,39.948117347770363],[-75.142405033306588,39.948108428746835],[-75.142409851579089,39.948101967114511],[-75.14241970960434,39.948063351694152],[-75.142434085797191,39.947999431921922],[-75.142448066923578,39.947937264668482],[-75.142489788169485,39.947751757987554],[-75.142513315897332,39.947645235011628],[-75.14254643262116,39.947494837521766],[-75.142578826251196,39.947347721334168],[-75.142587794858471,39.947306988103115],[-75.142596252813362,39.947268579617599],[-75.14259630255934,39.947268350987407],[-75.142604100167517,39.947233239653201],[-75.142595642510358,39.947232223864695],[-75.14250908591481,39.947222108334138],[-75.142489703993476,39.947219498077281]]]},"properties":{"OBJECTID_1":34,"OBJECTID":1041,"ASSET_NAME":"Irish Memorial","SITE_NAME":"Irish Memorial","CHILD_OF":"I-95 Park","ADDRESS":"111 S FRONT ST","TYPE":"Land","USE_":"Park- Linear\\Parkway","ACREAGE":1.8526400000000001,"ZIPCODE":"19106","ALLIAS":" ","GLOBALID":"7fad5660-496b-42d2-b9be-eb4dfb7d0c9c","Shape_Length":1144.8447109897252,"Shape_Area":80700.995928777716}},{"type":"Feature","id":35,"geometry":{"type":"Polygon","coordinates":[[[-75.143196701898589,39.944806060021818],[-75.14311037757011,39.945216681201373],[-75.143214744807082,39.945229427539225],[-75.143343017813493,39.945245092149939],[-75.143414414480731,39.94525381110666],[-75.143538576857665,39.945268973919852],[-75.143593254628527,39.94527565045977],[-75.143629917729839,39.945280128196956],[-75.143653757061088,39.945283038683513],[-75.143667583768888,39.945282477068375],[-75.143681014648109,39.945279874650105],[-75.143693538083994,39.94527532432253],[-75.143704684900086,39.94526900283801],[-75.143718136548969,39.945259876578838],[-75.143726640530943,39.945252078632947],[-75.143732639719246,39.945245553682717],[-75.143741291726286,39.945233346788939],[-75.143747367275211,39.945220527223313],[-75.1437514150537,39.945207317391855],[-75.143754825129349,39.945194039009081],[-75.143758850238484,39.945178367968161],[-75.143765693546015,39.945151726131201],[-75.14378252036424,39.945086217544237],[-75.14380792844355,39.94498730027685],[-75.143810121170915,39.94497874983302],[-75.143834664071491,39.944882824122466],[-75.14385437412723,39.944805774058672],[-75.143867632447964,39.944753947510421],[-75.143890676638264,39.944660376351131],[-75.14389797413908,39.944632907777525],[-75.14390800112561,39.944595559330573],[-75.143916579182516,39.94456189648465],[-75.143925777350873,39.944525799647806],[-75.14392896041619,39.944513310805831],[-75.143928710846708,39.94450461747072],[-75.143927360378171,39.944494442168178],[-75.143924973460258,39.944485133527643],[-75.143921082405086,39.94447734858111],[-75.143915755609456,39.944468540788968],[-75.143908836251583,39.944459655365307],[-75.143897857130398,39.944450283952854],[-75.143890015351261,39.944444816774975],[-75.143878043139978,39.944437714999388],[-75.143870408695321,39.944434686194391],[-75.143859317330353,39.944430286776395],[-75.143746770473129,39.944415631483707],[-75.143658718032668,39.94440416635846],[-75.143549614375587,39.94438995943058],[-75.14354953168008,39.944389948541172],[-75.143429134081686,39.94437494694364],[-75.143332649264693,39.944363222363158],[-75.143292342324258,39.944358323825035],[-75.143249036407127,39.944557116329158],[-75.143226962392504,39.944662115481982],[-75.143196701898589,39.944806060021818]]]},"properties":{"OBJECTID_1":35,"OBJECTID":1042,"ASSET_NAME":"Korean War Veterans Memorial","SITE_NAME":"Korean War Veterans Memorial","CHILD_OF":"I-95 Park","ADDRESS":"109 SPRUCE ST","TYPE":"Land","USE_":"Park- Linear\\Parkway","ACREAGE":1.3079369999999999,"ZIPCODE":"19106","ALLIAS":" ","GLOBALID":"a4feb048-98c3-4e9a-b81d-e6acb97dda3e","Shape_Length":970.44422957366328,"Shape_Area":56973.758054565791}},{"type":"Feature","id":36,"geometry":{"type":"Polygon","coordinates":[[[-75.14328610922017,39.943425427525646],[-75.143278549729771,39.943459326119033],[-75.14323462962011,39.943453911139947],[-75.143185771861738,39.943447888361241],[-75.143125956552112,39.943440513666992],[-75.1429577071181,39.943419770164894],[-75.142935011300679,39.943416972909013],[-75.142867366673627,39.94340863352771],[-75.142700733341371,39.943388089464683],[-75.142639962749783,39.94338059729106],[-75.142584801999291,39.943373797553527],[-75.142542045945731,39.943368525000906],[-75.142548366660208,39.943336809398502],[-75.142368024052999,39.943313935800376],[-75.142346362117564,39.943563352129466],[-75.142346357740294,39.943563405190361],[-75.142286558077089,39.944085854822319],[-75.1422896481252,39.944121584885778],[-75.142313850512991,39.944141745001964],[-75.142344561280282,39.944155016083371],[-75.142378195802038,39.944161831115949],[-75.143064961417792,39.944231987381293],[-75.143072344754756,39.944232741757197],[-75.143109541313805,39.94423654161497],[-75.143220774261991,39.944247903274174],[-75.143237360862742,39.94425055081259],[-75.143251782087333,39.944250079350638],[-75.143260987869198,39.944247970233029],[-75.143268000727588,39.94424523011736],[-75.143277138544533,39.94424815797619],[-75.143280229591042,39.944249148169099],[-75.143281202733917,39.944246300525862],[-75.143283270469212,39.944240246689027],[-75.143285723165974,39.944233068113618],[-75.143295300651474,39.944205034188222],[-75.143467408317335,39.943446664421288],[-75.143402479209968,39.9434390619341],[-75.143374624984901,39.943435796139056],[-75.143321533906331,39.943429571792883],[-75.14328610922017,39.943425427525646]]]},"properties":{"OBJECTID_1":36,"OBJECTID":1043,"ASSET_NAME":"Vietnam Memorial","SITE_NAME":"Vietnam Memorial","CHILD_OF":"I-95 Park","ADDRESS":"10 SPRUCE ST","TYPE":"Land","USE_":"Park- Linear\\Parkway","ACREAGE":1.999163,"ZIPCODE":"19106","ALLIAS":" ","GLOBALID":"9ba7dd8d-320b-43a5-88f5-79c103f79e07","Shape_Length":1213.6292480891334,"Shape_Area":87083.538364198888}},{"type":"Feature","id":37,"geometry":{"type":"Polygon","coordinates":[[[-75.143047156959767,39.962792907321884],[-75.1430845168926,39.962799946241063],[-75.143437251373769,39.962881273990476],[-75.143674143921899,39.962937433677759],[-75.143653194514954,39.963037916480538],[-75.143712683633453,39.96305226061407],[-75.143875534037406,39.963091182628432],[-75.143924731694,39.962862654669578],[-75.143910481611456,39.962860057705441],[-75.143957795808873,39.962640756677111],[-75.14396439634578,39.962603973681809],[-75.143908393002206,39.962591044164938],[-75.143549342913545,39.962507047896665],[-75.143529191702626,39.962503102243204],[-75.143517275341765,39.962539142747566],[-75.143509844117929,39.962572056780168],[-75.143502911212593,39.962602023174327],[-75.143492307237921,39.962647865084698],[-75.143480514392309,39.962698843747098],[-75.143466925899546,39.962693714565305],[-75.143129358273171,39.962613268509422],[-75.1430908345544,39.9626048561299],[-75.143047156959767,39.962792907321884]]]},"properties":{"OBJECTID_1":37,"OBJECTID":1045,"ASSET_NAME":"Northern Liberties Recreation Center","SITE_NAME":"Northern Liberties Recreation Center","CHILD_OF":"Northern Liberties Recreation Center","ADDRESS":"313-27 FAIRMOUNT AVE","TYPE":"Land","USE_":"Recreation Center","ACREAGE":0.65472799999999998,"ZIPCODE":"19123","ALLIAS":" ","GLOBALID":"5c9379c0-e495-425d-a79f-7d2ee786f4c8","Shape_Length":852.98728986172546,"Shape_Area":28519.978677059717}},{"type":"Feature","id":38,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.171066086234418,39.958632115907811],[-75.171033083738649,39.958631898425253],[-75.170999961465782,39.958634836297158],[-75.170973691845234,39.958639570757008],[-75.170966959231919,39.958640811475668],[-75.170935565443671,39.958649816875052],[-75.170882939517753,39.958664529518849],[-75.170865758404275,39.958668388854775],[-75.170829190155274,39.958676604841031],[-75.17080617352471,39.95868055733122],[-75.170774973800519,39.958685991823806],[-75.170719406082583,39.958692639048223],[-75.170719224312137,39.958692646674798],[-75.170663459969973,39.958696546762802],[-75.170617129940211,39.958699006475186],[-75.170616560924373,39.95869903693066],[-75.170616504635063,39.958699039269192],[-75.170569445485398,39.958699609359684],[-75.170569253630703,39.958699605046121],[-75.170522412480395,39.958698257253062],[-75.170508666782027,39.958698318512702],[-75.170508634888549,39.958698325904749],[-75.170495520562682,39.958701401738089],[-75.170487484939414,39.958705506290634],[-75.17048420553067,39.958707260714924],[-75.170481147009909,39.958709950853972],[-75.170475271552434,39.9587153825154],[-75.170472454066513,39.958720451346892],[-75.170470145594578,39.958725096432957],[-75.170461713577851,39.9587591922622],[-75.170457205304203,39.958775796613025],[-75.170402641017205,39.959025560063083],[-75.170400594523329,39.959036719069069],[-75.170399363175221,39.959044880706614],[-75.170401755820762,39.959051063208065],[-75.170402396379757,39.959052571493572],[-75.170409299910261,39.959058733784161],[-75.170415104081016,39.959061132143731],[-75.170418272025032,39.959062375594314],[-75.170428693596349,39.95906293518577],[-75.170428769431638,39.95906294229696],[-75.170540723787767,39.959077252871673],[-75.170604830232861,39.959085116630646],[-75.170700492892294,39.959096819936214],[-75.170857661970658,39.95911653195494],[-75.170994425186862,39.959133168495455],[-75.17111249614598,39.959148778314706],[-75.171166014191883,39.959155174760504],[-75.171220131357856,39.959161611678425],[-75.171354288305054,39.959177881056263],[-75.171424471328478,39.959186370183865],[-75.171489063683211,39.959194146154914],[-75.171598161325747,39.95920753732085],[-75.171642972452062,39.959213022454165],[-75.171667622050137,39.959216487602887],[-75.171738543780876,39.959226400522695],[-75.171741792910424,39.959226832144473],[-75.171811121750039,39.959235000898424],[-75.171826347076788,39.959233192326515],[-75.171840204351568,39.959228033672183],[-75.171851205129386,39.959219964520166],[-75.17185481769738,39.95921557036344],[-75.171859235408192,39.95920970582393],[-75.171859517358769,39.959208631843651],[-75.17186185142252,39.959199700279846],[-75.171862854751538,39.959195197932125],[-75.171863620935696,39.959192933781296],[-75.171867221349856,39.959179171503983],[-75.171874242018831,39.959148495657118],[-75.171880288475847,39.959117697904944],[-75.171880774645899,39.959111118810505],[-75.171877512490454,39.959098225870221],[-75.171878240676662,39.959098320622218],[-75.171876405554372,39.959093857204643],[-75.171867525269533,39.9590852016265],[-75.171866168373768,39.959084272822906],[-75.171853894708974,39.959075222929393],[-75.171834484371516,39.95906136882865],[-75.171830704724684,39.959058533995083],[-75.171798049310866,39.95903404670225],[-75.171782848403097,39.959022840664176],[-75.171716862048612,39.958974885223157],[-75.171679565113521,39.958946797647684],[-75.171679533245964,39.958946773505147],[-75.171672928578971,39.958941773110496],[-75.171656813665777,39.958929723887422],[-75.171647241694217,39.958922419585221],[-75.171631300859872,39.958910257138712],[-75.171599777749762,39.958886388101263],[-75.171560788063402,39.958857462340426],[-75.171528417280513,39.958833594053317],[-75.171500245846815,39.958812854755294],[-75.171455700425668,39.958780292835954],[-75.171427463017281,39.958759843063923],[-75.171412096614787,39.958748835982618],[-75.17136929218961,39.958720627216515],[-75.171323017080624,39.958695882311851],[-75.171273738493554,39.958674846930975],[-75.17124934197922,39.958666323679253],[-75.171231854438844,39.958660303764383],[-75.171215331913956,39.958655850778371],[-75.171189050485509,39.958648866425392],[-75.171164460927031,39.958644257328615],[-75.171144279035971,39.958640526681954],[-75.171099859414852,39.958635503355431],[-75.171099555076282,39.95863547038477],[-75.17109240284185,39.958634749179282],[-75.171066086234418,39.958632115907811]],[[-75.170528734137292,39.958784783285822],[-75.170975170257449,39.958840127519444],[-75.17097106938742,39.958858216908212],[-75.17095071015676,39.958947955311025],[-75.17094302135834,39.958981848030604],[-75.170920974718953,39.959079023314594],[-75.170918329717765,39.95909068335272],[-75.170474929216113,39.959035029662445],[-75.170528734137292,39.958784783285822]],[[-75.171408780388873,39.95889309677495],[-75.171442426979411,39.958916852311589],[-75.171603164010804,39.959030336402442],[-75.171629112588107,39.959048656948454],[-75.171625152860358,39.959066672041658],[-75.171603946627457,39.95916316983849],[-75.171600974443521,39.959176697547818],[-75.171344083768687,39.95914346900215],[-75.171346672970415,39.959131981597494],[-75.171372125814329,39.959034939568177],[-75.171380807784217,39.959001342154778],[-75.171404111664827,39.958911158096221],[-75.171408780388873,39.95889309677495]]],[[[-75.169696212492823,39.95826361725004],[-75.16969060262916,39.958264028082162],[-75.169688224509883,39.958264216968281],[-75.169681875319171,39.958267662909719],[-75.169658901163203,39.95828529623607],[-75.169650486380576,39.958291861884646],[-75.169636211339451,39.958303242298364],[-75.169614102364307,39.958321493349757],[-75.169583499711891,39.958344687340308],[-75.169577973190869,39.958348914939755],[-75.169542129883283,39.958376515943819],[-75.169506282826831,39.958404245698148],[-75.169486318415977,39.958417635332054],[-75.169471644891715,39.958427575951326],[-75.169446588493287,39.958442013353363],[-75.169435000873065,39.958448728367912],[-75.1694253232112,39.958453400492907],[-75.169396142306724,39.958467581124843],[-75.169355542329143,39.958484007908332],[-75.169329228333609,39.95849268293636],[-75.169313581359788,39.958497919063085],[-75.169270327436934,39.958509218808466],[-75.169239615623312,39.958515369355034],[-75.169216685174717,39.958520041575106],[-75.169168084361431,39.958526523108915],[-75.169162579248592,39.958527257934691],[-75.169162429892069,39.958527275298124],[-75.169107563060876,39.958530850631405],[-75.169078303754176,39.95853078797338],[-75.169052709173471,39.958530756394538],[-75.169052498115946,39.95853073362607],[-75.168997538849098,39.958526941027309],[-75.168943455018322,39.958519459518314],[-75.168943400138374,39.958519455580571],[-75.168942957486379,39.958519426700626],[-75.168939425355774,39.958519203073244],[-75.168937118166582,39.958519065570215],[-75.168935392532759,39.958518968181295],[-75.168931237950602,39.95851876388744],[-75.168924417258978,39.958519979979876],[-75.16891835443279,39.958521125723834],[-75.16890655212481,39.958526524879197],[-75.168897328913275,39.95853442741376],[-75.168891611815212,39.958544039666592],[-75.168884987815034,39.958574872952148],[-75.168884074608243,39.958579340364075],[-75.168829078606493,39.958827621221786],[-75.168826985581205,39.95883605358712],[-75.16882643422349,39.958839902934116],[-75.168826136589274,39.958844531961759],[-75.168829221396948,39.958852708701777],[-75.168831826489381,39.958855545142995],[-75.168835901888215,39.958859683293504],[-75.168844592703906,39.958864624471623],[-75.168844637814942,39.958864639001803],[-75.168855189827568,39.958867064971592],[-75.168855249182002,39.958867074416119],[-75.169007128673996,39.958885119338888],[-75.169109206795824,39.958898679340166],[-75.169170606570489,39.958906803779698],[-75.169262589245264,39.958918125473573],[-75.169336531339738,39.958927201413957],[-75.169462625161017,39.958942911422078],[-75.169562739050718,39.958956032189739],[-75.169632617751063,39.958965155299254],[-75.169688853612683,39.958971846030124],[-75.169760089647085,39.958980283282187],[-75.169871995751492,39.958993699623392],[-75.170058478431898,39.959016817383052],[-75.170120236082454,39.959024772758397],[-75.17020512912525,39.959035673869565],[-75.17024584076313,39.959041070073226],[-75.170276879354176,39.959045157626448],[-75.170283585297724,39.959045484113403],[-75.170286675480142,39.959045630184974],[-75.170296598219238,39.959042768230447],[-75.170303952642939,39.959037055378516],[-75.170304738811396,39.959035530518541],[-75.170307523106104,39.959029578850718],[-75.170311465906096,39.959013622233591],[-75.170366789545497,39.958764436324984],[-75.170374816336562,39.958728032000096],[-75.170376484964393,39.958719608989568],[-75.170376747337869,39.958708011619279],[-75.170372994019232,39.958696776264972],[-75.17036808413836,39.958690191172224],[-75.170365433715872,39.958686696908067],[-75.170364152250329,39.958685694096872],[-75.170354786178137,39.958678552891243],[-75.170341644921393,39.958672871137665],[-75.170291208104288,39.958662889965801],[-75.170241897344596,39.958650018408008],[-75.170193969892281,39.958634327123377],[-75.170120408690465,39.958604927992255],[-75.170090412692005,39.958590872482333],[-75.170049505734241,39.958571757475497],[-75.170030290614022,39.95856125471871],[-75.169981896149537,39.95853495600317],[-75.169929078294373,39.958499191736983],[-75.169879368609188,39.958460880798981],[-75.169832968241607,39.958420183592565],[-75.169790076928336,39.958377266796568],[-75.169788070489659,39.958374697927795],[-75.169762029747005,39.958341898265999],[-75.169734829787345,39.958306357767448],[-75.169708531859726,39.958270651039349],[-75.169703355211894,39.958265913304139],[-75.169699809448304,39.95826475413962],[-75.169696212492823,39.95826361725004]],[[-75.168993007779548,39.958590705758887],[-75.169421635440713,39.958646943001469],[-75.169417095321634,39.95866727680356],[-75.169397404357198,39.958755459538253],[-75.169390055512963,39.958788365997975],[-75.169368227194724,39.958886117187106],[-75.169365546679202,39.958898119683269],[-75.168937345760085,39.958844046194422],[-75.168993007779548,39.958590705758887]],[[-75.169848421865723,39.958698220379041],[-75.17029578864485,39.958755515482196],[-75.170238264349678,39.959004032880586],[-75.169793745868688,39.958950189464566],[-75.169796304458799,39.958938404966666],[-75.169817720886925,39.958839706489606],[-75.169824559920229,39.958808195026023],[-75.16984394858487,39.958718832309998],[-75.169848421865723,39.958698220379041]]]]},"properties":{"OBJECTID_1":38,"OBJECTID":1047,"ASSET_NAME":"Vine Street Cover","SITE_NAME":"Logan Square","CHILD_OF":"Benjamin Franklin Parkway","ADDRESS":"200 N 18TH ST","TYPE":"Land","USE_":"Park- Square\\Plaza","ACREAGE":2.0605099999999998,"ZIPCODE":"19103","ALLIAS":" ","GLOBALID":"6fe21bba-f937-47ce-af69-cc2346725775","Shape_Length":3829.0707258150092,"Shape_Area":89755.488000566926}},{"type":"Feature","id":39,"geometry":{"type":"Polygon","coordinates":[[[-75.171532682363875,39.957390534886798],[-75.171524446133972,39.957394532282777],[-75.171513725188689,39.957399214466584],[-75.171496474212532,39.957409150563279],[-75.171461973449055,39.957429021874951],[-75.171429142159752,39.957448864926377],[-75.171401243612948,39.957466052725472],[-75.17135609640782,39.957493175745682],[-75.171337017355469,39.957506823455695],[-75.171326639620318,39.957514246114478],[-75.171321038456739,39.957522696973868],[-75.171314732188321,39.957535658681699],[-75.171312470049145,39.957544052143994],[-75.171314621452311,39.957560725122988],[-75.171321040742541,39.957580538560897],[-75.171329091657327,39.957599038952893],[-75.171337885590901,39.957614312392437],[-75.171345825221138,39.957628958444154],[-75.171355397645968,39.957642291475565],[-75.171363299439406,39.957655651828603],[-75.171386191849464,39.957696392174],[-75.171410938537804,39.95774352724581],[-75.171428895917074,39.957786921873165],[-75.171441993918208,39.957835542184569],[-75.171451455705025,39.957873941649083],[-75.17146054750927,39.957928414105233],[-75.1714689354001,39.95798739743649],[-75.171481478179217,39.958074588508836],[-75.171490644625834,39.95813163053036],[-75.171497212667859,39.958185503847886],[-75.171507875605258,39.95822711719071],[-75.171511023805763,39.958239400299263],[-75.17150959588497,39.95826153766955],[-75.171509597037016,39.958261599865452],[-75.171508856687055,39.958272993674242],[-75.171510626395218,39.958291643004017],[-75.171512042958071,39.958306578523725],[-75.171519709077629,39.95833966398331],[-75.171521929651945,39.958346063340983],[-75.171521955063128,39.958346134191245],[-75.171531770961167,39.958374434924529],[-75.171548337835048,39.958408106061668],[-75.171569417606989,39.958440376631494],[-75.171579465467673,39.958452354387688],[-75.171595024434751,39.958470904564045],[-75.17162338528729,39.958499391417377],[-75.171638281166551,39.958512368326275],[-75.171638410360572,39.958512481153598],[-75.171676066557609,39.958545287326331],[-75.171727439317308,39.958586544212615],[-75.171731430364858,39.958589762227298],[-75.171731471386011,39.95858979198163],[-75.171788728154723,39.958632826324624],[-75.171817422683944,39.958652524020977],[-75.171827391467062,39.958657732457056],[-75.171848916803825,39.958668979702111],[-75.171878272221207,39.95867983976725],[-75.171884111200896,39.958682000065551],[-75.171889994041294,39.958683498202518],[-75.171920339469281,39.958691225151547],[-75.171927901528719,39.958692532163759],[-75.171937180511591,39.958694135447516],[-75.17195316739263,39.958696136344535],[-75.171969678498186,39.958697250707971],[-75.17197007088339,39.958697277545625],[-75.171980778727317,39.958695506198666],[-75.171980845613547,39.958695502295591],[-75.171982337393402,39.958694727607622],[-75.171989946938098,39.958690771956583],[-75.171996461818551,39.958683666988847],[-75.17199945821605,39.958675237755045],[-75.172005969299221,39.958647034548086],[-75.172012270227967,39.95861974114807],[-75.172012691111277,39.958616795278445],[-75.172013485382536,39.958611229540175],[-75.172032893676956,39.95852296890159],[-75.172057691187533,39.958410241577617],[-75.172067398585909,39.958366795649461],[-75.172079184781978,39.958314046605821],[-75.172094550590558,39.958238267878201],[-75.172100155697152,39.958211814803121],[-75.172115199835261,39.958140809627913],[-75.172126968916729,39.958089281070684],[-75.172144215072265,39.958010969490886],[-75.172158734653493,39.957946782213902],[-75.172163510784003,39.957925667040101],[-75.172170814278758,39.957891479974982],[-75.172186292427114,39.957819030308123],[-75.172208036192629,39.957716231999974],[-75.172228469177455,39.95762569947852],[-75.172232065013688,39.95760977015032],[-75.172237027476839,39.957587785177168],[-75.172240949935912,39.957554297912779],[-75.172243869058008,39.957528955799276],[-75.172244393281517,39.957512022201072],[-75.172240720224949,39.957500516610018],[-75.172235451089492,39.957491609722062],[-75.172229104235697,39.957485649262487],[-75.172221658727835,39.957480718303195],[-75.172217911157034,39.957477410267821],[-75.172212719952938,39.957474688791393],[-75.172208046008237,39.957472189774698],[-75.172203120756521,39.957469556265977],[-75.172182649926839,39.957466906827285],[-75.172098342124087,39.957455993261853],[-75.172022465041948,39.957446170097192],[-75.172022002466079,39.957446111047766],[-75.171955258358267,39.957437600413613],[-75.171906433259934,39.957431631430126],[-75.171860470429891,39.957426012369957],[-75.171813636373486,39.957419903382551],[-75.171769402066317,39.957414027597963],[-75.171678405581773,39.957401938949737],[-75.171638401231391,39.957396624904611],[-75.171573720254102,39.957389501124005],[-75.171546780207478,39.957387080095039],[-75.171532682363875,39.957390534886798]]]},"properties":{"OBJECTID_1":39,"OBJECTID":1048,"ASSET_NAME":"Aviator Park","SITE_NAME":"Benjamin Franklin Parkway","CHILD_OF":"Benjamin Franklin Parkway","ADDRESS":"200 N 19TH ST","TYPE":"Land","USE_":"Park- Linear\\Parkway","ACREAGE":1.876304,"ZIPCODE":"19103","ALLIAS":" ","GLOBALID":"e2a477f6-1aef-4a78-9883-289a9730b003","Shape_Length":1225.7019115448472,"Shape_Area":81731.349929695163}},{"type":"Feature","id":40,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.173727865858737,39.959162825455842],[-75.173794422405763,39.959169631491761],[-75.1737945215704,39.95916964092666],[-75.17384252376651,39.959174282324653],[-75.173983867710049,39.959187840266786],[-75.173984063938605,39.959187852781945],[-75.174033664791708,39.959192606581034],[-75.174121777968992,39.959197806084788],[-75.17412199167714,39.959197820794166],[-75.174209800034447,39.959205872302682],[-75.174237295222696,39.959209267434346],[-75.174237604040002,39.959209305903215],[-75.174297713978476,39.959216729167707],[-75.174605845368077,39.959255228873609],[-75.174937109279512,39.959295405663596],[-75.175047484411422,39.959309647533232],[-75.17513598847718,39.9593210666131],[-75.175369337085442,39.959349587508335],[-75.175369551384236,39.959349617545854],[-75.175419235446626,39.95935703149906],[-75.175420001401903,39.959353997856546],[-75.175420283286883,39.959352893232833],[-75.175424090698456,39.959333278918209],[-75.175433587683571,39.959284363383638],[-75.175433674781843,39.959283980605477],[-75.175475070328574,39.959102639951745],[-75.175475308844554,39.959101598326647],[-75.175487180128968,39.959048020165589],[-75.175511901699835,39.958936439308914],[-75.175547606158844,39.958771175651982],[-75.175562795967551,39.958699941812334],[-75.175563912628292,39.958694512135274],[-75.175572639993632,39.958652059410468],[-75.175577568985105,39.95863074572086],[-75.175583310444225,39.958605911983277],[-75.175581403989824,39.958597608712481],[-75.175581013051271,39.958595906034837],[-75.175575111012293,39.958586848155896],[-75.175565568578108,39.958579681805688],[-75.17555414473091,39.958575231237532],[-75.175417367157735,39.958558762891926],[-75.175280621087495,39.958541619328678],[-75.175143899914488,39.958523789587474],[-75.17514380932468,39.958523801069497],[-75.175137775970114,39.958524573880531],[-75.175131348533895,39.958525395511465],[-75.175125827423685,39.958527975538431],[-75.175121357631994,39.958530063781019],[-75.175116555559384,39.958534153825894],[-75.175113060249416,39.958537128912276],[-75.175111481073046,39.958540674096973],[-75.175109159823094,39.958545881214789],[-75.175093899476934,39.958612353367123],[-75.175070691921192,39.958713443389577],[-75.175034887682216,39.958881278879836],[-75.174974279617331,39.959185697307618],[-75.174780687122151,39.959161831522373],[-75.174599636005283,39.959139626391071],[-75.174599522972954,39.959139612140525],[-75.174385508063082,39.959113139218104],[-75.174107603258605,39.959078459404239],[-75.17410756712971,39.959078454989005],[-75.174084514612701,39.95907591372341],[-75.174083578360353,39.959075809808752],[-75.174083366095502,39.959075787923553],[-75.173843488706169,39.959054069099622],[-75.173774160718935,39.959047791921037],[-75.17375209891712,39.959065100546532],[-75.173569109538263,39.959043787305625],[-75.173377412478288,39.959017261360096],[-75.173258359086219,39.959003809563221],[-75.173196405812476,39.958996867834514],[-75.173141977269012,39.958990768142364],[-75.173034426091732,39.958977941173806],[-75.172895066396293,39.95896132082477],[-75.172635752671511,39.958929534618584],[-75.172635660945062,39.958929545172104],[-75.172620517110602,39.958931337659905],[-75.172606060717044,39.958936119837439],[-75.172606014307391,39.958936139518123],[-75.172594176143605,39.958943662833718],[-75.172590799696223,39.958947173916961],[-75.172584953644389,39.958953254172904],[-75.17258488780854,39.958953322972988],[-75.172582442416569,39.958958895770181],[-75.172580003351527,39.95896445609521],[-75.172578662554898,39.958976312152835],[-75.172579508777076,39.958980733519475],[-75.172580896063266,39.958987990820134],[-75.172587627349259,39.958998698326575],[-75.172657183296621,39.959046647847757],[-75.172657480482073,39.959046684257501],[-75.172913912800809,39.959078172316886],[-75.172917185319022,39.959078573796226],[-75.173238858249519,39.959118072462871],[-75.17331631946081,39.959127332082247],[-75.173334781181097,39.959129530727111],[-75.173334924595167,39.959129546562245],[-75.173434403540895,39.959137482353832],[-75.173609583757909,39.959152831421761],[-75.173727865858737,39.959162825455842]]],[[[-75.175739557235602,39.959147131940263],[-75.175744682126378,39.959150467155105],[-75.175761437647708,39.959158947731822],[-75.175770945343487,39.959163758035196],[-75.175799097469337,39.959174259407135],[-75.175829147823421,39.959181756136473],[-75.175884262305587,39.959187066231863],[-75.175884510836951,39.959187088927401],[-75.175939412609949,39.959191431040395],[-75.175939657836423,39.959191448255581],[-75.175994598758052,39.959194819027175],[-75.175994918855309,39.95919483792202],[-75.176120058469223,39.959201105375101],[-75.17612015897457,39.959201110332963],[-75.176244843812398,39.959206958386652],[-75.176245229524113,39.959206976049749],[-75.176370433255798,39.959212448171613],[-75.176459504619999,39.959216372614762],[-75.176459575913057,39.959216376016023],[-75.176548575926262,39.959220298789276],[-75.176548720886217,39.95922030474393],[-75.176637646038841,39.959224225768615],[-75.176637867005468,39.959224234329028],[-75.176674040419755,39.959225595324341],[-75.176674172818224,39.959225592887961],[-75.176687371000739,39.959225058189148],[-75.176709915791307,39.95922412945248],[-75.176745765805236,39.959219870761501],[-75.176780825572791,39.959212889493905],[-75.176784482043104,39.95921091359169],[-75.176784812990732,39.959210367792579],[-75.176786367420789,39.95920790685107],[-75.176786181343459,39.959207100775977],[-75.176785600988964,39.959204586547123],[-75.176782141295831,39.959201676164525],[-75.176772040157573,39.959189841854219],[-75.176761639628083,39.959177658442883],[-75.176744783712323,39.959151577177678],[-75.176738344103995,39.959137139070428],[-75.176732448312606,39.959123923220822],[-75.176730199598595,39.959122241048583],[-75.176727242670211,39.959120029413889],[-75.176723743970314,39.95911963288173],[-75.176719248453793,39.959119123889842],[-75.176712020132314,39.959121490904067],[-75.176710037904456,39.959124117946679],[-75.176708262782554,39.959126470320626],[-75.176703862760618,39.959132713859475],[-75.176699777100708,39.959138509437686],[-75.176687806882484,39.959148325084335],[-75.176672381383895,39.959155144846441],[-75.17665530306293,39.959158460435262],[-75.176638370533794,39.959157988729991],[-75.176584201963621,39.959151537908376],[-75.176545111451233,39.959146884021095],[-75.176366619816491,39.959124729190648],[-75.176294677519991,39.959115040423534],[-75.176212168404348,39.959103927919678],[-75.176088871218326,39.95908868455853],[-75.175995487310288,39.959077139606912],[-75.175694468754415,39.959039325822054],[-75.175687855318714,39.959041130822044],[-75.175682750092633,39.959042529969551],[-75.175673601869988,39.959048503843704],[-75.175667946259338,39.959056486959014],[-75.175665818976441,39.959065536756555],[-75.175666491566403,39.959068149470106],[-75.175668152078444,39.959074601043923],[-75.175672932984924,39.959082317379391],[-75.17568160431756,39.95909631457647],[-75.175699578227537,39.959116456385544],[-75.175720302041483,39.959134601079654],[-75.175739557235602,39.959147131940263]]]]},"properties":{"OBJECTID_1":40,"OBJECTID":1049,"ASSET_NAME":"Winter Street","SITE_NAME":"Benjamin Franklin Parkway","CHILD_OF":"Benjamin Franklin Parkway","ADDRESS":"231-51 N 22ND ST","TYPE":"Land","USE_":"Park- Linear\\Parkway","ACREAGE":1.7644610000000001,"ZIPCODE":"19103","ALLIAS":" ","GLOBALID":"59235ab2-f8d2-49ef-a125-b5718cc43579","Shape_Length":2852.6758283062391,"Shape_Area":76859.678651928712}},{"type":"Feature","id":41,"geometry":{"type":"Polygon","coordinates":[[[-75.169234004645503,39.957131665735822],[-75.169223538100439,39.957133900867632],[-75.169210768090664,39.95714129565247],[-75.169200591805264,39.957150807604194],[-75.169193920870768,39.957161986000301],[-75.169187343843944,39.957192576179814],[-75.169183086275339,39.957212376620845],[-75.169177631956856,39.957237082297233],[-75.169164767990623,39.957295340880833],[-75.16915713569712,39.957331857624617],[-75.169137239093203,39.957423266731098],[-75.169033925367657,39.957897913878774],[-75.169022523433327,39.957947206001634],[-75.169013643147736,39.957985595804644],[-75.168988814682749,39.958099008459293],[-75.168971786914327,39.958178748164379],[-75.168950831281578,39.958276878423106],[-75.168922566524785,39.958410253240743],[-75.168920968894142,39.958415292716722],[-75.168920540562539,39.958416643613312],[-75.16891851339588,39.958423034859763],[-75.168917896718057,39.958426477280568],[-75.168917379760757,39.958429359711353],[-75.168916220719666,39.958431268115206],[-75.168915477535833,39.958432492994241],[-75.168916617314864,39.958434666657489],[-75.168917140321355,39.958435662332818],[-75.168920637122653,39.95843758628309],[-75.168932028956888,39.95844021765172],[-75.168944516503217,39.958443100726029],[-75.16894576893894,39.958443356859874],[-75.168958694224315,39.958445997496469],[-75.168969305158939,39.95844816529037],[-75.168994110637556,39.958452756293681],[-75.169041171306674,39.958458707534596],[-75.169089259198174,39.958461073298686],[-75.169136592020763,39.958459829708666],[-75.169156147625202,39.958457851305788],[-75.169156345081845,39.95845783142029],[-75.169184955272328,39.958454946652253],[-75.16921649030094,39.958448576771282],[-75.169233505537932,39.958445140130195],[-75.169281294691459,39.958431882697802],[-75.169305450986641,39.958423388002437],[-75.169328316194793,39.958415346303063],[-75.169371895830338,39.958395654600245],[-75.169415671840312,39.958370453085728],[-75.169443519971097,39.958351132814137],[-75.169443631809401,39.958351055139389],[-75.169455990201286,39.958342480646877],[-75.169462214995761,39.958337439825648],[-75.169493730359918,39.958311918350645],[-75.169507297529066,39.958298028923046],[-75.169521578529483,39.958283409509413],[-75.169546824161827,39.958252951794528],[-75.169558804486272,39.958235248712647],[-75.169568564319661,39.958220828540604],[-75.169585896170688,39.958187320381853],[-75.169598808942737,39.958152680263119],[-75.169601005795698,39.958144254726598],[-75.169608207645283,39.958116632107355],[-75.169614056484818,39.958080118473028],[-75.169616345058358,39.958043351766136],[-75.169617030354118,39.958025308133493],[-75.169617387208376,39.958015912264869],[-75.169615755118642,39.957988412614554],[-75.169614444745619,39.957977936772096],[-75.169612333674579,39.957961044811817],[-75.169612541559772,39.957951409526643],[-75.169613518459215,39.957906359117793],[-75.169619158622467,39.957851817784153],[-75.169630134212582,39.957797739741437],[-75.169631150456652,39.957794195479849],[-75.169643503957872,39.957751095761971],[-75.169651410776467,39.95773080524004],[-75.169657442537897,39.957716540881229],[-75.169662194480139,39.957705300376098],[-75.169684411498267,39.957660615065286],[-75.169689698797612,39.957647085407615],[-75.169695281876983,39.957632796539315],[-75.169702615949973,39.957604125405176],[-75.16970434126921,39.957590850810632],[-75.169706396243015,39.957575031054567],[-75.169704828822489,39.957545858774182],[-75.169699998805044,39.957520373049398],[-75.169698882964624,39.957514485948124],[-75.16968845077966,39.957483784387229],[-75.169677947094854,39.957461624642391],[-75.169674409011677,39.957454160344994],[-75.169657448782729,39.957430907511345],[-75.169637767132045,39.957408837766586],[-75.169615348301605,39.95738808861018],[-75.169512990550118,39.957311540857901],[-75.169459225386291,39.957270724671659],[-75.169378563554986,39.957209951434102],[-75.169338299047482,39.957180083469375],[-75.169338133971578,39.957179959921007],[-75.169311748336852,39.957160388296629],[-75.169276127514877,39.957135170390117],[-75.169264561473895,39.957131921540757],[-75.169259355363963,39.95713045921147],[-75.169241527400558,39.957130056360597],[-75.169234004645503,39.957131665735822]]]},"properties":{"OBJECTID_1":41,"OBJECTID":1050,"ASSET_NAME":"Sisters City Park","SITE_NAME":"Logan Square","CHILD_OF":"Benjamin Franklin Parkway","ADDRESS":"200 N 18TH ST","TYPE":"Land","USE_":"Park- Square\\Plaza","ACREAGE":1.584973,"ZIPCODE":"19103","ALLIAS":" ","GLOBALID":"5e606cd9-2c7e-4097-bc43-ecfb4b30c78a","Shape_Length":1165.381607951982,"Shape_Area":69041.156999159371}},{"type":"Feature","id":42,"geometry":{"type":"Polygon","coordinates":[[[-75.166470142102852,39.95506392812441],[-75.166459369304533,39.955063846797785],[-75.166451787111157,39.955063790471641],[-75.166438308168281,39.955066369267755],[-75.166426492051073,39.955072111135543],[-75.166423485933848,39.955074808653897],[-75.166417255538377,39.955080398802792],[-75.166412413898684,39.955090417186241],[-75.166393085688398,39.95517640466241],[-75.166375191275506,39.955255597427637],[-75.166365196611466,39.955299832077046],[-75.166346405858945,39.955395143653895],[-75.166327574315744,39.955491526519239],[-75.166308658401988,39.955566666025973],[-75.166295765692453,39.955624176748785],[-75.166291437531498,39.955643227666712],[-75.166281836460271,39.955685483533685],[-75.166279391742293,39.95570285052294],[-75.166281684381417,39.955712943081757],[-75.166288489357726,39.955721678521343],[-75.166294176595258,39.955724770050224],[-75.166299852340728,39.955727855913857],[-75.166309527616349,39.955729984872342],[-75.166309641434495,39.955730009060069],[-75.166312238748375,39.955730581134944],[-75.166312383460394,39.955730593404233],[-75.166333201180578,39.95573383107304],[-75.166390287473874,39.955742680752579],[-75.166487105824586,39.955753872210146],[-75.166515959757021,39.955757236760078],[-75.166517461111241,39.955757411128779],[-75.166622114636908,39.955769614159543],[-75.166726153190424,39.955781764502412],[-75.166726401466676,39.955781793519492],[-75.166767779818059,39.955786625766258],[-75.16689925650617,39.95580319787782],[-75.16694881797892,39.955809436090881],[-75.166948911186026,39.955809448100688],[-75.167114921586162,39.955831044908045],[-75.167179602367966,39.955839695760496],[-75.167241852103729,39.955848020639152],[-75.167391912498985,39.955866640500091],[-75.167405574121801,39.955868560869732],[-75.167406511735365,39.955868689198212],[-75.167440630904167,39.955873468606107],[-75.167440726416771,39.955873481568467],[-75.16744431237889,39.955873332535418],[-75.167456810451313,39.955872813785071],[-75.167468183248559,39.955869618913269],[-75.167471238838502,39.955868761454703],[-75.167484001790001,39.955861582048236],[-75.167492839810549,39.955853212342987],[-75.167492868946439,39.955853185067369],[-75.167494181846038,39.955851941487012],[-75.167494580048242,39.955851075564709],[-75.167498071669556,39.955843490124821],[-75.167499306912674,39.955834463623738],[-75.167498474089228,39.955829329809085],[-75.167497861502127,39.955825547970875],[-75.16748520939764,39.955806340021766],[-75.167409692880909,39.955751087242206],[-75.167328213894265,39.955688404653309],[-75.16722326914298,39.955609360152486],[-75.167142542140439,39.955550342567257],[-75.167080939453399,39.955506125810132],[-75.16708026937917,39.955505643096132],[-75.167044407761679,39.955479904556171],[-75.167016643245432,39.955459157938357],[-75.167016594313509,39.955459120795965],[-75.16695505532887,39.9554131403114],[-75.166922175458012,39.955389535798901],[-75.16685952702197,39.955344562843706],[-75.16677864799108,39.95528361699445],[-75.166778601296329,39.955283582605418],[-75.166747645135274,39.955260255621674],[-75.166641780537475,39.955182005264668],[-75.166526268846908,39.955093934523177],[-75.166503058902521,39.955076238467186],[-75.166501604201954,39.955075453358653],[-75.166488197402785,39.955068221719664],[-75.166470518253178,39.955063919476153],[-75.166470142102852,39.95506392812441]]]},"properties":{"OBJECTID_1":42,"OBJECTID":1051,"ASSET_NAME":"Cret Park","SITE_NAME":"Benjamin Franklin Parkway","CHILD_OF":"Benjamin Franklin Parkway","ADDRESS":"110 N 16TH ST","TYPE":"Land","USE_":"Park- Linear\\Parkway","ACREAGE":1.1124000000000001,"ZIPCODE":"19103","ALLIAS":" ","GLOBALID":"d40acf33-8997-470d-aea1-583ed250e7f1","Shape_Length":1011.3538848588603,"Shape_Area":48456.026877089964}},{"type":"Feature","id":43,"geometry":{"type":"Polygon","coordinates":[[[-75.169602403326707,39.95721241214509],[-75.169598681393921,39.957216447871161],[-75.169598100337325,39.95721916938281],[-75.169597596264225,39.957221528615847],[-75.169600999023672,39.957225896687319],[-75.169625673277537,39.957242810499032],[-75.169625758825887,39.957242870088166],[-75.169640996093861,39.957253314988378],[-75.169679187437794,39.957281544120178],[-75.169695393625702,39.957294222797579],[-75.169716436295303,39.957310667472065],[-75.16971970669853,39.957313434162067],[-75.169741504976514,39.957331871752508],[-75.169753090064944,39.957344239253857],[-75.169753113708069,39.957344264113011],[-75.169762940147947,39.957354753087564],[-75.169777694271787,39.957373080895479],[-75.169782535497021,39.957379095932438],[-75.169788859634806,39.957389225018353],[-75.169798514810694,39.957404686444093],[-75.169807451796714,39.957419883036295],[-75.169820304127029,39.957441736085485],[-75.169825645814967,39.957455044379991],[-75.169835791271126,39.957480318070836],[-75.169846779137657,39.957520035957963],[-75.169851040803096,39.957548588562553],[-75.169853520385189,39.957577266874523],[-75.169854463708276,39.957594418188535],[-75.169855103706752,39.957606052973532],[-75.169857059643192,39.957610290286745],[-75.169859226499639,39.957614985554194],[-75.169867874045863,39.957622173716352],[-75.16987755719245,39.957625955003962],[-75.169879253905933,39.957626628378385],[-75.169879303969211,39.957626635811422],[-75.169891750360009,39.957627824852317],[-75.169894580277031,39.957627330768048],[-75.16989462978583,39.957627321970357],[-75.169904320828607,39.95762565409413],[-75.169909826561238,39.957622711761644],[-75.16991433797223,39.957620301191312],[-75.169922427579991,39.957612491119065],[-75.169934711380947,39.957600634305933],[-75.169953324293715,39.95758037009675],[-75.169958866142338,39.957573886684102],[-75.169958899197681,39.957573848683857],[-75.169971063735773,39.957559613208353],[-75.170007099698495,39.957526953612522],[-75.170022515418239,39.957515096944462],[-75.170046617081113,39.95749655996233],[-75.170088720724024,39.957468541869929],[-75.170116114124909,39.957451993555637],[-75.170144366375197,39.95743632231482],[-75.170173475800311,39.957421572258937],[-75.170183550347502,39.95741467538393],[-75.170190144607517,39.957405512581765],[-75.170191249769772,39.957396603870301],[-75.170191430010249,39.957395156388266],[-75.170188245328504,39.957385043862715],[-75.170180543391083,39.957376417344669],[-75.170177063073652,39.957374429830963],[-75.170170064689842,39.957370431428892],[-75.17013018545552,39.957363089681643],[-75.170090340098369,39.957355380167066],[-75.170051388556047,39.957347380789813],[-75.169957646541476,39.957325618798919],[-75.169890133994386,39.957307322670189],[-75.169889649590004,39.957307191039966],[-75.169864923400766,39.957300490926976],[-75.169774118116223,39.957272002978776],[-75.169765901929736,39.957269180917997],[-75.169765799080636,39.957269145267269],[-75.169720394010099,39.957253470846048],[-75.16969923809404,39.957245619309091],[-75.169666728332686,39.957233555141492],[-75.16961496243762,39.957212234210196],[-75.169614900949981,39.957212219311941],[-75.169608705700938,39.957210843773673],[-75.169602403326707,39.95721241214509]]]},"properties":{"OBJECTID_1":43,"OBJECTID":1052,"ASSET_NAME":"East Triangle","SITE_NAME":"Benjamin Franklin Parkway","CHILD_OF":"Benjamin Franklin Parkway","ADDRESS":"200 N 18TH ST","TYPE":"Land","USE_":"Park- Linear\\Parkway","ACREAGE":0.19431999999999999,"ZIPCODE":"19103","ALLIAS":" ","GLOBALID":"0750c5ed-3793-45d5-bfa9-fe04e3dd7c8e","Shape_Length":484.91762194949922,"Shape_Area":8464.5164220443712}},{"type":"Feature","id":44,"geometry":{"type":"Polygon","coordinates":[[[-75.17127054977027,39.958275540178292],[-75.171269238184578,39.958276071128267],[-75.171258766810737,39.958280374168176],[-75.171228017708344,39.958314783825806],[-75.171210190681975,39.958332270054058],[-75.171194657304781,39.958347504843232],[-75.171164924171904,39.958372451440013],[-75.171157797494672,39.958378429856538],[-75.171118337060207,39.95840732317771],[-75.171093997124814,39.958423191629691],[-75.171093891513323,39.958423259534797],[-75.171077169061036,39.958434161630684],[-75.171071457636771,39.958443602018754],[-75.171070754083587,39.958449274309181],[-75.171070172382485,39.958453957321609],[-75.171074255157833,39.958463918813926],[-75.171081472375022,39.958470731439988],[-75.171081540139269,39.958470796935309],[-75.171082868195668,39.958472053069748],[-75.171094267954814,39.958477284728239],[-75.171143921722731,39.958485438708415],[-75.171187530063591,39.958494497448939],[-75.171187563749811,39.958494504513226],[-75.171193450823893,39.95849573608146],[-75.171193489087045,39.958495745951694],[-75.171242093098343,39.958508113764154],[-75.17127308808837,39.958518218849754],[-75.171273303218967,39.958518288558423],[-75.171294969691104,39.958525351166827],[-75.171315954948611,39.958533210273572],[-75.171315994210701,39.958533224671271],[-75.171347749127051,39.958545118211859],[-75.171397763938472,39.958567268446998],[-75.171445786485805,39.958594866466633],[-75.171451887938261,39.958598717583961],[-75.171452105186106,39.958598854915927],[-75.17149196602675,39.958624010630565],[-75.171522382707835,39.958644604874671],[-75.171522586985205,39.958644744618049],[-75.171537197195946,39.95865463635257],[-75.171558219565711,39.958670157574211],[-75.17159707984797,39.958698849770485],[-75.171723352459281,39.958790991666937],[-75.171746400431701,39.958807809883375],[-75.171895701552245,39.958917326180469],[-75.171898313483794,39.958917764202369],[-75.171901019660851,39.958918217857359],[-75.171901155833396,39.958918177668686],[-75.171904349555859,39.958917230389936],[-75.171907336094819,39.958916343328404],[-75.17190938419445,39.95891349709639],[-75.171910161672798,39.958912416231065],[-75.171910242908453,39.958910275444246],[-75.171910340644018,39.958907699838242],[-75.171906918111659,39.958903846776558],[-75.171846971202456,39.958861347616626],[-75.171787762767963,39.958817285540924],[-75.171731568559963,39.958775465320507],[-75.17165610712965,39.958718585892882],[-75.171604875096307,39.958681517351309],[-75.171586096300913,39.958667316091493],[-75.171548501222063,39.958638883887126],[-75.171527603453185,39.958621437292656],[-75.171504397365908,39.958602062901626],[-75.171464836934661,39.95856306895309],[-75.171451969215653,39.958548358101993],[-75.17142892361791,39.958522010745817],[-75.171396647606102,39.958479146654049],[-75.171372960839719,39.958441744742551],[-75.171371384797098,39.958439279282139],[-75.171370172583494,39.958436852633859],[-75.171370118123278,39.958436745090076],[-75.171350649508483,39.958398212602972],[-75.171335005318838,39.958361673521267],[-75.171332618828956,39.958356098462779],[-75.171328507409157,39.958343065678662],[-75.171328471939844,39.958342951353572],[-75.171319081803091,39.958313183407768],[-75.171318028331399,39.958306142626931],[-75.171317658595214,39.958303668239346],[-75.171317178338555,39.958301822978811],[-75.171315322819694,39.95829469028704],[-75.171311192797617,39.958285972944076],[-75.171306872891321,39.958282227636673],[-75.171296383708565,39.958276542532474],[-75.171289368764107,39.95827532075721],[-75.171283151716537,39.958274238553088],[-75.171283088921086,39.958274227230426],[-75.17127054977027,39.958275540178292]]]},"properties":{"OBJECTID_1":44,"OBJECTID":1053,"ASSET_NAME":"West Triangle","SITE_NAME":"Benjamin Franklin Parkway","CHILD_OF":"Benjamin Franklin Parkway","ADDRESS":"200 N 19TH ST","TYPE":"Land","USE_":"Park- Linear\\Parkway","ACREAGE":0.14901600000000001,"ZIPCODE":"19103","ALLIAS":" ","GLOBALID":"c14188f7-ab74-4533-a717-48390082ad81","Shape_Length":687.22319142766662,"Shape_Area":6491.0992391428699}},{"type":"Feature","id":45,"geometry":{"type":"Polygon","coordinates":[[[-75.168934442138166,39.956978197945709],[-75.168951108027727,39.956978308000146],[-75.168967298584391,39.956974472624111],[-75.168980961561843,39.95696705650959],[-75.168991167159035,39.956956773066601],[-75.168994391103595,39.956950128528831],[-75.168996974846323,39.95694480309065],[-75.168996774813962,39.956938696013417],[-75.168996561131024,39.956932177766099],[-75.168991668343693,39.956920094997301],[-75.168982245713948,39.956909798844464],[-75.168928661124355,39.956871056990849],[-75.168912780867274,39.956859574872809],[-75.168825094024427,39.956795810378431],[-75.16878826029064,39.956767765567299],[-75.168750525337714,39.956739035516883],[-75.168739083455009,39.956730456295695],[-75.168739021961102,39.956730410762333],[-75.168672454742676,39.956680507722055],[-75.168629234055146,39.956648095185479],[-75.16858137336132,39.956612203921694],[-75.168523221132958,39.956571510205357],[-75.168489252960768,39.956547739317976],[-75.168400782126085,39.956481210543878],[-75.168331303506392,39.956431371524893],[-75.168331295419947,39.956431522713537],[-75.168097892740121,39.956259669550221],[-75.167993864581149,39.956183232338844],[-75.167914437833815,39.956124870798334],[-75.167884149843488,39.956100547337257],[-75.167869484486815,39.95609287397415],[-75.167855712806173,39.956092061235225],[-75.167842707523675,39.956093879591378],[-75.167828391597368,39.956097837190562],[-75.16781624875739,39.956105458575699],[-75.167806372641721,39.95611991743035],[-75.167779448634846,39.956230424669258],[-75.167979654828372,39.956260769285777],[-75.168045800130031,39.956310320867381],[-75.168198264733505,39.956420281051436],[-75.168326958514896,39.95651690986849],[-75.168244113095412,39.956894601019151],[-75.16829648918258,39.95690144888674],[-75.168478315791432,39.956925290807973],[-75.168601872175827,39.956941491668921],[-75.168658079800636,39.95694832467025],[-75.168831880772373,39.956969452688497],[-75.168934147413026,39.956978189512881],[-75.168934355708586,39.956978192397152],[-75.168934442138166,39.956978197945709]]]},"properties":{"OBJECTID_1":45,"OBJECTID":1054,"ASSET_NAME":"Kopernicus Triangle","SITE_NAME":"Benjamin Franklin Parkway","CHILD_OF":"Benjamin Franklin Parkway","ADDRESS":"1716-34 RACE ST","TYPE":"Land","USE_":"Park- Linear\\Parkway","ACREAGE":0.463617,"ZIPCODE":"19103","ALLIAS":" ","GLOBALID":"df3d2a6d-ec38-4829-94da-cdc89ddbf296","Shape_Length":1059.2871940834439,"Shape_Area":25833.597298267388}},{"type":"Feature","id":46,"geometry":{"type":"Polygon","coordinates":[[[-75.176851221567262,39.962559002214029],[-75.176845825721173,39.962561390519959],[-75.176843921225242,39.962564497747977],[-75.176842972657468,39.962566046939465],[-75.176845482509364,39.962570699295782],[-75.176872279723213,39.962593179581503],[-75.176898190927787,39.962615774240959],[-75.176924093567806,39.962638626391836],[-75.176959320674015,39.96267438832831],[-75.176974926417941,39.962693498296687],[-75.176990017364318,39.962711979523988],[-75.177004823366531,39.962732110420518],[-75.177018866613906,39.962751203362011],[-75.177022212823346,39.96275711516472],[-75.177024287469578,39.962760923418969],[-75.177025549816918,39.962763239399678],[-75.177029783009516,39.962770093730619],[-75.177029799501298,39.962770122031827],[-75.177043204009138,39.962791827999105],[-75.177054508075088,39.962815662807017],[-75.177054536276785,39.962815722005296],[-75.177063034148219,39.962833639100481],[-75.177081331941423,39.962879707358439],[-75.177081357496533,39.962879774606471],[-75.177093987576797,39.962911572563783],[-75.177103886513606,39.962938068081847],[-75.177103906662353,39.962938123495455],[-75.177123151636835,39.962989637082998],[-75.177152310888516,39.963067830330175],[-75.177154319671729,39.963070008073608],[-75.177156596157374,39.963072475639116],[-75.177162754205156,39.963074232850538],[-75.177162781737806,39.963074247884144],[-75.17716426103155,39.963073772885359],[-75.177169096405152,39.963072240571876],[-75.177170128020762,39.963070941018536],[-75.177172844222611,39.963067517711444],[-75.177198411237399,39.963028528464925],[-75.177203728947973,39.963021680178663],[-75.177227488949583,39.9629910766769],[-75.17725022458022,39.962966868114222],[-75.177260959153443,39.96295543800543],[-75.177292561844197,39.96292588703858],[-75.177297045299809,39.962921712267516],[-75.17729707557055,39.962921685915937],[-75.177301374607609,39.96291823773074],[-75.177336596610502,39.962890107715587],[-75.17737871746786,39.962860775456285],[-75.177378749805683,39.962860756359085],[-75.177380522980656,39.962859694179912],[-75.17742348708336,39.962833911881631],[-75.177453516331965,39.962818450768992],[-75.177462566755906,39.96281398645209],[-75.177462601399455,39.962813968307643],[-75.177463555562099,39.962813477025627],[-75.17746361408129,39.962813446802286],[-75.177470803003288,39.962809656150299],[-75.177501542042421,39.962796384183008],[-75.177520691557646,39.962788116970927],[-75.177523735812926,39.962786604851416],[-75.177525237057836,39.962785859135536],[-75.177525625415299,39.962785034406352],[-75.177527178674723,39.962781739990859],[-75.177524650345319,39.96277782156173],[-75.17751935092079,39.962776148493866],[-75.177169559865959,39.962706608266458],[-75.177119258757884,39.962691920932457],[-75.177070836465504,39.962674742962264],[-75.177023398209187,39.962655141690085],[-75.176995299962158,39.962641598242946],[-75.176995267784108,39.962641582204085],[-75.176977833866559,39.962633179421395],[-75.17693414016739,39.962608942582229],[-75.176911345398977,39.962595543281303],[-75.176907956143552,39.962593550816464],[-75.176904808276603,39.962591584488486],[-75.176881807831478,39.962577216484966],[-75.17685746996716,39.962560103730048],[-75.176851269216314,39.962558980757358],[-75.176851221567262,39.962559002214029]]]},"properties":{"OBJECTID_1":46,"OBJECTID":1055,"ASSET_NAME":"Binswanger Triangle","SITE_NAME":"Benjamin Franklin Parkway","CHILD_OF":"Benjamin Franklin Parkway","ADDRESS":"2200 BENJ FRANKLIN PKY","TYPE":"Land","USE_":"Park- Linear\\Parkway","ACREAGE":0.23076199999999999,"ZIPCODE":"19130","ALLIAS":" ","GLOBALID":"a41465e7-b697-4f2e-a73b-80278315b142","Shape_Length":572.92847215785355,"Shape_Area":10051.945229887213}},{"type":"Feature","id":47,"geometry":{"type":"Polygon","coordinates":[[[-75.033021536181593,40.020690925735572],[-75.033453792226183,40.02049791709981],[-75.033435864272136,40.020474179067456],[-75.033837240378446,40.020294956280409],[-75.033855171902061,40.020318695233591],[-75.034437509684935,40.020058667809792],[-75.034016052287711,40.019510862942759],[-75.033975547306881,40.019536054373269],[-75.033776000430677,40.019605416230114],[-75.033332588535359,40.019661553946804],[-75.032784434786265,40.019775780345029],[-75.032554611618082,40.020006564050256],[-75.032557502845705,40.020090665784544],[-75.033019830953535,40.020691687326334],[-75.033021536181593,40.020690925735572]]]},"properties":{"OBJECTID_1":47,"OBJECTID":1056,"ASSET_NAME":"Princeton Avenue Boat Launch","SITE_NAME":"Princeton Avenue Boat Launch","CHILD_OF":"Princeton Avenue Boat Launch","ADDRESS":"7071R MILNOR ST","TYPE":"Land","USE_":"Park- Neighborhood","ACREAGE":0,"ZIPCODE":" ","ALLIAS":"Tacony Boat launch","GLOBALID":"338d65d8-226b-40e1-8458-11e64eaa23d9","Shape_Length":1462.7679737320857,"Shape_Area":126263.95415538418}},{"type":"Feature","id":48,"geometry":{"type":"Polygon","coordinates":[[[-75.201409956926298,40.042686832031428],[-75.20135804311164,40.042778794355016],[-75.201341629251161,40.042807871344209],[-75.20124242983448,40.043007886004503],[-75.201207575769715,40.043086773919804],[-75.201154510750413,40.043172916268908],[-75.201088978342042,40.043272569999019],[-75.200991847512128,40.043417479977961],[-75.200878496400833,40.043569691163306],[-75.200809899595811,40.043644765860329],[-75.200670197897395,40.043808646627646],[-75.200555946880286,40.043931729744763],[-75.200440158569023,40.044054937213112],[-75.200331713692734,40.044170330986674],[-75.200293455671428,40.04421821436766],[-75.200283607006654,40.044230540431336],[-75.20016144584892,40.044351915903853],[-75.200053222363408,40.044445171293042],[-75.199910132695322,40.044568468695708],[-75.199566601426739,40.044879639495676],[-75.199381876544209,40.045046961130957],[-75.199103171892318,40.045302733823114],[-75.198787064316548,40.045599037581169],[-75.198554011638223,40.04580680109629],[-75.198682598464018,40.045876446636015],[-75.199023747680727,40.046089919353484],[-75.199244426236348,40.046211246427085],[-75.199429315750962,40.046330246733362],[-75.199569146270079,40.046428331470793],[-75.199701067051024,40.04652470872248],[-75.199801353507425,40.046614254922098],[-75.19990155936496,40.046758950543129],[-75.199957799817923,40.046853646539333],[-75.20000572868598,40.046957350940254],[-75.200020776892316,40.047034281953998],[-75.20004934341857,40.047175854568948],[-75.200049126859184,40.047287681364821],[-75.20004192280868,40.047373309562232],[-75.200004475319275,40.047521076256579],[-75.199939778992416,40.047651387510697],[-75.199892452782748,40.047743784484851],[-75.199872260018694,40.047775005591987],[-75.19986093488518,40.047796966618179],[-75.199806274145487,40.047882687391422],[-75.19976495526069,40.047953893635899],[-75.199671856353532,40.048097360477485],[-75.199557020932033,40.048235749558415],[-75.199432053151995,40.048378509589753],[-75.199403965328543,40.048404954811069],[-75.199396991325983,40.048415233587441],[-75.199347172393274,40.04846241313021],[-75.19931514031687,40.048486994879269],[-75.199241246946173,40.048543702248296],[-75.199205544875284,40.048571100106578],[-75.199163811035945,40.048620727824229],[-75.199127478216582,40.048685794315176],[-75.199114757864663,40.048759044541782],[-75.199111074871041,40.048857007236656],[-75.199110246473197,40.048932054129438],[-75.199101025749428,40.049071255315432],[-75.199079912868044,40.049208661629635],[-75.199065258495054,40.049280337201353],[-75.199028499582568,40.049409735753514],[-75.198975173814873,40.049555616978623],[-75.198935984449548,40.049643599177237],[-75.19892923915387,40.049716982071459],[-75.198928872125634,40.049779783762638],[-75.198950239342267,40.049847663204268],[-75.198982314235266,40.04989586553765],[-75.199010578936267,40.049939388137062],[-75.199037427782244,40.049967558629781],[-75.199080212481832,40.050005134448966],[-75.199140224273293,40.050048519510902],[-75.199185706197397,40.050074416908387],[-75.199235799587655,40.050096469382723],[-75.199290507655249,40.05011459140399],[-75.199341691800271,40.050126779538964],[-75.199438535773496,40.050132722904429],[-75.199486836302029,40.050133795248286],[-75.199572137816958,40.05012146398272],[-75.199607029293631,40.050112030222209],[-75.199676845006081,40.050085927441557],[-75.199782257059994,40.050039245729756],[-75.199874762157634,40.049964702219782],[-75.199921455976025,40.049889141749262],[-75.199955128978516,40.049788781349783],[-75.199981755488182,40.049663752743925],[-75.200051875795793,40.049495263799777],[-75.200132278329718,40.04937143059859],[-75.200241029873155,40.049248106723397],[-75.200244720433446,40.049243711551703],[-75.200246107015033,40.04924234847531],[-75.200249813907391,40.049238704201414],[-75.200283384014227,40.049205703118922],[-75.20035190581865,40.049138343144129],[-75.200383400180527,40.049107383588911],[-75.200411320006481,40.04908334728853],[-75.200449320207028,40.049050632789928],[-75.200727539051002,40.048755015240332],[-75.200972449812937,40.048496956025254],[-75.201349771680057,40.048110087620856],[-75.201600940436663,40.04784450747816],[-75.201854214745481,40.047575909221088],[-75.201999321802049,40.047427465674161],[-75.202150920737409,40.047265378800724],[-75.202269846891838,40.047124013689654],[-75.202337546194002,40.047019812205278],[-75.202397277604533,40.0469154330805],[-75.202399737511598,40.046910116758404],[-75.202411454912209,40.046892451171253],[-75.202453974941847,40.04681104971317],[-75.202547918947317,40.046566427762592],[-75.202661732115246,40.046242649994049],[-75.202797357121227,40.045868800544049],[-75.202895560214984,40.045589101267616],[-75.202972622072252,40.045394722104717],[-75.203005138052163,40.045324973867395],[-75.203119291648079,40.045151331873043],[-75.203125761763133,40.045144521388011],[-75.203237580089052,40.045026804079335],[-75.203412150494728,40.044889735853886],[-75.203657861574811,40.044715946358103],[-75.203791162999664,40.044616261680325],[-75.203836414055729,40.044578965792162],[-75.203826425038329,40.044573678949135],[-75.202691207532354,40.043599179554633],[-75.202005646242853,40.043012562524353],[-75.201509599890699,40.042590158600113],[-75.201409956926298,40.042686832031428]]]},"properties":{"OBJECTID_1":48,"OBJECTID":1058,"ASSET_NAME":"Carpenters Woods","SITE_NAME":"Wissahickon Valley Park","CHILD_OF":"Carpenters Woods","ADDRESS":"7045-99 GREENE ST","TYPE":"Land","USE_":"Park- Regional/Watershed","ACREAGE":0,"ZIPCODE":" ","ALLIAS":" ","GLOBALID":"f8bcdceb-d270-44c0-b1eb-b08da8eeb4b0","Shape_Length":6762.4462818296834,"Shape_Area":1745177.3344256156}},{"type":"Feature","id":49,"geometry":{"type":"Polygon","coordinates":[[[-75.021273775760974,40.089017625535377],[-75.021247598988367,40.089083280333526],[-75.021282910195012,40.089180521640152],[-75.021421315549674,40.089250085292335],[-75.021658456758999,40.089400319384147],[-75.021788541175553,40.089481733975667],[-75.022023988787353,40.089674103666276],[-75.022182516954757,40.089828496208497],[-75.022349368788866,40.089971036226309],[-75.022522362786063,40.090155897410725],[-75.022680651126521,40.090316307970376],[-75.022745618081714,40.090456429877328],[-75.022864478815279,40.090621930020475],[-75.023236323469035,40.091233826629768],[-75.023691313494211,40.091129584964733],[-75.024126729152741,40.091031457741309],[-75.024458805051367,40.090967029810031],[-75.024748567620094,40.090920713603815],[-75.024886354154262,40.09088172805933],[-75.024907489323823,40.090833206369332],[-75.024876657792305,40.090525047434092],[-75.024883431623081,40.090356502740697],[-75.024860790678858,40.090139058779819],[-75.024888828731122,40.089922423460571],[-75.024935540266114,40.089650577226337],[-75.025022592736264,40.089354153275004],[-75.02511237793162,40.089035629019897],[-75.023959386085764,40.088364350307884],[-75.022593432692886,40.087608921624771],[-75.021273775760974,40.089017625535377]]]},"properties":{"OBJECTID_1":49,"OBJECTID":1059,"ASSET_NAME":"Hayes Woods","SITE_NAME":"Hayes Playground","CHILD_OF":"Hayes Woods","ADDRESS":"9850 E ROOSEVELT BLV","TYPE":"Land","USE_":"Park- Regional/Watershed","ACREAGE":38.975634999999997,"ZIPCODE":"19115","ALLIAS":"Swenson Park","GLOBALID":"aa4ebcee-80bb-4f6f-b720-9dd89caba316","Shape_Length":3672.1493813907855,"Shape_Area":821741.04238858866}},{"type":"Feature","id":50,"geometry":{"type":"Polygon","coordinates":[[[-75.021020406237383,40.089275597945942],[-75.017846424224345,40.092551990445997],[-75.017786812443106,40.092614545848988],[-75.017735476851229,40.09267557692592],[-75.017732216915959,40.092709426013585],[-75.017729144481834,40.092741329671995],[-75.017751789233472,40.09278874628],[-75.017786759023878,40.092819908836923],[-75.018041693380553,40.092965484003187],[-75.018235850786553,40.093076354451142],[-75.018334786526651,40.093132848266109],[-75.018411723572711,40.093165046668531],[-75.018465106530968,40.093171075491476],[-75.018560372232443,40.093156492190616],[-75.01862720915608,40.093121121735244],[-75.01869203967459,40.093077249860833],[-75.019044042130446,40.092855762858598],[-75.019730642074222,40.09247200153883],[-75.020256663804247,40.092216094309272],[-75.020689285667899,40.092026739281309],[-75.02095307028209,40.091920088295815],[-75.021282037192719,40.091795449213357],[-75.021530372387105,40.091707632580892],[-75.021837878668762,40.091605695531605],[-75.022583769305086,40.091391307786871],[-75.022735959205349,40.09135272779681],[-75.02289396000721,40.091311866140622],[-75.022992305926095,40.09128326163394],[-75.023025709229017,40.091254903168142],[-75.023017038935578,40.091212207335921],[-75.023007523834309,40.09118202873676],[-75.022949076580559,40.091060391849034],[-75.022822643378845,40.090830802139564],[-75.022700007680712,40.09063189048171],[-75.02254222960444,40.090405518634647],[-75.022416351342841,40.090248786468052],[-75.022240969612412,40.09005798547183],[-75.022102741389659,40.08992339071434],[-75.021911859312041,40.089758245586722],[-75.021636003979154,40.089539297730944],[-75.021453693533772,40.089411773373904],[-75.021305102443904,40.089317197051557],[-75.021183727960846,40.089249378354424],[-75.021149028594365,40.08924744716964],[-75.021138721889045,40.089253115205274],[-75.021103017018035,40.08925206119045],[-75.021020406237383,40.089275597945942]]]},"properties":{"OBJECTID_1":50,"OBJECTID":1060,"ASSET_NAME":"Hayes Playground","SITE_NAME":"Hayes Playground","CHILD_OF":"Hayes Playground","ADDRESS":"9850 E ROOSEVELT BLV","TYPE":"Land","USE_":"Recreation Site","ACREAGE":38.975634999999997,"ZIPCODE":"19115","ALLIAS":"Swenson Park","GLOBALID":"83e6a719-8b18-4ec4-bfed-104456e2ab4c","Shape_Length":4254.575209482382,"Shape_Area":876030.7755026737}},{"type":"Feature","id":51,"geometry":{"type":"Polygon","coordinates":[[[-75.214965969525849,39.929466245532609],[-75.21494315959427,39.929455051808041],[-75.21503488896235,39.929259163590302],[-75.215323361675672,39.928967222687191],[-75.215371543683602,39.928644089049506],[-75.215381283625817,39.928578761827431],[-75.215507365118469,39.928393945416616],[-75.215056013472463,39.928516232538982],[-75.21265858987833,39.927544730146039],[-75.212146089198384,39.928462221496488],[-75.212085455210556,39.928553345950341],[-75.211993882572116,39.928686849090127],[-75.21390743047445,39.929462280827053],[-75.213997544427826,39.929328182638947],[-75.21482986577675,39.929665327977574],[-75.214965969525849,39.929466245532609]]]},"properties":{"OBJECTID_1":51,"OBJECTID":1061,"ASSET_NAME":"Bartrams Mile","SITE_NAME":"Bartrams Mile","CHILD_OF":"Bartrams Mile","ADDRESS":"3000 S 56TH ST","TYPE":"Land","USE_":"Park- Neighborhood","ACREAGE":8.8922779999999992,"ZIPCODE":"19143","ALLIAS":" ","GLOBALID":"eb6794c8-3454-4564-a900-a94a035d7c2c","Shape_Length":2792.8625942183389,"Shape_Area":387346.16616537201}},{"type":"Feature","id":52,"geometry":{"type":"Polygon","coordinates":[[[-75.199423365431031,39.943117847404459],[-75.199947132637618,39.9433360435007],[-75.20017373241879,39.943396972335321],[-75.20033414990796,39.943412688420914],[-75.200712950721183,39.943413817173173],[-75.201039310703948,39.943382190033539],[-75.201650726332758,39.943324550316483],[-75.202366404534985,39.943173295832942],[-75.20262549563391,39.943118537833797],[-75.203304142055842,39.942868736603913],[-75.203490644081995,39.942778106935158],[-75.203935466302454,39.942372138152621],[-75.20396788228534,39.942342552399808],[-75.204199846551589,39.942133860230783],[-75.204249004209345,39.942047509650642],[-75.204317256077559,39.941927618551418],[-75.204456674639118,39.94168271835499],[-75.204484757364995,39.941522959989548],[-75.204490850703024,39.941360285395895],[-75.204470681594572,39.941180653081304],[-75.204529056869504,39.940789059929138],[-75.204572883265783,39.940495059709015],[-75.204572268584769,39.940483063600382],[-75.204537924681901,39.939811983316496],[-75.204526647426533,39.939591590447627],[-75.204524178621398,39.9395433769307],[-75.204490688682085,39.939173272002414],[-75.204485617780335,39.939172717966066],[-75.203459477776263,39.939060470214173],[-75.203439278839355,39.939094042800257],[-75.203436913386824,39.939157169684719],[-75.203460601516781,39.939199005834702],[-75.203468150884163,39.939320059554412],[-75.203613399093669,39.939333618924266],[-75.20368767321159,39.939289097685887],[-75.203859728784934,39.93924674714232],[-75.203919476773876,39.939252933524727],[-75.204000030775944,39.93929360189361],[-75.204038124795659,39.93937220786929],[-75.204056747857862,39.939464961688877],[-75.203969101203413,39.93986639888206],[-75.20389409778322,39.939930343312319],[-75.203771145685607,39.94026295541827],[-75.203794519247168,39.941055311143629],[-75.203750048753719,39.941017035806901],[-75.20236503442267,39.940707000037641],[-75.202256039541538,39.940674667394667],[-75.201778837953341,39.940548387961897],[-75.201520965115378,39.940485750012058],[-75.201435359545314,39.940464953770949],[-75.201432500285961,39.940464258632204],[-75.200997354049875,39.941721127695537],[-75.200996945640654,39.941722310650299],[-75.203034095332441,39.942133343074318],[-75.203033920593001,39.942133539217359],[-75.202951991676699,39.942224546894238],[-75.202929254249639,39.942247957365645],[-75.202880309769668,39.942298340407426],[-75.202754711014833,39.942407233511823],[-75.202564591030566,39.942544009528554],[-75.202444880642574,39.942616736979204],[-75.202287603510356,39.942699794243225],[-75.202165861198253,39.942754330926363],[-75.201998441882481,39.942817620603037],[-75.201845243956171,39.942864474482455],[-75.201779180755281,39.942881215239176],[-75.201708869172123,39.942898247202564],[-75.201667792163434,39.942905200366454],[-75.201551804516541,39.942927058643249],[-75.201356752628428,39.942953436422798],[-75.201203955492929,39.942965396095929],[-75.201137649486427,39.942967942950496],[-75.201023379830545,39.942968364296533],[-75.200946603819716,39.942975605066913],[-75.20088153825067,39.942981780662599],[-75.200775926704011,39.942995102874839],[-75.200689105684162,39.942985690373241],[-75.200621813388665,39.94297652175036],[-75.200573390515231,39.942968883439519],[-75.200556063401763,39.942966274625938],[-75.200504116415431,39.942957875892951],[-75.200465451067387,39.94295018321862],[-75.200442350422236,39.942945586377029],[-75.200370232039873,39.94293123676357],[-75.200214236254752,39.942889706055254],[-75.200128950238437,39.942863910010935],[-75.200032491940533,39.94282945552947],[-75.199950885251042,39.942797542222934],[-75.19986124317704,39.942757788045355],[-75.199762118789693,39.942709916632992],[-75.199663451156169,39.942657707030278],[-75.199540291524613,39.94258393045066],[-75.199279266366247,39.942429855421267],[-75.199279133601337,39.942429774982195],[-75.199067470572629,39.942279347921549],[-75.198902800753046,39.942183128675012],[-75.198887892088266,39.942173882517899],[-75.198554949546192,39.941976680560607],[-75.198245144562492,39.941770939934997],[-75.198244956877886,39.941770825836635],[-75.197896801322003,39.941563893131004],[-75.197896616978213,39.94156378361135],[-75.197865836559927,39.941545392128539],[-75.198223992977489,39.940425594805795],[-75.198178614240348,39.940139462431652],[-75.198140496750298,39.940108375661623],[-75.197670237284242,39.941428516498483],[-75.197670120491253,39.941428447225015],[-75.197669870903383,39.94142829841082],[-75.197653852390204,39.941474510507433],[-75.197591478995264,39.941649227954528],[-75.197532135996639,39.941788381582654],[-75.197421771085359,39.942013357722132],[-75.197330109811716,39.942171393433469],[-75.1976442613758,39.942339547748325],[-75.198032170744824,39.942518279337158],[-75.198408102864676,39.942679733014785],[-75.198670727600003,39.942764831208997],[-75.199423365431031,39.943117847404459]]]},"properties":{"OBJECTID_1":52,"OBJECTID":1062,"ASSET_NAME":"Grays Ferry Crescent","SITE_NAME":"Grays Ferry Crescent","CHILD_OF":"Grays Ferry Crescent","ADDRESS":"3622-98 GRAYS FERRY AVE","TYPE":"Land","USE_":"Park- Linear\\Parkway","ACREAGE":22.127991000000002,"ZIPCODE":"19146","ALLIAS":" ","GLOBALID":"482e60e8-0623-4c5d-a5ee-60949edff2b5","Shape_Length":9319.5789566964977,"Shape_Area":963891.46292225388}},{"type":"Feature","id":53,"geometry":{"type":"Polygon","coordinates":[[[-75.12749365411959,39.99611659920798],[-75.127709468607847,39.996144275138455],[-75.127775181020809,39.995833143461127],[-75.12780373852074,39.995679252633209],[-75.127828919622914,39.995566134517638],[-75.1278858051312,39.995274048886493],[-75.127886278961896,39.995271577381885],[-75.127783383782074,39.995258764137034],[-75.127395148296984,39.995209224860083],[-75.127299717957953,39.995668930644179],[-75.127214845446574,39.996077795691164],[-75.127214071345279,39.996081549702204],[-75.127458871135133,39.996111983277103],[-75.12749365411959,39.99611659920798]]]},"properties":{"OBJECTID_1":53,"OBJECTID":1063,"ASSET_NAME":"Hope Park","SITE_NAME":"Hope Park","CHILD_OF":"Hope Park","ADDRESS":"201-19 E INDIANA AVE","TYPE":"Land","USE_":"Park- Neighborhood","ACREAGE":1.0367919999999999,"ZIPCODE":"19134","ALLIAS":" ","GLOBALID":"7783909f-7db9-4c86-b553-daa3e2bbca0b","Shape_Length":923.6903792497427,"Shape_Area":45162.471846516513}},{"type":"Feature","id":54,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.171066086234418,39.958632115907811],[-75.171033083738649,39.958631898425253],[-75.170999961465782,39.958634836297158],[-75.170973691845234,39.958639570757008],[-75.170966959231919,39.958640811475668],[-75.170935565443671,39.958649816875052],[-75.170882939517753,39.958664529518849],[-75.170865758404275,39.958668388854775],[-75.170829190155274,39.958676604841031],[-75.17080617352471,39.95868055733122],[-75.170774973800519,39.958685991823806],[-75.170719406082583,39.958692639048223],[-75.170719224312137,39.958692646674798],[-75.170663459969973,39.958696546762802],[-75.170617129940211,39.958699006475186],[-75.170616560924373,39.95869903693066],[-75.170616504635063,39.958699039269192],[-75.170569445485398,39.958699609359684],[-75.170569253630703,39.958699605046121],[-75.170522412480395,39.958698257253062],[-75.170508666782027,39.958698318512702],[-75.170508634888549,39.958698325904749],[-75.170495520562682,39.958701401738089],[-75.170487484939414,39.958705506290634],[-75.170484205496493,39.95870726161516],[-75.170481147009909,39.958709950853972],[-75.170475271552434,39.9587153825154],[-75.170472454066513,39.958720451346892],[-75.170470145594578,39.958725096432957],[-75.170461713577851,39.9587591922622],[-75.170457205304203,39.958775796613025],[-75.170402641017205,39.959025560063083],[-75.170400594523329,39.959036719069069],[-75.170399363175221,39.959044880706614],[-75.170401755820762,39.959051063208065],[-75.170402396379757,39.959052571493572],[-75.170409299910261,39.959058733784161],[-75.170415104081016,39.959061132143731],[-75.170418272025032,39.959062375594314],[-75.170428693596349,39.95906293518577],[-75.170428769431638,39.95906294229696],[-75.170540723787767,39.959077252871673],[-75.170604830232861,39.959085116630646],[-75.170700492892294,39.959096819936214],[-75.170857661970658,39.95911653195494],[-75.170994425186862,39.959133168495455],[-75.17111249614598,39.959148778314706],[-75.171166014191883,39.959155174760504],[-75.171220131357856,39.959161611678425],[-75.171354288305054,39.959177881056263],[-75.171424471328478,39.959186370183865],[-75.171489063683211,39.959194146154914],[-75.171598161325747,39.95920753732085],[-75.171642972452062,39.959213022454165],[-75.171667622050137,39.959216487602887],[-75.171738543780876,39.959226400522695],[-75.171741792910424,39.959226832144473],[-75.171811121750039,39.959235000898424],[-75.171826347076788,39.959233192326515],[-75.171840204351568,39.959228033672183],[-75.171851205129386,39.959219964520166],[-75.17185481769738,39.95921557036344],[-75.171859235408192,39.95920970582393],[-75.171859517358769,39.959208631843651],[-75.17186185142252,39.959199700279846],[-75.171862854751538,39.959195197932125],[-75.171863620935696,39.959192933781296],[-75.171867221349856,39.959179171503983],[-75.171874242018831,39.959148495657118],[-75.171880288475847,39.959117697904944],[-75.171880774645899,39.959111118810505],[-75.171877512490454,39.959098225870221],[-75.171878240676662,39.959098320622218],[-75.171876405554372,39.959093857204643],[-75.171867525269533,39.9590852016265],[-75.171866168373768,39.959084272822906],[-75.171853894708974,39.959075222929393],[-75.171834484371516,39.95906136882865],[-75.171830704724684,39.959058533995083],[-75.171798049310866,39.95903404670225],[-75.171782848403097,39.959022840664176],[-75.171716862048612,39.958974885223157],[-75.171679565113521,39.958946797647684],[-75.171679533245964,39.958946773505147],[-75.171672928578971,39.958941773110496],[-75.171656813665777,39.958929723887422],[-75.171647241694217,39.958922419585221],[-75.171631300859872,39.958910257138712],[-75.171599777749762,39.958886388101263],[-75.171560788063402,39.958857462340426],[-75.171528417280513,39.958833594053317],[-75.171500245846815,39.958812854755294],[-75.171455700425668,39.958780292835954],[-75.171427463017281,39.958759843063923],[-75.171412096614787,39.958748835982618],[-75.17136929218961,39.958720627216515],[-75.171323017080624,39.958695882311851],[-75.171273738493554,39.958674846930975],[-75.17124934197922,39.958666323679253],[-75.171231854438844,39.958660303764383],[-75.171215331913956,39.958655850778371],[-75.171189050485509,39.958648866425392],[-75.171164460927031,39.958644257328615],[-75.171144279035971,39.958640526681954],[-75.171099859414852,39.958635503355431],[-75.171099555076282,39.95863547038477],[-75.17109240284185,39.958634749179282],[-75.171066086234418,39.958632115907811]],[[-75.170528734137292,39.958784783285822],[-75.170975170257449,39.958840127519444],[-75.17097106938742,39.958858216908212],[-75.17095071015676,39.958947955311025],[-75.17094302135834,39.958981848030604],[-75.170920974718953,39.959079023314594],[-75.170918329717765,39.95909068335272],[-75.170474929216113,39.959035029662445],[-75.170528734137292,39.958784783285822]],[[-75.171408780388873,39.95889309677495],[-75.171442426979411,39.958916852311589],[-75.171603164010804,39.959030336402442],[-75.171629112588107,39.959048656948454],[-75.171625152860358,39.959066672041658],[-75.171603946627457,39.95916316983849],[-75.171600974443521,39.959176697547818],[-75.171344083768687,39.95914346900215],[-75.171346672970415,39.959131981597494],[-75.171372125814329,39.959034939568177],[-75.171380807784217,39.959001342154778],[-75.171404111664827,39.958911158096221],[-75.171408780388873,39.95889309677495]]],[[[-75.169696212492823,39.95826361725004],[-75.16969060262916,39.958264028082162],[-75.169688224544089,39.958264216068002],[-75.169681875319171,39.958267662909719],[-75.169658901163203,39.95828529623607],[-75.169650486380576,39.958291861884646],[-75.169636211339451,39.958303242298364],[-75.169614102398512,39.958321492449528],[-75.169583499711891,39.958344687340308],[-75.169577973190869,39.958348914939755],[-75.169542129883283,39.958376515943819],[-75.169506282792639,39.958404246598384],[-75.169486318415977,39.958417635332054],[-75.169471644857495,39.958427576851548],[-75.169446588493287,39.958442013353363],[-75.169435000873065,39.958448728367912],[-75.1694253232112,39.958453400492907],[-75.169396142306724,39.958467581124843],[-75.169355542329143,39.958484007908332],[-75.169329228333609,39.95849268293636],[-75.169313581325568,39.958497919963364],[-75.169270327436934,39.958509218808466],[-75.16923961558912,39.95851537025527],[-75.169216685174717,39.958520041575106],[-75.169168084361431,39.958526523108915],[-75.169162579214401,39.958527258834927],[-75.169162429892069,39.958527275298124],[-75.169107563060876,39.958530850631405],[-75.169078303754176,39.95853078797338],[-75.169052709173471,39.958530756394538],[-75.169052498115946,39.95853073362607],[-75.168997538849098,39.958526941027309],[-75.168943455018322,39.958519459518314],[-75.168943400138374,39.958519455580571],[-75.16894295745216,39.958519427600855],[-75.168939425321582,39.958519203973488],[-75.168937118166582,39.958519065570215],[-75.16893539249854,39.958518969081524],[-75.168931237950602,39.95851876388744],[-75.168924417258978,39.958519979979876],[-75.16891835443279,39.958521125723834],[-75.16890655212481,39.958526524879197],[-75.168897328879069,39.958534428314017],[-75.168891611815212,39.958544039666592],[-75.168884987815034,39.958574872952148],[-75.168884074608243,39.958579340364075],[-75.168829078606493,39.958827621221786],[-75.168826985581205,39.95883605358712],[-75.16882643422349,39.958839902934116],[-75.168826136589274,39.958844531961759],[-75.168829221396948,39.958852708701777],[-75.168831826489381,39.958855545142995],[-75.168835901888215,39.958859683293504],[-75.168844592703906,39.958864624471623],[-75.168844637814942,39.958864639001803],[-75.168855189827568,39.958867064971592],[-75.168855249182002,39.958867074416119],[-75.169007128673996,39.958885119338888],[-75.169109206795824,39.958898679340166],[-75.169170606570489,39.958906803779698],[-75.169262589245264,39.958918125473573],[-75.169336531339738,39.958927201413957],[-75.169462625161017,39.958942911422078],[-75.169562739050718,39.958956032189739],[-75.169632617751063,39.958965155299254],[-75.169688853612683,39.958971846030124],[-75.169760089647085,39.958980283282187],[-75.169871995751492,39.958993699623392],[-75.170058478431898,39.959016817383052],[-75.170120236082454,39.959024772758397],[-75.17020512912525,39.959035673869565],[-75.17024584076313,39.959041070073226],[-75.170276879354176,39.959045157626448],[-75.170283585297724,39.959045484113403],[-75.170286675480142,39.959045630184974],[-75.170296598219238,39.959042768230447],[-75.170303952642939,39.959037055378516],[-75.170304738811396,39.959035530518541],[-75.170307523106104,39.959029578850718],[-75.170311465906096,39.959013622233591],[-75.170366789545497,39.958764436324984],[-75.170374816336562,39.958728032000096],[-75.170376484964393,39.958719608989568],[-75.170376747337869,39.958708011619279],[-75.170372994019232,39.958696776264972],[-75.17036808413836,39.958690191172224],[-75.170365433715872,39.958686696908067],[-75.170364152250329,39.958685694096872],[-75.170354786178137,39.958678552891243],[-75.170341644887216,39.958672872037887],[-75.170291208070097,39.95866289086603],[-75.170241897344596,39.958650018408008],[-75.170193969892281,39.958634327123377],[-75.170120408690465,39.958604927992255],[-75.170090412657814,39.958590873382548],[-75.170049505734241,39.958571757475497],[-75.170030290614022,39.95856125471871],[-75.169981896149537,39.95853495600317],[-75.169929078294373,39.958499191736983],[-75.169879368574996,39.958460881699224],[-75.169832968207416,39.958420184492802],[-75.169790076894145,39.958377267696861],[-75.169788070455482,39.958374698828024],[-75.169762029712828,39.958341899166221],[-75.16973482982155,39.958306356867155],[-75.169708531893917,39.95827065013907],[-75.169703355211894,39.958265913304139],[-75.169699809448304,39.95826475413962],[-75.169696212492823,39.95826361725004]],[[-75.168993007779548,39.958590705758887],[-75.169421635440713,39.958646943001469],[-75.169417095321634,39.95866727680356],[-75.169397404357198,39.958755459538253],[-75.169390055512963,39.958788365997975],[-75.169368227194724,39.958886117187106],[-75.169365546679202,39.958898119683269],[-75.168937345760085,39.958844046194422],[-75.168993007779548,39.958590705758887]],[[-75.169848421865723,39.958698220379041],[-75.17029578864485,39.958755515482196],[-75.170238264349678,39.959004032880586],[-75.169793745868688,39.958950189464566],[-75.169796304458799,39.958938404966666],[-75.169817720886925,39.958839706489606],[-75.169824559920229,39.958808195026023],[-75.16984394858487,39.958718832309998],[-75.169848421865723,39.958698220379041]]],[[[-75.171283088886923,39.958274228130705],[-75.17127054977027,39.958275540178292],[-75.171269238184578,39.958276071128267],[-75.17125876677656,39.958280375068384],[-75.171228017708344,39.958314783825806],[-75.171210190681975,39.958332270054058],[-75.171194657304781,39.958347504843232],[-75.171164924137727,39.958372452340242],[-75.171157797494672,39.958378429856538],[-75.171118337060207,39.95840732317771],[-75.171093997090637,39.958423192529921],[-75.171093891479146,39.958423260435083],[-75.171077169061036,39.958434161630684],[-75.171071457602594,39.958443602919004],[-75.171070754083587,39.958449274309181],[-75.171070172382485,39.958453957321609],[-75.171074255123671,39.958463919714198],[-75.171081472375022,39.958470731439988],[-75.171081540139269,39.958470796935309],[-75.171082868195668,39.958472053069748],[-75.171094267954814,39.958477284728239],[-75.171143921722731,39.958485438708415],[-75.171187530063591,39.958494497448939],[-75.171187563749811,39.958494504513226],[-75.17119345078973,39.958495736981739],[-75.171193489087045,39.958495745951694],[-75.171242093098343,39.958508113764154],[-75.17127308808837,39.958518218849754],[-75.171273303218967,39.958518288558423],[-75.171294968521266,39.958525351140551],[-75.171315954948611,39.958533210273572],[-75.171315994210701,39.958533224671271],[-75.171347749092888,39.958545119112074],[-75.171397763938472,39.958567268446998],[-75.171445786485805,39.958594866466633],[-75.171451887938261,39.958598717583961],[-75.171452105151957,39.958598855816156],[-75.17149196602675,39.958624010630565],[-75.171522382707835,39.958644604874671],[-75.171522586985205,39.958644744618049],[-75.171537197195946,39.95865463635257],[-75.171558218395816,39.958670157547893],[-75.17159707984797,39.958698849770485],[-75.171723352459281,39.958790991666937],[-75.171746399261792,39.958807809857092],[-75.171895700382336,39.958917326154165],[-75.171898312313957,39.958917764176071],[-75.171901019660851,39.958918217857359],[-75.171901157003219,39.958918177694997],[-75.171904349555859,39.958917230389936],[-75.171907336094819,39.958916343328404],[-75.17190938419445,39.95891349709639],[-75.171910161672798,39.958912416231065],[-75.171910242908453,39.958910275444246],[-75.171910340644018,39.958907699838242],[-75.171906918111659,39.958903846776558],[-75.171846971202456,39.958861347616626],[-75.171787761598125,39.958817285514655],[-75.17173156739014,39.958775465294217],[-75.171656107095487,39.958718586793111],[-75.171604875062158,39.958681518251559],[-75.171586096300913,39.958667316091493],[-75.171548501222063,39.958638883887126],[-75.171527603419051,39.958621438192921],[-75.171504397365908,39.958602062901626],[-75.171464836934661,39.95856306895309],[-75.171451968045758,39.958548358075689],[-75.17142892361791,39.958522010745817],[-75.171396647606102,39.958479146654049],[-75.171372960805556,39.958441745642787],[-75.171371384797098,39.958439279282139],[-75.171370172583494,39.958436852633859],[-75.171370118123278,39.958436745090076],[-75.171350649508483,39.958398212602972],[-75.171335005318838,39.958361673521267],[-75.171332618828956,39.958356098462779],[-75.171328506205114,39.958343066552622],[-75.171328471905667,39.958342952253822],[-75.171319080599119,39.958313184281714],[-75.171318028297222,39.958306143527174],[-75.171317657391228,39.958303669113263],[-75.171317178304392,39.958301823879033],[-75.171315321615651,39.958294691160987],[-75.171311191593617,39.958285973818008],[-75.171306872857187,39.958282228536902],[-75.171296382538728,39.958276542506205],[-75.171289368764107,39.95827532075721],[-75.171283151716537,39.958274238553088],[-75.171283088886923,39.958274228130705]]],[[[-75.170600199661152,39.957437700610107],[-75.170547526020115,39.957438951747122],[-75.170508859251882,39.957442229725444],[-75.170494889350422,39.957443423017438],[-75.170494718214272,39.957443428179658],[-75.17044268085219,39.957451141237762],[-75.170411845516242,39.957457692962343],[-75.170411752279762,39.957457712490239],[-75.170395010291273,39.957461268971272],[-75.170348128107705,39.95747416070602],[-75.170308691219461,39.957487482934681],[-75.170308563100889,39.957487526906547],[-75.170302034341731,39.957489722738558],[-75.170257628132077,39.957507956367195],[-75.170215801314868,39.957528685227288],[-75.170175667725729,39.957551812808099],[-75.170138126434793,39.957577188136447],[-75.170103178451512,39.957604722938243],[-75.17006989275437,39.957635471189683],[-75.170040116984666,39.957668228339088],[-75.170037594417167,39.957671512574194],[-75.170013807478369,39.957702695171257],[-75.169991030429642,39.957738701083173],[-75.16997176968593,39.957776024063961],[-75.169956928601408,39.957814400611149],[-75.169949432791583,39.957840365077089],[-75.169945629605436,39.957853538883931],[-75.169944229724607,39.957862222019195],[-75.169938623687344,39.957897064337558],[-75.16993672941382,39.957921109472927],[-75.169935174069522,39.957940885112137],[-75.169936714958425,39.957965085889974],[-75.169937968824129,39.957984758919395],[-75.169940751772202,39.958003785169204],[-75.169944343800339,39.958028329410233],[-75.169956097805965,39.958071246897816],[-75.169967339306154,39.958098832899587],[-75.169973236544934,39.958113299770048],[-75.16998761835184,39.958140697800047],[-75.169987643446134,39.958140746118161],[-75.169993204312519,39.958151337365308],[-75.169998807514176,39.958159734691648],[-75.169998855150595,39.958159806042097],[-75.170017682120175,39.958188019439234],[-75.170030050966162,39.958203956334593],[-75.170030111265746,39.958204033375893],[-75.170044900059509,39.958223089042065],[-75.170072481740988,39.958252002974042],[-75.170072549264802,39.958252074771679],[-75.17007664672829,39.958256372853164],[-75.170084497738429,39.95826348091407],[-75.170111149874842,39.958287613870347],[-75.170127702940491,39.958300200266962],[-75.170149301828914,39.958316623121725],[-75.17019022449027,39.95834324570567],[-75.1702250366626,39.958362804768491],[-75.170225192581796,39.958362892068969],[-75.170233026914303,39.958367294897187],[-75.170278611827413,39.958388616196181],[-75.170295515877243,39.958394766400808],[-75.170295577092617,39.958394788500648],[-75.170328773116083,39.95840686610385],[-75.170379940479549,39.958422055337763],[-75.170433019595961,39.95843401324553],[-75.170469988761823,39.958440091091525],[-75.170486219481148,39.958442759923749],[-75.170523136913857,39.958446407453152],[-75.170540998642068,39.958448181299708],[-75.17054132822976,39.958448196819226],[-75.170595672396544,39.95845024219711],[-75.170650956379745,39.958448997449565],[-75.170651035066726,39.958448991109528],[-75.17070564130141,39.958444380223888],[-75.170758610615948,39.958435453592124],[-75.170810822878693,39.958423244639057],[-75.170810920966616,39.958423220714778],[-75.170861374505122,39.958407683496581],[-75.170910224607866,39.958389014323899],[-75.170910259216726,39.958388997081634],[-75.170956586347117,39.958367299625237],[-75.170971181856771,39.958359253703499],[-75.170971229675601,39.958359227747991],[-75.171001237455229,39.95834268573212],[-75.171042422165513,39.958315375550875],[-75.171065583475908,39.958297028053785],[-75.171065637793092,39.958296985125074],[-75.171080136692268,39.958285499647289],[-75.171105266484929,39.95826248588763],[-75.171105367169559,39.958262393544359],[-75.171115260408143,39.958253333680219],[-75.171146896540122,39.958219029587639],[-75.171174141159966,39.958182866190427],[-75.171180667257246,39.958172474618713],[-75.171195981363056,39.958148086000534],[-75.17121206537108,39.958117911250994],[-75.171215194119767,39.958112042991502],[-75.171219292219789,39.958101766232005],[-75.171229984389214,39.958074957209192],[-75.171241233853806,39.958037105262569],[-75.171244182595558,39.958022406616777],[-75.171248937896053,39.957998701490283],[-75.171252193501076,39.957959939135577],[-75.1712518817437,39.957921141645244],[-75.17124710482824,39.957882457328424],[-75.17123874436713,39.957844164592316],[-75.171233539622861,39.957828906049066],[-75.171225899182716,39.957806500869516],[-75.171217554219396,39.957786771183777],[-75.171210342835096,39.957769719565249],[-75.171190287850578,39.957733995841444],[-75.171166698609326,39.957697334902498],[-75.171144059432947,39.957669112593692],[-75.171138586082492,39.957662288713003],[-75.171132717364969,39.957655979434101],[-75.171107727333592,39.957629110756756],[-75.171089489460186,39.957613069079635],[-75.171072330176443,39.957597976987721],[-75.171053214038551,39.957583173378055],[-75.171053166238536,39.957583137163965],[-75.171035062344984,39.957569118564486],[-75.170994132419281,39.95754275290421],[-75.170963808811948,39.957526293551794],[-75.170963676913289,39.957526221208539],[-75.170950422274316,39.957519027772044],[-75.170935080272528,39.95751198292885],[-75.170904825481102,39.957498091197309],[-75.170888718699729,39.957492101362291],[-75.170888679438278,39.95749208696445],[-75.170856439354068,39.957480096780046],[-75.170831475748003,39.95747249142768],[-75.170807931178828,39.957465318022813],[-75.170779243767868,39.957458746199279],[-75.17077911146734,39.957458715293463],[-75.170756631651045,39.957453565167512],[-75.170705208387645,39.957445072081626],[-75.17065293541755,39.957439747658825],[-75.17065277177889,39.957439740375662],[-75.170600199661152,39.957437700610107]]],[[[-75.171546780207478,39.957387080095039],[-75.171532682363875,39.957390534886798],[-75.171524446133972,39.957394532282777],[-75.17151372401888,39.957399214440308],[-75.171496474212532,39.957409150563279],[-75.171461973449055,39.957429021874951],[-75.171429142159752,39.957448864926377],[-75.171401242443139,39.957466052699161],[-75.17135609640782,39.957493175745682],[-75.171337017355469,39.957506823455695],[-75.171326639620318,39.957514246114478],[-75.171321038456739,39.957522696973868],[-75.171314732188321,39.957535658681699],[-75.171312470049145,39.957544052143994],[-75.171314621452311,39.957560725122988],[-75.171321040742541,39.957580538560897],[-75.171329091657327,39.957599038952893],[-75.171337885590901,39.957614312392437],[-75.171345825221138,39.957628958444154],[-75.171355397645968,39.957642291475565],[-75.171363299439406,39.957655651828603],[-75.171386191849464,39.957696392174],[-75.171410938537804,39.95774352724581],[-75.171428895917074,39.957786921873165],[-75.171441992748413,39.957835542158264],[-75.171451455705025,39.957873941649083],[-75.17146054750927,39.957928414105233],[-75.171468935434262,39.957987396536254],[-75.171481478179217,39.958074588508836],[-75.171490643455982,39.958131630504063],[-75.171497212667859,39.958185503847886],[-75.171507875605258,39.95822711719071],[-75.171511023805763,39.958239400299263],[-75.171509594715147,39.958261537643281],[-75.17150959586715,39.958261599839169],[-75.171508856687055,39.958272993674242],[-75.171510626361041,39.958291643904239],[-75.171512042958071,39.958306578523725],[-75.171519709043451,39.958339664883525],[-75.171521928447973,39.958346064214936],[-75.171521955028979,39.958346135091482],[-75.171531770961167,39.958374434924529],[-75.171548337835048,39.958408106061668],[-75.171569417572826,39.95844037753173],[-75.171579465467673,39.958452354387688],[-75.171595024400588,39.958470905464303],[-75.17162338528729,39.958499391417377],[-75.171638281166551,39.958512368326275],[-75.171638410360572,39.958512481153598],[-75.171676066557609,39.958545287326331],[-75.171727438147485,39.958586544186304],[-75.171731429194963,39.958589762201008],[-75.171731471386011,39.95858979198163],[-75.171788726984843,39.958632826298313],[-75.171817421514106,39.958652523994694],[-75.171827391467062,39.958657732457056],[-75.171848915634001,39.958668979675821],[-75.171878272221207,39.95867983976725],[-75.171884110031002,39.958682000039261],[-75.171889994041294,39.958683498202518],[-75.171920339469281,39.958691225151547],[-75.171927902664379,39.958692533090307],[-75.171937180511591,39.958694135447516],[-75.17195316739263,39.958696136344535],[-75.171969678498186,39.958697250707971],[-75.171970072053227,39.958697277571908],[-75.171980779897154,39.958695506224949],[-75.171980845613547,39.958695502295591],[-75.171982338529105,39.958694728534219],[-75.171989946938098,39.958690771956583],[-75.171996461818551,39.958683666988847],[-75.17199945821605,39.958675237755045],[-75.172005969299221,39.958647034548086],[-75.172012270227967,39.95861974114807],[-75.172012692281157,39.958616795304742],[-75.172013485382536,39.958611229540175],[-75.172032893642807,39.958522969801834],[-75.172057691187533,39.958410241577617],[-75.17206739972157,39.958366796576009],[-75.172079184781978,39.958314046605821],[-75.172094550590558,39.958238267878201],[-75.1721001557313,39.958211813902878],[-75.172115199869424,39.958140808727677],[-75.172126968950877,39.958089280170448],[-75.172144215106428,39.958010968590663],[-75.172158735823302,39.957946782240178],[-75.172163510818152,39.957925666139872],[-75.172170815448567,39.957891480001294],[-75.172186293596937,39.95781903033442],[-75.172208037362466,39.95771623202625],[-75.172228470347306,39.957625699504817],[-75.172232065013688,39.95760977015032],[-75.172237027476839,39.957587785177168],[-75.172240949935912,39.957554297912779],[-75.172243869058008,39.957528955799276],[-75.172244393281517,39.957512022201072],[-75.172240720224949,39.957500516610018],[-75.172235451089492,39.957491609722062],[-75.172229105405506,39.957485649288778],[-75.172221658727835,39.957480718303195],[-75.172217912326829,39.957477410294111],[-75.172212719952938,39.957474688791393],[-75.172208047178046,39.957472189800988],[-75.17220312192633,39.957469556292267],[-75.172182651096648,39.957466906853583],[-75.172098342124087,39.957455993261853],[-75.172022465041948,39.957446170097192],[-75.172022003635874,39.957446111074063],[-75.171955258358267,39.957437600413613],[-75.171906432090083,39.957431631403857],[-75.171860470429891,39.957426012369957],[-75.171813635203677,39.957419903356254],[-75.171769402066317,39.957414027597963],[-75.171678405581773,39.957401938949737],[-75.171638400061539,39.957396624878328],[-75.171573720254102,39.957389501124005],[-75.171546780207478,39.957387080095039]]],[[[-75.170844695914809,39.957272961578632],[-75.171041473385102,39.95733279677512],[-75.171142340527211,39.957385734567865],[-75.171240508116668,39.957443725746906],[-75.171267473906909,39.957451484136001],[-75.171289813327206,39.957450555463474],[-75.171312333532512,39.957444863581699],[-75.171333087631723,39.957436747913704],[-75.171473329083923,39.957349310257449],[-75.171144467657612,39.957309860182171],[-75.171126182795973,39.957307643523407],[-75.171032332060335,39.957296265068727],[-75.171001560322097,39.95729244679795],[-75.17097314363879,39.957288922933422],[-75.170844695914809,39.957272961578632]]],[[[-75.169608705700938,39.957210843773673],[-75.169602402156897,39.957212412118785],[-75.169598680224084,39.95721644784485],[-75.169598100337325,39.95721916938281],[-75.169597595094359,39.957221528589564],[-75.169600997853863,39.957225896661008],[-75.169625673277537,39.957242810499032],[-75.169625758825887,39.957242870088166],[-75.169640996093861,39.957253314988378],[-75.169679186267985,39.957281544093881],[-75.169695393625702,39.957294222797579],[-75.169716436295303,39.957310667472065],[-75.16971970669853,39.957313434162067],[-75.169741504976514,39.957331871752508],[-75.169753088895135,39.957344239227545],[-75.16975311253826,39.957344264086707],[-75.169762940147947,39.957354753087564],[-75.169777693101977,39.957373080869168],[-75.169782535497021,39.957379095932438],[-75.169788858464997,39.957389224992056],[-75.169798514810694,39.957404686444093],[-75.169807451796714,39.957419883036295],[-75.169820304127029,39.957441736085485],[-75.169825645814967,39.957455044379991],[-75.16983579010126,39.957480318044531],[-75.169846779137657,39.957520035957963],[-75.169851040803096,39.957548588562553],[-75.169853520385189,39.957577266874523],[-75.169854462538481,39.957594418162195],[-75.169855103706752,39.957606052973532],[-75.169857058473326,39.957610290260448],[-75.169859225329773,39.957614985527862],[-75.169867874045863,39.957622173716352],[-75.16987755719245,39.957625955003962],[-75.169879252736109,39.957626628352095],[-75.169879302799345,39.957626635785097],[-75.169891749190128,39.957627824826005],[-75.169894580277031,39.957627330768048],[-75.169894628616021,39.957627321944052],[-75.169904320828607,39.95762565409413],[-75.169909826561238,39.957622711761644],[-75.16991433797223,39.957620301191312],[-75.1699224287498,39.957612491145383],[-75.169934712550756,39.957600634332266],[-75.169953325463524,39.957580370123075],[-75.169958867312218,39.957573886710428],[-75.169958899197681,39.957573848683857],[-75.169971064905624,39.957559613234679],[-75.170007100868261,39.957526953638826],[-75.170022516588048,39.957515096970774],[-75.170046618250922,39.957496559988648],[-75.170088721893833,39.957468541896219],[-75.170116115294775,39.957451993581955],[-75.170144367545049,39.957436322341124],[-75.170173475800311,39.957421572258937],[-75.170183550347502,39.95741467538393],[-75.170190144607517,39.957405512581765],[-75.170191250939624,39.957396603896605],[-75.170191430010249,39.957395156388266],[-75.170188245328504,39.957385043862715],[-75.170180543391083,39.957376417344669],[-75.170177063073652,39.957374429830963],[-75.170170064689842,39.957370431428892],[-75.17013018545552,39.957363089681643],[-75.170090340098369,39.957355380167066],[-75.170051388556047,39.957347380789813],[-75.169957647711286,39.957325618825237],[-75.169890132824534,39.957307322643864],[-75.169889649590004,39.957307191039966],[-75.169864923400766,39.957300490926976],[-75.169774118116223,39.957272002978776],[-75.16976590075987,39.957269180891693],[-75.169765799080636,39.957269145267269],[-75.169720392840304,39.957253470819772],[-75.16969923809404,39.957245619309091],[-75.169666727162891,39.957233555115181],[-75.16961496243762,39.957212234210196],[-75.1696148997802,39.957212219285644],[-75.169608705700938,39.957210843773673]]],[[[-75.169241527400558,39.957130056360597],[-75.169234004645503,39.957131665735822],[-75.169223538100439,39.957133900867632],[-75.169210768090664,39.95714129565247],[-75.169200591805264,39.957150807604194],[-75.169193920836577,39.957161986900545],[-75.169187343843944,39.957192576179814],[-75.169183086275339,39.957212376620845],[-75.169177631956856,39.957237082297233],[-75.169164767990623,39.957295340880833],[-75.16915713569712,39.957331857624617],[-75.169137239093203,39.957423266731098],[-75.169033925367657,39.957897913878774],[-75.169022523433327,39.957947206001634],[-75.169013643181927,39.957985594904407],[-75.168988814682749,39.958099008459293],[-75.168971786914327,39.958178748164379],[-75.168950831281578,39.958276878423106],[-75.168922566524785,39.958410253240743],[-75.168920968859936,39.958415293617001],[-75.168920540528333,39.958416644513527],[-75.16891851339588,39.958423034859763],[-75.168917896718057,39.958426477280568],[-75.168917379760757,39.958429359711353],[-75.16891622068546,39.958431269015435],[-75.168915477535833,39.958432492994241],[-75.168916617314864,39.958434666657489],[-75.168917140287149,39.958435663233061],[-75.168920637088448,39.958437587183326],[-75.168932028956888,39.95844021765172],[-75.168944516503217,39.958443100726029],[-75.16894576893894,39.958443356859874],[-75.168958694190138,39.958445998396755],[-75.168969305158939,39.95844816529037],[-75.168994110637556,39.958452756293681],[-75.169041171306674,39.958458707534596],[-75.169089259198174,39.958461073298686],[-75.169136592020763,39.958459829708666],[-75.169156147625202,39.958457851305788],[-75.169156345081845,39.95845783142029],[-75.169184955272328,39.958454946652253],[-75.169216489131131,39.958448576744985],[-75.169233505537932,39.958445140130195],[-75.169281294691459,39.958431882697802],[-75.169305450986641,39.958423388002437],[-75.169328316194793,39.958415346303063],[-75.169371895796132,39.958395655500489],[-75.169415671840312,39.958370453085728],[-75.169443519971097,39.958351132814137],[-75.169443631775223,39.958351056039625],[-75.169455990167108,39.958342481547163],[-75.169462213791732,39.958337440699573],[-75.169493730359918,39.958311918350645],[-75.169507297529066,39.958298028923046],[-75.169521578495292,39.958283410409635],[-75.169546822992018,39.958252951768216],[-75.169558804486272,39.958235248712647],[-75.169568563115646,39.958220829414536],[-75.169585895000864,39.958187320355528],[-75.169598808976943,39.958152679362854],[-75.16960100582989,39.958144253826347],[-75.169608207679474,39.958116631207091],[-75.169614055314995,39.958080118446695],[-75.169616343888478,39.958043351739846],[-75.169617029218472,39.958025307206938],[-75.16961738603851,39.958015912238551],[-75.169615753948818,39.957988412588243],[-75.16961444357581,39.957977936745792],[-75.169612332504684,39.957961044785506],[-75.169612541559772,39.957951409526643],[-75.169613517289392,39.957906359091488],[-75.169619157452644,39.957851817757827],[-75.169630133042773,39.95779773971514],[-75.169631149286801,39.957794195453552],[-75.169643502788063,39.957751095735674],[-75.169651410776467,39.95773080524004],[-75.169657442537897,39.957716540881229],[-75.169662193310302,39.95770530034978],[-75.169684410328458,39.957660615038968],[-75.169689698797612,39.957647085407615],[-75.169695280707174,39.95763279651301],[-75.169702614780164,39.957604125378836],[-75.16970434126921,39.957590850810632],[-75.169706396243015,39.957575031054567],[-75.169704827652666,39.957545858747878],[-75.169699998805044,39.957520373049398],[-75.169698881794815,39.95751448592182],[-75.169688449609808,39.957483784360903],[-75.169677947094854,39.957461624642391],[-75.169674407841811,39.957454160318697],[-75.16965744761292,39.95743090748504],[-75.169637765962236,39.957408837740267],[-75.16961534713181,39.957388088583855],[-75.169512990550118,39.957311540857901],[-75.169459224216482,39.957270724645355],[-75.169378563554986,39.957209951434102],[-75.169338297877673,39.957180083443049],[-75.169338133971578,39.957179959921007],[-75.169311748336852,39.957160388296629],[-75.169276127514877,39.957135170390117],[-75.169264561473895,39.957131921540757],[-75.169259355363963,39.95713045921147],[-75.169241527400558,39.957130056360597]]],[[[-75.169432391859601,39.956808205725821],[-75.169403535066152,39.956825677835319],[-75.169390098144731,39.956867370999767],[-75.169395728097442,39.956891766486905],[-75.169409838944333,39.956913184775182],[-75.169442276722933,39.956933334913529],[-75.169530482973002,39.956976044867183],[-75.169644641570116,39.957026771850948],[-75.169736377889762,39.957064708171742],[-75.169861746861685,39.957121830188377],[-75.170010022681339,39.957169312774759],[-75.17017958589949,39.957228282465294],[-75.17031303508854,39.957249456778548],[-75.170473700805402,39.957278629415654],[-75.17062087458541,39.957287312143059],[-75.170667201665623,39.957280833858199],[-75.170689798130439,39.957258761561569],[-75.170714739409377,39.95715185466873],[-75.170532794783028,39.957126832438384],[-75.170026458155746,39.95706236699305],[-75.169712993659758,39.957019900938683],[-75.169636511635943,39.956960023794075],[-75.169432391859601,39.956808205725821]]]]},"properties":{"OBJECTID_1":54,"OBJECTID":1064,"ASSET_NAME":"Logan Square","SITE_NAME":"Logan Square","CHILD_OF":"Benjamin Franklin Parkway","ADDRESS":"200 N 18TH ST","TYPE":"Land","USE_":"Park- Linear\\Parkway","ACREAGE":8.4524139999999992,"ZIPCODE":"19103","ALLIAS":" ","GLOBALID":"ed47905b-1ee9-443d-840a-9c697503fa32","Shape_Length":9808.7833436977744,"Shape_Area":381310.71177167038}},{"type":"Feature","id":55,"geometry":{"type":"Polygon","coordinates":[[[-75.146755741916593,39.931769986355029],[-75.146773847936444,39.931680909615125],[-75.146735502219016,39.931674988928606],[-75.146724961193613,39.931676163347163],[-75.146671710738801,39.931668894247565],[-75.146652857389654,39.931756944863928],[-75.146755741916593,39.931769986355029]]]},"properties":{"OBJECTID_1":55,"OBJECTID":1065,"ASSET_NAME":"Titan Park","SITE_NAME":"Titan Park","CHILD_OF":"Titan Park","ADDRESS":"108-10 Titan Street","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.021840999999999999,"ZIPCODE":"19147","ALLIAS":" ","GLOBALID":"a41fa475-f68b-4ebd-9ee5-7d8d19e29e68","Shape_Length":123.71509629630634,"Shape_Area":951.38151898968158}},{"type":"Feature","id":56,"geometry":{"type":"Polygon","coordinates":[[[-75.208965385699884,39.99294241395549],[-75.209866185914379,39.993302781114117],[-75.211099517160221,39.993151156374125],[-75.210572360916018,39.992302088452227],[-75.209667157466157,39.991886961740853],[-75.208965385699884,39.99294241395549]]]},"properties":{"OBJECTID_1":56,"OBJECTID":1067,"ASSET_NAME":"Ridgeland Mansion","SITE_NAME":"West Fairmount Park","CHILD_OF":"West Fairmount Park","ADDRESS":"1400 Chamounix","TYPE":"Land","USE_":"Multi-Use Area","ACREAGE":4.135402,"ZIPCODE":"19131","ALLIAS":" ","GLOBALID":"8263d62a-c657-4e26-b99f-c71605ab5f4b","Shape_Length":1704.3395588965332,"Shape_Area":180137.34795182955}},{"type":"Feature","id":57,"geometry":{"type":"Polygon","coordinates":[[[-75.213064985053478,40.058610316405691],[-75.212627130458927,40.058626059400027],[-75.212382320426826,40.058982062324809],[-75.212357865009722,40.059046462595596],[-75.212340435303233,40.059119489226639],[-75.212306969564239,40.059130044105551],[-75.211798968003592,40.059449174215857],[-75.211070483330744,40.059670254385239],[-75.210316560951725,40.060079942521398],[-75.210621249001804,40.060284323678061],[-75.210960477257984,40.059958645343492],[-75.211157496670339,40.059898058517632],[-75.211963507688665,40.059667396273696],[-75.212568468264706,40.059212054761979],[-75.213064985053478,40.058610316405691]]]},"properties":{"OBJECTID_1":57,"OBJECTID":1068,"ASSET_NAME":"Dodge Tract","SITE_NAME":"Dodge Tract","CHILD_OF":"Wissahickon Valley Park","ADDRESS":"7920 CHEROKEE ST","TYPE":"Land","USE_":"Multi-Use Area","ACREAGE":0,"ZIPCODE":" ","ALLIAS":" ","GLOBALID":"5efacf33-0460-426b-a9dc-0e1d5d84c30e","Shape_Length":2054.2885698268215,"Shape_Area":78605.838923156029}},{"type":"Feature","id":58,"geometry":{"type":"Polygon","coordinates":[[[-75.18255791830623,39.948121757629885],[-75.182967978705918,39.948182273759137],[-75.18307404282109,39.948263989455143],[-75.183010988733272,39.94832791886477],[-75.182767999056836,39.94849983327606],[-75.182486365087072,39.948731556351255],[-75.182769438570389,39.948943247803498],[-75.182858628503453,39.948899061625475],[-75.1847992228696,39.947412603437883],[-75.183470310775704,39.947264472565578],[-75.183429700585762,39.94725825876229],[-75.183316738685505,39.94776035244994],[-75.183301685938645,39.947820335631903],[-75.183286682528916,39.947838753563154],[-75.183274623731364,39.947847056855515],[-75.183260693788796,39.94785338831111],[-75.183245423825582,39.947857509332835],[-75.183229404102562,39.947859258331917],[-75.183213248382714,39.94785856434703],[-75.183019122551769,39.947834082669189],[-75.182630054457292,39.947789139279884],[-75.182622408960654,39.947791214380672],[-75.182616287527921,39.947795306718767],[-75.182611726505371,39.947807053835817],[-75.18255791830623,39.948121757629885]]]},"properties":{"OBJECTID_1":58,"OBJECTID":1,"ASSET_NAME":"Markward Playground","SITE_NAME":"Schuylkill River Park","CHILD_OF":"Schuylkill River Park","ADDRESS":"400-16 S TANEY ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":3.5281419999999999,"ZIPCODE":"19103","ALLIAS":" ","GLOBALID":"b2eeeb36-65f0-4e52-8929-78909c5daa1e","Shape_Length":2221.2070616834417,"Shape_Area":153685.23878964153}},{"type":"Feature","id":59,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.186183211604032,39.946574775757661],[-75.184975385724755,39.947474359808346],[-75.18396447338877,39.948272487098194],[-75.183846145198771,39.948365117444581],[-75.183273623855797,39.948825312875826],[-75.183045034171755,39.948998325879202],[-75.18264550440135,39.949308329094876],[-75.182507221668175,39.949408740468137],[-75.182561927242432,39.949450885234732],[-75.182012172762811,39.949887511993666],[-75.181799155607735,39.950062077731225],[-75.181796591898447,39.950088495661014],[-75.18135624779076,39.950526361595905],[-75.181236322425448,39.950678938512397],[-75.181096614926446,39.950899675354293],[-75.180989201333176,39.951093452585546],[-75.180916375771687,39.951241065240005],[-75.180777491826746,39.951564119278565],[-75.180695959897818,39.951776530416012],[-75.180533101979478,39.952154412633334],[-75.180383596615684,39.952468807506868],[-75.180341210793316,39.952555717547405],[-75.18019111390997,39.953009708979017],[-75.180155219847762,39.953007703845785],[-75.179979735799165,39.95342983327771],[-75.179897182272185,39.953627776030586],[-75.179831255801233,39.953799615910789],[-75.179730708941733,39.954059740642677],[-75.179661884834942,39.954225492254253],[-75.179512276371582,39.95454229136493],[-75.179392021297588,39.954827249445472],[-75.179216846160557,39.955240963965231],[-75.17911919412839,39.955507171886126],[-75.17888618760044,39.956126602073653],[-75.178781675514742,39.956367381713662],[-75.178685427507148,39.956596309874413],[-75.178577817992718,39.9569188607013],[-75.178513522006497,39.957171370815722],[-75.178491374913747,39.957550002436413],[-75.178498457821178,39.957817350147259],[-75.178520912561524,39.958009219501413],[-75.178645910548198,39.958466972097597],[-75.17873527095027,39.958750608860591],[-75.178864126905083,39.959189191176861],[-75.178992969014132,39.959586847215114],[-75.179174260345846,39.960127702222373],[-75.179237150822033,39.960284372977227],[-75.179401359254541,39.960662706710693],[-75.179529423412149,39.960989788111576],[-75.179657599771261,39.961314029159851],[-75.179737514786837,39.961546185750905],[-75.179820943228364,39.961587870453307],[-75.179881567758386,39.961646106722199],[-75.179937319915254,39.96173552145293],[-75.179978407534421,39.961821758662921],[-75.18001906403606,39.961919364177668],[-75.180050942298351,39.96205374516969],[-75.180068367092076,39.962179273421455],[-75.180070593178513,39.962315832899137],[-75.180066078472677,39.962435179824645],[-75.180027361361596,39.9625793556772],[-75.179954332864156,39.96275120338224],[-75.179902996188972,39.962838218336756],[-75.179751630357785,39.962931521441938],[-75.179764679427848,39.962977315773585],[-75.179774469606912,39.963011665426002],[-75.179683837557661,39.963160364473111],[-75.179808013698434,39.963207864388437],[-75.179863625788983,39.963226360038192],[-75.180005014028808,39.963273382130588],[-75.180061515625468,39.963293067120134],[-75.180512533445921,39.963443540884718],[-75.180512625848692,39.963443574489531],[-75.18067120516865,39.963495738979503],[-75.180671483887807,39.963495830817223],[-75.180723512334197,39.963512899676729],[-75.180750902003808,39.963521955498791],[-75.180751211902844,39.9635220588466],[-75.181028468049021,39.963612254026458],[-75.181039640295865,39.963615524370482],[-75.181110538137716,39.963638792830828],[-75.181166878923719,39.963656832018366],[-75.181265320675649,39.963689325333739],[-75.181311500097635,39.963705045702156],[-75.181383678975834,39.963729618501816],[-75.181397346960679,39.963734827797559],[-75.181444348979355,39.963752732558518],[-75.181509158383193,39.963781046181474],[-75.181534482037819,39.963791514298634],[-75.181534550043054,39.963791542851347],[-75.181547266517967,39.963796740739113],[-75.18156736807255,39.963805375519691],[-75.181631223095877,39.963832299971408],[-75.181658233291131,39.963843470760537],[-75.181691823441298,39.963857354013506],[-75.181735854414114,39.963874592071626],[-75.181789329465403,39.963892931707349],[-75.181905036136854,39.963931679201131],[-75.181963243916584,39.963949684992194],[-75.182099626428339,39.963991888216967],[-75.182281746435066,39.964042994213322],[-75.182304811633344,39.964049464282148],[-75.182467347488142,39.964091973038741],[-75.182698915947626,39.964157347774176],[-75.182668971209708,39.964111192887167],[-75.182601001059965,39.96404547220952],[-75.182566412468518,39.963988753540015],[-75.18254233369727,39.963964828078979],[-75.182519934229546,39.963943686473165],[-75.18249391691144,39.963923837945387],[-75.182473559723107,39.963895876326333],[-75.182447957294229,39.963865051042312],[-75.182423826721063,39.963842498437295],[-75.18239098868203,39.963814257500196],[-75.182360557510393,39.963769550375659],[-75.182320952216514,39.963731502736366],[-75.182282547928025,39.96368528726326],[-75.1822447775656,39.96364590751957],[-75.18223779282809,39.963639561253522],[-75.182213722642942,39.963617707335025],[-75.182190008766057,39.963584134723781],[-75.182169807345431,39.963552058009078],[-75.182163714230086,39.963524415568401],[-75.182129406228782,39.963487860456738],[-75.182098818197161,39.963447311515829],[-75.182060171150241,39.963407526451526],[-75.181986334651768,39.96335450988807],[-75.181773871522182,39.963184145665778],[-75.181597504512141,39.963042727661986],[-75.181467594698546,39.962938893543949],[-75.181216855273419,39.962656290981116],[-75.181213409307972,39.962650995169227],[-75.181046522664602,39.962394497772962],[-75.180791683665731,39.962195875803047],[-75.180735383636289,39.962151993594382],[-75.180624058196472,39.96201836550032],[-75.180454589223345,39.961814949199372],[-75.180366414044158,39.961732259029148],[-75.180255589446361,39.961628331004761],[-75.180167337832941,39.961504090595774],[-75.18010490983265,39.961416205930327],[-75.180051595193746,39.961308630120811],[-75.179710547435604,39.960822465369802],[-75.179648196962546,39.960733584743629],[-75.179483606429756,39.960464955482635],[-75.179471865201805,39.960430567483982],[-75.179403296115836,39.96031261948206],[-75.179386646520101,39.960270097082102],[-75.179369241629189,39.960247629604382],[-75.179354513412591,39.960223211039029],[-75.179351833607925,39.960216859226236],[-75.179342545746991,39.960194841217479],[-75.179325289066156,39.960168364845785],[-75.179267568909836,39.960022805946394],[-75.179189568904718,39.95982611965615],[-75.179109295021888,39.959593771639099],[-75.179086135733513,39.959526746247711],[-75.179058276783067,39.959435800879028],[-75.179025433987761,39.959338718747034],[-75.178981309071546,39.959195224010124],[-75.178946240480656,39.959088061900466],[-75.17888150649425,39.958868833785552],[-75.178846741855367,39.958753648626939],[-75.178806133633515,39.958586148556179],[-75.178776102012463,39.95841486789476],[-75.178761426558253,39.958320204790823],[-75.178747837271558,39.958265708833444],[-75.178747206700621,39.958213504457895],[-75.178737819973932,39.958116954227613],[-75.178721653198835,39.957923906778674],[-75.178718917925579,39.957789368467907],[-75.17872240920137,39.957697118170927],[-75.17872289099374,39.957568807679465],[-75.178738728803097,39.957433207980223],[-75.178746108547102,39.957373126282299],[-75.178777411538618,39.95711829442839],[-75.178812967123903,39.956956759505616],[-75.178848990901812,39.95680639230477],[-75.178858789963783,39.956768539640372],[-75.178858814291033,39.956768453688376],[-75.178881381451745,39.956681303564217],[-75.178928941169502,39.95653256802624],[-75.178963972214504,39.956431998228062],[-75.179020966308954,39.956269699415792],[-75.179040543817308,39.956218044324991],[-75.179060609787911,39.956165113532357],[-75.179066566542659,39.956149154943787],[-75.17916787114001,39.955876796595916],[-75.179171426003492,39.955866762394749],[-75.179176860526695,39.955851422807228],[-75.179199050750015,39.955786438101242],[-75.1792240167008,39.955713319984937],[-75.179286125078463,39.955533714598644],[-75.179299997915251,39.955497165053679],[-75.179313211107342,39.955462391938326],[-75.179337585686838,39.955398244544185],[-75.179343984185067,39.955381406543388],[-75.179367639432925,39.955319157676335],[-75.179381242594459,39.955283358930807],[-75.179400096177744,39.95523306071113],[-75.179490568244987,39.955009415000838],[-75.179517213294162,39.954943547960369],[-75.179659037804683,39.954614038640486],[-75.179668968879696,39.954590966381375],[-75.17967370916152,39.954579953197737],[-75.179710198796727,39.954491371425789],[-75.179785005398671,39.954309780674009],[-75.17980349318043,39.954264897396371],[-75.179803646379867,39.954264530512724],[-75.179823024962957,39.954217484037834],[-75.179824878105237,39.954213062842761],[-75.179834791746643,39.954189427048469],[-75.179891264930632,39.954087963366923],[-75.180023254827432,39.953829679995579],[-75.180063504255457,39.953752205340521],[-75.180089644804184,39.953701877454733],[-75.180160851360029,39.953564655477535],[-75.18020289560134,39.953484416136078],[-75.180222388359795,39.95344721481765],[-75.180270028297514,39.953353797360847],[-75.18027443214558,39.953345174212984],[-75.180279872554863,39.953334279406782],[-75.180352593081622,39.953188890228908],[-75.180381348113684,39.953129877429234],[-75.18043480323108,39.953020162019541],[-75.18044900314014,39.952991434162314],[-75.180478443667141,39.952931874464838],[-75.180504823690399,39.952878510044933],[-75.180519811893063,39.952848191530592],[-75.180582655695886,39.952719750686974],[-75.180708019565131,39.952440543594513],[-75.18089220081572,39.952094366860798],[-75.181018169493683,39.951836317971676],[-75.181078747527934,39.951702976908599],[-75.181102997829029,39.951661854479262],[-75.181145472041152,39.951589813765665],[-75.181172244775027,39.951542353328676],[-75.181184458985356,39.951520425913806],[-75.181216269005859,39.951463310399873],[-75.181244340711558,39.951413755351226],[-75.181248216745018,39.951406916969511],[-75.181264062655302,39.951378945792591],[-75.181329101150965,39.951263169709975],[-75.18142751824162,39.951107145854657],[-75.1814420265395,39.951084143518536],[-75.181527582293668,39.950950589361334],[-75.181720745009144,39.95064904686231],[-75.18182229681193,39.950487658887759],[-75.181814209362869,39.950485064015133],[-75.181808194520571,39.950483138142808],[-75.181986344985461,39.950237760689546],[-75.18202840196389,39.950179840011259],[-75.182151933201638,39.950019474509396],[-75.182317097750726,39.949959744043952],[-75.182650634092639,39.949788899239998],[-75.182900040147487,39.949560226092707],[-75.183256810705842,39.949255288476188],[-75.183551510202662,39.948969939335477],[-75.184006916410524,39.948639234417023],[-75.184280884775859,39.94842159387283],[-75.18451347058712,39.948217016281632],[-75.184820555424537,39.948024595642991],[-75.185111747665772,39.947831813453718],[-75.185114083907422,39.947830117731733],[-75.185198156083331,39.947769062874521],[-75.18521575658211,39.947724004025176],[-75.185465570886365,39.947544284887975],[-75.185787412366381,39.947381907032515],[-75.186077318379006,39.947162876157563],[-75.186295556044584,39.946977203817774],[-75.186331997345675,39.946974520559181],[-75.186510798588316,39.946810693515587],[-75.186431209680265,39.946752974677381],[-75.186219779295669,39.946938799400314],[-75.186031706428054,39.947107659948117],[-75.185742126424543,39.947317960894679],[-75.185406140484176,39.947494010571631],[-75.185158465779423,39.947677275143874],[-75.185135768492202,39.947676767633347],[-75.185096991904132,39.947681140858315],[-75.185008853978815,39.947609247084372],[-75.184992298519219,39.947560065525622],[-75.184992394173662,39.947560105507044],[-75.186242728752902,39.946616538869982],[-75.186183211604032,39.946574775757661]],[[-75.184879988635515,39.94764095163012],[-75.185034243445514,39.947765602284022],[-75.185024425847374,39.947798396688412],[-75.184781354447182,39.947980014565346],[-75.184474401443623,39.948168945727446],[-75.184218261896021,39.948395723496176],[-75.183928344634282,39.948614749668181],[-75.18350063266189,39.948933834575421],[-75.183320964338819,39.94912036491435],[-75.18301984911804,39.949395083056885],[-75.1826064980621,39.949754692931258],[-75.182291513767964,39.949915466906539],[-75.182212139287657,39.949941319669399],[-75.182351103714325,39.949760916758009],[-75.182522982547837,39.949579733093273],[-75.182565226573473,39.949535273930408],[-75.182622386052273,39.949475109677955],[-75.182622771234179,39.949475139923166],[-75.182636197199571,39.949476084637318],[-75.182636551037916,39.949476107873849],[-75.182636621015348,39.949476114846107],[-75.182639484589885,39.949475213953285],[-75.182653774491172,39.949470706158863],[-75.182664508807321,39.949466607133353],[-75.182674592028988,39.949462761135138],[-75.182700314760723,39.949443040648006],[-75.182714563481468,39.949428282018722],[-75.182717954206936,39.949424769176737],[-75.182721606534415,39.949420157549405],[-75.182737625704675,39.949399935163456],[-75.182752044523809,39.949380395065248],[-75.182753622712028,39.949378285077387],[-75.182754378143741,39.949376912624579],[-75.182763169862611,39.949361329071621],[-75.182770846195709,39.949347039636223],[-75.182786579866402,39.949331987165081],[-75.182802158407796,39.949317167285102],[-75.182806011594266,39.949313498103429],[-75.182808790771077,39.949310771670703],[-75.182810234849981,39.949309918294681],[-75.182812440231231,39.94930862153965],[-75.18284730104925,39.949283140834481],[-75.182867249406527,39.949267678109116],[-75.182867289230629,39.949267646563932],[-75.182870275270801,39.949265332016395],[-75.18289122716611,39.94925382826419],[-75.182913313295188,39.949235913967101],[-75.182938202137578,39.949214463747843],[-75.182944663927771,39.94920889504133],[-75.182951393568345,39.949200946450524],[-75.182968007379188,39.949181311286452],[-75.182984985392338,39.949156931435574],[-75.183007356532386,39.949131471222685],[-75.1831244399323,39.949007462243259],[-75.183182289105929,39.94896378635508],[-75.18328888111715,39.948881379113359],[-75.183305443760347,39.948868517462913],[-75.183345859829743,39.948837125944102],[-75.183476396177639,39.948734792332154],[-75.183580340787316,39.948675192364313],[-75.18361489219032,39.948649301764661],[-75.183664799620857,39.948611900106535],[-75.183774361103829,39.948521664213999],[-75.183789958009584,39.948507649222421],[-75.183810373150621,39.948489300034659],[-75.18389293720611,39.948428926853268],[-75.183946696474891,39.948375418276505],[-75.183991744334534,39.948339994516367],[-75.18401773929611,39.948325970627003],[-75.184017852862695,39.948325908294642],[-75.184027257501299,39.948320836044481],[-75.184063600592239,39.948303508059958],[-75.184070145861909,39.948299599021638],[-75.184111048012454,39.948275250512644],[-75.184163247077251,39.948239428926449],[-75.184220759793632,39.948204628084895],[-75.184256127874178,39.94816568370274],[-75.184266244379103,39.948152360580849],[-75.184290860415516,39.94811994498766],[-75.184337516328355,39.948065548438962],[-75.184381126007182,39.948020952512103],[-75.184390917856817,39.948014118407706],[-75.184490151412291,39.947944864274952],[-75.184500544858494,39.947936761478203],[-75.184879988635515,39.94764095163012]]],[[[-75.18680180445071,39.946079513417992],[-75.186477108397384,39.946318720556953],[-75.18636529008684,39.946393133545286],[-75.186491469911346,39.946479854747714],[-75.186730988624092,39.946331388739225],[-75.186730491936743,39.946404791957896],[-75.186661683082576,39.946543089292113],[-75.186621856417659,39.946575412315859],[-75.186690421083327,39.946624141262674],[-75.186730841869363,39.946576098951319],[-75.186762184763936,39.946527860077509],[-75.18680445009889,39.946430914282018],[-75.186819418824598,39.946335112778556],[-75.186814651531151,39.946280815888322],[-75.186905057830614,39.946232147928022],[-75.18680180445071,39.946079513417992]]]]},"properties":{"OBJECTID_1":59,"OBJECTID":2,"ASSET_NAME":"Schuylkill Banks","SITE_NAME":"Schuylkill Banks","CHILD_OF":"Schuylkill Banks","ADDRESS":"400-16 S TANEY ST","TYPE":"Land","USE_":"Park- Linear\\Parkway","ACREAGE":15.107060000000001,"ZIPCODE":"19103","ALLIAS":" ","GLOBALID":"f69816df-41c3-447c-bc37-46cd4d68c2bf","Shape_Length":19210.454221970962,"Shape_Area":658061.25092763128}},{"type":"Feature","id":60,"geometry":{"type":"Polygon","coordinates":[[[-75.182478333483814,39.948427241049366],[-75.182476459817565,39.948432369115096],[-75.182473486050171,39.948437178827469],[-75.182469495822076,39.948441532401731],[-75.182464606320153,39.94844530271515],[-75.182458958614404,39.948448381199704],[-75.182452714080455,39.948450679564324],[-75.182446055501615,39.948452131621217],[-75.182439172964536,39.948452694772513],[-75.182432266062364,39.948452353663427],[-75.181381978382731,39.94832246819599],[-75.181375031184743,39.948322388314999],[-75.181368168786094,39.948323223958468],[-75.181361593458945,39.948324950823476],[-75.181355497969491,39.948327517363971],[-75.1813500631023,39.948330848339182],[-75.181345448269255,39.948334845504675],[-75.181341788999632,39.948339392060767],[-75.18133919460108,39.948344352600515],[-75.181289031154023,39.948572228653227],[-75.18123560667857,39.948824176078986],[-75.181173418024642,39.949119572236746],[-75.181118643146533,39.949369221536379],[-75.181081972070231,39.949532488981667],[-75.181127971373996,39.949539217117312],[-75.181305996064268,39.949561664567767],[-75.181411738548846,39.949574997707849],[-75.181894231524197,39.949637735848711],[-75.1847992228696,39.947412603437883],[-75.183470310775704,39.947264472565578],[-75.183429700585762,39.94725825876229],[-75.183316738685505,39.94776035244994],[-75.183301685938645,39.947820335631903],[-75.183286682528916,39.947838753563154],[-75.183274623731364,39.947847056855515],[-75.183260693788796,39.94785338831111],[-75.183245423825582,39.947857509332835],[-75.183229404102562,39.947859258331917],[-75.183213248382714,39.94785856434703],[-75.183019122551769,39.947834082669189],[-75.182630054457292,39.947789139279884],[-75.182622408960654,39.947791214380672],[-75.182616287527921,39.947795306718767],[-75.182611726505371,39.947807053835817],[-75.182478333483814,39.948427241049366]]]},"properties":{"OBJECTID_1":60,"OBJECTID":3,"ASSET_NAME":"Schuylkill River Park","SITE_NAME":"Schuylkill River Park","CHILD_OF":"Schuylkill River Park","ADDRESS":"400-16 S TANEY ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":7.5072660000000004,"ZIPCODE":"19103","ALLIAS":" ","GLOBALID":"0f561b15-7e72-45e6-98e3-e4206c248a68","Shape_Length":3180.1623057319407,"Shape_Area":327015.3200641016}},{"type":"Feature","id":61,"geometry":{"type":"Polygon","coordinates":[[[-75.200768782471158,39.989177410917328],[-75.200767892269468,39.989201967861788],[-75.200778154966088,39.98922579672422],[-75.200796349709762,39.989261244519902],[-75.200808980670914,39.989271537019249],[-75.200842370731209,39.989273709394496],[-75.200881638537012,39.989270362096789],[-75.201015061050754,39.989221617434993],[-75.201165616686509,39.989132585332165],[-75.201325142015349,39.989010972754969],[-75.201422474725845,39.988931221858607],[-75.201502272667298,39.988833132628756],[-75.201648084087083,39.988716815774161],[-75.201882695816366,39.988435955503817],[-75.2020893986451,39.988180221460503],[-75.20231674931631,39.987932763417462],[-75.20240571916591,39.987806309045517],[-75.202455004158622,39.987731714083957],[-75.202480378841997,39.987693928735446],[-75.202520190290869,39.987619074822724],[-75.202545810496488,39.987535896892012],[-75.20252488115365,39.987494023989527],[-75.202467509046514,39.987466932293174],[-75.202372928656018,39.987488267191715],[-75.202281588813946,39.987590106634947],[-75.202232753291497,39.987627927984406],[-75.201849321853132,39.98794687087247],[-75.201775643642051,39.988015702700132],[-75.201557372600988,39.988190699781775],[-75.201360330698748,39.988382996842326],[-75.201143265071536,39.988592728465527],[-75.201004840764156,39.988771427650292],[-75.200898501555812,39.9889210403269],[-75.200768782471158,39.989177410917328]]]},"properties":{"OBJECTID_1":61,"OBJECTID":4,"ASSET_NAME":"Peters Island","SITE_NAME":"Peters Island","CHILD_OF":"East Fairmount Park","ADDRESS":"PETERS ISLAND","TYPE":"Land","USE_":"Park- Regional/Watershed","ACREAGE":0,"ZIPCODE":" ","ALLIAS":" ","GLOBALID":"6950479d-3c87-4740-8258-1fa622fc51bc","Shape_Length":1687.976700750464,"Shape_Area":83679.375311555748}},{"type":"Feature","id":62,"geometry":{"type":"Polygon","coordinates":[[[-75.055143528556101,40.008700116433644],[-75.055405599833946,40.008959975922075],[-75.056303081463753,40.008189434342938],[-75.056425307560474,40.008217716125245],[-75.056528648336524,40.008231655140079],[-75.056613104885542,40.008231251465858],[-75.056660025690547,40.008231027687856],[-75.056781959756734,40.008223227873195],[-75.056847590176133,40.008215698413224],[-75.056941196494407,40.008186385460142],[-75.057034688643483,40.00814263856963],[-75.05712811999885,40.00809167729075],[-75.057259029746675,40.00803331976357],[-75.057371228603046,40.007982267761044],[-75.057483078708913,40.007887918430299],[-75.058604127951909,40.007261934524827],[-75.057831217364978,40.0065277884732],[-75.058192662707512,40.005930223676813],[-75.058038143577548,40.005621294900237],[-75.058116610582147,40.00547650551799],[-75.05768278528825,40.005479970592752],[-75.056665199384341,40.00670070976944],[-75.056413214542076,40.006797547089072],[-75.055987240694378,40.007247492948729],[-75.055808650391356,40.007492212127566],[-75.055694529121169,40.007718619191614],[-75.05538605135196,40.008034223183358],[-75.055278187297375,40.00826977912174],[-75.055172255005473,40.00845668044429],[-75.055143528556101,40.008700116433644]]]},"properties":{"OBJECTID_1":62,"OBJECTID":5,"ASSET_NAME":"Frankford Arsenal Boat Launch","SITE_NAME":"Frankford Arsenal Boat Launch","CHILD_OF":"Frankford Arsenal Boat Launch","ADDRESS":"5625 Tacony Street","TYPE":"Land","USE_":"Park- Neighborhood","ACREAGE":0,"ZIPCODE":" ","ALLIAS":"PA Fish and Boat","GLOBALID":"7972c687-cdc9-487f-af06-c236eca8a7e4","Shape_Length":3538.0914893740005,"Shape_Area":477860.18401972792}},{"type":"Feature","id":63,"geometry":{"type":"Polygon","coordinates":[[[-75.065885840884619,39.991764828049995],[-75.066081212596572,39.992014094559615],[-75.066536008155765,39.992648184241268],[-75.066956553471428,39.993194629449945],[-75.067038564866721,39.99329031825274],[-75.067053463614158,39.993313241293976],[-75.067407792482015,39.992754301433948],[-75.067452850161061,39.99263318175889],[-75.067311689528537,39.992715991887607],[-75.067197372634695,39.992171716020565],[-75.067496547271148,39.991582256048886],[-75.068045679553066,39.991292677087557],[-75.068300312791663,39.991580219472709],[-75.068347379100828,39.991493341086617],[-75.067785803291216,39.990831623425926],[-75.067049418365357,39.990067545006518],[-75.066805578870486,39.990049404134488],[-75.066360571039823,39.990141637245223],[-75.066003802697267,39.990338568462981],[-75.065749267975946,39.990545784535612],[-75.065584681496034,39.990791560146988],[-75.065373666896875,39.991089700562028],[-75.0655693021248,39.991348740638095],[-75.065764721314565,39.991591768211848],[-75.065885840884619,39.991764828049995]]]},"properties":{"OBJECTID_1":63,"OBJECTID":6,"ASSET_NAME":"Orthodox Street Parcel","SITE_NAME":"Orthodox Street Parcel","CHILD_OF":"Orthodox Street Parcel","ADDRESS":"3100 ORTHODOX AVE","TYPE":"Land","USE_":"Park- Neighborhood","ACREAGE":0,"ZIPCODE":" ","ALLIAS":" ","GLOBALID":"7e2f9a2b-5449-47e5-a2a2-a9891c808204","Shape_Length":3321.5408091846716,"Shape_Area":457597.10255005606}},{"type":"Feature","id":64,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.201509602638993,40.042590147849033],[-75.201409957230609,40.042686823929152],[-75.201358043382115,40.042778787152976],[-75.201341625365274,40.042807881169026],[-75.201242424811042,40.043007894903049],[-75.201207570318985,40.043086762986832],[-75.201154505198218,40.043172908036674],[-75.201088971212698,40.043272572543827],[-75.200991840822397,40.04341747081947],[-75.200878495263296,40.043569690237085],[-75.200809905553868,40.043644763289549],[-75.20067020134374,40.043808648506136],[-75.200555952635398,40.043931732575508],[-75.200440164594809,40.044054932841846],[-75.200331717003763,40.044170336466188],[-75.200293460458241,40.044218211770911],[-75.200283603357306,40.044230543954356],[-75.200161448496019,40.044351907853574],[-75.200053217576581,40.044445173889791],[-75.199910135938666,40.044568475975758],[-75.199566605279145,40.044879630571202],[-75.199381876747267,40.04504695572944],[-75.199103178886531,40.045302734879421],[-75.198787068595806,40.045599048488249],[-75.198554015456963,40.045806793072082],[-75.198682603420252,40.045876439538056],[-75.199023740618699,40.046089920097671],[-75.199244423094513,40.046211236446325],[-75.19942932126942,40.046330255865918],[-75.199569152892238,40.046428342429849],[-75.199701065879609,40.046524708696474],[-75.199801354577275,40.046614257648855],[-75.19990155257355,40.046758944085347],[-75.199957805471826,40.046853652070865],[-75.200005735477433,40.046957357398014],[-75.200020780271132,40.047034285632996],[-75.200049337392471,40.047175858940165],[-75.200049126960707,40.04728767866407],[-75.200041916647251,40.047373317534486],[-75.200004482009263,40.047521085415099],[-75.199939773270842,40.047651383779673],[-75.199892456026248,40.047743791764852],[-75.199872257472933,40.0477750109415],[-75.199860934919016,40.047796965717922],[-75.199806276420631,40.047882689243913],[-75.199764947826267,40.047953904282913],[-75.199671853740014,40.048097367627534],[-75.199557020627481,40.048235757660663],[-75.199432056530867,40.048378513268773],[-75.199403969215027,40.048404944986316],[-75.199396994670977,40.048415238166747],[-75.199347175006864,40.048462405980196],[-75.19931513697189,40.048486990299956],[-75.199241243195033,40.048543708471968],[-75.199205539918921,40.048571107204559],[-75.199163808625485,40.048620729572683],[-75.199127484242823,40.04868578994396],[-75.199114764094034,40.048759034769034],[-75.199111080897353,40.048857002865439],[-75.199110241719808,40.048932055825937],[-75.199101029635969,40.049071245490708],[-75.199079909083011,40.049208668753643],[-75.199065265151276,40.049280347260165],[-75.199028504031276,40.049409742159334],[-75.198975168160871,40.049555611447083],[-75.198935985248625,40.049643609106013],[-75.198929234332738,40.049716985568438],[-75.198928870019785,40.04977977740888],[-75.19895024282269,40.04984766418255],[-75.198982308716637,40.04989585640508],[-75.199010572842212,40.049939394308765],[-75.199037431228831,40.049967560508343],[-75.199080212481832,40.050005134448966],[-75.199140224273293,40.050048519510902],[-75.199185707368827,40.0500744169344],[-75.199235800759055,40.050096469408729],[-75.1992905088605,40.050114590529745],[-75.199341698930411,40.050126776994247],[-75.199438532191564,40.050132724626927],[-75.199486832720098,40.050133796970805],[-75.199572138920686,40.050121465809234],[-75.199607028223724,40.050112027495445],[-75.199676841694824,40.05008592196203],[-75.199782256226953,40.050039236701224],[-75.199874757742606,40.04996469491374],[-75.199921457316606,40.049889137274],[-75.199955128741678,40.049788787651522],[-75.199981757594145,40.049663759097662],[-75.200051881720583,40.049495262129255],[-75.200132277327469,40.049371426071325],[-75.200241030807732,40.049248113051128],[-75.200244713438749,40.04924371049546],[-75.200246104739847,40.049242346622783],[-75.200249815383316,40.049238696125116],[-75.200283383642102,40.049205713021678],[-75.200351898857818,40.04913834118765],[-75.200383394729428,40.049107372655889],[-75.200411322619985,40.049083340138509],[-75.200449319204708,40.049050628262641],[-75.20072754146149,40.048755013491842],[-75.20097245560234,40.048496957955749],[-75.201349774225761,40.048110082271322],[-75.201600939400521,40.047844503851131],[-75.201854212605525,40.047575903767616],[-75.201999316283164,40.047427456541655],[-75.202150919599845,40.047265377874496],[-75.202269849437386,40.047124008340106],[-75.202337550507735,40.047019822211979],[-75.202397276264094,40.046915437555818],[-75.202399737883411,40.046910106855655],[-75.202411454912209,40.046892451171253],[-75.202453971427715,40.046811049635245],[-75.202547925108391,40.046566419790175],[-75.202661737836891,40.046242653724931],[-75.202797362944196,40.045868801574159],[-75.202895561386327,40.045589101293565],[-75.202972620562988,40.045394731081267],[-75.203005136948363,40.045324972040916],[-75.203119284518664,40.04515133441798],[-75.203125765074432,40.045144526867396],[-75.203237576203321,40.045026813904258],[-75.203412155979805,40.044889745886493],[-75.203657861203197,40.044715956260859],[-75.20379115918162,40.044616269704747],[-75.203836413717951,40.044578974794696],[-75.203826424238613,40.044573669020345],[-75.202691201844701,40.043599174923486],[-75.202005645375792,40.043012554396093],[-75.201509602638993,40.042590147849033]]],[[[-75.194991883645145,40.023402052286109],[-75.194989163429582,40.023404265901547],[-75.194179983042005,40.023763334843053],[-75.19320669365716,40.02419214323556],[-75.193153861701333,40.024215190494928],[-75.192639499115444,40.024439637633741],[-75.193224737115628,40.024904086583966],[-75.193265152854181,40.024936161207272],[-75.193384666038966,40.025027710706468],[-75.192704227358277,40.02549856484243],[-75.192011660341464,40.02594402043507],[-75.191488790908522,40.026282629044019],[-75.19126376776579,40.026426193367229],[-75.191209578191447,40.026460752330365],[-75.190581428913703,40.026874122046614],[-75.189995552414388,40.027321922149596],[-75.189420695960166,40.027766639517637],[-75.18925057856579,40.02782652597844],[-75.188872614051235,40.027963907584002],[-75.188536600094935,40.028087119161846],[-75.188235946141333,40.028197730477665],[-75.18795594762706,40.028300133236968],[-75.187769584753994,40.028366649663525],[-75.186892229928176,40.027649796540679],[-75.186839004716788,40.02760848764882],[-75.186559433639459,40.027737995254007],[-75.185676319931389,40.02814732081422],[-75.185702531019217,40.028166035259133],[-75.185898595826473,40.028380202766094],[-75.185868944349181,40.028396769816375],[-75.185361891808725,40.028679943148937],[-75.186096810681079,40.029308042382951],[-75.186170826298962,40.029370864172442],[-75.186198206457931,40.029394110528933],[-75.186269994859032,40.029456045493617],[-75.186310703119091,40.029487034375357],[-75.186989797996446,40.030004094442553],[-75.187153594858955,40.030131031915786],[-75.187128408014772,40.03014761243282],[-75.187037048707722,40.030207729681806],[-75.186693046701876,40.030434151258547],[-75.186831616912443,40.030574664750247],[-75.186917017516137,40.03068047849726],[-75.186986517369803,40.030802694266391],[-75.187012205144768,40.03093064748365],[-75.187023474861135,40.031036479958871],[-75.187019175260232,40.031150333544815],[-75.187007298925522,40.03123387303382],[-75.186971087592212,40.031326910281926],[-75.186901688115583,40.031432616560366],[-75.186783666932158,40.031555688505271],[-75.18665754798532,40.031650409596402],[-75.186573531302244,40.031693440614099],[-75.186509290998501,40.031720499331975],[-75.186357019692309,40.031769043577413],[-75.186183487218159,40.031803724934647],[-75.186008018071391,40.031831647586003],[-75.186003299870507,40.031831691820734],[-75.185735410830091,40.031833949767297],[-75.185651598665302,40.032073922522315],[-75.185616360017733,40.032174812670782],[-75.18560895751159,40.032196016594575],[-75.185402415725775,40.032165036727115],[-75.18528921430061,40.032160834823664],[-75.185190684247445,40.032172044223842],[-75.18508280713867,40.032199800845092],[-75.184980898685637,40.03224277444663],[-75.184898455389103,40.03228952904611],[-75.184822375119012,40.032341468649648],[-75.184695571854476,40.032465994866122],[-75.184768047940125,40.032499088586292],[-75.184950203830113,40.032582284389079],[-75.18506027943971,40.032680282932994],[-75.18512721437682,40.032755518960215],[-75.185409225508408,40.033138893784518],[-75.1856835379252,40.033495275646224],[-75.185712972949688,40.033467870044895],[-75.185800677578527,40.033395677922172],[-75.185934853444067,40.033306480527038],[-75.186121064715422,40.033225181430559],[-75.186497419497286,40.033131347640378],[-75.186516925950116,40.033162099229735],[-75.186564199205932,40.033236595489022],[-75.186587394092101,40.033273157995275],[-75.186637234263571,40.033351724600202],[-75.18741770361423,40.03466081263911],[-75.187394430470519,40.034684687251968],[-75.187337414708111,40.034743233000853],[-75.187044338717342,40.035044104602683],[-75.18786047965871,40.036173159963262],[-75.188111261954774,40.036575311479524],[-75.188186099845097,40.036714916774635],[-75.188260010235155,40.036879131255134],[-75.188327799528707,40.037035807388932],[-75.188584763010866,40.037189322161652],[-75.188615581525099,40.037052073375243],[-75.188678043662975,40.036925399862369],[-75.188717526310512,40.036812975087834],[-75.188721241658186,40.036714535535957],[-75.188702734604306,40.036610665618959],[-75.188703428513762,40.036507245498569],[-75.188782735575757,40.036358762984392],[-75.188986307872867,40.036144093613458],[-75.189173128529902,40.035948746427287],[-75.189401730001038,40.036089312114541],[-75.189536245213674,40.036189031249137],[-75.189604559093453,40.036234215099974],[-75.190046565757598,40.036579048143373],[-75.19029745857685,40.036808783132869],[-75.190427379426467,40.036932363739012],[-75.190558835116931,40.037100326821893],[-75.190806855523121,40.037406355984643],[-75.190952608771809,40.037521299369295],[-75.190916447195377,40.037559048649399],[-75.19026321358335,40.038187313013815],[-75.190988335319915,40.038625366595603],[-75.191040865540273,40.038648034915575],[-75.191117167098383,40.038691315315212],[-75.191298084077104,40.03879395353627],[-75.191342015696549,40.038818876398999],[-75.191530640093902,40.038940309721227],[-75.191597378661513,40.038955934839741],[-75.191665264735676,40.038971843165022],[-75.19182076663914,40.039008261757445],[-75.191880905206219,40.039022345858726],[-75.191911553879464,40.039061626627088],[-75.19191970126468,40.039072063325065],[-75.192034707636736,40.039123477991645],[-75.192138150600485,40.039141014905312],[-75.192140798663644,40.039141481129342],[-75.19222750620736,40.039141996496575],[-75.192209200646658,40.039053365082381],[-75.192121944367571,40.038647483975616],[-75.192059764777753,40.038426890854417],[-75.192009654415159,40.038302643433298],[-75.192001043655353,40.038268553124972],[-75.191947760147173,40.03816184966869],[-75.191872843395643,40.038011839567815],[-75.191808867085598,40.037883721547622],[-75.191636848645018,40.037575096980568],[-75.191680017111651,40.037542480707259],[-75.191780732315451,40.037449784936385],[-75.191944299501458,40.037290281838239],[-75.192102140063554,40.037128656164995],[-75.192319489965854,40.036919244337319],[-75.192342464996315,40.036896970407916],[-75.192299051615976,40.036875364335643],[-75.191865532690869,40.036627856845278],[-75.191715106900389,40.036531369454146],[-75.191916613581256,40.036340164434456],[-75.192944792553561,40.03532503304104],[-75.192923487160726,40.035296731152407],[-75.191813192029642,40.03435071919121],[-75.190516800183929,40.033247809242518],[-75.189768657670641,40.032626996823289],[-75.189697425474293,40.032567887740264],[-75.18959819318593,40.032482300010557],[-75.188933037490358,40.031908646130809],[-75.188966371155516,40.031892890199373],[-75.189055418515196,40.031850785947761],[-75.189951904958647,40.03142690587962],[-75.190812418800689,40.031020754788578],[-75.190813114485735,40.031020427007142],[-75.190833572137507,40.031040814931991],[-75.191569678897991,40.03171267293957],[-75.191868386474994,40.031995669752263],[-75.191868589623681,40.03199584636932],[-75.191930472438074,40.031983858279631],[-75.191979471682615,40.031975659358402],[-75.192130218179344,40.031950459394281],[-75.192134122024271,40.031949817424156],[-75.19213581767842,40.031949640749126],[-75.192468598396204,40.031915878451748],[-75.192567446295001,40.031905828615862],[-75.192845830500417,40.031905355262602],[-75.192846528128513,40.031905349171261],[-75.193146620749303,40.031925440044851],[-75.193315906172046,40.031945964639633],[-75.193532757416875,40.031997864805064],[-75.193779670934617,40.032058200320094],[-75.193987302824112,40.032121093915514],[-75.194404787465828,40.032266838888404],[-75.194714619304946,40.032375945415438],[-75.194998509992175,40.032479475218665],[-75.195538907316831,40.032660755830207],[-75.196389585112641,40.032939430834318],[-75.196661283809703,40.033019213266932],[-75.196887358451505,40.033094633618447],[-75.197127143860399,40.033153601386147],[-75.197285341525529,40.033178894881338],[-75.197359297952943,40.033182062213669],[-75.197531304190619,40.033189381787196],[-75.197533164325833,40.033193371328167],[-75.197553488509357,40.033237011755382],[-75.197674866584507,40.03349770816498],[-75.197675253230088,40.033498553790317],[-75.197686642839813,40.033522986249594],[-75.197646144100631,40.033614258112145],[-75.197632294245494,40.033692734154769],[-75.197639845752917,40.033781726588202],[-75.19765488309568,40.033845739243553],[-75.197678228645131,40.033978657930497],[-75.197733838181563,40.034180993358653],[-75.197834748749003,40.034570373855779],[-75.197889666766912,40.034791122957266],[-75.198157428932504,40.035787530060198],[-75.198250259039057,40.036159973653639],[-75.198331059510465,40.036446672539412],[-75.198377853831758,40.036604076855305],[-75.198564184765672,40.037285943209341],[-75.198650645262049,40.037597762274331],[-75.198650754471345,40.037598193578063],[-75.199250188060816,40.03734190148429],[-75.199900952799624,40.037065054362522],[-75.199901619941144,40.037064769140173],[-75.200364870015505,40.037443738467957],[-75.200834147189966,40.037836270825267],[-75.201320610777501,40.038235855321311],[-75.202567601425031,40.039285814004181],[-75.202822529116915,40.039496085206181],[-75.202823273747015,40.03949670268765],[-75.202859988625306,40.039526975140717],[-75.202860705990844,40.03952756949225],[-75.202897528961344,40.039557929924769],[-75.203112516195276,40.039263505665538],[-75.203556709763788,40.039116087660005],[-75.204179870267197,40.038859630150341],[-75.205306810130594,40.039625769995681],[-75.205379086409579,40.039681781785838],[-75.205379574429486,40.039682178225924],[-75.205523824519744,40.039585972538561],[-75.205695503532297,40.0395585368382],[-75.205707087531337,40.039556690492816],[-75.205708083653249,40.039556541367133],[-75.205731735280708,40.03963224394775],[-75.205733393630268,40.03963753712501],[-75.205795280253895,40.039789737409841],[-75.205855102287927,40.039938544703809],[-75.205941128632972,40.040144917998447],[-75.206006865945142,40.040310591414645],[-75.206099472982686,40.040574095061025],[-75.206111618618976,40.040634695115259],[-75.206116004528056,40.040656569457369],[-75.206120434616039,40.040819511894945],[-75.206096000221805,40.040928456865082],[-75.206029059316307,40.041085634400318],[-75.205910074215979,40.041234944961936],[-75.205810193909528,40.041339986180397],[-75.205647557139656,40.041490560518064],[-75.205418966201847,40.041704210570671],[-75.205265658241444,40.041838235127578],[-75.205128727294792,40.042001113803465],[-75.205098456967448,40.042052407546421],[-75.205016737698514,40.042196384529667],[-75.204987400484342,40.042281211684816],[-75.204963992445528,40.042428990754487],[-75.204967832428366,40.042495544542817],[-75.204999422528672,40.042772671816159],[-75.205000184532636,40.042928389023878],[-75.204805477013736,40.042945872930538],[-75.204751987022846,40.042976527328761],[-75.204671168163188,40.043038415746494],[-75.204227604275772,40.043353695668074],[-75.203888154181072,40.043741697719128],[-75.203575966850195,40.044100116022562],[-75.203933617658237,40.044389599685253],[-75.203994706967805,40.044432490775108],[-75.203995114663499,40.044432779121863],[-75.203995223902808,40.044432867138184],[-75.20401489483524,40.044431629059012],[-75.204042188922145,40.044432213271072],[-75.204043220869522,40.044432236142626],[-75.204072235880901,40.044414449215516],[-75.20412142567335,40.044382025737974],[-75.20415978586351,40.044347689970252],[-75.204273848486423,40.044271434210799],[-75.204537981911756,40.044089597992659],[-75.204811382968728,40.043892862144951],[-75.20493210937731,40.043813428715936],[-75.205053149917731,40.043725611997061],[-75.205104766669891,40.043686527622704],[-75.205126863342912,40.043678649557222],[-75.205168332338985,40.043677895105084],[-75.20523326595044,40.043632411252311],[-75.205361161917665,40.043536357768829],[-75.205502751433457,40.043423850649404],[-75.205606861354767,40.043322249637612],[-75.205743603755081,40.043164408197818],[-75.205849609823701,40.043012557774517],[-75.205980439326268,40.042837828289514],[-75.206097775124093,40.042674514657875],[-75.20631136610352,40.042385952482036],[-75.206432047235097,40.042249531829682],[-75.206695296386499,40.042032462924936],[-75.206998692962685,40.041849795910075],[-75.207169897826759,40.041761414486999],[-75.207293839623091,40.041712215413185],[-75.20747231669904,40.041662528550745],[-75.207625898282316,40.041632457510914],[-75.207626081417416,40.041632419217244],[-75.207813126898785,40.041644947295225],[-75.208017398308158,40.041721514697727],[-75.208135804657687,40.041797725993767],[-75.208159392303827,40.041821182934093],[-75.208250193494024,40.04188543423431],[-75.208289428424123,40.041926766355559],[-75.208413931844376,40.042091722092209],[-75.208459689529491,40.042177653855177],[-75.208483976895806,40.042229039210866],[-75.20850189978681,40.042267003893258],[-75.20853426752727,40.042345624170871],[-75.208553375267755,40.042413458908356],[-75.208561039803229,40.042452139962222],[-75.208563031206609,40.042520475377472],[-75.208564551601199,40.042540633769654],[-75.208566198717065,40.042587957436567],[-75.208556344552989,40.042729557842563],[-75.208553174152442,40.042753110137184],[-75.208545419671765,40.042808099641775],[-75.208529601311668,40.042896165772113],[-75.208514197728618,40.042942232816593],[-75.208497285246253,40.0429987577281],[-75.208482373842244,40.04303168284887],[-75.20846373133331,40.043073301163687],[-75.208428343088414,40.043136410849677],[-75.20840023300039,40.043187453179044],[-75.208372451304541,40.04322972702041],[-75.208325571848405,40.04329522235377],[-75.208306159393842,40.04332719010894],[-75.208299977707611,40.043340183613722],[-75.208303085700933,40.043348126229859],[-75.208308514193703,40.043355240813966],[-75.208317489488635,40.043358958716254],[-75.208333767028222,40.043359983820146],[-75.208401862708811,40.04333623726464],[-75.208665044364579,40.043244268166568],[-75.208670446591967,40.043243508306418],[-75.208723257132306,40.043236180214194],[-75.208735120719254,40.043244380489192],[-75.208735597088619,40.043244713586148],[-75.208784115033367,40.04327822656699],[-75.208784590265651,40.043278558737583],[-75.209018021632517,40.043439829965692],[-75.209665733232484,40.043879546048686],[-75.210084494314771,40.044160642341566],[-75.210695383883774,40.044574650705322],[-75.210619022340083,40.045110927302503],[-75.210524644930757,40.046002467264174],[-75.210516537521656,40.046084461045737],[-75.209414334402425,40.046464261501839],[-75.209584483203031,40.046668994313038],[-75.209895453162147,40.047037925149851],[-75.209921647370635,40.047069014012514],[-75.210106874875905,40.047290148723185],[-75.210128300357809,40.04731628291615],[-75.210188557661709,40.047389747427033],[-75.210335384042764,40.047565835057569],[-75.210558966795233,40.047833366962557],[-75.210688466079134,40.047996177760297],[-75.210689985085281,40.047998098931892],[-75.2107992091196,40.048135401005538],[-75.210797234743808,40.048136688141888],[-75.210796648679676,40.048137060815847],[-75.210353932398121,40.048421038258482],[-75.209787469734437,40.048790349719788],[-75.209864789054208,40.048867088363274],[-75.209990270521502,40.049007861830248],[-75.210066289062681,40.049119392515657],[-75.210108768670082,40.049195360686333],[-75.210150938328184,40.049326246046931],[-75.210168888804958,40.049405704757298],[-75.210175276689355,40.04951436602898],[-75.210173100648035,40.049665704842248],[-75.210169994871322,40.049717729295736],[-75.210168615322743,40.049726238474157],[-75.210161985697184,40.049779536520774],[-75.210135622907401,40.049875221924701],[-75.210085074490763,40.050014785599153],[-75.210004073203791,40.050129560690046],[-75.209918041836247,40.050238859957965],[-75.209863574954056,40.05029661440183],[-75.209717870998901,40.0504166521877],[-75.209544035745068,40.050542761249865],[-75.209205995222518,40.050771077236561],[-75.209060927300598,40.050873728184207],[-75.208938323068367,40.050982218759266],[-75.208881560862835,40.051054639837766],[-75.208851537403206,40.051111582096922],[-75.20883574743182,40.051160815780079],[-75.208828713098555,40.0512088916322],[-75.208830941401715,40.051235480786808],[-75.20883083775368,40.051266953138466],[-75.208832868133555,40.051329003089492],[-75.208855947408239,40.051411643371289],[-75.208877897479169,40.051524403436822],[-75.208930563625131,40.051748465906215],[-75.208976264348408,40.051984088184113],[-75.20898956411483,40.052036346635823],[-75.20899017269312,40.052078262013374],[-75.208981764117411,40.052128345539465],[-75.208962259308024,40.052183224734542],[-75.208893310761141,40.05227721834521],[-75.208792372307585,40.052352073460071],[-75.208743739559054,40.052374384080828],[-75.208719153045394,40.052385661350264],[-75.208646059760127,40.052415884042802],[-75.208625083039436,40.052420247579519],[-75.208479014130475,40.052450722727961],[-75.20868093876858,40.052570703214464],[-75.208698745734239,40.052581288324866],[-75.207980426947742,40.05267679188146],[-75.207930594738144,40.052683412635886],[-75.207887508902218,40.052688810424186],[-75.207115914923023,40.052802675190023],[-75.206502335904659,40.052881263206487],[-75.206328947416793,40.052910938011181],[-75.206172792234298,40.052946035241789],[-75.205965329852944,40.053011814084527],[-75.205799263071341,40.053078530912586],[-75.205679274467215,40.053137878759173],[-75.205592153612926,40.053192934036609],[-75.205502417001171,40.053259646135174],[-75.20543684563718,40.05332189373614],[-75.205361551636798,40.053410724435203],[-75.205267302456036,40.053539340615586],[-75.205171329317494,40.053656205522401],[-75.205056789844036,40.053802824607402],[-75.204951344201817,40.05393958175501],[-75.204770588826548,40.054165190433849],[-75.204647016774004,40.054319976637537],[-75.20456013591162,40.054426979230662],[-75.204504358695942,40.054483006580973],[-75.204490446814859,40.054494734824608],[-75.204423053608934,40.05455151389198],[-75.204415139317859,40.054555951663481],[-75.204371622581036,40.054580261451157],[-75.204371146930413,40.054579907630469],[-75.204222248555638,40.054472443564009],[-75.203768597510688,40.054110032961987],[-75.203767985639132,40.054110341058887],[-75.203354212689362,40.054327264676409],[-75.203290093336733,40.054363368297615],[-75.203096446711925,40.054459549934784],[-75.202854243388018,40.054594861951784],[-75.20270843348041,40.05467066957884],[-75.202539819517298,40.054750005177581],[-75.202366793381444,40.054807788038097],[-75.202236827196444,40.054833055114905],[-75.202114272994393,40.054846406686039],[-75.201979894983012,40.054850120971906],[-75.201979253803955,40.054850085127768],[-75.201851134337076,40.05484325308025],[-75.201755876291784,40.05482640080303],[-75.201584611757866,40.054790440754431],[-75.201453484206709,40.054754040017272],[-75.201372814643278,40.054720110870306],[-75.201264577707093,40.054677502529721],[-75.200969969187597,40.054537000911942],[-75.200742494251543,40.054429183565375],[-75.200697611039914,40.054407697946495],[-75.200697277970505,40.054408012213848],[-75.200484156895641,40.054613307612627],[-75.200325130162554,40.054762496669063],[-75.200066906655294,40.054999273350155],[-75.199773295209539,40.055272703352507],[-75.199763371673285,40.055281922884696],[-75.199762716439494,40.055281543434212],[-75.199491013636859,40.055119941311929],[-75.199461518782911,40.055102400838678],[-75.199461142264369,40.055102779010234],[-75.199410778959617,40.055153518162527],[-75.199500249141053,40.055231884208396],[-75.199592492489302,40.055324472802099],[-75.199669249269661,40.055416074230486],[-75.19973593388093,40.055495993975043],[-75.199824279717518,40.055617674826379],[-75.199921319571146,40.055769500605507],[-75.199989925462305,40.0558934029306],[-75.200167404849353,40.055924504477105],[-75.200168126002083,40.055924627701302],[-75.200428542028831,40.055845465818969],[-75.200454991840488,40.055837406748509],[-75.200455598938575,40.055837226505083],[-75.200742396346868,40.055975475599297],[-75.20087507217967,40.056039437979095],[-75.200875154546864,40.056039461430622],[-75.201220592355568,40.0560337372333],[-75.201357226962912,40.056035437507447],[-75.201358273144265,40.056035460714952],[-75.201427192931973,40.056057071984831],[-75.201514889356105,40.056089827043735],[-75.201547317239815,40.056112558729168],[-75.201599822013435,40.056149339061896],[-75.201040336040194,40.056237402170673],[-75.200496361818992,40.056329840589775],[-75.200172004416956,40.056379734523617],[-75.200161416212978,40.056381366413731],[-75.200200168143255,40.056556377633449],[-75.200211815514237,40.056672880775146],[-75.200216119717126,40.05672772932423],[-75.200217504858372,40.056883674958577],[-75.200212775408986,40.057009511239528],[-75.200194226882644,40.057224810426256],[-75.200668178639376,40.057286283053131],[-75.200742519246603,40.057295935249925],[-75.201065293607826,40.057336588570386],[-75.201126013730573,40.057344629186801],[-75.201121344329948,40.057354095143097],[-75.201061857482657,40.057474511655535],[-75.200962339700297,40.057616997561709],[-75.20083355634975,40.057796359023293],[-75.200693826401675,40.057941963784153],[-75.200580603739937,40.058031901577152],[-75.200385383013142,40.058169582032676],[-75.200350160628787,40.058207462430232],[-75.200308885587049,40.058256322366418],[-75.200308117038404,40.058255962029264],[-75.200264297541466,40.058236559595827],[-75.200228362743104,40.058218361969836],[-75.200217076970375,40.058193996180982],[-75.200188286069064,40.058125022506594],[-75.20016244631455,40.058023953031757],[-75.200141871005641,40.057829241155517],[-75.200140582747281,40.05767780358881],[-75.200154532739077,40.057538783946306],[-75.200166830774734,40.057437787791372],[-75.200169660388482,40.057414507414123],[-75.200095054624612,40.057411565036432],[-75.200094009234562,40.057411520211424],[-75.20008281523441,40.057411078060056],[-75.199997323205736,40.057407679573082],[-75.199984958460092,40.057407189804067],[-75.199627488782596,40.057392990693927],[-75.199245151376786,40.057379246604818],[-75.199253275666379,40.057280518483211],[-75.199277270286018,40.056988746037462],[-75.198966451325873,40.057047498550851],[-75.198654968224503,40.057108680809549],[-75.198636228930724,40.057112512908176],[-75.198634663890815,40.057110696871227],[-75.198572746560174,40.057038756233858],[-75.198507116777023,40.056975679175046],[-75.19841058567512,40.056899836962415],[-75.198204625115906,40.056766639105703],[-75.197971602269391,40.056611405780636],[-75.198219630128179,40.056367712628131],[-75.198108962359584,40.056296941449226],[-75.198018442719402,40.056386029496053],[-75.197984405503874,40.056363840389977],[-75.197606218020354,40.056718246372867],[-75.197516285050455,40.056803613324412],[-75.198099187375135,40.05715954393726],[-75.198179002994976,40.057216242753519],[-75.198280097303623,40.057309586674073],[-75.198349094878779,40.057422320854862],[-75.19838038240718,40.05747124640498],[-75.198402297659698,40.057537386500236],[-75.198424680152272,40.057591478842447],[-75.198424478588038,40.057596838037405],[-75.198402789873256,40.057612276194057],[-75.197820713808539,40.05802690629335],[-75.197483670887735,40.058272632467215],[-75.196982382839167,40.05863511563745],[-75.196908659429567,40.058688424253305],[-75.196887332852356,40.058703848561429],[-75.196872479182971,40.058714589125316],[-75.196783002313083,40.058683121771175],[-75.196526530086331,40.058561799966299],[-75.196386334648224,40.058474665546697],[-75.195966495630458,40.058233553111045],[-75.195697085383088,40.058072142635261],[-75.195591180810965,40.058013533070721],[-75.195551724467592,40.057996563916184],[-75.195529021366895,40.05799741066248],[-75.195516326346237,40.058010516428439],[-75.19551572092675,40.058026594897918],[-75.19555685014366,40.058091810372332],[-75.195744186666161,40.05834918976786],[-75.195723125878288,40.05835275445299],[-75.195914989465209,40.05862898586917],[-75.196186030587739,40.059024893898048],[-75.196216803559778,40.058994768968851],[-75.196487999611122,40.059386645856641],[-75.196613754852493,40.05956629589582],[-75.196719911572629,40.059710666653295],[-75.196916464882648,40.059971917620139],[-75.197003872582926,40.060088107953611],[-75.197179316810931,40.060337174535604],[-75.197356470105149,40.060587630291934],[-75.197577876957368,40.060912767272271],[-75.197729948167236,40.061134537680537],[-75.197870433320119,40.061339958603014],[-75.197999331362652,40.061529052589073],[-75.198059398460273,40.061611680589259],[-75.198117068211289,40.061597320005163],[-75.198276823033339,40.061800486959413],[-75.198416926451614,40.061969747723417],[-75.198505686488843,40.062066829518386],[-75.198659676593124,40.062237727303099],[-75.198802833409289,40.06237221177269],[-75.19898093985924,40.062504789709436],[-75.199196160605098,40.062670330950148],[-75.199238389780021,40.062903241443351],[-75.199257490897935,40.063008645786667],[-75.199269783018266,40.063076459613434],[-75.199101700922142,40.06324233117698],[-75.19880709419968,40.063534124131913],[-75.198423637501762,40.063900753897023],[-75.197982470918973,40.064317892207477],[-75.197704712044853,40.064593965701441],[-75.197136491257794,40.065174428232822],[-75.196826574024698,40.065501599276509],[-75.19651247844439,40.065816168966727],[-75.196403645600412,40.065928085039076],[-75.196345331934737,40.065994672511714],[-75.196401850491853,40.066222795746647],[-75.196345841781138,40.066251481486418],[-75.196225355916013,40.066313190421099],[-75.196197963118308,40.066327235547881],[-75.196191032436118,40.066387820851503],[-75.196147021972322,40.066438292718217],[-75.196047283178046,40.0665526631078],[-75.19604280245521,40.066557798349208],[-75.196039603731435,40.066558971540353],[-75.195959675983161,40.066588069727914],[-75.195757845337766,40.066661572596452],[-75.195686835594032,40.066687435107291],[-75.195527190897877,40.066839414781548],[-75.19548154789166,40.066856830142108],[-75.195421863306464,40.066910450095911],[-75.194857514154563,40.067441942086909],[-75.194836358639591,40.06746239027445],[-75.194789987565812,40.067507273399208],[-75.194644469741775,40.067648087271131],[-75.194362659006458,40.067910889561716],[-75.194345654975649,40.067926752883601],[-75.194282910317497,40.067985968837739],[-75.194098550212416,40.068160010358078],[-75.194081553639222,40.068176045900991],[-75.194046705644638,40.068208954820356],[-75.194019708022566,40.068190632472124],[-75.193058484188825,40.069092507796441],[-75.192991290097538,40.069161900938781],[-75.192959754821018,40.069141717713443],[-75.192651438064416,40.069427247852168],[-75.19193597833295,40.07011129933688],[-75.191689110791714,40.070357451518518],[-75.191346776363005,40.070688307438701],[-75.190872878321215,40.07114382660474],[-75.190564023050214,40.071443521331027],[-75.190317614081692,40.07167725882757],[-75.189774252377802,40.072200332672743],[-75.189439020744402,40.072526021095825],[-75.189000873024412,40.072950425033454],[-75.189058304340705,40.072987449553935],[-75.189130012651901,40.07302912512602],[-75.189213592759927,40.073077030747669],[-75.189275222962848,40.073112346709024],[-75.189324140303825,40.073140383963214],[-75.189355043272329,40.073158107846389],[-75.189375818812934,40.073170027942858],[-75.18942942403163,40.073200766300552],[-75.189494784428078,40.073238245672613],[-75.189520983140767,40.073253333772193],[-75.189709112393814,40.073070756827541],[-75.190235269080787,40.07257566354825],[-75.190656409129105,40.07217391863913],[-75.190998205716923,40.071857235297756],[-75.191460048766771,40.071415628957588],[-75.19149631438863,40.071381872044498],[-75.191579961031792,40.071304007135971],[-75.191727800998819,40.071166402068137],[-75.191921687269129,40.070979316038489],[-75.192168221561644,40.070742038017151],[-75.192383519503821,40.070537705991541],[-75.192682418910621,40.070257288210257],[-75.192963020388461,40.069972899975873],[-75.193430110260678,40.069513681146049],[-75.193569717476691,40.069359069862969],[-75.193586755510225,40.069395279120819],[-75.193858859637658,40.069766006205789],[-75.193886018206967,40.069738589996071],[-75.194465480530141,40.069153929544306],[-75.19474857191544,40.068864293771249],[-75.195501228663446,40.068110164306624],[-75.195894391632706,40.067714860458508],[-75.19641684842675,40.068047891167609],[-75.196726487643531,40.067709557675364],[-75.196447292342313,40.067289633811519],[-75.196425382210364,40.067254475416398],[-75.196431025715953,40.06724773518377],[-75.196455560266173,40.067210562599541],[-75.196584444619134,40.067015223932302],[-75.196651978711543,40.06691290289826],[-75.196656895384635,40.066905438316532],[-75.196660533311515,40.066885930443583],[-75.196711157098292,40.066852298216432],[-75.196832238585444,40.066771849419666],[-75.197137190979689,40.066576753206483],[-75.197191650431336,40.06648864575542],[-75.197280890258241,40.066333769051461],[-75.197358328478344,40.06619937751443],[-75.197396110949796,40.06613407059757],[-75.19739811328688,40.066130596661402],[-75.197539275589733,40.066024761487974],[-75.197709676717437,40.066130373324711],[-75.197791507403764,40.066054372163769],[-75.197859412329024,40.06598186028247],[-75.197733788793869,40.065902561425098],[-75.197718609000148,40.065892977267595],[-75.197838120133213,40.06580631351396],[-75.197957428130124,40.065725009701588],[-75.19804991809491,40.065677051856824],[-75.19823857348679,40.065606212290533],[-75.198507775548791,40.065496075248781],[-75.198576723097858,40.065471880764747],[-75.198755721921245,40.06540904400164],[-75.19877942234443,40.065358764477153],[-75.198819022270825,40.065274767440556],[-75.1989875741926,40.0649172255293],[-75.199075991582816,40.064729825629669],[-75.199529914240955,40.064591625682482],[-75.199744269638529,40.064517792518679],[-75.199873973691339,40.064468857198626],[-75.20028338341119,40.064277873242901],[-75.200440065236194,40.064200936317746],[-75.200557644496811,40.064143191521637],[-75.200624471570009,40.064110367662181],[-75.200596205049521,40.063968672415477],[-75.200788666047686,40.063638843624361],[-75.200972763790816,40.063008756589248],[-75.201008062926292,40.062873771268436],[-75.20120657949893,40.062168975549099],[-75.201678114866255,40.061747134532418],[-75.20166230066431,40.061611015421832],[-75.201665854423581,40.061516413352329],[-75.201678058730934,40.061377353988085],[-75.201735727971027,40.061203559307899],[-75.20182087890899,40.061041101407803],[-75.20191444833695,40.060902066083848],[-75.202040935893791,40.060753032444396],[-75.202193143575144,40.060538467006133],[-75.202302109544391,40.060360444974599],[-75.202335795296449,40.060268313028665],[-75.202352376137767,40.060136473980549],[-75.202353511761103,40.059920360541206],[-75.202342351427959,40.059598564452976],[-75.202326562640494,40.05921414610917],[-75.202328899700063,40.05884261665414],[-75.202330235497541,40.058621143071996],[-75.202362912113998,40.058369984446522],[-75.202396779657889,40.058149210578051],[-75.202432357049759,40.057944566508013],[-75.202482054911314,40.057797413999396],[-75.202521524271688,40.057675029375886],[-75.202607607495381,40.057487574454996],[-75.202679018394448,40.057319447730322],[-75.202768622592814,40.057099932033921],[-75.202854771193529,40.056910698023245],[-75.202903059342333,40.056801017407302],[-75.20297963595273,40.056618715154116],[-75.203041151864397,40.0564664391446],[-75.203135265359052,40.056250583925589],[-75.203209951981705,40.05608289443807],[-75.203249298605556,40.055994577363521],[-75.203249512771364,40.055994088361857],[-75.203273901240863,40.056008574673264],[-75.203274515497483,40.056008953194834],[-75.203514305969179,40.055814177382928],[-75.203631193826325,40.055734594914902],[-75.203987557053622,40.055592436165441],[-75.204271447848015,40.055461177332369],[-75.204588320891673,40.055318141752721],[-75.204734869361033,40.055253504319396],[-75.205143712727633,40.055137520116247],[-75.205156011071665,40.055128610425122],[-75.205236417523949,40.055070273918915],[-75.205256033213075,40.055056054513351],[-75.205543615428368,40.054764090751448],[-75.205765604236149,40.054547503924319],[-75.206113605121004,40.054380136431263],[-75.206461736535346,40.054209209154244],[-75.206681151045501,40.054122968215957],[-75.206874603933827,40.054043361103055],[-75.206874760640332,40.054043278075781],[-75.20729811311962,40.054084767351384],[-75.207298614109177,40.054084820786322],[-75.207475611757019,40.054076230263369],[-75.208023306667528,40.054038337841035],[-75.208209860449315,40.054022811793303],[-75.208737797753955,40.053954098938945],[-75.209307616218481,40.053884528595056],[-75.209428994628695,40.05387114252008],[-75.209907339809149,40.053636981696336],[-75.210264675739168,40.053454016522913],[-75.210265202781599,40.053453749764934],[-75.210389887117799,40.05352541987709],[-75.210711236051324,40.053710127966845],[-75.211294292604109,40.05403205172356],[-75.210916069849375,40.054386327753548],[-75.210596710981974,40.054720469823458],[-75.210468589245508,40.054849822635411],[-75.210258364800893,40.055062043552731],[-75.210207992702308,40.055112894281969],[-75.21019323773929,40.055127779682302],[-75.210911803355572,40.055556329122041],[-75.211686148158762,40.05601060798223],[-75.21171831955823,40.056029470274957],[-75.211826249733349,40.056092786580734],[-75.211827514921723,40.056093286654672],[-75.21231924788907,40.055590986670886],[-75.213065886335983,40.054833977257594],[-75.213500925578899,40.054389851465295],[-75.213543239239286,40.054428267201295],[-75.213552947167898,40.054437085164693],[-75.213676296406163,40.054549121998122],[-75.214032788725703,40.054881885260684],[-75.214049003422659,40.054897025851652],[-75.214210342144227,40.055050429320389],[-75.214250585915408,40.055073287500178],[-75.214777602429763,40.055436416508805],[-75.214928725688239,40.055540525112761],[-75.214897477291871,40.055550005179995],[-75.214704350111901,40.055651324402341],[-75.214548960587081,40.055729016718757],[-75.214440610356732,40.055803885282103],[-75.213938994799349,40.056134013995198],[-75.213863455715654,40.056182572729426],[-75.213789783804614,40.056226001802486],[-75.213662716175406,40.056308180745425],[-75.213630033799291,40.056330630233923],[-75.21348420731384,40.056466482718093],[-75.213385512512573,40.056551861916375],[-75.213231014865244,40.056695224393366],[-75.213194035164008,40.056743347447195],[-75.213141400027254,40.056806549915635],[-75.213093497834819,40.056877602754916],[-75.213027798152439,40.056976583684779],[-75.212900866988363,40.057145034585481],[-75.21274396090169,40.057352730454291],[-75.212706980496762,40.057400853349691],[-75.212590222646597,40.057565645297302],[-75.212459686296114,40.057740453771707],[-75.212410108556284,40.057811469347044],[-75.212352112916633,40.057883585606213],[-75.212302646037188,40.05795200780986],[-75.212301044016755,40.058263564000306],[-75.212329212849113,40.058270001209785],[-75.212558364703696,40.058322198864374],[-75.212559251049527,40.058322389628927],[-75.212630265078388,40.058338569433026],[-75.212631218931591,40.058338804935751],[-75.212676540331159,40.05834911673228],[-75.212728204301015,40.058356694389261],[-75.212768906930805,40.058343433131782],[-75.212811490208082,40.058325064181474],[-75.212838221415169,40.058301281553057],[-75.212849615290438,40.058291148243619],[-75.212865944986902,40.058258017812221],[-75.212876671797517,40.058195176657293],[-75.21288916976728,40.058129778834683],[-75.212892178786717,40.058084403405076],[-75.212938275607613,40.05802656986377],[-75.212949930581388,40.05801691533545],[-75.213010901958924,40.057966361423517],[-75.213091753971213,40.05791021786959],[-75.2131481123768,40.057881832920131],[-75.213289574651242,40.057818016589273],[-75.21338711601291,40.057763507215142],[-75.213549689095373,40.05767310236547],[-75.213628913067296,40.057615634982078],[-75.213763822716231,40.057547790131046],[-75.213747096459883,40.05751721222542],[-75.213740302531576,40.057504768125831],[-75.213890246414849,40.057348430968922],[-75.2140650815724,40.057154002811721],[-75.214101485549193,40.057113805477847],[-75.214344622261024,40.056849674925914],[-75.214763894792,40.056678168190224],[-75.214907098476203,40.056612071011692],[-75.214955730041027,40.05659166785567],[-75.215239597867566,40.056812524332059],[-75.215621699416218,40.057109802749558],[-75.216162021688916,40.056954328272269],[-75.216309418934998,40.056911236026131],[-75.216534472954734,40.057174817622695],[-75.21656880836872,40.057215030324322],[-75.216632099616291,40.05728917965758],[-75.216591105507561,40.057589547769361],[-75.216590570480534,40.057593419272386],[-75.21658550060593,40.057628236461596],[-75.216556765877257,40.057825718749029],[-75.2165574450012,40.057835195101063],[-75.216561542106604,40.057891862694532],[-75.216596525198014,40.058376402265885],[-75.216892842009798,40.05871658216644],[-75.217028745214932,40.058872638892517],[-75.217000419172905,40.058958263315148],[-75.216975196426048,40.059016451394982],[-75.216966489579534,40.059036534591016],[-75.216925241171921,40.059131722012374],[-75.216912204524419,40.059211269291389],[-75.216866553691361,40.05935705786915],[-75.21685420538391,40.059418576040372],[-75.216865331853143,40.059524402042328],[-75.216846045707044,40.059592224704751],[-75.216808638948351,40.059709402743273],[-75.216808085542922,40.059711128566505],[-75.21675461962451,40.059886353389281],[-75.216712845606807,40.060018045690747],[-75.216689164286365,40.06008765991745],[-75.21645384377706,40.060357417921082],[-75.216359880391565,40.060450627378316],[-75.216274945732266,40.060529361313357],[-75.21611165625518,40.060680773446578],[-75.215931563463556,40.060836469328514],[-75.215871135326225,40.060884054469341],[-75.215763051410121,40.060951206027049],[-75.215491317418071,40.061048218024645],[-75.215481171848367,40.061051835183854],[-75.215068454568225,40.061198558157464],[-75.214798151330712,40.061302036854087],[-75.214517732392466,40.061451634553443],[-75.214342429163054,40.061613871385987],[-75.214055331432775,40.061897242297434],[-75.213944382917106,40.061996511751403],[-75.213903385632648,40.061972435899158],[-75.213853335027039,40.062011237295295],[-75.213819085906323,40.062031078155933],[-75.213756219571607,40.062054170642199],[-75.213663304920217,40.062074004038628],[-75.213636302409654,40.062076283070184],[-75.213602786851496,40.062079104884496],[-75.213600771796038,40.062078867589598],[-75.213512713537312,40.062068105645835],[-75.213419547340465,40.062045773774777],[-75.213418038564001,40.06204541881052],[-75.213418228640549,40.062045572572366],[-75.213588510592601,40.062192093895682],[-75.213622523368286,40.062223739941203],[-75.213667230213431,40.062282677214391],[-75.213692527682838,40.062368218689308],[-75.21396913942246,40.062320236335587],[-75.213989163041205,40.062332092124699],[-75.214983980007148,40.062920757714465],[-75.215003510130941,40.062901772083386],[-75.215068981372397,40.062838100468433],[-75.215161356767993,40.062748267211902],[-75.214594286466237,40.062407429467093],[-75.214895208633379,40.062112776297688],[-75.215137165487164,40.061870887749343],[-75.215373919997418,40.061634054794183],[-75.215582529739862,40.061432645005972],[-75.215833442492354,40.061175505027521],[-75.216016204395444,40.06099283460518],[-75.21625448290952,40.060759895246015],[-75.216628977014309,40.060379301260028],[-75.216882976164527,40.060128663926065],[-75.216937290674664,40.060150908660788],[-75.217380368776432,40.060332359168868],[-75.217381413863933,40.060332790356632],[-75.217380988137194,40.060299310722144],[-75.217410948127977,40.06026006502541],[-75.217437168547605,40.060235712372481],[-75.217466497942738,40.060208488285859],[-75.217367569842821,40.060165114128203],[-75.217309141914583,40.059594860773515],[-75.217295115182651,40.059457904507667],[-75.217848156106683,40.058468357920752],[-75.217868717100828,40.058514810572909],[-75.218078416025264,40.058988481980457],[-75.21823193570188,40.058909735411845],[-75.218308724967414,40.059001645198158],[-75.21869089335172,40.059459054791589],[-75.219340001108662,40.060251055159029],[-75.219759669462476,40.060738401593063],[-75.219769264654488,40.060749532970426],[-75.219797883918545,40.060778741008434],[-75.219786091287659,40.060784618011439],[-75.219372997052233,40.060990413646564],[-75.219290781760563,40.061031534458138],[-75.21973501550238,40.061745621622237],[-75.219954464924513,40.062107122433346],[-75.220112753895407,40.062362574978785],[-75.220264262723887,40.062607086769063],[-75.220597592353528,40.063150049242886],[-75.220804520760836,40.063488100754178],[-75.221256533725324,40.06421908666298],[-75.220872740801454,40.064542163189664],[-75.220741844167222,40.064652349849084],[-75.220728857386987,40.064663284997074],[-75.220432510733602,40.064925850406368],[-75.220076102027093,40.065225754477225],[-75.219831858382705,40.065439260255957],[-75.21954290802006,40.065682677114481],[-75.219293686281233,40.065894806292022],[-75.219285135656719,40.065902084534173],[-75.219047894461283,40.066104414736252],[-75.218810710673083,40.066307776482248],[-75.21865148114162,40.066443318829137],[-75.218495632905686,40.066577669559244],[-75.218345530806232,40.06670392959694],[-75.218246693438246,40.066782057850418],[-75.218107989012822,40.066861410540241],[-75.217720960225023,40.067083351842065],[-75.217634640044764,40.067132834333869],[-75.217351053699474,40.0672953708752],[-75.216689718417868,40.067669666175675],[-75.216592408297799,40.067724741393533],[-75.216558374395319,40.067744008513543],[-75.216033676726013,40.067433720898414],[-75.215871660732944,40.067339393312793],[-75.215857499595472,40.067330499015917],[-75.215802533596701,40.067296010292281],[-75.214908795700438,40.06818178498758],[-75.214847575087461,40.06824250321052],[-75.214808801365592,40.068280975443905],[-75.214310523074374,40.067981561155193],[-75.214121082281096,40.067893684329498],[-75.214016834471693,40.067857914366485],[-75.213779398640995,40.06779858544666],[-75.213386432567262,40.067730696203938],[-75.21298863847025,40.067657527277085],[-75.212935437289033,40.067646054280182],[-75.212877762965803,40.067554454923567],[-75.212849715964666,40.067509917408252],[-75.212791629187635,40.067413675061367],[-75.212648664844608,40.067472330448147],[-75.212440516340905,40.067570739882939],[-75.212292856322861,40.067665335592054],[-75.212216100159566,40.06774604940987],[-75.212201070999711,40.067789485300011],[-75.212208266893128,40.067831138805047],[-75.212209333833954,40.067837319791934],[-75.212231954139355,40.067859703704933],[-75.212264920287083,40.067874591833053],[-75.212299596078523,40.067888231081156],[-75.212448539911435,40.067894094396408],[-75.212476770740139,40.067896755861206],[-75.212663967025605,40.06791432062434],[-75.212895130631907,40.067937124759702],[-75.212916095124839,40.067939196809299],[-75.213218221501194,40.067971612934521],[-75.213472880013057,40.068018428093524],[-75.213770681424606,40.068076514928109],[-75.213836905497644,40.068098573356664],[-75.213945632990814,40.068148624949984],[-75.214018299231526,40.068177262175631],[-75.214118382361534,40.068234824558743],[-75.214429545572912,40.06841285883322],[-75.214386704357878,40.068494000736763],[-75.214382798083918,40.068501402735777],[-75.21405433025366,40.069028942660132],[-75.214401607026829,40.069241694645399],[-75.214406042030191,40.069244431526869],[-75.21453321775364,40.069180125883229],[-75.215084988956335,40.068895447166426],[-75.215263231727192,40.068789507693388],[-75.215337704148425,40.06883373871834],[-75.216100484992154,40.069286956281893],[-75.216252963995288,40.06913506935927],[-75.216400960200446,40.069000762779751],[-75.216407083895049,40.068995684623772],[-75.21681265923776,40.069288518408804],[-75.216813229892637,40.069288939140094],[-75.216976935018081,40.069153476164281],[-75.217002602235539,40.069144065197278],[-75.217065300492692,40.06912109596194],[-75.217264980453734,40.069039655547591],[-75.217550842679699,40.068924069717454],[-75.218194196103241,40.06867748136186],[-75.218194663796027,40.068677298852947],[-75.217811417395097,40.068169274188158],[-75.217903111610553,40.068129607386339],[-75.218124843446759,40.068033697628699],[-75.218422172854332,40.067969854368819],[-75.21898520962678,40.06785176747529],[-75.219261640322827,40.068108514730639],[-75.219818347547672,40.068639234130245],[-75.219863637813958,40.068683162899774],[-75.220086061712763,40.068890638136502],[-75.220289605882513,40.069088085468778],[-75.220323281033316,40.069120751780034],[-75.220474252915025,40.069263983583561],[-75.220532620122171,40.069319356054031],[-75.219912264576109,40.069744904271396],[-75.219729991956527,40.069869943419896],[-75.219928570234799,40.070006649461867],[-75.220407550483472,40.070336359277924],[-75.220449229434223,40.070295181295364],[-75.220471975036489,40.070272725496473],[-75.220604740899276,40.07014155443364],[-75.220718640181502,40.07025642099083],[-75.220721453637182,40.07025925077383],[-75.221095834706631,40.070634778435938],[-75.221148712156122,40.070576769170408],[-75.221175267789349,40.070547616185102],[-75.221454652054661,40.070240950819972],[-75.221558208198815,40.070342694776173],[-75.221673591516762,40.070456026163825],[-75.221794053366793,40.070580712679686],[-75.222180098022108,40.070964581470555],[-75.222276840531407,40.071060747252027],[-75.221344219371758,40.071704647161901],[-75.221645633773619,40.071891543938477],[-75.221774426931489,40.071973353330975],[-75.221379053876944,40.072388690878697],[-75.221462289403632,40.072436307301174],[-75.222125167288297,40.072815410640644],[-75.221606063785245,40.07283319124771],[-75.220812120493406,40.072850048695031],[-75.220351137300952,40.072867364733376],[-75.220350230301747,40.072867344768362],[-75.220350090853543,40.07286734169881],[-75.220121226967535,40.072860608905934],[-75.220120181326209,40.072860564263088],[-75.219750574576523,40.072852427079695],[-75.219749528129569,40.072852404039665],[-75.219393379504211,40.07284284562045],[-75.219392333057542,40.072842822577165],[-75.218985032682994,40.072826987297091],[-75.218983986236708,40.072826964250076],[-75.218897943275763,40.072825069200817],[-75.218652471660945,40.072816229671737],[-75.218651425214901,40.072816206621695],[-75.218411322705052,40.07281091763771],[-75.218410276259206,40.072810894585466],[-75.218123408635819,40.072801142000408],[-75.218122362190186,40.072801118945563],[-75.217698988596709,40.07279691814324],[-75.217589318944164,40.072801388708207],[-75.217347401667837,40.07281665429398],[-75.217094449867517,40.072828264992864],[-75.21696915455567,40.072832368945392],[-75.216387926066389,40.072868065935985],[-75.216383587214537,40.072868335182477],[-75.215856911874553,40.072900704694682],[-75.215787969234768,40.072904934564555],[-75.215714869363296,40.072909437619813],[-75.215250738595245,40.073369581509517],[-75.21558126753223,40.073575652025404],[-75.21598803067603,40.073827256753873],[-75.216491316838486,40.074138594038786],[-75.216779192184433,40.074328637929774],[-75.217449510307745,40.074750284607497],[-75.217187503825372,40.07501726834564],[-75.217182350198698,40.075022518397972],[-75.216590993628301,40.07562382682724],[-75.216283351732784,40.075936617544819],[-75.216003810773984,40.076220783435978],[-75.21595056792826,40.076274899155614],[-75.215754461351281,40.076474225517636],[-75.215770872226273,40.076483855948993],[-75.216024923607009,40.076633078432643],[-75.216015611281378,40.076642741727909],[-75.215548323741459,40.077127319346545],[-75.215597502381371,40.077126687452974],[-75.215741128993898,40.077110952624466],[-75.215873834592728,40.077088132839854],[-75.215930173245326,40.077075643886943],[-75.216143144691628,40.07699793077866],[-75.216283764668177,40.076942673439724],[-75.216415327202185,40.076890627435517],[-75.216559385516092,40.076862907948723],[-75.216718766761645,40.076844086410397],[-75.216810632423531,40.076837529328181],[-75.216959979910271,40.076847686696972],[-75.217155788344911,40.076870904231555],[-75.217284147092542,40.076904628188451],[-75.21740362604632,40.076936439921546],[-75.217908949127079,40.07643921959211],[-75.217965081063397,40.076383987245237],[-75.218195429751859,40.076163848068745],[-75.218537496327059,40.075836943348023],[-75.219484620668283,40.076409195033925],[-75.220141652171179,40.076806181375808],[-75.220912931529227,40.077278108988445],[-75.220802940099645,40.077373802386738],[-75.220439435792883,40.077690008402101],[-75.220769733882321,40.077908116077282],[-75.220877839152934,40.077979494217423],[-75.221223369941072,40.077674197952796],[-75.221246515625211,40.077653402289073],[-75.221360918887072,40.077550639924546],[-75.222464917062013,40.078210120666675],[-75.221941067189306,40.078773721243827],[-75.221712074361605,40.078981560318681],[-75.221282210564539,40.079356790362205],[-75.221270849354525,40.079366710827252],[-75.221326804499569,40.079408727291941],[-75.221327374461936,40.079409169606677],[-75.221592020022541,40.079185294907781],[-75.221659676842407,40.07912806093222],[-75.222330704012009,40.078873281769702],[-75.223114582200381,40.078571462250949],[-75.223115219949605,40.078571218588159],[-75.223957291038744,40.079123636287271],[-75.224208276900725,40.079285387495077],[-75.224536618167562,40.079648068487138],[-75.224537033856123,40.079648528118447],[-75.224560319757344,40.079674227984931],[-75.224134934088795,40.079934417944976],[-75.224146899776514,40.07995622188681],[-75.224147174391931,40.079956721666939],[-75.22457444008036,40.080735506718646],[-75.224942937604922,40.081402849618435],[-75.225336519647357,40.081876746451016],[-75.22572737791242,40.08236431312649],[-75.226467693573554,40.082890445603105],[-75.227828771645491,40.083852516292609],[-75.228085729948745,40.084034986157199],[-75.228029961424681,40.084092141456843],[-75.228008769825593,40.084120855134799],[-75.227997861787131,40.084173823934549],[-75.228007876560071,40.084204960351627],[-75.228018006001989,40.084214215064463],[-75.228059753939291,40.084252441198636],[-75.228183091278126,40.084361585221949],[-75.228213425757716,40.084387867795115],[-75.228613981242461,40.084734999697041],[-75.22869399160794,40.084807148471022],[-75.228824171967943,40.084913009081667],[-75.229077424410292,40.085074776969115],[-75.229451402653936,40.085295875863338],[-75.230516925818094,40.085920123682605],[-75.230538207502534,40.085932604893507],[-75.230547311616021,40.08593793199482],[-75.230565301292614,40.085934893531658],[-75.230650810202775,40.085859509494604],[-75.2308038089826,40.08571179892116],[-75.231117346627656,40.085394186124084],[-75.232151964512269,40.08437650629277],[-75.232999217811781,40.083539034344675],[-75.233056033545381,40.083482864628344],[-75.233186758333886,40.083353650828556],[-75.234608825449683,40.081951273445881],[-75.235615220695664,40.080957834934416],[-75.235917224385744,40.080659717233843],[-75.237248915444908,40.079341173439481],[-75.238323287071225,40.078271081256936],[-75.239534322737484,40.077070065305904],[-75.239867953294834,40.076806506884424],[-75.239876081086891,40.076800076542561],[-75.239531161122031,40.076586940330522],[-75.238905701980073,40.076195026882765],[-75.239321235506409,40.07580798411832],[-75.239512505401663,40.075621901265663],[-75.239512751653578,40.0756216489617],[-75.239710936739712,40.075687896774888],[-75.2399611602589,40.075795015354757],[-75.240099074316106,40.075856406124991],[-75.240235007770423,40.075935860665808],[-75.240392452131971,40.076035931801286],[-75.240423208775923,40.076067026242598],[-75.2404446881837,40.076100943619871],[-75.240452732954921,40.07612620014077],[-75.240451754521189,40.07612810959683],[-75.240422036163878,40.076186676415354],[-75.24042083050351,40.076189053028024],[-75.2406145711535,40.076020679037818],[-75.240633717612994,40.076000650031503],[-75.24122869344059,40.075361777128578],[-75.24122895531282,40.075361482815566],[-75.240790303337036,40.075181425603233],[-75.240598993914418,40.075102242893351],[-75.240373534025935,40.075073504754663],[-75.240269933722658,40.075059935851947],[-75.239853278643864,40.075002176397028],[-75.239851520687097,40.075001000950842],[-75.239664165602036,40.074873864927902],[-75.239631962367071,40.074852028772497],[-75.239577216842434,40.074814874399692],[-75.23902801074955,40.074795752919016],[-75.238776304698348,40.074793685908062],[-75.238775271105652,40.074793663322893],[-75.237938363005782,40.074769751600734],[-75.237937316523045,40.074769728726274],[-75.237802521210682,40.074767147133649],[-75.2378024508983,40.07476714559666],[-75.237227704653435,40.074683607577015],[-75.237084458848869,40.074658848984981],[-75.236872257557707,40.07454292201799],[-75.236752236516978,40.074472865392977],[-75.237002348920484,40.074278611229822],[-75.238384210238678,40.073290249874582],[-75.238746391164867,40.073034012383602],[-75.23903266974348,40.07283151189624],[-75.239021397903556,40.07256417420443],[-75.239003262416844,40.072499220180106],[-75.238952013628122,40.072315626392005],[-75.238944776075172,40.072289722445404],[-75.23898949813416,40.072257745007221],[-75.238991190581856,40.072256537719475],[-75.239218931960693,40.072093607790229],[-75.240546962713296,40.071143586710427],[-75.240640976336834,40.071078679858331],[-75.240737742966999,40.071000121779484],[-75.240839404761871,40.070909635082359],[-75.240962250194428,40.070790411530048],[-75.241004348612336,40.070739839096966],[-75.24100955425493,40.070725577456955],[-75.241016778807506,40.070705782767654],[-75.24100695037113,40.070669502456226],[-75.240938877373083,40.070637121249106],[-75.240761066277287,40.070550830694799],[-75.240693639652221,40.070561373102606],[-75.240620150636616,40.07055461922937],[-75.240488025707421,40.070501958815633],[-75.240460541311279,40.07048775546982],[-75.240367235920061,40.070439589849123],[-75.240363042794584,40.070437417890396],[-75.240204690017308,40.070368715254261],[-75.239242023001921,40.069930024196672],[-75.238993871257378,40.06981694188287],[-75.238846681411459,40.069748481230626],[-75.238686175111653,40.069678034608501],[-75.23863526375078,40.069664907291525],[-75.238577274668032,40.069661923595497],[-75.238507235334765,40.069682705934142],[-75.238427441421351,40.069725588073567],[-75.238298151335897,40.069809504250756],[-75.238296935317521,40.06981029306904],[-75.238060921583042,40.069968234364566],[-75.237928364961633,40.070052485989684],[-75.23778714229492,40.070142255796057],[-75.237787056325359,40.070142297164203],[-75.237449913055215,40.070356598020687],[-75.237108464550644,40.070586036846272],[-75.237159359185412,40.070629415240113],[-75.23724493234316,40.070702324136882],[-75.237571530036405,40.07099445022633],[-75.23754950397867,40.071008964765454],[-75.237523040382641,40.07102638708642],[-75.236875230502818,40.071453055365581],[-75.236527191804001,40.07167891571742],[-75.236169915779385,40.071913176565374],[-75.235942470712899,40.071931522297177],[-75.235634242979728,40.071956403671031],[-75.235636559682376,40.072134980409615],[-75.235619279117941,40.072299418885237],[-75.235604937838005,40.072384946164647],[-75.23556649295179,40.072518004946502],[-75.235512660938952,40.07264388311382],[-75.235428791673812,40.072796544616772],[-75.235386241948035,40.072859141590605],[-75.235306003344846,40.072974121903634],[-75.235242853473579,40.073049999167061],[-75.235130838540556,40.073178015130637],[-75.234960978199965,40.073359711142082],[-75.234709520488678,40.073632327666985],[-75.234544504310051,40.073803829895205],[-75.23435211281128,40.073990160344394],[-75.234159528678035,40.074181655265413],[-75.233987411017324,40.074303226894337],[-75.233831316168718,40.074414829126795],[-75.233671632707811,40.074502323129025],[-75.233380100572674,40.074650436168213],[-75.233066546356085,40.074789505869298],[-75.232914973368111,40.074839394282499],[-75.232785978139219,40.074882933092809],[-75.232496974659483,40.074962443746372],[-75.232348142575901,40.074998660348918],[-75.232213215357319,40.075021450270803],[-75.23200619777873,40.075059846088372],[-75.231795402280909,40.075079256837448],[-75.231723473169311,40.075086413136674],[-75.231674109624834,40.075091317644542],[-75.231427557878149,40.07511584389524],[-75.231172368295347,40.075127415041045],[-75.2310048942295,40.075123744353526],[-75.230726294505388,40.075103906349369],[-75.230508034882334,40.075083652504063],[-75.230294699484347,40.075051513088845],[-75.230155812836102,40.075000408970702],[-75.230079434918281,40.074950653688973],[-75.230034019674491,40.074910180864322],[-75.229969202544481,40.074941263809613],[-75.229688169783614,40.075075995635473],[-75.229687664528981,40.075075705247329],[-75.229296260310022,40.074857935643145],[-75.228604627502492,40.074466808739196],[-75.22854720844407,40.074388289680762],[-75.228389635678653,40.074118726666015],[-75.228361239371196,40.07404084430884],[-75.228299610594192,40.073835198965497],[-75.228287172857108,40.073749084793313],[-75.228282771287112,40.07362710270997],[-75.228288001290082,40.073546525393283],[-75.228309814282923,40.073440566063077],[-75.228373873661255,40.073266062610557],[-75.228527642803257,40.072907684958494],[-75.228761015842849,40.072363751471379],[-75.228856967331836,40.072127234722089],[-75.229621035281482,40.072011789131999],[-75.230034415532216,40.071952198859869],[-75.230506232422911,40.071883568327102],[-75.231255041568602,40.071577236414093],[-75.231520609672245,40.071466298895935],[-75.232149095522502,40.071210554085248],[-75.233102274704706,40.070551807702437],[-75.233106287276044,40.070549042142773],[-75.233114612947745,40.07054328154522],[-75.233116119644365,40.070543700169253],[-75.233440600638318,40.070633858077777],[-75.233546271917646,40.070621454409995],[-75.233624483698037,40.070541166872204],[-75.233916149412153,40.070243279187068],[-75.233670027167918,40.070039175384196],[-75.233538386453702,40.069928867459495],[-75.233406633918293,40.06981403034024],[-75.233272887612401,40.069700630625753],[-75.233159946153705,40.069601545472324],[-75.233031425484256,40.069485040662059],[-75.232889692741608,40.069373954086238],[-75.232737468330924,40.069258088389276],[-75.232607487690089,40.069151634999017],[-75.232469149111566,40.069042789113944],[-75.232334264049513,40.068933074475318],[-75.232232723193732,40.06885530693642],[-75.232040076699249,40.068684616678659],[-75.232069451038171,40.068620767262892],[-75.232080554184037,40.068613157497047],[-75.23134280817365,40.068009983277847],[-75.231673102291708,40.067780316951605],[-75.231672613113915,40.067779942230061],[-75.231621870633916,40.067741648913291],[-75.230922830803323,40.06716472254444],[-75.230894449587666,40.067146936450413],[-75.23089093385093,40.067146494475367],[-75.230850069994901,40.067141479299735],[-75.230843286867412,40.06714066566277],[-75.230796333709435,40.067141352706351],[-75.230739050629452,40.067179573884573],[-75.230599738556535,40.067260644413764],[-75.230458257683679,40.067339950835894],[-75.230248140913929,40.067462378275863],[-75.230054413162378,40.067564568042847],[-75.22984773777543,40.067654458792902],[-75.229575535777087,40.067763508682745],[-75.229449102711641,40.067798516851809],[-75.229297988800568,40.067836395553151],[-75.229129130617096,40.06787045291378],[-75.228857321948254,40.067909136765074],[-75.228687201472383,40.067917418995172],[-75.22843439936085,40.06792560308174],[-75.228144399914953,40.067912373570714],[-75.22793281024255,40.067893998698182],[-75.227788646655767,40.067865088636182],[-75.227575768408997,40.067820917290092],[-75.227425546371933,40.067774709840222],[-75.227169683476589,40.067684967872992],[-75.226926959106251,40.067602380276284],[-75.226447061193227,40.067408144901457],[-75.226106110650889,40.067263323644887],[-75.22583526449371,40.067156085585573],[-75.225021676400431,40.066808705689219],[-75.22501533974085,40.066806013031325],[-75.224900434689616,40.066757853616352],[-75.225306663407608,40.066229439833322],[-75.225400368358066,40.066113024101796],[-75.225543703494111,40.065983989110364],[-75.225624154237352,40.065923944680605],[-75.225718301771678,40.065855640735165],[-75.225816914148496,40.0657874131714],[-75.225976651040767,40.065698215043227],[-75.226158453362672,40.065616366926655],[-75.226321362663541,40.065561587530446],[-75.226443520399968,40.065521338876437],[-75.226612246457933,40.065490716343596],[-75.226775792374397,40.065478860154741],[-75.226867975492851,40.065463698766422],[-75.226879837705397,40.065445078897731],[-75.227067027328317,40.065125605912549],[-75.226724066683431,40.065007324151274],[-75.226723916869943,40.065007600169722],[-75.226556497698795,40.065307511029296],[-75.226332712681099,40.065328943240814],[-75.226332436996941,40.065328851591595],[-75.226089814892973,40.065238882405929],[-75.225815577967523,40.065146437846579],[-75.22579194888695,40.065136479060577],[-75.225682088580058,40.065087122046549],[-75.225546363593025,40.065012480605183],[-75.225448903128452,40.064942112478434],[-75.225263582357016,40.064805277372898],[-75.225147029200301,40.064670232316011],[-75.225145769578205,40.064668788274219],[-75.225084345508748,40.064578164401816],[-75.225083498532641,40.0645784250991],[-75.22493912682198,40.064623591013202],[-75.224874102242936,40.064643938233708],[-75.224874016956122,40.064643614704259],[-75.224781109461034,40.064320843086513],[-75.224774546586787,40.064197096757425],[-75.22476581552192,40.064071586381644],[-75.224762567644362,40.063978808021204],[-75.224786806641703,40.063867753376698],[-75.224821072728588,40.063727718738029],[-75.224910760136581,40.063539126545137],[-75.224982077054506,40.063423957231869],[-75.225054476745115,40.063339706790131],[-75.225224480248215,40.063154595636966],[-75.225415270433473,40.063011156073401],[-75.225479249860726,40.062973063050848],[-75.225638710431141,40.062890746647554],[-75.225842634357406,40.062814534355226],[-75.225989403407581,40.062773110534678],[-75.226214575294094,40.062726564673625],[-75.226452182773386,40.062706015790752],[-75.226677411430927,40.062700706999706],[-75.226678041048288,40.062700677578626],[-75.22693190813402,40.06272343788438],[-75.227243184858835,40.06276460041326],[-75.227396648091116,40.062783417211193],[-75.227516057208717,40.06281693376279],[-75.227986395226935,40.062966329301645],[-75.227987319840409,40.062966628904093],[-75.227988447734134,40.06296407861884],[-75.227988599914283,40.06296373868026],[-75.227994581082527,40.062966208940857],[-75.227995351438011,40.06296652588032],[-75.228011613189736,40.06294971886711],[-75.228112046441268,40.062755717316463],[-75.228122350053368,40.062735818853774],[-75.228199910431655,40.062632799463543],[-75.228212135696779,40.062613758568105],[-75.228225992647097,40.062592178440845],[-75.228226277144756,40.062584525333889],[-75.228228764329572,40.062517618939587],[-75.228228926105686,40.06251326708459],[-75.228224780856635,40.062504594140172],[-75.228233286225176,40.062495877183316],[-75.228252662805616,40.062476027367552],[-75.228123369817226,40.062407945145402],[-75.227695301591083,40.062202836979516],[-75.227519761434834,40.06211657489802],[-75.227263013210191,40.061994137745202],[-75.227277222426892,40.061974346727922],[-75.227835488155776,40.06119645918249],[-75.227882373937035,40.061137392936217],[-75.227942586837969,40.061080357220042],[-75.228009815104798,40.061014871863136],[-75.228074046216406,40.060969917413601],[-75.228110791668371,40.060943261622242],[-75.228215515791078,40.060890635503974],[-75.228318075054972,40.060838390655384],[-75.228543159113926,40.060723762064846],[-75.228645347508831,40.060671701608904],[-75.228693760691669,40.060647039691887],[-75.229057776217459,40.060471329537066],[-75.229271700113429,40.060366152109751],[-75.229296003858053,40.060354198421798],[-75.229512131711374,40.060622556984946],[-75.22954993888635,40.0606740411041],[-75.229654109803477,40.060804991668142],[-75.229758905027353,40.060936791943831],[-75.22987982446864,40.061087826991994],[-75.230112503656713,40.061374140132763],[-75.23036820059103,40.06125129646874],[-75.230495828773627,40.061190523721656],[-75.230533971362334,40.061233004912047],[-75.230886151342332,40.061415820369739],[-75.23112066532444,40.061536710459627],[-75.23118933911212,40.061572093258491],[-75.231579961904288,40.061775144903166],[-75.231646447966398,40.061809299166356],[-75.231744639048898,40.061858137077273],[-75.23184208206257,40.06190912539504],[-75.23191279823439,40.06194478856473],[-75.231966055769149,40.061973117930798],[-75.23201758357618,40.061999177605969],[-75.232452444700456,40.061773259814288],[-75.232856216237224,40.061573886465212],[-75.232898540818226,40.061552972693697],[-75.233129567242855,40.06181613543874],[-75.233159621545497,40.061849748467935],[-75.23386857951489,40.06141412147214],[-75.233716176703737,40.061248971167728],[-75.233022107799911,40.061206907963225],[-75.232546922390313,40.061093771940776],[-75.23202497590988,40.061070320269039],[-75.231875902276499,40.061053300561468],[-75.231786796124837,40.061035771337842],[-75.231599635642496,40.060999615560632],[-75.231397871214114,40.060942413810992],[-75.231196148248358,40.060866418788827],[-75.231039962253234,40.060789811644121],[-75.230909873212212,40.060719119327274],[-75.230784911486012,40.060630667168802],[-75.230725693094996,40.060588818661031],[-75.230666821594994,40.060538010138877],[-75.230600788031225,40.060481551185134],[-75.230527193778713,40.060402013236754],[-75.230351200851956,40.06018628625521],[-75.229979636315377,40.059708403559931],[-75.229805705561091,40.05968077360626],[-75.229752985800076,40.059619607441242],[-75.22943259613298,40.059222871578882],[-75.228985982386561,40.058675733769149],[-75.228723645765228,40.058340364892651],[-75.228407590290189,40.057947154679681],[-75.227756644275189,40.057127682977324],[-75.227979295693004,40.057027848900276],[-75.228331688696059,40.05686392265352],[-75.228652183929512,40.056716437682454],[-75.228748357056404,40.05665330357764],[-75.228778326669143,40.056628215326342],[-75.228794766285915,40.056590043257039],[-75.228775711324133,40.056578382508611],[-75.228774965682533,40.05657853823606],[-75.228638331595604,40.056607979239182],[-75.228637285396132,40.056607956279997],[-75.228520981246447,40.056606862601491],[-75.228519934244019,40.056606861247502],[-75.228502099886185,40.056606684284191],[-75.228501052883729,40.05660668293006],[-75.228452985118054,40.056605628001464],[-75.228268977334864,40.056567261566727],[-75.228116293727837,40.056527844380057],[-75.227915834490673,40.056451355583278],[-75.228240728539873,40.056305684734966],[-75.229355073324868,40.055802882476307],[-75.22956227198236,40.055712597560522],[-75.229842464075148,40.055590485648736],[-75.23011738812373,40.055470683007961],[-75.230603000605228,40.055259059452645],[-75.231028502361681,40.055073621532756],[-75.231228435293232,40.054986778380169],[-75.231663077909985,40.054797955329477],[-75.231886037629508,40.054701103010807],[-75.231941869939902,40.054676838506509],[-75.231874120684239,40.054571961917496],[-75.231813884432512,40.054492588594897],[-75.231715892358082,40.05437398371987],[-75.231647119511194,40.054300838258946],[-75.231560521632133,40.054214493494904],[-75.231467757677805,40.054131788654267],[-75.231398684789994,40.054076530187864],[-75.231220597630667,40.053943510016694],[-75.231117412064989,40.05387606807956],[-75.231022272707534,40.053853642216048],[-75.230948568008003,40.053836278617233],[-75.230916697625119,40.053818608702393],[-75.230777827204548,40.05374154435404],[-75.230562197771548,40.053652691023103],[-75.230341326314075,40.053584340654616],[-75.23011791996305,40.053524494596729],[-75.22986510467365,40.053474322982019],[-75.229679001090702,40.053432458245524],[-75.229505777488541,40.053404628549437],[-75.229297420154808,40.05336058019315],[-75.229067052563636,40.053307444897676],[-75.228728144326581,40.053229635691821],[-75.228415763114015,40.053159251650811],[-75.228287316261572,40.053128970069139],[-75.227900319273417,40.053022618906589],[-75.227591064211566,40.05292827168126],[-75.227463511658229,40.052873957640593],[-75.227270206195271,40.052785588132892],[-75.226755520281984,40.052568274568799],[-75.226255071040825,40.052328959124161],[-75.225407186714463,40.051941218449116],[-75.224928298639128,40.051722966675932],[-75.223777821746893,40.051182647063747],[-75.22318046595413,40.050906836315079],[-75.222249640595763,40.050467471687334],[-75.22103306351093,40.049903334384418],[-75.220433689563492,40.049622336844379],[-75.219627888299641,40.049245777021149],[-75.219173341941641,40.049034903061667],[-75.218973939312662,40.048930937179144],[-75.218741945693949,40.048802223226872],[-75.218554662720891,40.048672756000208],[-75.218443177231606,40.048570554344053],[-75.218261144918031,40.04840367756627],[-75.218125772220276,40.048263832541906],[-75.21806664363919,40.048190505400193],[-75.217975363262667,40.048074695712977],[-75.217900516716966,40.04797074851124],[-75.217815878151129,40.047827708259945],[-75.217723962914775,40.047628317704167],[-75.217658002925432,40.047487105421347],[-75.217622498070426,40.047333627028678],[-75.217588634421801,40.047185934968937],[-75.217570624978109,40.047065969221457],[-75.21756512122802,40.046962112393324],[-75.217565304166556,40.046505424881055],[-75.217564582001287,40.046433148021542],[-75.217629811658938,40.046364620798322],[-75.217567860910791,40.045459311737041],[-75.217569917915029,40.045276667119154],[-75.217578095389257,40.045007457990053],[-75.217595242219147,40.044447407999165],[-75.21759755197516,40.0443855189055],[-75.217614560900358,40.044080480754857],[-75.217647687311612,40.043695127951985],[-75.217661819786102,40.043413691996307],[-75.218030205017186,40.04342331358594],[-75.218031251009833,40.043423336641688],[-75.218032402884006,40.04339246681031],[-75.218130981249033,40.043384341221511],[-75.21854567570503,40.043345399946375],[-75.218759297469319,40.043307197418599],[-75.218980509469318,40.043245110507421],[-75.21924133135856,40.043139269437717],[-75.219344130591082,40.043084936246856],[-75.219419066323866,40.043045329523068],[-75.219438889517718,40.043032506244643],[-75.21958845097592,40.042935756894863],[-75.219577934475524,40.042928809195331],[-75.219307608340628,40.042750612941958],[-75.219307094226508,40.04275094489558],[-75.219156180993281,40.04284725774712],[-75.219051526824856,40.042898181065205],[-75.218908940153085,40.042948248653097],[-75.218688240897123,40.042996614598856],[-75.218473206413648,40.04301247262827],[-75.218305698327498,40.043012214625179],[-75.218024285191035,40.04301115040996],[-75.21802433899208,40.04300596995634],[-75.218027072443604,40.042697056364823],[-75.218020671224494,40.04269691526747],[-75.217969043314355,40.042695777258643],[-75.217958691770846,40.042691922564686],[-75.217918988035237,40.04267718732212],[-75.217881870257713,40.042644422433945],[-75.21788003229139,40.042642815984053],[-75.21785370289642,40.042594691721838],[-75.217822101768945,40.042487384510707],[-75.217762182386835,40.042334805866297],[-75.217696860865843,40.042226755252862],[-75.21765592118399,40.042179338690033],[-75.217567497577562,40.042076957737422],[-75.217536099350909,40.042054381169031],[-75.217443367888038,40.04198777928363],[-75.217299918228505,40.041914028672679],[-75.217194842581861,40.041867043037755],[-75.217061760890985,40.041816563760925],[-75.216882520983802,40.041747795192272],[-75.216716552183826,40.041674986115588],[-75.216580377545071,40.041607145188649],[-75.216450683803004,40.041516404902616],[-75.21633627435034,40.041418535019318],[-75.216177328864418,40.04124849471048],[-75.215969818250741,40.041003577485199],[-75.215789330359968,40.040812464519021],[-75.215672848807074,40.040701739610107],[-75.215607817852586,40.04064881270601],[-75.215474885229369,40.040560037841878],[-75.215400289703922,40.040524042173999],[-75.21522475717768,40.040439476206501],[-75.215073319796375,40.040367478157911],[-75.214926231997197,40.040298987080234],[-75.214780169649657,40.040203055988563],[-75.214710421047783,40.040156890037537],[-75.21460197034645,40.04007037087942],[-75.214579964074886,40.040061303117703],[-75.214579180783304,40.04006137232394],[-75.214550950863725,40.040064202727699],[-75.214523926265002,40.040066931788466],[-75.214462771069933,40.040089611504833],[-75.21438497823155,40.040133250569106],[-75.21438375241479,40.040133931694854],[-75.21430775563303,40.040176558890423],[-75.21429052036008,40.040186219148133],[-75.214080888591411,40.04030382077292],[-75.214051550468952,40.040320273125687],[-75.214050994989321,40.040320582518746],[-75.214047544097184,40.040322522767546],[-75.214026885863007,40.040337514312974],[-75.214026327909124,40.0403371370898],[-75.214011965690773,40.040327444203328],[-75.213621646811276,40.040064175720126],[-75.213284131386288,40.039831830202928],[-75.212719387722373,40.03946397542709],[-75.212759467677401,40.039445400975367],[-75.212792190659982,40.039430246377748],[-75.212874013622212,40.039392319641799],[-75.212897505520672,40.039381423768226],[-75.212993474709037,40.039336943793487],[-75.213008827998223,40.039329837943185],[-75.212945518169022,40.038897577954074],[-75.212521908593772,40.038618680196919],[-75.212035917729764,40.038285280390035],[-75.211978940778764,40.03824478016881],[-75.211909918879357,40.03819571014531],[-75.211881544559603,40.038175559385479],[-75.211892972314701,40.038162208608483],[-75.211546048354478,40.037943380963476],[-75.211434719330143,40.037863124553596],[-75.211181463033995,40.037668807991714],[-75.210946991684011,40.037473447372484],[-75.210868581373106,40.0373929738155],[-75.210795208360082,40.037422547120755],[-75.210777877187979,40.037394143769419],[-75.210730799622411,40.037317023438774],[-75.210723172432679,40.037304518322635],[-75.210699843411916,40.037266305615326],[-75.210407715456313,40.036808925009225],[-75.210096328958159,40.036315094787376],[-75.209639740918931,40.035594747265712],[-75.20947683300011,40.035340483779763],[-75.209375869558045,40.035184095569832],[-75.209334684736902,40.035082345432869],[-75.209261212503336,40.034942420133476],[-75.209490583364484,40.034781925024838],[-75.209446929609641,40.034537379247929],[-75.209375834808526,40.034083447409117],[-75.209328652927638,40.033841805829439],[-75.209311492205856,40.033710485549669],[-75.209308258292936,40.033685783348503],[-75.209234469797991,40.033719466675258],[-75.20901827201763,40.033818161966046],[-75.208694293074089,40.033966092262595],[-75.20828282691437,40.034150083550145],[-75.208281946548595,40.034150492944342],[-75.208235591430153,40.034171201953797],[-75.208235425174237,40.034170790120953],[-75.20810883914578,40.033856545848572],[-75.208061562423055,40.033735694287529],[-75.207891360452692,40.033006165225338],[-75.207592012674795,40.03177206964547],[-75.20756660820625,40.03174990215517],[-75.207519676943733,40.03175173742661],[-75.206042672548548,40.032407676710378],[-75.205591152242093,40.032603686982569],[-75.20552006763873,40.032635947495166],[-75.205078572842794,40.032029025409564],[-75.204887932284947,40.031765494268051],[-75.204590334412785,40.031355520242023],[-75.204237393398387,40.030872273557186],[-75.203759640521156,40.030219164926216],[-75.203738000124858,40.030190407172377],[-75.203722156131107,40.030169351755013],[-75.203924040229353,40.030108002982885],[-75.204562816402785,40.02985710543939],[-75.205861930510451,40.029300873283525],[-75.205885203807867,40.029275642708093],[-75.205871933634882,40.029232438513326],[-75.205547848814803,40.028794718431861],[-75.205503874112111,40.028776580049104],[-75.205401768970134,40.028636983397156],[-75.205362749466289,40.028581965899363],[-75.205187707901047,40.028331374864877],[-75.205183906525846,40.028325948587764],[-75.204999608014433,40.028072555421332],[-75.20486125645435,40.027903769808923],[-75.204387919909692,40.027230400388419],[-75.204280092119575,40.027085762610312],[-75.203976252487607,40.02669291933033],[-75.203826148255104,40.026497996785089],[-75.203691443290325,40.026342292838841],[-75.203529932444695,40.026201849280994],[-75.203258928214225,40.026033059118198],[-75.203006525814786,40.025917803993963],[-75.202845288603314,40.025864602416931],[-75.202642709128583,40.025813164956418],[-75.202478569821125,40.02578446433386],[-75.202417209439403,40.025777525035764],[-75.202416386696683,40.025776026435786],[-75.202184530735295,40.025749899298006],[-75.201946634945898,40.025747517873313],[-75.201743712039217,40.025761723706765],[-75.201523297951155,40.025792855614668],[-75.201066886030361,40.025870606526567],[-75.200406089646407,40.026001447357835],[-75.200153140472494,40.02605058531681],[-75.19974732119411,40.026127995648054],[-75.199477892897988,40.026166681250217],[-75.199252182560258,40.026189045189703],[-75.199058843003854,40.026197709870587],[-75.198731545804677,40.026180355153009],[-75.198490670253207,40.026157710696339],[-75.198236145331848,40.026098761003738],[-75.198010053259253,40.026031774011784],[-75.197755229784164,40.025931043318678],[-75.197437639654197,40.025755431889237],[-75.197174545270485,40.025562645063857],[-75.197174086350643,40.025562226707073],[-75.196987714986051,40.025391999572605],[-75.196662167827697,40.025079346334067],[-75.196486643585388,40.024896807599184],[-75.19617616121171,40.024582556994837],[-75.195845991483111,40.024260209063399],[-75.195816639440892,40.024230720451762],[-75.195699718467978,40.024113248887744],[-75.195675194230233,40.024088608711203],[-75.195674764212413,40.024088170267724],[-75.195582879804803,40.023995842997401],[-75.194991883645145,40.023402052286109]],[[-75.225766674241953,40.056340672861658],[-75.225775724038442,40.056418216713759],[-75.225837086426651,40.056730575737518],[-75.225192349261036,40.057190736432389],[-75.224586460934844,40.057608751202494],[-75.223582349225836,40.057720620004375],[-75.223500718482384,40.057729724345549],[-75.223500695158918,40.057729594990285],[-75.223473615963101,40.05757203435585],[-75.223458147032886,40.057482076652668],[-75.223457137399123,40.05748220491698],[-75.221738647230026,40.057684548363817],[-75.221656415270914,40.057695525756877],[-75.221656281456887,40.057695372345805],[-75.221404124128867,40.057406659833454],[-75.222719610085363,40.057012211123663],[-75.223591061300255,40.056749650818418],[-75.223676518811118,40.05673561113646],[-75.224298528602048,40.056663337819892],[-75.224504430583139,40.056640808899616],[-75.224783063329426,40.05661191878248],[-75.225066772628495,40.056557672025768],[-75.225353697508169,40.056473244322497],[-75.225765670348508,40.056340994084877],[-75.225766674241953,40.056340672861658]],[[-75.225424231579368,40.058140236941917],[-75.225581203856692,40.058216782782509],[-75.225736442390101,40.058288914177425],[-75.226359024393773,40.058584765992336],[-75.226603889922615,40.058702718870201],[-75.226917740176546,40.058909915050876],[-75.227204922937361,40.059117983506283],[-75.227407049683535,40.059259840197498],[-75.228105050097881,40.060137781005842],[-75.228308238903892,40.060390151827995],[-75.228308546375047,40.060390523478702],[-75.228361485053071,40.06045628658984],[-75.228325786890181,40.060477300888365],[-75.228321462831047,40.060479845001112],[-75.228057031002294,40.060610431072305],[-75.227901733781906,40.060693270919629],[-75.227786417542916,40.060785956706127],[-75.227716060621319,40.06082517684262],[-75.227690704455,40.060842149067398],[-75.227619094508626,40.060918093200222],[-75.227512426555265,40.061031243657347],[-75.227449805044628,40.06110987446867],[-75.227184070124324,40.061485981633993],[-75.227054863129766,40.061668687340791],[-75.227047255039622,40.06170507903866],[-75.227049876495343,40.061752101837669],[-75.227061051548262,40.061776311863937],[-75.227071013939764,40.061797878774229],[-75.226995251442091,40.061834533607701],[-75.226916190195567,40.061872768381178],[-75.226915749085435,40.061872994755589],[-75.226908711042455,40.061876401841268],[-75.226905384657002,40.061878001945118],[-75.226888878830252,40.061885985410186],[-75.226767377878744,40.061850941892018],[-75.22676645365388,40.06185066391172],[-75.226762737539019,40.061849595717135],[-75.22676234101877,40.061849758198562],[-75.226324035491203,40.062031489060288],[-75.225969573814325,40.06218148363304],[-75.225969293663525,40.062181134200046],[-75.225490325732835,40.061588988983637],[-75.225391756645138,40.061467126088772],[-75.22520581802101,40.061248126151007],[-75.225179556987783,40.061216610728522],[-75.224500940798222,40.060402198713739],[-75.224158699906269,40.059986751852186],[-75.223704123380145,40.059419721904163],[-75.223482608245575,40.059146041812845],[-75.223451345355187,40.059105683518546],[-75.22375767320402,40.058959080516061],[-75.223831046043813,40.0589239628573],[-75.224079069376771,40.058803689917809],[-75.224408678317744,40.058638394139173],[-75.224635518145107,40.058524970477372],[-75.224941214878697,40.058376783727105],[-75.225160614779313,40.058270404421606],[-75.225386101989884,40.058159073252384],[-75.225423733448579,40.0581404836812],[-75.225424231579368,40.058140236941917]]],[[[-75.205759842779827,40.014725113698631],[-75.20569269046598,40.014878189125007],[-75.20556903183865,40.015160051395085],[-75.205534333321182,40.015233024153218],[-75.205295078294839,40.015180799574864],[-75.20492001753496,40.015107692082751],[-75.204910074631258,40.015136950709689],[-75.203653618606424,40.015482778674858],[-75.202654361671563,40.015746611931966],[-75.202400045783889,40.015813531093627],[-75.202315194087078,40.015829778441223],[-75.20212357122648,40.016212084227483],[-75.201838750438398,40.016444860551054],[-75.201445866241315,40.016769082740517],[-75.201127496161632,40.017043572579389],[-75.201127466438336,40.017043615167815],[-75.201105923509985,40.017085617497919],[-75.201083283330647,40.017129720936111],[-75.201074192332513,40.017147412171411],[-75.200841033500666,40.0176293766973],[-75.200535629632327,40.018254966964243],[-75.200318249014444,40.018703745512774],[-75.200133553554565,40.018900743968082],[-75.199468366007352,40.019587620055162],[-75.19901175214963,40.020060133510334],[-75.198706121054045,40.020381822677898],[-75.198260346231706,40.020720500173695],[-75.197876385730993,40.02103821575632],[-75.197589554734591,40.021269349120182],[-75.197556877313033,40.021295678161124],[-75.196359771608826,40.022260294200564],[-75.196274090787412,40.022193722776763],[-75.196139212344022,40.022088939343085],[-75.196088170075697,40.022049292498338],[-75.196054791881366,40.02202336165324],[-75.195659117477277,40.022343040567591],[-75.195678241780016,40.022367281338177],[-75.195729076289354,40.022431726620646],[-75.195897694582598,40.022645523068967],[-75.195662072557866,40.022844407705271],[-75.195568039681589,40.022923781349569],[-75.195271614613958,40.023173962946849],[-75.195265294667323,40.023179122062267],[-75.195893791600156,40.023808695428919],[-75.195977483513161,40.023892537479171],[-75.195977900292945,40.023892954002918],[-75.196000840656893,40.023915928068838],[-75.196126299877065,40.024041613559589],[-75.19618913687394,40.024104565857158],[-75.196589037849066,40.024499545371974],[-75.197125822864834,40.025041638003238],[-75.197458253521333,40.025356823339891],[-75.197727670313938,40.02556738719796],[-75.197866732977161,40.025656921024648],[-75.198021473056954,40.025728050450859],[-75.198204455522344,40.025795516639242],[-75.198548134657756,40.02587517822252],[-75.198784787021282,40.025910687006316],[-75.199033703940813,40.02591911324145],[-75.199193181276868,40.025914009592164],[-75.199315262352215,40.025906637127136],[-75.199385708190533,40.025896851808888],[-75.19938688644514,40.025896685163154],[-75.199511910152538,40.025879337055954],[-75.199708978282231,40.025851981113703],[-75.2002580523462,40.025751812661845],[-75.200761714999643,40.02566359181467],[-75.201107281430026,40.025593465984556],[-75.201393873571959,40.025546510612969],[-75.201680531332386,40.025498139613561],[-75.201851570010064,40.025484641917835],[-75.202005049405514,40.025489484434615],[-75.202452589244416,40.025511557043394],[-75.202478835719702,40.025422349794404],[-75.202095519976595,40.025321631838899],[-75.20187630762706,40.025276560750086],[-75.201673686566778,40.02525417075816],[-75.201537274451027,40.025248912753391],[-75.201406341928191,40.025252722258514],[-75.20125466213706,40.025267228279397],[-75.201070774756943,40.025287734418718],[-75.200836512071575,40.025333919717909],[-75.200536698001514,40.025393732112292],[-75.20049387355327,40.025402286080798],[-75.200340099127459,40.025435753784706],[-75.200337707263827,40.02543628002617],[-75.199972236754036,40.025515831168853],[-75.199971908271877,40.02551565268412],[-75.199888124533388,40.025471567569127],[-75.199857651155682,40.025455550381288],[-75.199573214071705,40.025305870496396],[-75.19965003371162,40.025290562871923],[-75.200552589195112,40.025110726384234],[-75.200619946236557,40.025097310991782],[-75.200632670088766,40.025094760699659],[-75.200633288528934,40.025094645585163],[-75.20091590738177,40.025192447707369],[-75.200916512581102,40.025192653955813],[-75.201388283335802,40.024994151506],[-75.201433917210778,40.024995507530384],[-75.201434948861845,40.024995530425372],[-75.201513809962194,40.02499790222047],[-75.201543763487805,40.024998803004301],[-75.201703401859646,40.025004577311655],[-75.201932416697588,40.025020836821525],[-75.202074306430575,40.025035142139693],[-75.202279492830968,40.02506651278788],[-75.202455553663313,40.025099469644317],[-75.202465139897342,40.025073442381355],[-75.202611856689657,40.024675099094623],[-75.202624286457123,40.02464134662435],[-75.202624347913456,40.024641176796969],[-75.202636777668502,40.024607424325332],[-75.202763550480853,40.024592127993522],[-75.202805691190122,40.024587655793248],[-75.202882834181992,40.024578553917017],[-75.202991875228136,40.024572433597157],[-75.202785234740972,40.024369389919009],[-75.202858869627519,40.023801216116581],[-75.203012153340993,40.023731968941398],[-75.203033316206458,40.023722419159739],[-75.203053101491292,40.023682650708373],[-75.203077321392612,40.023634012923146],[-75.2033063988831,40.023183235294375],[-75.203491733153484,40.022814175012662],[-75.20381181030848,40.022184440738791],[-75.203991157295732,40.021819731293057],[-75.204015738630957,40.021784510976914],[-75.204031423690978,40.021753576808017],[-75.204021767796661,40.021673978955661],[-75.2041396520668,40.021425266748714],[-75.204229033203688,40.021366916249129],[-75.204231661463993,40.021365300452537],[-75.204327211935393,40.021306528929372],[-75.204374390881725,40.021259558561631],[-75.204375506067777,40.021258446217573],[-75.204387805835466,40.021224776298197],[-75.204388473689193,40.021222967473314],[-75.204388520314595,40.02122172422186],[-75.204390064725089,40.021180542980829],[-75.204374563186207,40.021128814242786],[-75.204311286191228,40.021033566624254],[-75.204207806109125,40.020848045482737],[-75.203973093065031,40.020455490582279],[-75.203931591711964,40.020386063540926],[-75.20383374214137,40.020217509305446],[-75.203650403831745,40.019901657211967],[-75.203431489627704,40.019539273691095],[-75.203405665496931,40.01937557794826],[-75.20337045772645,40.019229545489964],[-75.203291933916177,40.01884347742125],[-75.203259543303531,40.01869973917956],[-75.203622839317958,40.01854467211195],[-75.203543172719549,40.018431896419393],[-75.203389737172955,40.018214714420466],[-75.203385498100829,40.01820869811241],[-75.203401303362128,40.018201690142917],[-75.204062965280116,40.017907944463516],[-75.204064271084448,40.017907372446679],[-75.203811072966516,40.017547017978742],[-75.203806663208269,40.017540741115205],[-75.204115128359746,40.017410696708964],[-75.204152044245347,40.017395124141622],[-75.204343297966844,40.017314487146933],[-75.204453297105388,40.017479341456408],[-75.204945382882414,40.017254521726102],[-75.204952693224996,40.017265325501342],[-75.204990636589088,40.017321327687753],[-75.205017312237032,40.017311298805133],[-75.205060275051551,40.017292962349543],[-75.205381205133619,40.01715600358699],[-75.205716332778294,40.017043688319831],[-75.206720017693513,40.016707279431458],[-75.206957048154564,40.016625399598063],[-75.207039709774705,40.016596850294391],[-75.207160536065672,40.016555113902605],[-75.207186133805862,40.016546283319123],[-75.207188155899274,40.016545576662871],[-75.207182755705645,40.016524002408147],[-75.207118362750549,40.016267109803032],[-75.207069324541905,40.016071468563297],[-75.207026855049534,40.015915042936015],[-75.206988617431591,40.015753668101624],[-75.206968134726452,40.015657245999591],[-75.206936714007014,40.015509410111193],[-75.206932027487184,40.015487401145222],[-75.207105271867249,40.015096956661807],[-75.206850653314191,40.015025792995459],[-75.206537560447288,40.014938293946201],[-75.206491431036667,40.014925386080662],[-75.206414788013063,40.014903970734096],[-75.206350305354079,40.014885292571037],[-75.206201137178695,40.014838992099669],[-75.206129629757456,40.014817154237846],[-75.206019051708623,40.014789515898187],[-75.205759842779827,40.014725113698631]]]]},"properties":{"OBJECTID_1":64,"OBJECTID":7,"ASSET_NAME":"Wissahickon Valley Park","SITE_NAME":"Wissahickon Valley Park","CHILD_OF":"Wissahickon Valley Park","ADDRESS":"NA","TYPE":"Land","USE_":"Park- Regional/Watershed","ACREAGE":2042.063584,"ZIPCODE":"19128","ALLIAS":" ","GLOBALID":"73bcfbf1-abf9-4d06-8f38-3ad74635b0a7","Shape_Length":169351.01864321128,"Shape_Area":88949106.382758111}},{"type":"Feature","id":65,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.226251131916086,39.981857193222659],[-75.226238623493657,39.981841711115891],[-75.226175200197048,39.981781082088538],[-75.226095936359471,39.981720103762541],[-75.225995913151863,39.981664347817087],[-75.225990258570476,39.981661509652113],[-75.225951463122399,39.98164203280227],[-75.225941211805946,39.981636886093654],[-75.225910861238205,39.981627168962675],[-75.225817414848919,39.981597250359798],[-75.225709702804096,39.981570491251809],[-75.225503073366852,39.981524132700194],[-75.225295537070025,39.981502145641826],[-75.225196230258817,39.981492991748233],[-75.225063294152449,39.981495783054591],[-75.224961355696351,39.981496582950811],[-75.22486102306523,39.981500058013793],[-75.22476092192403,39.981506284325626],[-75.224697219360806,39.981513720524056],[-75.224545774807083,39.981531400219893],[-75.224504162390801,39.98153625721433],[-75.224335566963418,39.981555937853003],[-75.224184320374391,39.981586397590725],[-75.224116038978764,39.981605118614198],[-75.223758286290575,39.981704883858541],[-75.223757043618448,39.981705230419117],[-75.223292260926513,39.981536457982195],[-75.221764234863784,39.98097143493429],[-75.221297459284884,39.98079564196582],[-75.219901284462864,39.980278795379469],[-75.219148513596579,39.979999124089851],[-75.219009977922894,39.979947578878487],[-75.21834215481995,39.979699101313983],[-75.217857359541497,39.979521154811842],[-75.21661322312616,39.979058145220428],[-75.216132832314258,39.978883771730281],[-75.214975862119971,39.978452286148773],[-75.21397515234672,39.978081734729699],[-75.213954593992753,39.978073793094239],[-75.213816399259514,39.97802041002852],[-75.213807722030353,39.978017056646891],[-75.213802483343102,39.978015239780355],[-75.213647532267672,39.977961501504204],[-75.213646757616985,39.977961233003811],[-75.213516265451133,39.977908900984048],[-75.21334331661717,39.977839542062547],[-75.213047039402056,39.977732777885059],[-75.213039422816479,39.97773003354223],[-75.213038388415569,39.977729633155128],[-75.212867534141012,39.977663513851383],[-75.212446827340628,39.977511470687212],[-75.21233350837511,39.977470516450161],[-75.212009072257374,39.977350383062259],[-75.211838498128131,39.977287222764751],[-75.211437808166181,39.977138851316113],[-75.211405240783563,39.977126822407428],[-75.211117603641199,39.977020579414337],[-75.210459438067986,39.97677747344941],[-75.210425495600376,39.976764925481341],[-75.210168806095325,39.976670029177058],[-75.209391743939534,39.976382749182626],[-75.208047010094077,39.975887800980068],[-75.206970618720916,39.975484150005343],[-75.206954343146663,39.975478064351734],[-75.206470371341609,39.975297099831643],[-75.206469022671456,39.975296618535545],[-75.205460240851011,39.974936526617448],[-75.204808281141595,39.974692243719581],[-75.203726105233457,39.974287281675409],[-75.203714392268267,39.974282897875248],[-75.203424640344522,39.974319774007036],[-75.20318984664263,39.974349655602431],[-75.20311818767847,39.974356819354178],[-75.202899997589512,39.974382671965841],[-75.202900566195368,39.974384373069967],[-75.202898803463256,39.974384566403003],[-75.202443574891646,39.974434431965804],[-75.202163954487034,39.974466328364848],[-75.201284385444282,39.974564254789549],[-75.200900698994189,39.974600185224858],[-75.200174533507621,39.974668182582555],[-75.199335743582708,39.974765888460581],[-75.19869897376114,39.974838806233166],[-75.198689617286547,39.974782415975561],[-75.198669822090579,39.974663124150943],[-75.19866888456977,39.974658245982859],[-75.198666051256339,39.974643509203553],[-75.198504126136982,39.973801290263168],[-75.198431959608087,39.973399128894577],[-75.198265666445309,39.973501066013462],[-75.198001134086411,39.973696716779642],[-75.197506164368122,39.974093171890054],[-75.197286206289618,39.974266956748671],[-75.197265911427465,39.974249964602237],[-75.197247765847436,39.974234771821052],[-75.197055872454257,39.974350873735631],[-75.196823822003566,39.974508951780756],[-75.196573413021014,39.974670744785556],[-75.196393139824295,39.974791225413938],[-75.196188719607605,39.974931650078155],[-75.196202737524459,39.974930225801735],[-75.196287505742745,39.974921611918631],[-75.196202571814808,39.974930334739781],[-75.196188535668981,39.97493177663064],[-75.196188719607605,39.974931650078155],[-75.19618100998207,39.974932433569698],[-75.195847205723155,39.974971746783119],[-75.195717341836101,39.974987040364582],[-75.195716100781752,39.974986315360773],[-75.195697204177634,39.974975277276897],[-75.195679784999101,39.97496226012737],[-75.195685078109889,39.97494056276598],[-75.195692964446252,39.974929256776299],[-75.195927316204362,39.974769138209041],[-75.196432965641819,39.9744187227259],[-75.19684576481599,39.974096665409782],[-75.197143289704584,39.973843802040371],[-75.197291669555412,39.973711620359509],[-75.197394478215884,39.973596795415588],[-75.197550182428174,39.973424591461132],[-75.197708065124374,39.973234064244693],[-75.197830829741989,39.973024959995932],[-75.197895739013035,39.972877847493379],[-75.197971432558006,39.972706294434538],[-75.19802041950139,39.972595272567503],[-75.198060959055169,39.972452557330655],[-75.198096727643048,39.972294907219101],[-75.198110299598468,39.972092559200817],[-75.198110730717445,39.971882456809283],[-75.198102721920094,39.971646734014136],[-75.198101518258326,39.971611286883451],[-75.198043403569301,39.971330993315874],[-75.197925068362821,39.970976669870716],[-75.19778364521224,39.970679502568984],[-75.197599312462231,39.970408155805664],[-75.197446251715306,39.97020697648513],[-75.197280108382429,39.970021553723591],[-75.197070970466527,39.969840495481144],[-75.196915795137372,39.96971942640694],[-75.196706543922247,39.969565141056734],[-75.196523329884883,39.969454131641584],[-75.196326864702314,39.969353570619262],[-75.196059689397856,39.969236253456224],[-75.195858531170373,39.969149108559144],[-75.195612945024919,39.969052937283415],[-75.195335790654681,39.968962951733957],[-75.19508831838931,39.968897163427336],[-75.194623915753766,39.968781104056369],[-75.194045257849297,39.968636610888886],[-75.19392572490068,39.968603750001222],[-75.193264790069861,39.968442061373956],[-75.192620991348676,39.968286930815168],[-75.192333625885368,39.968219922943923],[-75.192326225726546,39.968218197444152],[-75.192325337279001,39.968215793572504],[-75.192275908613652,39.968082080483093],[-75.191203846414297,39.967819655870358],[-75.190142323936072,39.967546543178635],[-75.190073923395289,39.967652679599098],[-75.190029159496149,39.967722139781053],[-75.189894337543024,39.967931339132917],[-75.189865197264226,39.967922578072361],[-75.189654452341003,39.967831722130768],[-75.189487106179939,39.967760841048033],[-75.18934510126266,39.967700536362223],[-75.189205548617068,39.967641319682279],[-75.1890681133155,39.967583346624743],[-75.189025785799998,39.967565416976633],[-75.188932515277102,39.967525908158805],[-75.188751387556664,39.967449480791224],[-75.188594268584367,39.967381417957888],[-75.188468763103231,39.967325557541869],[-75.188319589638652,39.967256102140858],[-75.188138511140593,39.967167941928281],[-75.18797000516463,39.967080174777493],[-75.187730376720793,39.966946146195987],[-75.187620125963207,39.966879170035511],[-75.187439818916474,39.966762134130086],[-75.187288627262319,39.966658299289215],[-75.187247288306835,39.9666287499956],[-75.187181099285695,39.966581438154513],[-75.187167055140975,39.966571398964703],[-75.187036659778741,39.966475629198349],[-75.186912233008499,39.966381727048258],[-75.186908956279666,39.966379253561186],[-75.186881586313689,39.966359383070838],[-75.1867081406305,39.966233461198989],[-75.186700247891835,39.966227731048242],[-75.186564132391851,39.966129977745361],[-75.186548636555429,39.966118849157965],[-75.186528355843635,39.966104284433882],[-75.186520319511658,39.966098357344748],[-75.186517192846736,39.96609603496421],[-75.186428212579827,39.966030276155657],[-75.186418371076456,39.966023003163095],[-75.186406785888465,39.966014616305699],[-75.186335822626063,39.965963245449373],[-75.18631409756938,39.965947518546912],[-75.186177196985753,39.965845092599857],[-75.186175054856477,39.965843459857318],[-75.186033868925392,39.965736536539048],[-75.186030282895203,39.965733820950042],[-75.185954450417384,39.965677697229339],[-75.185853333310561,39.96560144656916],[-75.185788849348683,39.965551917656938],[-75.185653844454592,39.965445099543643],[-75.185648633612701,39.965440976290473],[-75.185459687179247,39.965282008323641],[-75.185316877230974,39.965161092022704],[-75.185275484159391,39.965126043704586],[-75.185208164592183,39.965070043976802],[-75.185111499410652,39.964982922338699],[-75.185051286732175,39.96492694983629],[-75.185034530920944,39.964911059857975],[-75.185011841351013,39.964889541061773],[-75.184958154389534,39.964838626700924],[-75.184949625765796,39.96483011520381],[-75.184900206560528,39.964780793703163],[-75.184855679055318,39.964736355997239],[-75.184791915265066,39.964674710483884],[-75.184784859148081,39.964667888853313],[-75.184766936435551,39.964650561761559],[-75.184721866485646,39.964605888421268],[-75.1846592520793,39.964538680459398],[-75.184529861386224,39.964397679584543],[-75.184506540478353,39.964371492844563],[-75.184478771267365,39.96434031234466],[-75.184428834867234,39.964284240401931],[-75.184390002603692,39.964240072210131],[-75.184358808065184,39.964209709787994],[-75.184357828876998,39.964208756247032],[-75.184353831890746,39.964206849530335],[-75.184322394499645,39.964191847502242],[-75.184313740406409,39.964187716565128],[-75.184296179832316,39.964183471156417],[-75.184259539764341,39.964182830207498],[-75.184241749614316,39.964186461697636],[-75.18416998361262,39.964211435727492],[-75.184098150071733,39.964237607448389],[-75.18401974194019,39.964265725137338],[-75.184021655302601,39.964268017752111],[-75.184036635373133,39.964285959420309],[-75.184092181322413,39.964350838229144],[-75.184139247963174,39.964403984536375],[-75.184169248960274,39.964436495366812],[-75.184212641212795,39.964492434595911],[-75.184239157262041,39.964522721266555],[-75.184273013764326,39.964547680418391],[-75.184361944556386,39.964615946495663],[-75.184561764690343,39.964769333567453],[-75.184610075462132,39.964789551222431],[-75.184611819234817,39.964813576012567],[-75.184614183711787,39.964846156260727],[-75.184648948060243,39.964894307781563],[-75.184676330064761,39.964925300274643],[-75.184705470805511,39.964956976305146],[-75.184729340229651,39.964986474762192],[-75.184753955484695,39.965019851619701],[-75.184772991801893,39.965059197274243],[-75.184796632989404,39.965094741799227],[-75.184829540160408,39.965144824049773],[-75.184849948438341,39.965171498818279],[-75.184876736978339,39.965194583337357],[-75.184914155699545,39.965219707521761],[-75.184959075665049,39.965235215317939],[-75.185019787099435,39.965257856223097],[-75.185062746012989,39.965278040531039],[-75.185106088149126,39.965311707999135],[-75.185125603935802,39.965338361862742],[-75.185148423534386,39.965372041772468],[-75.185176359115005,39.96541201606906],[-75.185194247289587,39.965434515018046],[-75.185219010240644,39.965463990089482],[-75.185244784502913,39.965490312600863],[-75.18526396531017,39.965525842011267],[-75.185283338744682,39.965556269698354],[-75.185305460752886,39.965584827954693],[-75.18534505957318,39.965623087895437],[-75.185376839861704,39.96565576699998],[-75.185404371397567,39.96568281532079],[-75.185431201974396,39.965704827537778],[-75.185464539088088,39.965719905039009],[-75.185544260855607,39.96575897610164],[-75.185675486493807,39.965851892877801],[-75.185807521046556,39.965947058474534],[-75.185876849511843,39.966001431339237],[-75.185963367293681,39.966073223684674],[-75.186041767917587,39.966133635019169],[-75.186021376710485,39.966173750035416],[-75.186014619754815,39.966187041211917],[-75.186070628739458,39.966226835299054],[-75.186166017972113,39.966304623718891],[-75.186283489715407,39.96638718706523],[-75.18639779226281,39.9664554056762],[-75.186466669216003,39.96649834146573],[-75.186528293514954,39.966536832675331],[-75.186578742137314,39.966576502272929],[-75.186619814552671,39.966618816773945],[-75.186663225827033,39.966648336010607],[-75.186723642894322,39.966669671041181],[-75.18676536126442,39.966694869918278],[-75.186779059556969,39.966725153429849],[-75.186801704799365,39.966764201807443],[-75.186830340408065,39.966791963699364],[-75.186895456466914,39.966836242402337],[-75.186944052257033,39.966875870439956],[-75.186966134723676,39.966880646214776],[-75.187021474286823,39.966889019262332],[-75.187291748905622,39.967052080508189],[-75.187296449005018,39.967075025178474],[-75.187299509910886,39.967092222638129],[-75.187381472109649,39.967132595707533],[-75.187414406486511,39.967144751558607],[-75.18746418648972,39.967153000220534],[-75.187505959222079,39.967176772830172],[-75.187520285078449,39.967175964704168],[-75.187528952392952,39.967175476205306],[-75.187556877735858,39.967173900487758],[-75.187578467443984,39.967172682433336],[-75.187615109600884,39.967184921028874],[-75.187633054115921,39.967201023658447],[-75.187626262743336,39.967209582954844],[-75.187625263246872,39.967210841869786],[-75.187620697387075,39.967213113164547],[-75.187592087289929,39.967227347206695],[-75.187529729141815,39.967284365245398],[-75.187547566048821,39.967303320784367],[-75.187589178671118,39.967331372283788],[-75.187622328369571,39.967337823183087],[-75.187687261097608,39.967337845135795],[-75.187721942474042,39.967352895207107],[-75.187786820227416,39.967354343975643],[-75.187828753413058,39.967373837547221],[-75.187873588610458,39.967414808394608],[-75.187937444364721,39.967443356442843],[-75.187979461956388,39.967445493894502],[-75.18798743980804,39.967445899985087],[-75.188001330047996,39.967448632949456],[-75.188061102304943,39.967460392241421],[-75.188146607684445,39.967520791303613],[-75.188171001458272,39.967547067874875],[-75.188186931547818,39.967567407934119],[-75.188348598662188,39.967653202913645],[-75.188481551863134,39.967723760291591],[-75.188503946305701,39.967735644481756],[-75.188507044820852,39.967737288617471],[-75.188563630740035,39.967691884955833],[-75.188564845514705,39.967690910151639],[-75.188595511641225,39.967703576346189],[-75.188619212382207,39.967722462585101],[-75.188674760479614,39.967766726669026],[-75.188712881189034,39.967788990099855],[-75.188770237466713,39.967793125704489],[-75.188801908015463,39.967784681992349],[-75.188824585088497,39.967778636036705],[-75.188989210934722,39.967840837428376],[-75.189036333866852,39.967866345284982],[-75.18909648065447,39.967898904071163],[-75.189330578716792,39.967988350455215],[-75.189456941572473,39.968033133992662],[-75.189528302083289,39.968058425667742],[-75.189598830433127,39.968091008613861],[-75.189794531404814,39.968181420849689],[-75.189856121365835,39.968198323057493],[-75.189862470427855,39.96820006581131],[-75.189928521603022,39.968231083612288],[-75.189967866394142,39.968252515260687],[-75.19000987893331,39.968274221755706],[-75.190204575530174,39.968376305953598],[-75.190281024679706,39.968416389903375],[-75.190317829138834,39.968437092603672],[-75.190368227764608,39.968465441766682],[-75.19041360262402,39.968492148927808],[-75.190472690115342,39.968540328450374],[-75.190541399427104,39.968596351406028],[-75.190614806618839,39.968656205677831],[-75.190651196129423,39.968685876660473],[-75.190693647389253,39.9687286798857],[-75.190759946750546,39.968795529528812],[-75.190795972130715,39.968831854398275],[-75.190833449328778,39.968871232717774],[-75.190861335231801,39.968918961195016],[-75.190921003412257,39.968960261607535],[-75.190984886763687,39.969008539699601],[-75.190994963347279,39.969016155400368],[-75.191004335572302,39.969020522573139],[-75.19104966036106,39.96904164300016],[-75.191149734170452,39.969093836569336],[-75.191199433994811,39.969139981801021],[-75.191201718399313,39.969142102359939],[-75.191268264253807,39.969197830631963],[-75.191306391262401,39.969226933760197],[-75.191353024719149,39.969262530914293],[-75.191414191796241,39.969325175130848],[-75.191472710390428,39.969385107688545],[-75.191486681106539,39.969408258863218],[-75.191505280378195,39.969421909392331],[-75.191576949532731,39.969474508980142],[-75.191662543407631,39.969566348852915],[-75.191664247920158,39.969571336996275],[-75.191679254054463,39.969615255145122],[-75.191703649014201,39.969657195873744],[-75.191766111924395,39.969722824986349],[-75.191869490239426,39.969835046457376],[-75.191991059562483,39.970006200150451],[-75.192060337883319,39.970093053803652],[-75.192075576162281,39.970112157895308],[-75.192084957055769,39.970123919742193],[-75.192112146161108,39.970190189514035],[-75.19215473010523,39.970291063287142],[-75.192227271045411,39.970434000726577],[-75.192281353839491,39.970525137680582],[-75.192292644132607,39.970545252066991],[-75.192330036597042,39.970611871748702],[-75.192331481576716,39.970622386285193],[-75.192337317620044,39.970664851135339],[-75.192377376888714,39.970734263899629],[-75.192423614671299,39.970836645292259],[-75.19245709250157,39.97093303347561],[-75.1924885011139,39.971035084314558],[-75.192523509152338,39.971140071561635],[-75.192532859764739,39.971187386468351],[-75.192567869188082,39.971292371927092],[-75.19260102408613,39.971397317842367],[-75.19262899480006,39.971492155126732],[-75.192660726113829,39.971585648115585],[-75.192688131108198,39.971646213747711],[-75.192689906029003,39.971697642293357],[-75.192726149745226,39.971769824271064],[-75.19273407672442,39.97180568805377],[-75.192770832750966,39.971913568554328],[-75.192797003015599,39.972006938465952],[-75.19282183100141,39.972135965578538],[-75.192855713754597,39.972270904152843],[-75.192893894125604,39.972390235717569],[-75.192936265850875,39.972496814095642],[-75.192966385147542,39.972534599581884],[-75.192991399296673,39.97260938651619],[-75.193012652959283,39.972685516844628],[-75.193035224412597,39.972775950298242],[-75.193040276960375,39.97283887213954],[-75.193066097822893,39.972892264577546],[-75.193081117895133,39.972936851360785],[-75.193105059726221,39.973040163702791],[-75.193124620138676,39.973111972883359],[-75.193124649339325,39.973160508121019],[-75.193113178544152,39.973218779291798],[-75.193132712082559,39.973242055085699],[-75.193158020784921,39.973259748068124],[-75.193212672031635,39.973385157083477],[-75.193281378677312,39.973580825362305],[-75.193352957972905,39.973749436359014],[-75.193430313943779,39.973912465414919],[-75.193485503061495,39.974023610692818],[-75.193481824411975,39.974072063317799],[-75.193517856657692,39.974149950868885],[-75.193554425816444,39.97421357480291],[-75.193552600714028,39.974262067821122],[-75.19354972610968,39.974289126813972],[-75.193582075768845,39.974316969624574],[-75.19360722511945,39.974338941435128],[-75.19360636625423,39.974361761944103],[-75.193597983799933,39.974387269238868],[-75.193604487482432,39.974411681863643],[-75.193633934283042,39.974418047543615],[-75.193652875559195,39.974457011902203],[-75.193692185800259,39.974546390881748],[-75.193743479352179,39.974613198047599],[-75.193763978551885,39.974610799395656],[-75.193814953553257,39.974784660752242],[-75.193844541005717,39.974935206030729],[-75.193904303251941,39.975122109637418],[-75.193917241689761,39.975156095515693],[-75.193926683385797,39.975180895219687],[-75.193926826192865,39.975181270516728],[-75.193996247681696,39.975363615679022],[-75.194008991114245,39.975397090834988],[-75.194027881558185,39.975437481183342],[-75.194073804139379,39.975548420627973],[-75.194149817123034,39.975648609966186],[-75.194177332466566,39.975706321433698],[-75.194222797301975,39.975780136316523],[-75.19433583568069,39.975882577322359],[-75.194428723785208,39.975971418366846],[-75.194502397794807,39.976041881585004],[-75.194503211595929,39.976054958907596],[-75.194504710815565,39.976079047387046],[-75.194546330514854,39.976107096330949],[-75.194585614946803,39.976147940719457],[-75.194689545473437,39.976245896046272],[-75.194781411377534,39.976319315807956],[-75.194809625013789,39.976358486409765],[-75.194860139441687,39.976396725454798],[-75.194948620582892,39.976461504735092],[-75.195081273069903,39.97653583234937],[-75.19518601076733,39.976612393634404],[-75.195269251416264,39.97666849101217],[-75.195497075054533,39.976777768595809],[-75.195524175052753,39.976787026014307],[-75.195608822505179,39.976815943138376],[-75.195850160699152,39.97691124616658],[-75.195864592586588,39.976916327395749],[-75.195992996859019,39.976961532524605],[-75.196070766264839,39.976981985335449],[-75.196123445964332,39.976995840285277],[-75.196247528303502,39.977034429254275],[-75.196350865174111,39.97706656565358],[-75.196468176580808,39.977104863150238],[-75.196564636980014,39.97711814324343],[-75.196591853074054,39.977121889726909],[-75.196729932635222,39.977150656886522],[-75.196824160983425,39.977161318327681],[-75.196965520136331,39.977201577522663],[-75.197101798921253,39.977228876070235],[-75.1972616974423,39.977269548219574],[-75.197391986971709,39.977308133444737],[-75.19751135101815,39.977347807197887],[-75.19758990536647,39.977373916718086],[-75.197762835419283,39.977413449902429],[-75.19785924936815,39.977423432879156],[-75.197859381124772,39.977423448423409],[-75.197903306711751,39.977427994176196],[-75.197918446455787,39.97742886155978],[-75.198066238718098,39.977437327171913],[-75.198127257261774,39.977442966538987],[-75.19814750912505,39.977448665238683],[-75.19832004587802,39.97749721510592],[-75.198397428608146,39.977511783153119],[-75.198465435197519,39.977528997966935],[-75.198723433532763,39.977576130734946],[-75.198826503269586,39.977598405520254],[-75.198868394691047,39.977619322007577],[-75.198918450420805,39.977620434758677],[-75.19897314413096,39.977622820994959],[-75.198985139398474,39.977623344430405],[-75.199025658261604,39.977631382904057],[-75.199055785781198,39.977649078916393],[-75.199083752163915,39.977665506018489],[-75.199151116322653,39.977699835161538],[-75.199186234061457,39.977703471039952],[-75.199235594704476,39.977723125318043],[-75.199393459200522,39.977817993386971],[-75.199538615759607,39.977905440132822],[-75.199697906266721,39.978011758802722],[-75.199802008809669,39.978105431511516],[-75.199898232531666,39.978161813915577],[-75.200029823985759,39.978264661299832],[-75.20012677841477,39.978351037096296],[-75.200203091637846,39.978394129394495],[-75.200286500377004,39.978445945146696],[-75.200414384608123,39.978548709697627],[-75.200507470950541,39.978639281694946],[-75.200608349059891,39.978720033653509],[-75.20074842889818,39.978794519475635],[-75.200888829056268,39.978860447278038],[-75.201228370920987,39.979009309700302],[-75.201442182375558,39.979096851498198],[-75.201601444566066,39.97915463232205],[-75.201774255195275,39.9792469726737],[-75.201979956833895,39.979352891362304],[-75.202116224048083,39.979430146085562],[-75.202246929567636,39.979507276267334],[-75.202301640418838,39.979532758522865],[-75.202353694046508,39.979579593243173],[-75.202440492176507,39.979640046653401],[-75.202560341813452,39.979709798615055],[-75.202623360560025,39.97976115908029],[-75.202664236940493,39.979809173641229],[-75.202722281051052,39.979844720916439],[-75.202773497905497,39.979864414815403],[-75.202843736012269,39.979871684344516],[-75.202899463695715,39.979870065926519],[-75.20295984297195,39.97989281838035],[-75.203009099312411,39.97991532394402],[-75.203089338491424,39.979952791706189],[-75.203149077302001,39.979992658843145],[-75.203231205540746,39.980078702841524],[-75.203269533653568,39.980145217713677],[-75.203279495895615,39.980157930315947],[-75.203264541463753,39.980192052875246],[-75.203210133744108,39.980195288338635],[-75.203177760253737,39.980217409475905],[-75.203137702395964,39.980246497829235],[-75.203127430380377,39.980269219357943],[-75.203125561998746,39.980273350446495],[-75.20312470625575,39.980296171022466],[-75.203138148353474,39.980333583518799],[-75.203153604531408,39.98036675913594],[-75.203180826787289,39.980383065062334],[-75.203242899814725,39.98041013741733],[-75.203382932558128,39.980486046025433],[-75.203417731091633,39.980498238438145],[-75.203577087212537,39.98060312571176],[-75.203716835492827,39.980736126939533],[-75.203823906541871,39.980849845017495],[-75.203935684597013,39.980986507874618],[-75.204024804331439,39.98108412569038],[-75.204106241138632,39.981188710752441],[-75.20417501975777,39.981284450007898],[-75.204272020934681,39.981419357517709],[-75.20431035085663,39.981485871139284],[-75.204358431526913,39.981539754512369],[-75.204370448523221,39.981565715903862],[-75.20439268000284,39.981616170609136],[-75.204424877219267,39.981648289273416],[-75.204464900697701,39.981719123775036],[-75.204530721385112,39.981794812010712],[-75.204658102885801,39.982010331873184],[-75.204709769917926,39.982117110585804],[-75.204758940787713,39.982240964703628],[-75.204806649373268,39.982304831751549],[-75.204824922626258,39.982312374753342],[-75.204811249530366,39.982330628604934],[-75.20481012709574,39.982360580119085],[-75.204827865870044,39.982382385874786],[-75.204843520130424,39.982459816640421],[-75.204867926659048,39.98250175452872],[-75.204885854316004,39.982591720015229],[-75.204889434559263,39.982648297773324],[-75.204907672750423,39.982697223098818],[-75.204924306036276,39.98274184387315],[-75.204940691917216,39.982756248492279],[-75.204965672726829,39.982778208514048],[-75.204968109480475,39.982780350176917],[-75.204966047785661,39.982783046212916],[-75.204937640680782,39.982820200770512],[-75.204932810862644,39.982850070069972],[-75.204945772254931,39.982900319075029],[-75.204966347685541,39.982994989737279],[-75.20499733732477,39.983158409084453],[-75.205011050942602,39.983337148021938],[-75.205028613968963,39.983413193887102],[-75.205043270101626,39.983467762928839],[-75.205041987375992,39.983501994261005],[-75.205042541530943,39.983586226997247],[-75.205047233023237,39.983659133053486],[-75.205063010433364,39.983683749650879],[-75.205083229041961,39.983738442029903],[-75.205110564077003,39.98390035310058],[-75.205143087553438,39.984072371341696],[-75.205177999383665,39.98423016792119],[-75.20518394017094,39.984368765032023],[-75.20519968542402,39.984493304030039],[-75.20521869624875,39.984679298124988],[-75.205244086918128,39.984794058844344],[-75.205270065526591,39.984893130796799],[-75.205291871209511,39.984954996067081],[-75.205316855182033,39.98502016009764],[-75.205318918773386,39.985025542497148],[-75.205319816564526,39.985032747908697],[-75.205328904804816,39.985105702770589],[-75.205330405749919,39.985214224123091],[-75.205312708526506,39.985389411270624],[-75.205307022411901,39.985442102046285],[-75.205314369758852,39.985450109089342],[-75.20532841746369,39.985465415957272],[-75.205317863562897,39.985499441731157],[-75.205307134972486,39.98550327459553],[-75.205302815986514,39.985504817762006],[-75.205273828767076,39.985535578649113],[-75.205259086252184,39.98558235896256],[-75.205248675896158,39.985662067008526],[-75.205224287958202,39.985718624689852],[-75.205199633877967,39.985782315119522],[-75.205180006730117,39.985860390709512],[-75.205184446932336,39.985890466461342],[-75.205196410409314,39.985917853742187],[-75.205197277703988,39.985922715868227],[-75.205167047649041,39.985958599314408],[-75.205098570775675,39.986052722534041],[-75.205057494820409,39.986108910154385],[-75.205015937717249,39.986177935408485],[-75.204959921901079,39.986236647000233],[-75.204889537208757,39.986332154992297],[-75.20484650014798,39.98639115523909],[-75.204844351596748,39.986393759248635],[-75.204803730328678,39.986443022743003],[-75.204771460096893,39.986462292288991],[-75.204708074145742,39.986515966795565],[-75.204598970992834,39.986608351749148],[-75.204526051541222,39.986672398825647],[-75.20445307967185,39.986737871886753],[-75.204337497586238,39.986850934215923],[-75.204306600872272,39.986883080619272],[-75.204247606071803,39.986971703123331],[-75.204152883739141,39.987122342122646],[-75.203936426463784,39.987401608328078],[-75.203805883380497,39.987567155151375],[-75.20373351569782,39.987644304693454],[-75.203732482057006,39.987644037590208],[-75.203563303050231,39.98785012366718],[-75.203535633051814,39.987895188889176],[-75.203348017681989,39.988098011255566],[-75.203184774759364,39.988294235491807],[-75.203119323444355,39.98835702026264],[-75.203103580853679,39.988380937687616],[-75.203074857644921,39.988404567969162],[-75.203035794110349,39.988456517112404],[-75.203005796132359,39.988497863471693],[-75.202860406035356,39.98863206726864],[-75.202720755753134,39.988770809596929],[-75.20268330641143,39.988799853977767],[-75.202610972506875,39.988848210213469],[-75.2025838899782,39.988877586459417],[-75.202541223850687,39.988926601108126],[-75.202520184440232,39.988943264041183],[-75.202491888840228,39.988955483443711],[-75.20248102477521,39.988965781364335],[-75.202441859427338,39.989002906536236],[-75.202410907308462,39.989036479331311],[-75.202305123589568,39.9891354826336],[-75.202233841460156,39.989205274366782],[-75.202157369748889,39.989264958718834],[-75.202096160656737,39.98931356159629],[-75.201987148766861,39.989399644636578],[-75.201852908533056,39.989515145729335],[-75.201791645488967,39.989565174447684],[-75.201787187232895,39.989585060656623],[-75.20181521385237,39.989607179046708],[-75.201784048852531,39.989619250786923],[-75.201745055284661,39.989619812271336],[-75.201568325716565,39.989730086341112],[-75.201477019266179,39.989789440889261],[-75.201373623368028,39.989874221784973],[-75.201212671155517,39.990009113329677],[-75.201025224701411,39.990157690014186],[-75.200948483187702,39.990224504475478],[-75.200862738449388,39.990283982076313],[-75.200763584312384,39.990354581135556],[-75.200658813472856,39.990426483456105],[-75.200430426794142,39.990592416883679],[-75.200374866836881,39.990624305491465],[-75.200319646584902,39.990661621165707],[-75.200240514357048,39.990742656699936],[-75.200192496615159,39.990785841984383],[-75.200115860662464,39.990849803882092],[-75.200026137602507,39.990916329373825],[-75.19994022933308,39.990980085166754],[-75.199863486993422,39.991046898926946],[-75.199723997122462,39.991153716086664],[-75.199597648618948,39.991256542604837],[-75.199447140247855,39.991360258431939],[-75.199368702560093,39.991422752630889],[-75.199224860370407,39.991546601517044],[-75.19906151140124,39.991695710688219],[-75.198934622523851,39.991820787456412],[-75.19887456874325,39.991879984087873],[-75.198742307297351,39.992005429593888],[-75.198612290821799,39.992158283895165],[-75.198520338285803,39.992229874631867],[-75.198409090379783,39.992316139929763],[-75.198197257201542,39.992513668706394],[-75.197953295875351,39.99273481176089],[-75.197729929264895,39.992954138124489],[-75.197530409789081,39.993132714789347],[-75.197502839241807,39.993158327278415],[-75.197319298869644,39.993312856085296],[-75.197185363546609,39.993419792970101],[-75.197077444431955,39.993525882040792],[-75.1970082732865,39.993588579920875],[-75.196932415038134,39.993681106400579],[-75.196876063118069,39.993748371814313],[-75.196857818344128,39.993789363629233],[-75.196861313150336,39.993800756197729],[-75.196864432354602,39.993810922251456],[-75.196873006439915,39.993829670082853],[-75.196841589644464,39.993826116901865],[-75.19684007922406,39.993825692269169],[-75.196808532206106,39.993816816642436],[-75.196784425395407,39.993816280429542],[-75.196712350110673,39.993857501134613],[-75.196702380499744,39.993875837394484],[-75.196689698828806,39.993916952030098],[-75.196667424117479,39.993966418239204],[-75.196596827167141,39.994017664820618],[-75.196514031005819,39.994097189265176],[-75.196446982104419,39.994152797170642],[-75.196376384794107,39.994204043616165],[-75.196296462471096,39.994256509757335],[-75.196214362986296,39.994317492373426],[-75.196148738531619,39.994384551159612],[-75.196083866106378,39.994431642323072],[-75.195993006638076,39.994528116945503],[-75.195941758280171,39.994558381235393],[-75.195922302493827,39.994582215138536],[-75.195884922990018,39.994638482893208],[-75.195826148719689,39.994671434965106],[-75.195763236006599,39.994715713373985],[-75.195741550498013,39.99474949069522],[-75.195710216897652,39.994793045481401],[-75.195560827392242,39.994965301143552],[-75.195460672314638,39.995111530224449],[-75.195414532166808,39.99520328994155],[-75.195375136874603,39.995263795168889],[-75.195363473659413,39.995277810247941],[-75.195318890601882,39.995328206939753],[-75.195278230215379,39.995372981240074],[-75.195256061299673,39.995419595172173],[-75.195230289240612,39.995463273618242],[-75.195208495925201,39.995499902838425],[-75.195134861617404,39.995582485560732],[-75.195116990976686,39.995613492394099],[-75.195088291407828,39.995685654947359],[-75.195065417069245,39.995734042545457],[-75.195058584779829,39.995748495790984],[-75.195048757612938,39.995769284929473],[-75.195001076768364,39.995870145513884],[-75.194985450848975,39.995903198923514],[-75.194924689333874,39.995988922440098],[-75.194841169047677,39.996136948502645],[-75.194770705070169,39.99623387533186],[-75.19468551322494,39.996327620780939],[-75.194622169952623,39.996383310188833],[-75.194589516418944,39.996412559766],[-75.194550602787459,39.996460228007841],[-75.194512333240709,39.996490780636776],[-75.194442322495533,39.996526337189444],[-75.194394511724127,39.99656381424029],[-75.19439666317183,39.996605258893261],[-75.194396854334073,39.996649515194186],[-75.194380729788662,39.996683416089525],[-75.19435278167893,39.996735610883945],[-75.194289382910924,39.996792726081175],[-75.194253962308238,39.99684618168029],[-75.194214457682179,39.996909538505371],[-75.194177290214142,39.996960100800294],[-75.194174435098063,39.996963373659213],[-75.194111339072364,39.997035716214405],[-75.19405423109734,39.997122948757784],[-75.194011499241768,39.997191860450258],[-75.193979144029726,39.99724403992613],[-75.19380942827415,39.997462948257372],[-75.193706415475049,39.997586272701064],[-75.193643528228236,39.997679086043149],[-75.1935770134927,39.997818925015409],[-75.193387357939784,39.998172999282488],[-75.193355000887024,39.998243652808206],[-75.193246479938978,39.998463923294977],[-75.19320530734592,39.998571494720288],[-75.193115198411746,39.998844992223049],[-75.193002134859569,39.999136534607906],[-75.192977946690775,39.99918738566469],[-75.192935106013991,39.999240675622893],[-75.192915325547332,39.999273066806985],[-75.192883532518366,39.999377991776342],[-75.192847332741422,39.999501376618319],[-75.192827150279967,39.999593712748855],[-75.192755204671997,39.999779110497123],[-75.192677022618511,39.999932964674237],[-75.192656059998598,39.999996734089187],[-75.19260558740271,40.000154060804988],[-75.192567772330889,40.000221737259345],[-75.192509344224149,40.000393161364038],[-75.192488408891919,40.000505465915595],[-75.19243683466938,40.00064278278834],[-75.192405416329819,40.000737723828621],[-75.192368165490691,40.000839672695939],[-75.192332958604879,40.000985918259119],[-75.192303046671825,40.001139420465762],[-75.192300467743053,40.001207881902609],[-75.19228848050038,40.001230454458408],[-75.192274585287947,40.001254412599593],[-75.192273725634578,40.001277233078262],[-75.192274505287159,40.001305799763657],[-75.19226743707506,40.00134561186362],[-75.192251822507288,40.00141521095896],[-75.192244727965459,40.001504984222386],[-75.192239030363325,40.001557674320701],[-75.192229194493024,40.001621691581761],[-75.192216132565093,40.001672789502102],[-75.192206672727139,40.001726823870989],[-75.192197375141021,40.00187507477326],[-75.192192430890898,40.001907796414052],[-75.192166279458448,40.001961457978254],[-75.192165204809527,40.001989984250002],[-75.19217318760353,40.002024421111017],[-75.192183053144063,40.002107435376892],[-75.192195341037703,40.002323258915105],[-75.192201230609982,40.002511816871994],[-75.19219574780513,40.002558802071917],[-75.192167556485174,40.002765158733439],[-75.192167100251382,40.002826530584414],[-75.19216790840666,40.002903632458953],[-75.192157508553592,40.003031874458422],[-75.192159364967537,40.003130412124172],[-75.1921635055255,40.003217580415324],[-75.192151116523704,40.003300098832604],[-75.192133914628428,40.003362524774055],[-75.192127948138022,40.003422345755418],[-75.192107925872918,40.003510403776922],[-75.192106045193356,40.003560323623219],[-75.192112227590883,40.003593293173239],[-75.192126150634792,40.003617871116681],[-75.192126609018601,40.003654995617509],[-75.192124244741692,40.003717752150116],[-75.192106370585776,40.003748758505694],[-75.192097125333049,40.003797087067319],[-75.19209301305321,40.003856949360873],[-75.19210419688001,40.00395426765327],[-75.192097266076345,40.004236753773014],[-75.192108396248102,40.004335498061927],[-75.192119957235434,40.004521328882582],[-75.192172293848586,40.004659532733029],[-75.192197723629903,40.004772871157776],[-75.192211057075028,40.004813137798678],[-75.192222535056899,40.004853363098853],[-75.192223099808402,40.004887634674525],[-75.192221326618835,40.004934702523386],[-75.192223854296088,40.00496616344121],[-75.192263836923303,40.005031053658008],[-75.192269335459699,40.005039978098189],[-75.192299442517992,40.00512772577688],[-75.192331450600392,40.005214090404252],[-75.192375299761437,40.005282156269239],[-75.192387074097226,40.00536378491914],[-75.192394172675094,40.005471004320249],[-75.192402990604663,40.005532582768723],[-75.192414658785353,40.005617062537624],[-75.192424551317316,40.005650115614202],[-75.192527474281249,40.00572663698685],[-75.192615018719948,40.005620098691203],[-75.192628460040297,40.005657512385007],[-75.192627492988578,40.005683185759807],[-75.192628917507932,40.005694637755134],[-75.19265434677024,40.005709478858357],[-75.1927043983045,40.005760555501311],[-75.19275560586739,40.005830215009041],[-75.192846062475752,40.005948064194314],[-75.192867080442298,40.005975446315844],[-75.192990543370499,40.006098104889993],[-75.193052167653619,40.006162657791108],[-75.193154838624594,40.006270207232276],[-75.193187891955731,40.006303939122716],[-75.193197932618716,40.006314186433734],[-75.193252887300602,40.006370269885323],[-75.193254849402322,40.006372272369966],[-75.193283221477657,40.00640122825925],[-75.193289814120746,40.006407956028426],[-75.19329182744616,40.006409469505414],[-75.19333402677691,40.006441212878698],[-75.193458189592675,40.006545329362446],[-75.193518378194597,40.006585333632096],[-75.193532283474511,40.006594574947343],[-75.193633471278034,40.006661829419812],[-75.193642345977196,40.006667727697391],[-75.193644622153514,40.006669044294128],[-75.193742831486858,40.006725820312937],[-75.193874223257552,40.006785844339767],[-75.194087172254413,40.006849112907759],[-75.194307539145655,40.006912545297929],[-75.194587460335157,40.006983967583245],[-75.194851601985803,40.007055983143168],[-75.195277823641746,40.007173956606813],[-75.195786702954436,40.007311410016264],[-75.195836462059106,40.007324850895728],[-75.19605178593757,40.007387869441352],[-75.196174303029295,40.007423725684944],[-75.196296180282971,40.007440711313237],[-75.196399027438986,40.007470120982681],[-75.196552113331634,40.007496365440893],[-75.196611411671626,40.007499111464114],[-75.196726849358654,40.007500620096806],[-75.196833491983853,40.007513762328898],[-75.196905347264718,40.007519715713556],[-75.196954539114643,40.007523791948323],[-75.197196931572876,40.007559605207376],[-75.19726227615503,40.007586804372153],[-75.197309627725218,40.007606514328202],[-75.19736281233034,40.007608606849182],[-75.197417918222314,40.007624106676253],[-75.197720200828442,40.007730751206722],[-75.197760260175542,40.00774516042739],[-75.197842371930463,40.00777469618145],[-75.197906695645003,40.007797833068686],[-75.197908873331968,40.007798157183963],[-75.197965979990514,40.007812336193574],[-75.198052321405214,40.007833774773133],[-75.198131217772499,40.007858368010339],[-75.198162109013396,40.007882530316643],[-75.198176300343647,40.007893629873841],[-75.19819409846049,40.007914009759673],[-75.198197163932932,40.007931207805612],[-75.198203992969297,40.00794706230937],[-75.198475872150752,40.008023050787912],[-75.198569446792973,40.00805225240056],[-75.198647915956244,40.008088256018617],[-75.198726265703414,40.008126909486442],[-75.198816089325049,40.008157657456486],[-75.198865847157933,40.008167328063514],[-75.198893669056147,40.00816794627567],[-75.199030793332327,40.008223809136695],[-75.199199019054774,40.008295422226674],[-75.19941996693646,40.008389478150839],[-75.199597148322582,40.008466216287751],[-75.199686372283765,40.008512450222305],[-75.199712827638891,40.008515732782662],[-75.199762257700598,40.008518418330873],[-75.199826157102109,40.008546959725543],[-75.199901238984367,40.008574321369039],[-75.200016805967124,40.008611148006594],[-75.200228908199165,40.008697224784996],[-75.200515985020516,40.008813516191175],[-75.200680934136869,40.008869994892862],[-75.200718355598582,40.008882419933883],[-75.200860616488882,40.00892965575494],[-75.201016560605211,40.008978797169398],[-75.201073550812652,40.009008915283189],[-75.201160358593796,40.009054791654485],[-75.201207512174577,40.00908438768527],[-75.201274480192737,40.009130126264104],[-75.201379186494734,40.009159572638282],[-75.201581126938549,40.009219726429542],[-75.201663737403479,40.009244399614118],[-75.202044130482804,40.009397018050763],[-75.202108816723921,40.009454124810212],[-75.20212911200862,40.009457430478747],[-75.202167688764931,40.009468278686818],[-75.202184435757729,40.009467223132191],[-75.202188947547981,40.009445910893611],[-75.202190339233724,40.009408827619495],[-75.202207086245309,40.009407771161335],[-75.202282223518864,40.009433706144719],[-75.202377136439296,40.009469364735637],[-75.202419514842632,40.00948528697424],[-75.202609204288962,40.009575144376491],[-75.202636329305207,40.00957630122479],[-75.202649343204769,40.009548953473661],[-75.202701359466872,40.009439639971205],[-75.20318667931646,40.008761926179758],[-75.203204730525286,40.008736718273255],[-75.203229427688612,40.008702230584703],[-75.203275708594873,40.008637601049863],[-75.203313904164432,40.008584262831185],[-75.203322381332796,40.008572425171288],[-75.20335868382891,40.008521729938984],[-75.203376241589339,40.008497210241721],[-75.203406627542009,40.008454777510828],[-75.203427178719977,40.008426077772505],[-75.203510392047519,40.0083098739672],[-75.203537512385381,40.0082720008336],[-75.203561472330989,40.008238540992444],[-75.203578827143033,40.00821430508703],[-75.203667827845621,40.008090015989652],[-75.20416305392061,40.007884227737435],[-75.204769249311383,40.007637543089466],[-75.205059458509908,40.00751800265914],[-75.205274504679565,40.007429421789425],[-75.205429142208956,40.007367295820359],[-75.205725689194466,40.007248154614189],[-75.206234252930685,40.007040103435514],[-75.206726052742411,40.006836778387722],[-75.207254777239584,40.006621518117065],[-75.207257099110961,40.006620557715586],[-75.20767474736374,40.006447790943469],[-75.207742416726859,40.006420930358381],[-75.207587999903282,40.006372340037181],[-75.205205522636959,40.005622606694565],[-75.203999542227507,40.00525703440794],[-75.203208623693584,40.005017272646526],[-75.202327307075777,40.004759296528995],[-75.202162238537497,40.004710977736394],[-75.202177223906105,40.004689146501967],[-75.202178118709242,40.004687843686007],[-75.202259083617378,40.004569891632244],[-75.202249798616705,40.00456695373385],[-75.20211871913942,40.004525478139129],[-75.201118019996457,40.004208833792994],[-75.2010903806665,40.004200087670775],[-75.201108323314031,40.004177011267316],[-75.201714090410633,40.003397856338005],[-75.202406921037365,40.00252064796333],[-75.203195565637998,40.001519915530736],[-75.203252555214945,40.00145239357817],[-75.204123531392142,40.000340018358493],[-75.205489298229693,40.000908441383274],[-75.205519634063023,40.000874847719167],[-75.206613074721204,39.999682204511601],[-75.207140780980126,39.999108820672348],[-75.207163106963677,39.999084289864506],[-75.207227236808933,39.999013826582953],[-75.207243827495489,39.998988905627456],[-75.20726237204228,39.9989610501339],[-75.20743714840043,39.998660950025638],[-75.207779203558388,39.99808756358982],[-75.209066062036726,39.998345576583802],[-75.210323208202894,39.998600367757803],[-75.210254720427329,39.998029382315771],[-75.21131574394397,39.997694230836494],[-75.212519663423436,39.997322817883266],[-75.213267911810107,39.997086882340213],[-75.214974356091673,39.996586480384316],[-75.214976357829812,39.996465271521487],[-75.214977277818591,39.996409626213591],[-75.214977312018647,39.996407517726219],[-75.215042609580095,39.996388956615846],[-75.215090049447213,39.996375470194465],[-75.215239953776788,39.996330943595623],[-75.215299121965913,39.996312603792028],[-75.215388996040147,39.996284744434554],[-75.215482618650682,39.996254502636837],[-75.21553715475568,39.996236883052561],[-75.215619326279523,39.996200829143099],[-75.215664441691928,39.996181033721086],[-75.215754870093377,39.996139473996465],[-75.215790236621856,39.996123220470167],[-75.21591449050608,39.996063470153224],[-75.216037151063134,39.996001802344388],[-75.216093496334494,39.995968026057497],[-75.2161479982896,39.995932506164372],[-75.21620056581888,39.99589529832064],[-75.216251107376834,39.995856469885268],[-75.216299542087413,39.995816084848855],[-75.216345787971861,39.995774205375589],[-75.216389769571506,39.99573090728861],[-75.216431408050852,39.995686262732541],[-75.216688562358598,39.995418441397938],[-75.216954787707095,39.995151117932259],[-75.217153329994545,39.994950103418709],[-75.217401127646852,39.994689236195399],[-75.217666637705321,39.994435631160052],[-75.217753872305309,39.994349002639737],[-75.217885898930859,39.994217892282848],[-75.217783108712524,39.99383944917416],[-75.217750582039415,39.993718337303967],[-75.217740676462128,39.993681457091846],[-75.218023860876315,39.993590956419794],[-75.218154966304169,39.993542843600736],[-75.218266858575532,39.993476455359499],[-75.218318166741099,39.993434233601882],[-75.218394566349801,39.993341559621264],[-75.218472865631782,39.993197922794245],[-75.218734086035653,39.992683436433239],[-75.218919937968693,39.992322851537999],[-75.218937203595829,39.992291038639522],[-75.219004969293664,39.99216617310703],[-75.219107064073839,39.991964453270775],[-75.2191687262047,39.991849361366953],[-75.219203231282179,39.991784947451499],[-75.219273209477052,39.991654310105517],[-75.219422501547697,39.991376204123256],[-75.219544412965618,39.991135461564738],[-75.219950935056005,39.990369153495102],[-75.220146608155687,39.990100591584373],[-75.220217704257948,39.990022578715951],[-75.220233356595244,39.990008382468318],[-75.220293264644766,39.989964869108455],[-75.220375858407976,39.98990487816021],[-75.220626094548294,39.989775554687519],[-75.220871918258737,39.989636326988318],[-75.221066282732508,39.989535268375143],[-75.221276295997626,39.989417157718854],[-75.221301517468831,39.989402973933181],[-75.221315726014794,39.989396367288634],[-75.221437796009823,39.989340221301958],[-75.221542167966447,39.989291716826408],[-75.221621685151788,39.989252957765643],[-75.221680221170786,39.989225961238581],[-75.221716684476931,39.989210252732484],[-75.221927145531438,39.989112589954878],[-75.22202401186216,39.989070066353641],[-75.222143331434481,39.989014834845982],[-75.222211906449544,39.988985137214335],[-75.222247989768221,39.98896675952696],[-75.222376416707235,39.988903929310332],[-75.222691542409777,39.988757448271507],[-75.222744996729091,39.988732926092183],[-75.222844930188387,39.988685479624706],[-75.222923421152075,39.988652885156881],[-75.223019073189448,39.988602194387113],[-75.223105306233748,39.988564193069742],[-75.223187411779165,39.988530966215436],[-75.223261624234112,39.98849658886153],[-75.223328972382745,39.988471755997736],[-75.223414326157467,39.988432789952164],[-75.223517341394142,39.988384625988225],[-75.223679739304799,39.988300638858107],[-75.223797128524069,39.988240105875782],[-75.223935703756979,39.988165802377139],[-75.224075275969554,39.988085722734567],[-75.224209704048803,39.988013592760311],[-75.22435363171202,39.987933546470728],[-75.224472346114098,39.987868054960089],[-75.224580422223838,39.987807510898271],[-75.224679104377813,39.987753133712872],[-75.224757567289572,39.987707599984169],[-75.22483464869056,39.987665605564189],[-75.224922395708589,39.987613886106608],[-75.225002443104344,39.987567438325286],[-75.225060899789455,39.987532889827825],[-75.225124778527814,39.987491124652401],[-75.225186528041277,39.987441191009005],[-75.225253084812721,39.987383058582587],[-75.225333114020302,39.987304192275126],[-75.225412059292452,39.98722089078769],[-75.225477986493871,39.987142911625476],[-75.225530593986747,39.987069579634635],[-75.225587732842726,39.986980973560065],[-75.225638042002785,39.986900928996036],[-75.225689718726315,39.986811788282694],[-75.225746638643287,39.986703535569355],[-75.225810305069331,39.986579116837525],[-75.225870447455719,39.986451749994742],[-75.225919993899993,39.986345722692114],[-75.225973955914682,39.986217793713486],[-75.226007271661771,39.986126634503741],[-75.226062745126725,39.985993357068651],[-75.226124353653248,39.985844602933874],[-75.226185692187485,39.985694691359143],[-75.226237444292892,39.985556545921575],[-75.226303433491111,39.985392008849757],[-75.226366883712728,39.985242804058409],[-75.226432398045986,39.985080312559674],[-75.226486792753732,39.984943018011137],[-75.22653876465364,39.984812637586032],[-75.22657160117059,39.984723430076301],[-75.226657643789025,39.984508911207243],[-75.22669053894731,39.984420197804283],[-75.22677380094602,39.984153988763175],[-75.226847865756866,39.983881438080985],[-75.226875093553602,39.983765650301912],[-75.226893313292663,39.983637090161238],[-75.226907630850349,39.983525478493391],[-75.22691787754826,39.983413602537077],[-75.226919662557918,39.983381128379392],[-75.226921088898663,39.983355219114237],[-75.226924043173966,39.983301548564192],[-75.226924714353174,39.983289724210927],[-75.226931456731023,39.983171003821752],[-75.226936458800509,39.983040392549945],[-75.226939041471624,39.982909738901704],[-75.226938761517971,39.982779561117617],[-75.226935266379002,39.982756424147333],[-75.226928200876529,39.982733771809038],[-75.226917627383287,39.982710429671258],[-75.226894460554746,39.982659286098759],[-75.226840539563156,39.982586670469104],[-75.226629087889663,39.982324971373458],[-75.226618156999862,39.982311442221253],[-75.22646004110419,39.982115750358737],[-75.226427338768062,39.982072579869325],[-75.22642523863307,39.982072677849644],[-75.226277781397812,39.981890176429829],[-75.226275913693399,39.981887864844303],[-75.226251131916086,39.981857193222659]]],[[[-75.226505184778603,39.981742117129485],[-75.226536892978132,39.98172443938202],[-75.226549213895794,39.981714297461338],[-75.226565806949694,39.981696287356669],[-75.226585900300407,39.981669778516014],[-75.226596038552685,39.981632638855842],[-75.226591107184532,39.981593942496254],[-75.226580946394932,39.981567381119568],[-75.226562854096684,39.981540032667731],[-75.226538101147455,39.981520500777037],[-75.226503005455143,39.98150074146217],[-75.226473207370006,39.981488448061718],[-75.226439974846414,39.981482817696644],[-75.226379784438009,39.981581332831027],[-75.226474384834404,39.981756753249208],[-75.226505184778603,39.981742117129485]]]]},"properties":{"OBJECTID_1":65,"OBJECTID":8,"ASSET_NAME":"West Fairmount Park","SITE_NAME":"West Fairmount Park","CHILD_OF":"West Fairmount Park","ADDRESS":"NA","TYPE":"Land","USE_":"Park- Regional/Watershed","ACREAGE":1403.221045,"ZIPCODE":"19131","ALLIAS":" ","GLOBALID":"10170618-d7c0-445e-acfd-faa5a037a58f","Shape_Length":56119.502809013116,"Shape_Area":61124063.963323303}},{"type":"Feature","id":66,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.056494835105326,40.084893758624865],[-75.056997663203234,40.086307461800637],[-75.057124197981125,40.086670707207297],[-75.057079603860075,40.086692063286087],[-75.057013599389236,40.086738352396999],[-75.056994603385263,40.086751674385667],[-75.056898632329023,40.086842762263721],[-75.056834570223629,40.086942011524144],[-75.056832700643611,40.086943745478671],[-75.056826547705285,40.086949446384189],[-75.056735882540337,40.087085358374317],[-75.056655499802119,40.087212279141617],[-75.056572021582895,40.087355929098749],[-75.056495086331594,40.087518399267914],[-75.05647557086094,40.0875814115211],[-75.056418562565355,40.087792883374966],[-75.056395326384603,40.088010747535016],[-75.056370162675648,40.088277101282465],[-75.056387406789568,40.088454846264625],[-75.056429228588584,40.088625698437291],[-75.056457608423941,40.088706633030959],[-75.056567033116849,40.088950006727565],[-75.056630355383675,40.089069095731929],[-75.056696847193138,40.089169590224337],[-75.056782912898967,40.089266811178113],[-75.056900174286852,40.089374095984169],[-75.056986981261204,40.08945266630387],[-75.057021612861064,40.089480129663215],[-75.057069451104141,40.089518067098183],[-75.057070937914744,40.089520685225004],[-75.057197166894497,40.089606928671188],[-75.057208163532138,40.089613409800116],[-75.057315910713612,40.089676913887956],[-75.057494769276971,40.089763240140087],[-75.057654201349507,40.089849111080447],[-75.057833874135554,40.089914921964045],[-75.057989930812326,40.089963378609433],[-75.058078886988667,40.089987862771522],[-75.058257169721188,40.09002750564504],[-75.058443032010075,40.09005985877004],[-75.05858342576191,40.090074347007643],[-75.058786879006604,40.090092177557899],[-75.059867947440182,40.090166018129878],[-75.060684634667112,40.09022619628815],[-75.061860334478652,40.090304098975601],[-75.062975330565621,40.090380570561983],[-75.063178859757073,40.090396529008828],[-75.063377459268409,40.090414237931022],[-75.063585401244822,40.090441498746699],[-75.063836018082242,40.090495891176928],[-75.064112754837339,40.090565826351167],[-75.064328194491964,40.090649263455958],[-75.064514053570775,40.090743209011819],[-75.064741036283536,40.090903450382946],[-75.064994205228103,40.091138973178353],[-75.065785652247186,40.0918985496101],[-75.066181565769313,40.092273673557827],[-75.066689437637251,40.09178524688118],[-75.066764278737054,40.091736591477144],[-75.067242761022555,40.091437882656777],[-75.067950543369946,40.090995182980592],[-75.068390230895417,40.090718823875719],[-75.068988945124062,40.090347121036267],[-75.069145794734425,40.090245144917162],[-75.069337010175829,40.090120825023114],[-75.069474457080929,40.090031462871572],[-75.069832665971603,40.089806458001782],[-75.070310181420282,40.089508775894146],[-75.070548965176997,40.089359235530964],[-75.070735529692755,40.08924201512729],[-75.070869987080002,40.089154320710698],[-75.071118187353861,40.088996615425508],[-75.071414914296028,40.088807902189686],[-75.071595968313233,40.088691948653754],[-75.071808472943658,40.088562754328926],[-75.071939345848918,40.088473578591326],[-75.072166168987593,40.08835030638982],[-75.072378395826803,40.088228091247942],[-75.072522926841884,40.088161590538512],[-75.072811491967997,40.088041152826925],[-75.073157505087934,40.087894105674408],[-75.073283307636501,40.087841141198048],[-75.073459011956658,40.087768378636632],[-75.073606019984695,40.087685165951591],[-75.073736504337248,40.087605759990609],[-75.073865776627372,40.087510954841974],[-75.073982820856415,40.087403289065563],[-75.074084772661408,40.087263133555098],[-75.074120852146294,40.087210496837706],[-75.074117047406418,40.087209763117706],[-75.074160508014373,40.087132837717654],[-75.074186968106702,40.087073270607334],[-75.074189705848852,40.087003891262157],[-75.07419162222952,40.08695532662049],[-75.073951937546738,40.086919654531407],[-75.072435914044704,40.086694539064013],[-75.072211012921869,40.086666152001236],[-75.07198036183685,40.086630686211009],[-75.071875712129582,40.086609729732764],[-75.071780002675538,40.086591296246418],[-75.071597801618424,40.086550015189516],[-75.071442971764839,40.086502426484117],[-75.071232214128756,40.086421128231407],[-75.070998101991634,40.086320767062261],[-75.070740725856908,40.086199030164067],[-75.070115763473879,40.085922892950521],[-75.06864415571502,40.08526127356383],[-75.068448825265151,40.08517107083469],[-75.068247383389846,40.085083039941949],[-75.068046124966884,40.084990383415239],[-75.067897597220139,40.084935992519569],[-75.067763849389578,40.084888890664025],[-75.067587767294484,40.084845431104895],[-75.06749187970037,40.084831619354127],[-75.067083784538056,40.084787372483788],[-75.066897298185168,40.084778389719048],[-75.06662039712208,40.084769610589028],[-75.06624997787064,40.084763276749996],[-75.065831113411278,40.084762754692804],[-75.065228680975324,40.084755628572907],[-75.064550979566022,40.084746740689518],[-75.063993619124886,40.084742975949503],[-75.063683508066475,40.084735728407978],[-75.063321846824437,40.084736534152391],[-75.062963379657916,40.084732783874678],[-75.062852255842799,40.084723241586133],[-75.062756369385724,40.084709425885798],[-75.062645887177155,40.084683694945191],[-75.062571533538019,40.084658808654993],[-75.062456817016297,40.084607704271662],[-75.06244417814294,40.084602591762909],[-75.062376579528504,40.084559345062459],[-75.062356531743802,40.084544669528952],[-75.062291650629462,40.084497175732018],[-75.062236646543312,40.084440334783331],[-75.062233666876523,40.084437081719685],[-75.062210649345502,40.084411949489166],[-75.062768350198468,40.084026851659907],[-75.063223850352131,40.08371112034704],[-75.064971352962957,40.082501987750796],[-75.066780837667366,40.081247982411568],[-75.066940002214992,40.081139468077772],[-75.066941965541403,40.081136006156648],[-75.067658741563051,40.080649498230592],[-75.068125407509129,40.080318742749142],[-75.068156336781286,40.08029863150378],[-75.068266096819997,40.08019008437379],[-75.068022277157169,40.079802459659973],[-75.067476538870011,40.078972614338255],[-75.067396359769219,40.078866578826847],[-75.067283706439738,40.078743581784039],[-75.067136299291292,40.078585052584558],[-75.066981407927088,40.078463383974565],[-75.0668704856066,40.078372833771454],[-75.066735204907459,40.07828865817028],[-75.066611783589778,40.078209389760069],[-75.06650550945939,40.078153668462008],[-75.066286212049363,40.078060587069857],[-75.065995119420947,40.077954254650152],[-75.066187015161674,40.077597634483652],[-75.066868170460779,40.076298757071974],[-75.067629957982732,40.074865187311495],[-75.068329761347798,40.073550535057784],[-75.068456488907984,40.073317386916585],[-75.068734233337963,40.072800690481508],[-75.068844248624146,40.072574778444611],[-75.068861029360079,40.072535179938129],[-75.06886632509719,40.072477435005375],[-75.068877367139081,40.072426767566355],[-75.068871810340724,40.072362291842992],[-75.068871170307446,40.072354865843863],[-75.068857905801721,40.07231812545529],[-75.068846729111129,40.072287167103802],[-75.068780692833258,40.072204610111207],[-75.068701886640056,40.072140273325459],[-75.068619520640837,40.072089741173215],[-75.06856953491851,40.072058482731819],[-75.068445208455486,40.072002342685551],[-75.06825009932335,40.07190751426149],[-75.067779705002664,40.071688206800239],[-75.067300375622267,40.071466375774598],[-75.066608432442351,40.071135413061917],[-75.065771468835194,40.07073855959667],[-75.065164221241673,40.070452148574994],[-75.065159074766441,40.070453426750014],[-75.064591027395593,40.070722553717808],[-75.064380035512954,40.070826057050454],[-75.064277906912864,40.07087991597605],[-75.064359210334231,40.070946297490089],[-75.064291978664414,40.0709701887709],[-75.063876538213762,40.071189639902251],[-75.063315860140335,40.071500599120419],[-75.062973573891611,40.071698608737329],[-75.062717588087239,40.071847712176677],[-75.062433592622952,40.072019306907194],[-75.06207843645133,40.072237846910276],[-75.06152256912101,40.072579002441358],[-75.061076900049756,40.072876439248368],[-75.060431819005771,40.073311348962264],[-75.059772342088038,40.073785699335708],[-75.059558026066924,40.073947345463239],[-75.059178933901364,40.074237073925623],[-75.058343094474907,40.074874891969621],[-75.057821217238185,40.07417470791318],[-75.060109429840907,40.071705154319325],[-75.059760560184131,40.071497920695279],[-75.059305067900937,40.071837510335236],[-75.058563859379817,40.071395261490139],[-75.058270058727501,40.071690047918118],[-75.058745741040013,40.071975636612038],[-75.058637395499758,40.07208016399052],[-75.058104375128011,40.071763397218248],[-75.057981728574774,40.071884764708578],[-75.05766518615458,40.071696833516015],[-75.057388614732162,40.071967168844012],[-75.057734322851587,40.072174719550084],[-75.056893022107005,40.072979842833966],[-75.056824932636957,40.073017712894121],[-75.056595689466477,40.073240169438044],[-75.056311293046448,40.073021100926361],[-75.056167078953479,40.073143384699094],[-75.056042718353027,40.073248814727918],[-75.055917459212694,40.073355005672987],[-75.05588680737128,40.073380991361098],[-75.055789792828975,40.073463236785663],[-75.055396115622628,40.073664651079561],[-75.054984191588446,40.07387026483277],[-75.05437501072862,40.074186988750945],[-75.054021271627761,40.074365257585725],[-75.053657651616319,40.074554229535323],[-75.05295282434723,40.074918217213366],[-75.052578086133437,40.075123970944816],[-75.051885671512608,40.075487339041132],[-75.051119526219239,40.075886007348402],[-75.050497253851162,40.076227865865732],[-75.050266502532068,40.076347443063909],[-75.050118874423504,40.07642267686937],[-75.049952629818151,40.076511361848851],[-75.049777446688609,40.076597522688914],[-75.049572710103888,40.076669099191122],[-75.049365423099516,40.076729041451834],[-75.049158965742464,40.076768170629229],[-75.049001318772142,40.076792243092576],[-75.048847050565143,40.076807135593008],[-75.048644799475625,40.076816269537517],[-75.048464081999654,40.076814336273145],[-75.048328981754281,40.076801902073555],[-75.048238946075699,40.076792841052786],[-75.048074387662254,40.076763509562731],[-75.047919228091814,40.076725139654272],[-75.04779125476179,40.07668509398183],[-75.04761001524308,40.076620648607587],[-75.04744100213405,40.076551859975687],[-75.047231411306925,40.076442766208352],[-75.047108200473104,40.076358851602684],[-75.046991101776072,40.076272765824918],[-75.046828235700261,40.076125418785018],[-75.046724175483348,40.07600156020775],[-75.046668673645911,40.075941750474264],[-75.046090651721769,40.075231739801495],[-75.045991862529192,40.075110390487154],[-75.04586400005212,40.074948939699759],[-75.045750888360246,40.074806113636917],[-75.045131371748568,40.074020714371798],[-75.044747270837377,40.073527885405788],[-75.044523713846814,40.073240057083531],[-75.044371838501945,40.073044517386315],[-75.044257464672015,40.072890826659169],[-75.044169090824923,40.072764284807896],[-75.044113500007057,40.072647236974134],[-75.044055543785859,40.072513930742339],[-75.044032234455742,40.072418476155512],[-75.044013136070205,40.072293028378553],[-75.044007184674541,40.072140113534239],[-75.044009341345898,40.072010536670042],[-75.044028913459925,40.07189757346945],[-75.044068114114836,40.07174572094555],[-75.044203434213003,40.071450301398272],[-75.044317923231119,40.071223834199891],[-75.044442086569461,40.070981392013088],[-75.044641848852564,40.070581008674722],[-75.044739900591765,40.070388876058466],[-75.044830087971647,40.070242853233665],[-75.044912501080887,40.070140628441251],[-75.044994915113463,40.070038403616763],[-75.045100855433404,40.069950621297615],[-75.045206149919281,40.069879027249215],[-75.045331869584444,40.069824116523222],[-75.045429300284994,40.06979863218217],[-75.045550441873303,40.06978296588305],[-75.045641113346008,40.06977584064186],[-75.04570715172531,40.06978202438745],[-75.045747312601492,40.069791870981987],[-75.045811583021532,40.069807629053614],[-75.04589494462526,40.069832738709742],[-75.046024807703191,40.069900608838196],[-75.047308371345466,40.070655329194793],[-75.047371774329832,40.070587572126868],[-75.047909105463845,40.070021320118393],[-75.04788158372024,40.069955859657554],[-75.047611532166826,40.069398592894366],[-75.047356259040527,40.068848617341153],[-75.047323639628999,40.068759888888948],[-75.047253303595852,40.068559164124828],[-75.047222803959144,40.068417245245712],[-75.0472109177352,40.068261875406279],[-75.047235705090088,40.06809348031279],[-75.047266512414623,40.067925226810644],[-75.047344588382813,40.067704844835319],[-75.047425828642602,40.067556294933866],[-75.047541743978201,40.067369209914588],[-75.047618292036518,40.067274535852597],[-75.049790533528864,40.067792440456465],[-75.050599185244735,40.067990646720091],[-75.050751835380026,40.068026478438618],[-75.050752969413821,40.068026744756253],[-75.050769221727052,40.06788024770136],[-75.050790307669914,40.067577508141447],[-75.050754831469206,40.067560471252278],[-75.050915711718645,40.066580000251733],[-75.050913143518741,40.066578611781836],[-75.050914803317042,40.066568877108907],[-75.049406352054234,40.065764007834133],[-75.049328678060647,40.065722562254813],[-75.048206949524982,40.066886626273408],[-75.048193280120614,40.066902400286942],[-75.048192286759686,40.066901841707185],[-75.047653787758279,40.066598710333089],[-75.04672546454097,40.066079198031481],[-75.04637502526252,40.065876512033718],[-75.046176747085042,40.06576807089224],[-75.046118508354041,40.065736218868402],[-75.045449917271895,40.06535243410719],[-75.045014464121607,40.065114532737518],[-75.044902448242723,40.065055164692446],[-75.044847899334485,40.065033712273646],[-75.044792234278972,40.065017811045827],[-75.044749074316499,40.065010989440815],[-75.044698959312896,40.064994483579973],[-75.044588424953957,40.064971048809561],[-75.044474325005964,40.064961417850405],[-75.044395791736889,40.064966513046677],[-75.044177973444832,40.064989160538751],[-75.043557532040722,40.065060195669766],[-75.04336096596839,40.065078712610379],[-75.043179726192463,40.065090646777115],[-75.043010249145937,40.065109802169722],[-75.042910830764356,40.065109774729798],[-75.042808494764159,40.065107363665248],[-75.042648878055374,40.065105917666678],[-75.042437851415343,40.065077376471159],[-75.042390866501961,40.065067843591159],[-75.042364051279037,40.065061427863263],[-75.042304587521883,40.06505150898051],[-75.042054065193255,40.064987736065277],[-75.042018944282376,40.064976661610217],[-75.041907640322009,40.0649415645319],[-75.041884652208267,40.064934316214021],[-75.041816044660067,40.064912682361211],[-75.041767302264219,40.064893303469937],[-75.041722155847509,40.06487535458372],[-75.041605627033888,40.06482902500364],[-75.041580339867423,40.064818971524652],[-75.041531343623078,40.064799491936128],[-75.041479924805955,40.064775395004027],[-75.041380516615774,40.064728809191884],[-75.041189400824095,40.064610879564874],[-75.041179728501064,40.064602590741451],[-75.041112898357412,40.064565094815606],[-75.041013611038295,40.06448636654239],[-75.04090819111704,40.064384663666651],[-75.040812857325164,40.06430802515009],[-75.040572044744408,40.064070229047601],[-75.040296166683845,40.063771595465816],[-75.03966234760702,40.063115569209906],[-75.039329580841795,40.062757004799735],[-75.039001464305215,40.062406495428945],[-75.038719135680651,40.062119780500836],[-75.038502557285241,40.061885506087634],[-75.038372059266621,40.061683355224524],[-75.038281149819994,40.061470565439116],[-75.03823492602497,40.061270403347621],[-75.038224451488929,40.061114146247725],[-75.038218837185596,40.061086385693464],[-75.038219394438087,40.060980688369021],[-75.03822335933782,40.060730786071851],[-75.038268596809232,40.060051307474659],[-75.038307783587186,40.059598535720824],[-75.038344883480121,40.059122565781834],[-75.03836629948907,40.058812889595366],[-75.038377287489681,40.058664378085368],[-75.038383140367458,40.058585250703963],[-75.038393868683528,40.05844024175871],[-75.038399419275805,40.0583652142357],[-75.038425277324791,40.058015682133401],[-75.038445781867608,40.057776052903783],[-75.038449602511136,40.057731395044989],[-75.038493510042215,40.057154994113063],[-75.038544452557858,40.056692125021534],[-75.038611984679576,40.056434462802827],[-75.038674156738793,40.056310931664953],[-75.0388107218605,40.056059528999576],[-75.038942519407883,40.055851994020784],[-75.038951506162448,40.055834971671352],[-75.039481299516197,40.055000012598441],[-75.039664647739286,40.054741733080242],[-75.039824357721926,40.054514023388847],[-75.039869629814277,40.054436388128025],[-75.039894114028428,40.054351318968038],[-75.039915219220447,40.054275429298308],[-75.039923362865835,40.054222380978153],[-75.039926265816007,40.054074303085791],[-75.039895603211491,40.053937008293197],[-75.039893780699174,40.053756412608379],[-75.039903864276127,40.053654800127852],[-75.03992380745278,40.053532587022836],[-75.039942364859655,40.053445063243551],[-75.039984812603052,40.053362732625814],[-75.040039297836501,40.053280685046012],[-75.040136490056042,40.053174532526725],[-75.040230504163958,40.053071850605782],[-75.040732203354452,40.052523890769343],[-75.040729741275285,40.052523944435997],[-75.040804835441378,40.052439956920402],[-75.041044901762106,40.052160900300642],[-75.041269550135652,40.051890738888467],[-75.041376704708838,40.051696509187515],[-75.041401647719724,40.051599875676921],[-75.04140982729804,40.051470441519385],[-75.041414166634326,40.051361749118698],[-75.041406191808335,40.051259709877648],[-75.041400340458082,40.051104482096619],[-75.041404864439642,40.050991164447339],[-75.041418693236935,40.050871121783835],[-75.04145131625549,40.050733003839625],[-75.041492411809728,40.050608975350613],[-75.041538419096909,40.050512839355498],[-75.041609331236074,40.050396457309049],[-75.041697466666278,40.050301314475661],[-75.041859854789408,40.050156996448898],[-75.042026609274217,40.050039508109244],[-75.042233570921084,40.049925068522278],[-75.042442073243834,40.049832762262014],[-75.042692890024114,40.049736823273676],[-75.0432682155718,40.049509643283947],[-75.043702348299064,40.049348578264897],[-75.043738396695289,40.049334352027429],[-75.043956732007061,40.04924733595378],[-75.044829935973368,40.048902717230277],[-75.045037944838683,40.048818351965181],[-75.045118276712572,40.047235369369318],[-75.045123411089662,40.047134193310058],[-75.045146977837902,40.046669791038056],[-75.045138574647638,40.046670774446433],[-75.04482904962569,40.046696064963065],[-75.0446492217513,40.046717170196374],[-75.044435659756587,40.046757390226745],[-75.044245049973611,40.046812630378703],[-75.044168602886657,40.046839789435353],[-75.043995878148351,40.046918980502006],[-75.043851315520072,40.047000644072746],[-75.043713306000129,40.047095132428467],[-75.043559374893931,40.047234495370084],[-75.043498352263654,40.04728826230523],[-75.043397483083112,40.047396295032556],[-75.043299183215893,40.047498957585461],[-75.043221366634114,40.047560474171895],[-75.043109813954814,40.047641104466081],[-75.042981935219345,40.04771773041012],[-75.042876170637342,40.047771347325352],[-75.042703586346434,40.0478469194246],[-75.042579213284924,40.047894668685075],[-75.042390807698567,40.047953577340579],[-75.042257888580735,40.047979404093851],[-75.042134598702674,40.04800002794839],[-75.041940431927216,40.048026220770787],[-75.04177992825943,40.048035106587015],[-75.04154926950325,40.048031478640894],[-75.041387567590448,40.048011375871063],[-75.041223730307649,40.047985792783074],[-75.041041935037754,40.047938066129682],[-75.040902204227194,40.047898571158385],[-75.040682142663385,40.047806500877421],[-75.040566446295259,40.047754902657353],[-75.040394022597042,40.047649476396849],[-75.040273001584509,40.047554311671881],[-75.040102166567777,40.047409103148311],[-75.039986575003581,40.047295966757744],[-75.039887669247321,40.047177794162806],[-75.039821200351739,40.047073056451865],[-75.039793140644619,40.047009045086227],[-75.03975085034385,40.046888587661392],[-75.039711635703185,40.046750102454588],[-75.039679983948517,40.046599126882548],[-75.039654742891685,40.04646459177188],[-75.039616291489025,40.046365944714154],[-75.03957020403827,40.046281597368576],[-75.039493241507571,40.046203762324687],[-75.039401510160218,40.046141867943398],[-75.039290668390947,40.046086762471482],[-75.039199992467545,40.046057472165487],[-75.039001372895001,40.046018395256141],[-75.038759462410795,40.046001826302202],[-75.038517335298764,40.045990680562554],[-75.038186088658009,40.045970191387646],[-75.037913881618891,40.045945664552292],[-75.037710412221941,40.045910092211408],[-75.037542670342845,40.045864500966388],[-75.037352267222857,40.045796655356],[-75.037213845523524,40.04572460639239],[-75.037034155921077,40.045624432984873],[-75.036876293357992,40.045508484689613],[-75.03672429336622,40.045363714803059],[-75.036553328014563,40.045222117128745],[-75.036457474173076,40.045145642996346],[-75.03628998547731,40.045034897090694],[-75.036188268803627,40.044987244057481],[-75.036084055708187,40.044943151479714],[-75.035854527843313,40.044852659021103],[-75.035598684891752,40.044772403743863],[-75.035358371320072,40.044716044991254],[-75.03512624053549,40.044690648295962],[-75.034976023295783,40.044678048569629],[-75.034778387242895,40.04467337705929],[-75.034584879629563,40.044683282733217],[-75.034260808102331,40.044719061190285],[-75.034097491703037,40.04474905338926],[-75.033894044049035,40.044810071238288],[-75.033552759536903,40.044933998087309],[-75.032902621558492,40.045231751336374],[-75.032233075842072,40.045543521800212],[-75.031772566915848,40.045751634768642],[-75.031778072430086,40.045765479096559],[-75.031888102426308,40.046042157344807],[-75.031981917383106,40.046404566450136],[-75.032002146161815,40.04666387473636],[-75.031981144514319,40.046952977552884],[-75.031947946788605,40.047135001539608],[-75.031883219330311,40.047339809595627],[-75.031826601556446,40.047459739180432],[-75.031777583903008,40.047542428698492],[-75.031748301265281,40.0475918262919],[-75.03157824496131,40.047803383855126],[-75.031372763555652,40.048030008226526],[-75.031348628548486,40.048048596158011],[-75.031188071871483,40.048172247682849],[-75.030965662645343,40.048315402517986],[-75.030927441332707,40.048336689895372],[-75.030837455960778,40.048386805747548],[-75.030750749062378,40.048432727239074],[-75.030678825646717,40.048466299162449],[-75.030534317436306,40.04852759018987],[-75.030446851067936,40.048560302942285],[-75.030182555922437,40.048638953861818],[-75.02979746581542,40.048727575776752],[-75.029447345443813,40.048766344773405],[-75.029173968929868,40.048770729641319],[-75.029094042305715,40.048767026317208],[-75.028859546749231,40.048741562129102],[-75.028219516242004,40.048668479505743],[-75.02631286868511,40.048407898220674],[-75.026188671285382,40.048390020202923],[-75.025996748440775,40.048362392351152],[-75.025957547205479,40.04837983620039],[-75.025808894435045,40.048445982513783],[-75.025638678108677,40.048521723487056],[-75.025035142786592,40.048790275241771],[-75.024323609362781,40.049090144811757],[-75.024293751926876,40.049100347265124],[-75.02418988319117,40.04913584147684],[-75.023994979687217,40.049180087160551],[-75.023753307711885,40.049215981716493],[-75.023498534545922,40.049226225301204],[-75.023303095121932,40.049225206031238],[-75.023141103858521,40.049212311551145],[-75.023007785283468,40.04918923615746],[-75.02278806297322,40.049147820047502],[-75.02267143416482,40.049119710712837],[-75.022398610379028,40.049051693585213],[-75.022259469728198,40.048997709767185],[-75.022073924978869,40.048926333613281],[-75.02183336334366,40.048817450582263],[-75.021653470118082,40.048722677731227],[-75.021439738248048,40.048590901751005],[-75.021279746116775,40.048474908027622],[-75.021217759214679,40.048429968553002],[-75.0210376966089,40.048280891131732],[-75.020896981044004,40.048149037523672],[-75.020782002143449,40.048021415648044],[-75.020700934766523,40.047928989136189],[-75.020526210359492,40.047705827460661],[-75.020363881341581,40.047408749806557],[-75.020301103872299,40.047271507361948],[-75.020219236416395,40.047023401892446],[-75.020194348646314,40.046939550902763],[-75.020164195324924,40.04675240363342],[-75.020160676945267,40.046605709775115],[-75.020159923221769,40.046390301154801],[-75.020173918048755,40.046276603041001],[-75.020206566089328,40.046109048648567],[-75.020266184852218,40.045914985399747],[-75.020388773566751,40.045794818492475],[-75.02057221941277,40.045625416614676],[-75.020811160635517,40.045422944130117],[-75.020850914891696,40.045371398429246],[-75.020869174108896,40.045347461334963],[-75.020925498804829,40.04527362066581],[-75.020972312176326,40.045222242638872],[-75.02107469183801,40.045135984699655],[-75.021164210359075,40.045052751452602],[-75.021199483588518,40.045004287131391],[-75.021202582425147,40.044998102000115],[-75.021202711150437,40.044997845553468],[-75.021228420240533,40.044944155851603],[-75.021249424254478,40.044890355274148],[-75.021282367536045,40.044835075846166],[-75.021292479321019,40.044814991796159],[-75.021362749899609,40.044767737238686],[-75.021369947209323,40.044762897425997],[-75.021384142388499,40.044729635985838],[-75.021395948123143,40.044701974624751],[-75.021455879256308,40.044558598265027],[-75.02146969610844,40.044527220951451],[-75.021510305312916,40.044435000884882],[-75.021539489336973,40.044325438884108],[-75.021643421483319,40.043935257275457],[-75.021695544854438,40.04375227949356],[-75.020718248719319,40.043649753187772],[-75.020594963019789,40.04363810693976],[-75.020373546670442,40.043617189610053],[-75.020356281815069,40.043619213991697],[-75.020033302570241,40.043657086813695],[-75.019630043659134,40.043711478953092],[-75.019477201981275,40.043765599125138],[-75.019051083851892,40.043944085675562],[-75.018853607132783,40.044020033422299],[-75.018843852012481,40.044023785056595],[-75.01882110481219,40.044041075245538],[-75.018523143287197,40.044267550924651],[-75.01941257861229,40.045020470735558],[-75.019242433006113,40.045305153019349],[-75.019041195244384,40.045515551495811],[-75.018975120600416,40.045576058999494],[-75.018761847335242,40.045766629621717],[-75.018627894474449,40.045884248570204],[-75.01839476171078,40.046088952493243],[-75.018048690101963,40.046399317811009],[-75.018845975397824,40.047051194661691],[-75.018904659812904,40.047099175531919],[-75.018385449172484,40.047437157060799],[-75.018178671982426,40.047580290023468],[-75.018071843078147,40.047674249208761],[-75.017921800773266,40.047788745578266],[-75.017773767372574,40.047928983233369],[-75.017678360366006,40.048035755580301],[-75.01745329446338,40.048316639579916],[-75.017281398343883,40.048563941390711],[-75.017151464702479,40.048814730887074],[-75.017064594627769,40.04904165482143],[-75.017015019317824,40.049227152259398],[-75.016972314923493,40.049402857348831],[-75.01693470951362,40.04969317858766],[-75.016917890415527,40.049869499509299],[-75.016913243255246,40.050145669814974],[-75.016989970303896,40.050463286626702],[-75.017042352223669,40.050671115867033],[-75.017084715852477,40.050817169833273],[-75.017106804949506,40.050902007394754],[-75.017156262421267,40.050991156122798],[-75.017242232562992,40.051134483644155],[-75.017316381831449,40.051283721977285],[-75.017425583575701,40.051467396316454],[-75.017624374542478,40.051718537187071],[-75.017774232204886,40.051918112279026],[-75.017936901162429,40.052101190694117],[-75.018084094887968,40.052222713576469],[-75.01817670314675,40.052299171135033],[-75.018415282026453,40.052467252776744],[-75.018521562252658,40.052542583520122],[-75.018718409704988,40.052661136752782],[-75.018963796271137,40.052780843547659],[-75.019564183289432,40.053073263265674],[-75.019534667594868,40.053104307823098],[-75.019501478729921,40.053145538932299],[-75.021317288171531,40.054119235953067],[-75.021347461292947,40.054093817446905],[-75.021908789861925,40.054393171014546],[-75.022369739222711,40.054648254692125],[-75.023035935544982,40.054996353433054],[-75.023062276185314,40.054979051239641],[-75.02309298184295,40.05500029533097],[-75.023152675076361,40.055041595663091],[-75.02352121658312,40.055296578788536],[-75.023574872124257,40.055227285894993],[-75.023904742513238,40.05477616071002],[-75.024761533945266,40.053584958763629],[-75.02494268844535,40.053331473694477],[-75.024947191832879,40.053324767630933],[-75.024952639294426,40.053316655786986],[-75.024605783213445,40.053168709923476],[-75.023992041166238,40.052905868404416],[-75.023436182664682,40.052667864422709],[-75.022944001026715,40.052457121451212],[-75.022893521685475,40.052435506106043],[-75.022897965812319,40.052430773828995],[-75.02297479738678,40.052345513233618],[-75.023519749601633,40.051768684745397],[-75.023522889059066,40.051765342448292],[-75.023976924666371,40.051287025633492],[-75.024115644323587,40.051159644285455],[-75.024246034404499,40.051058198485201],[-75.024363090964755,40.050986305312207],[-75.024502214700618,40.050909335508464],[-75.024732476069886,40.050800925457047],[-75.024971245321126,40.05072258589302],[-75.02519440646482,40.050670008968872],[-75.025290491226883,40.050657093469752],[-75.025643283322381,40.050616371037215],[-75.025677681757458,40.050612400390989],[-75.025752101790459,40.050611994593247],[-75.025843220586623,40.050611496363089],[-75.026061564608696,40.050610303401413],[-75.026228714011964,40.050621733717712],[-75.026431591249221,40.050650811932691],[-75.02663394676253,40.050684683648484],[-75.026686772387919,40.050693526447937],[-75.026879490562038,40.050725784337935],[-75.026938298001554,40.050735627521881],[-75.027246907170834,40.050793344714251],[-75.028892369761351,40.05113288116015],[-75.029384147765214,40.051226666216934],[-75.029500111463904,40.051242479564969],[-75.029715275878175,40.051268109812334],[-75.029945225124081,40.051288488766886],[-75.030258584118172,40.051288440882715],[-75.030489654970296,40.051280843224468],[-75.030768679277486,40.051278463769734],[-75.030823596740191,40.051277994905746],[-75.030895457873044,40.051277381923896],[-75.030902885778673,40.051278870573299],[-75.031005738782255,40.051274180343114],[-75.031134974934062,40.051286644281859],[-75.031210335159514,40.051299715331425],[-75.031338819447924,40.051330973455791],[-75.031459665053475,40.051369575373151],[-75.031567907348787,40.051417284127162],[-75.031663546314775,40.051474100653564],[-75.031748799591256,40.051545720758909],[-75.031815241409333,40.051598084390228],[-75.031897523246315,40.051682802073792],[-75.03196689944663,40.051784145154606],[-75.0320501205791,40.051906508452092],[-75.032157232909086,40.052104682118362],[-75.032293653366295,40.052365628018038],[-75.032374781094916,40.052519033288135],[-75.032376287538057,40.0525193906008],[-75.032387333125939,40.052541010475544],[-75.032410704735767,40.052563964449234],[-75.032449086356976,40.052576073385936],[-75.032480710631901,40.052574954480406],[-75.032522191759298,40.052570335661372],[-75.032593092909551,40.052558945701634],[-75.032722762896171,40.052535877787136],[-75.032954398128609,40.052453619009398],[-75.033226132173695,40.052340572957867],[-75.033394817823932,40.052253090665005],[-75.033565930185389,40.052165665515759],[-75.033765155799102,40.052043437569303],[-75.033867942138428,40.051963730479834],[-75.034073514092725,40.051804316024132],[-75.0342484619581,40.051658309394092],[-75.034433391625626,40.051491741257884],[-75.034537072088895,40.051389653656656],[-75.034605419078119,40.051344310802236],[-75.034657926154253,40.05131295629814],[-75.034677473382857,40.05130128294028],[-75.034818599502756,40.051241374539764],[-75.034890954330024,40.051219396847785],[-75.034964019856019,40.051201984424111],[-75.035056635520206,40.051187179394283],[-75.035135588849371,40.051178918343126],[-75.035240249073425,40.051175726748319],[-75.035388177629912,40.051185316248066],[-75.035453927862761,40.051194422546985],[-75.035566898685843,40.051210514936102],[-75.035636251488881,40.051236456827098],[-75.035639244631525,40.051237576374731],[-75.035676453846705,40.051251494684742],[-75.035732036643722,40.051272286023838],[-75.035758716879357,40.051286409666375],[-75.035838176670367,40.051328473087231],[-75.03583908029502,40.051328951270264],[-75.035904748137995,40.051378692842519],[-75.035935745344901,40.051402172245623],[-75.035960778059319,40.051427322745241],[-75.035967123915611,40.051431066966408],[-75.036027418725709,40.051487248398089],[-75.036104954780868,40.051581429022356],[-75.036165085769639,40.051686354359362],[-75.036197589920093,40.051767196962111],[-75.036213862892922,40.051829462072732],[-75.036224794670758,40.051915511341434],[-75.036234962957664,40.051995556879419],[-75.036229804286592,40.052055902862662],[-75.036207802088825,40.052131032793554],[-75.036159503532275,40.052227951603619],[-75.036070873983761,40.05237006594605],[-75.036054097584085,40.052390614592497],[-75.036017436276623,40.052456951717168],[-75.035978759346904,40.052573643401082],[-75.035972528361668,40.05266870142993],[-75.035988809877466,40.052747489375093],[-75.036026335578256,40.052841714141799],[-75.036094890103797,40.052949738971293],[-75.036235171846585,40.05314719542752],[-75.036337743004211,40.053315759818076],[-75.03640413406815,40.053477868572564],[-75.036451036749881,40.053641383944864],[-75.036476245172693,40.053800652917268],[-75.036480582019095,40.053935161754346],[-75.03645329514876,40.054070790625367],[-75.036431904636402,40.054180423735353],[-75.036390652170738,40.054300788681019],[-75.036318485931787,40.054465225540341],[-75.036234184332542,40.054629375704721],[-75.036083423753553,40.054875960114948],[-75.035923626917892,40.055105529848738],[-75.035805196282155,40.055272605620885],[-75.03538269644055,40.055874919229737],[-75.035027171848739,40.056381743763517],[-75.034621750069434,40.056963192690326],[-75.034525946537642,40.057100589758214],[-75.034478268502568,40.057168968273267],[-75.034416363794179,40.057257750039028],[-75.03439006208383,40.057296981028401],[-75.034343945828212,40.057365765840608],[-75.034150251148546,40.057654679200006],[-75.034031736986478,40.057823619238583],[-75.034072549221023,40.057835785011427],[-75.034153501830147,40.057876899864077],[-75.03427877650762,40.057963865389013],[-75.034419472880884,40.05809039739313],[-75.034486945410606,40.05816479544584],[-75.034572118808555,40.058282547886385],[-75.034637875957884,40.05839983956767],[-75.034701095225614,40.058580542290457],[-75.034706771346535,40.058681481725742],[-75.034685938870822,40.058837796904363],[-75.034648115732509,40.058993710525286],[-75.034536025287295,40.05924494019213],[-75.034273110010702,40.059827910042415],[-75.034123759502705,40.060136838802293],[-75.033702559880936,40.061069594034628],[-75.033596474149718,40.061352699968701],[-75.033560850581679,40.061514264449059],[-75.033539677591563,40.061739641650952],[-75.033542851235424,40.061842388977645],[-75.033564957389984,40.062018386296664],[-75.033607340434102,40.062269764826958],[-75.033657228846323,40.062565660684349],[-75.033732110229735,40.063027869914222],[-75.033778758841066,40.063311307722032],[-75.03385051563464,40.0636846838377],[-75.033902833817891,40.063894997286624],[-75.033936379715811,40.064005549310778],[-75.034041265201751,40.064260420679723],[-75.034188063277114,40.064659641874272],[-75.034298339987316,40.064878791998609],[-75.034451075515364,40.065069077364171],[-75.03458782762668,40.065173114472096],[-75.034861856904755,40.065368131710208],[-75.035376719722578,40.065677111415532],[-75.037063770125187,40.066687667132875],[-75.038169726059735,40.067344736649865],[-75.03985799369768,40.068337344411965],[-75.039956660155482,40.068395351875722],[-75.039969161620419,40.068402701941842],[-75.039999333463271,40.068420238839394],[-75.040108841163061,40.06848388922792],[-75.040146501050145,40.068505778144512],[-75.040254458256413,40.068568526814055],[-75.040295317178604,40.068592276099608],[-75.040390223124078,40.068647438180996],[-75.040451202172775,40.068682882632878],[-75.040745736678161,40.068859253697923],[-75.040899078510051,40.068946996464973],[-75.041031682872003,40.069027966212111],[-75.041109106269701,40.069080857555299],[-75.041209741465423,40.069156782633875],[-75.041361326429282,40.069299563637351],[-75.041446963457744,40.069392986564203],[-75.041533435770532,40.069510287115371],[-75.041605572631852,40.06962845171428],[-75.041663481352131,40.069744908618588],[-75.041725300636699,40.069920075467742],[-75.041749776940321,40.070023299057652],[-75.041756649224865,40.070073595450744],[-75.041780430902435,40.070200151569757],[-75.041785567689359,40.070375746722959],[-75.041757881651478,40.07058230419419],[-75.041702107725143,40.070762064721187],[-75.041619333096079,40.070948654949412],[-75.041500590892909,40.071123197323608],[-75.041367880407591,40.071282476335931],[-75.041256225950463,40.071401183479772],[-75.041017936851063,40.071587841377706],[-75.040638637011284,40.071898114214989],[-75.040307171097723,40.072166577859136],[-75.040195962767868,40.072274093606708],[-75.040123145944008,40.072393715550909],[-75.040089224563133,40.07251406816868],[-75.040084285707465,40.072575740335552],[-75.040115930267277,40.072695958648737],[-75.040183988607765,40.072817035624773],[-75.040303666766007,40.072984131777162],[-75.040418713222422,40.073145518552103],[-75.04057309290576,40.073356367649161],[-75.040849061962533,40.073747425016954],[-75.041079236277483,40.074068332151981],[-75.041567457377781,40.074742534948491],[-75.041946948581739,40.075279769105911],[-75.04238871640267,40.075900604318534],[-75.042584127693061,40.076179620982579],[-75.0430950192805,40.076895420404881],[-75.043292864843551,40.077174511069451],[-75.04336417971686,40.077275109657847],[-75.043446729623852,40.077392187171377],[-75.043620544749444,40.077638700587755],[-75.043753975854528,40.077827938175979],[-75.043854054878921,40.077969875397201],[-75.043996055752885,40.078169195365199],[-75.04403599267151,40.078225253769588],[-75.044208438120691,40.078467307982486],[-75.044555692243449,40.078960836667001],[-75.044686861856334,40.0791449991546],[-75.044921259378469,40.079482797997223],[-75.045130514119379,40.079780801740327],[-75.045406831923543,40.080164388001499],[-75.045415168390136,40.080179652414095],[-75.04552561610673,40.080333041941856],[-75.045583860460383,40.080419035372771],[-75.045657809415644,40.080514667392926],[-75.045734807363374,40.080623502979691],[-75.045857586926687,40.080794694187254],[-75.045992769280929,40.080991067608565],[-75.046019474905449,40.081029816564886],[-75.046252129996432,40.081332325955721],[-75.046448836801829,40.08157963078343],[-75.046795207977766,40.081974194225843],[-75.046991943552456,40.082159894965478],[-75.047142871605786,40.082275449183605],[-75.047311018478752,40.082385808089903],[-75.047436801251976,40.082461568711565],[-75.047520664337014,40.082491541624258],[-75.047975927683794,40.082166231504814],[-75.049536190667425,40.081066055838392],[-75.049956255686951,40.080769779154295],[-75.050059363529655,40.080682597715978],[-75.050124343076888,40.080637455385585],[-75.050284479387869,40.080521746433128],[-75.050483111749642,40.080354671769278],[-75.050994187179313,40.080030660364358],[-75.051659430433844,40.080473879064648],[-75.051741007935746,40.080528229830598],[-75.051751313971366,40.080535096283882],[-75.051775423907699,40.08055115851753],[-75.052142824278619,40.080173367992259],[-75.052347597488534,40.079965449397918],[-75.05244550558875,40.079866035606081],[-75.052667739380638,40.079640384647071],[-75.052743003860684,40.079563962788534],[-75.05322390052217,40.079843994906419],[-75.054151555629829,40.080372707504772],[-75.055078815065642,40.080897476228216],[-75.055382946827422,40.081744640858105],[-75.055726046705672,40.082712188425845],[-75.055822898477075,40.083008142695121],[-75.056107820599095,40.083807580346246],[-75.056494835105326,40.084893758624865]]],[[[-75.019984843172821,40.043517092832992],[-75.019985665458748,40.043564344044967],[-75.020286917236831,40.043525615328669],[-75.020314944612025,40.043522012166818],[-75.020412307604289,40.043532236267254],[-75.020493912573272,40.043540805430098],[-75.020519085976602,40.043432352164153],[-75.020698649325979,40.043453068602624],[-75.021287674200238,40.043521023583587],[-75.02129680328072,40.043522076632712],[-75.021309593239508,40.043062908571358],[-75.021314216365937,40.042900894670375],[-75.021517835295882,40.042915283714429],[-75.021531159944516,40.042916225560482],[-75.021515492003431,40.043541084729746],[-75.021701359747283,40.043563724423286],[-75.021716916834535,40.043088968032926],[-75.021723273615578,40.042755172627572],[-75.02172908044497,40.042303263423442],[-75.021735565868823,40.041813306947546],[-75.021136054071277,40.041735547249843],[-75.021130598358312,40.041734839155552],[-75.021048765901938,40.041724224994532],[-75.021120733055341,40.041463420582247],[-75.02119025490795,40.041220934216021],[-75.021258951485905,40.041041431981888],[-75.021321264001898,40.040893279035807],[-75.021322582325212,40.040860495627939],[-75.021433946647733,40.040596690263129],[-75.021610433857873,40.040157234228865],[-75.021789614963794,40.039640629411601],[-75.022035600507152,40.039604687221221],[-75.022738184882172,40.039237033882898],[-75.022935937263128,40.039133551005648],[-75.023152154928482,40.039033977061777],[-75.023508914518189,40.03889823934437],[-75.023516117100556,40.038339572777531],[-75.023522710867724,40.037634798813812],[-75.023525833124424,40.037301096959823],[-75.023535413414947,40.036277224915956],[-75.023537688369544,40.036008694432645],[-75.023552205303787,40.035749053346869],[-75.023558173650514,40.035642312497956],[-75.023571737964375,40.035399696801299],[-75.023619513424165,40.034545205706003],[-75.023642537621868,40.034133374313456],[-75.023453139105015,40.034119856732445],[-75.022633192877194,40.033971630597932],[-75.022612377703965,40.033966011074128],[-75.021998014502259,40.033320072808046],[-75.021123606317573,40.032389688406631],[-75.020751454720639,40.032005449719612],[-75.019995248275862,40.032424562855468],[-75.019490537079548,40.032703955930181],[-75.019001545005352,40.032974531674718],[-75.018645415309635,40.033168198075579],[-75.018369046024063,40.033324603197933],[-75.018193663381766,40.033423298356205],[-75.018053957800191,40.033501915728728],[-75.017947313658368,40.033561928623875],[-75.018077064567919,40.033676234650109],[-75.018462952996828,40.03377893140847],[-75.018740482909408,40.033856787522296],[-75.018859950388673,40.033889024700898],[-75.018984060359912,40.033905900064191],[-75.019186218667926,40.033933914714495],[-75.019228258955224,40.033939555669548],[-75.019507636776723,40.033949292339308],[-75.019554473566757,40.033950859087788],[-75.019585129958685,40.033951884362672],[-75.019797413771215,40.033958987199277],[-75.019827230830103,40.033959984347156],[-75.019843688189567,40.033960605337029],[-75.020054766583513,40.033968563881537],[-75.020079937807594,40.033969512705966],[-75.020271371804,40.033976729988403],[-75.020444611830854,40.033973111826818],[-75.020445609121921,40.03397305983993],[-75.021033572193659,40.033942240496536],[-75.021382498995365,40.03392422813014],[-75.021396732326792,40.033938764262153],[-75.021448563921695,40.033991699290489],[-75.021612407356187,40.034159024727771],[-75.021581495159339,40.034570028864962],[-75.021228914613161,40.035213701265874],[-75.021021268710953,40.035592774276296],[-75.021081361807873,40.036306489519404],[-75.021163558976809,40.036527204097396],[-75.021334566993232,40.036974041523528],[-75.021404444733221,40.037172323306578],[-75.021451517436759,40.037305889919551],[-75.021463316972032,40.037339369716548],[-75.020963506482133,40.037595258797403],[-75.020274939703953,40.037958665921529],[-75.01983550542765,40.038188177646674],[-75.019749323393256,40.038233188628979],[-75.020263081526792,40.038819431837844],[-75.020375878534637,40.03895052506855],[-75.020551293980262,40.039154389856328],[-75.020353963353159,40.039729890000892],[-75.020073191499861,40.040596514676992],[-75.019995779840428,40.040823417447967],[-75.019952562835869,40.04095009455493],[-75.019922495010661,40.041116210841047],[-75.019915882481754,40.04128056259276],[-75.019931668819623,40.041793715672853],[-75.019940360647965,40.042089200862854],[-75.019948978389024,40.042382158618913],[-75.0199577505159,40.042616880137849],[-75.019963100357614,40.042993277497253],[-75.019980854768463,40.043287715670274],[-75.019984843172821,40.043517092832992]]],[[[-75.047962160963607,40.047939666560879],[-75.047997417882655,40.047944447863962],[-75.048193635509705,40.047958980878029],[-75.048429768790839,40.04800254429437],[-75.048687848335305,40.048086442453325],[-75.048940142223614,40.048197354383532],[-75.049548793794401,40.048526602264232],[-75.050571990989866,40.049091835767769],[-75.050704917610531,40.049045216018122],[-75.050729517263918,40.049039428140546],[-75.050751632355571,40.048601931083446],[-75.050791969067831,40.048154386587598],[-75.050831453521425,40.047969445203258],[-75.050902223656067,40.047717581895157],[-75.050956562552031,40.047564373013095],[-75.051028448576474,40.047396728912481],[-75.051157600337163,40.04715945373043],[-75.051170688529737,40.047125780895328],[-75.050683299770327,40.047063648707095],[-75.049996923399732,40.046971499126691],[-75.049479164926254,40.046903218231741],[-75.049369299348328,40.046882535985858],[-75.049051681391433,40.046815338739499],[-75.048790966303244,40.046738618342147],[-75.048704145831138,40.046716882495893],[-75.048505089252373,40.046643206221191],[-75.048324372495145,40.04656836697341],[-75.048215083893837,40.046533216410857],[-75.048055730754982,40.046487391100321],[-75.04793996494945,40.046463396084363],[-75.047878861798495,40.046460148559881],[-75.047689215419865,40.046432157337748],[-75.047491357284215,40.046432933235494],[-75.047290788201593,40.046442694249095],[-75.047049786642461,40.046462362983014],[-75.045494366433275,40.046629449750441],[-75.045465361779463,40.047074152301356],[-75.045457582771789,40.047193421356326],[-75.045372683973866,40.04849507967981],[-75.045379834332948,40.04851903034254],[-75.045397040983417,40.048549445827412],[-75.045421947800236,40.048571549302942],[-75.045445675423238,40.048586263432156],[-75.045480511766954,40.048599541513383],[-75.045527396637283,40.048606307521624],[-75.045555301758952,40.04860554893321],[-75.045579988288949,40.048602354715186],[-75.046569839428344,40.048203576974636],[-75.046863643837014,40.048096642435858],[-75.047028256649781,40.048047276465141],[-75.047216758309943,40.048003101021216],[-75.047423312312347,40.047959350884661],[-75.047646685387875,40.04793068134741],[-75.047787530418006,40.047927749406583],[-75.047962160963607,40.047939666560879]]]]},"properties":{"OBJECTID_1":66,"OBJECTID":9,"ASSET_NAME":"Pennypack Park","SITE_NAME":"Pennypack Park","CHILD_OF":"Pennypack Creek Park","ADDRESS":"NA","TYPE":"Land","USE_":"Park- Regional/Watershed","ACREAGE":1343.4041070000001,"ZIPCODE":"19152","ALLIAS":" ","GLOBALID":"e18f8226-7cc7-480c-a849-858542fa2324","Shape_Length":101510.02768640357,"Shape_Area":58572936.084998749}},{"type":"Feature","id":67,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.271503712139463,39.972232349090334],[-75.271544734752823,39.972281937870761],[-75.271590836580515,39.972339059551963],[-75.271627598311909,39.972383148561008],[-75.271670279226143,39.972436205860674],[-75.271708742967675,39.972482563339987],[-75.271830862042393,39.972632937883994],[-75.271937647398616,39.97276332887386],[-75.271964976968974,39.972796915820155],[-75.272000013751097,39.972839380814641],[-75.272030730433343,39.97287793323413],[-75.272057213372392,39.972910301762283],[-75.272092250336314,39.972952764927989],[-75.272118736859923,39.972985004677241],[-75.272147753317341,39.973021245362204],[-75.272180235458748,39.973060393569064],[-75.272207549604076,39.973094409888802],[-75.272239174962209,39.973132552998983],[-75.27226734796902,39.973167488832651],[-75.272301533769507,39.973208862279279],[-75.272326268907435,39.973240162275076],[-75.272358731303058,39.973279825363619],[-75.272389505873932,39.97331683373892],[-75.27241599113718,39.973349115732219],[-75.272447580368947,39.973388287825131],[-75.272479173162566,39.973427331144613],[-75.272507362483637,39.973461794249026],[-75.27253640862925,39.973497264224463],[-75.272567181786471,39.973534316665457],[-75.272631240209606,39.973612978874705],[-75.27354797898137,39.974723068264062],[-75.274496497966481,39.975881817112246],[-75.275606105089381,39.977235155590655],[-75.276361473422028,39.976890799735706],[-75.276691651941761,39.976719456692372],[-75.278465976445361,39.975805095104334],[-75.278900769904183,39.975578671250496],[-75.279211030817777,39.975421802696893],[-75.279916383758675,39.975053423677565],[-75.280192033661407,39.974911711717553],[-75.280262566573498,39.97487545063116],[-75.28029924894787,39.974856592368049],[-75.280291053242848,39.974703742708655],[-75.280183129626764,39.974620114420667],[-75.280100274931172,39.97455479476865],[-75.279769625015021,39.974294121320277],[-75.279511548131964,39.97420411471375],[-75.279247848382852,39.974112145739731],[-75.279245897073636,39.97406917370018],[-75.279243291331667,39.974011805182215],[-75.279236111983394,39.973853747068503],[-75.279133947899538,39.973710271427429],[-75.278984757510756,39.973500751926245],[-75.278945916877788,39.97330622406087],[-75.278936963011873,39.973261381243098],[-75.278891592856397,39.972933424041273],[-75.278871124161498,39.972891446147891],[-75.278814255806921,39.97276992857347],[-75.27878021338789,39.972697184405192],[-75.278737518474315,39.97255165448459],[-75.27862875392168,39.972298548725909],[-75.278583965309821,39.97228554337913],[-75.278045057150607,39.972129057476629],[-75.277860564748266,39.971978932724284],[-75.277947875116709,39.971750098902859],[-75.277972060282096,39.971686709577142],[-75.277990975417225,39.971637135016493],[-75.278002899589211,39.971474320244745],[-75.277929174374165,39.971357350286979],[-75.277762350454068,39.971279874724814],[-75.277720749333639,39.971260554229666],[-75.277587630254814,39.971182303531677],[-75.277585326890346,39.97118342878511],[-75.27755040081955,39.971200492299566],[-75.277261916376943,39.971341434623653],[-75.27705175748514,39.971292291724332],[-75.276922004200472,39.97120874471517],[-75.27686203338763,39.971170130769622],[-75.276809498778363,39.971136304515262],[-75.276643893720191,39.971126581394323],[-75.276556207999221,39.971118537626801],[-75.276554249044395,39.971118115186037],[-75.276492721542141,39.971104861709684],[-75.276385331065342,39.971067685015868],[-75.27630315912846,39.971039239107462],[-75.276349666242936,39.970860245858653],[-75.27637586171474,39.970832753922508],[-75.276428666555844,39.970777335671762],[-75.276418230385232,39.970755374474301],[-75.276363665428619,39.970640552656093],[-75.276420405407649,39.970507710321058],[-75.276443085763859,39.970454608722243],[-75.276446488409434,39.970397728191571],[-75.2763770094286,39.970383923918867],[-75.275730709612375,39.970286914597338],[-75.275706120333268,39.970238641249388],[-75.275535522158194,39.969903717596821],[-75.275531043670682,39.969894925624608],[-75.275463319863192,39.969778084267702],[-75.275437942475094,39.969651386630119],[-75.275413930289304,39.969597023290163],[-75.275384669265492,39.96946716502309],[-75.275379224942881,39.969439981151353],[-75.2753634357518,39.969361150519873],[-75.275319165395643,39.969358931689186],[-75.275234807974158,39.969354704930666],[-75.275105544873327,39.969346670573792],[-75.275083193315808,39.969345281193029],[-75.274973253826531,39.96934444787842],[-75.274853157415464,39.969348011109624],[-75.274801392705882,39.969349489335791],[-75.274669015235176,39.969353269485012],[-75.274416180996084,39.969323200121273],[-75.274272724970331,39.969309336485068],[-75.274147265894911,39.969285802396904],[-75.274105910636479,39.969278045476095],[-75.273861718506566,39.969283738523018],[-75.273831753231761,39.969284437059862],[-75.27349332588166,39.969298671488978],[-75.273190844917593,39.969302961822059],[-75.273172050002586,39.969296553770469],[-75.273131485371238,39.969297015225258],[-75.273079708404936,39.969291281830266],[-75.273055693204427,39.969283172637716],[-75.272807141149343,39.969199246585795],[-75.272703339813418,39.969192000653358],[-75.272647590535883,39.969188109408371],[-75.27246645624966,39.969165737416141],[-75.272326549072332,39.969129621551645],[-75.272240224149385,39.969107337608428],[-75.272116626512314,39.969075431678938],[-75.272076238963038,39.969065006377193],[-75.272073872538698,39.969050396258908],[-75.272062128341403,39.968977889056902],[-75.272045231773248,39.968873571233097],[-75.271952052365066,39.968769687294717],[-75.271945324736052,39.968762185461699],[-75.271846814888733,39.968757660464419],[-75.271755695588439,39.968753475199229],[-75.271353375223185,39.96873624031101],[-75.271248629763093,39.968731753090168],[-75.270941814068152,39.968811276984724],[-75.270745105661902,39.968734018310158],[-75.270498297811031,39.968637082173899],[-75.270236148317707,39.968040661679829],[-75.27017327290379,39.96790084479747],[-75.270010425843807,39.967541947715148],[-75.269943947378181,39.967391283330102],[-75.269930843971395,39.967391743424891],[-75.269875502528663,39.967395199041619],[-75.26948452098928,39.967419610904443],[-75.269295987426631,39.967431381561212],[-75.26913435697405,39.9674414730138],[-75.269079907859918,39.967363227225796],[-75.268915892738661,39.967127525611033],[-75.268806953111934,39.966973384454057],[-75.268794484054794,39.966955741109807],[-75.268663040859025,39.966769757965849],[-75.268544754703399,39.96674865131947],[-75.268182323258785,39.966683977537201],[-75.267883431424551,39.966546746695812],[-75.267446941733198,39.966345000681066],[-75.267359798478438,39.966295999023231],[-75.267287777567446,39.966255500058537],[-75.267207930600534,39.966210600672554],[-75.26678136002414,39.966175216691063],[-75.266517014910249,39.96607032563454],[-75.26637538061027,39.966014125179129],[-75.266183592876843,39.966009973658409],[-75.265795957896103,39.965784662881362],[-75.265579736467373,39.965464603483618],[-75.26553263070825,39.96544294459968],[-75.265383107654699,39.965374193396705],[-75.265162159104861,39.96525984323732],[-75.26515353116497,39.965255377599419],[-75.264583889690016,39.965250732374273],[-75.264297536975107,39.965372218913267],[-75.264161629360899,39.96539361741543],[-75.264054484871281,39.965410487099177],[-75.263860588940361,39.965441016340691],[-75.263598041253061,39.965370774184642],[-75.263260328592722,39.965449769152571],[-75.263140045761531,39.965477903903029],[-75.262904843070302,39.965640667089794],[-75.262860547556471,39.965671318985535],[-75.262824878612832,39.965663549637995],[-75.262813062138449,39.96566097615527],[-75.26270633412102,39.965637729939104],[-75.262712558225289,39.965626903446868],[-75.262762163358303,39.965540618993046],[-75.262783206701243,39.965504014826628],[-75.2623495999228,39.965546504365236],[-75.262316362894893,39.965684424154681],[-75.262303308098012,39.965738594112359],[-75.262203679566426,39.96581689672302],[-75.262186633127385,39.965830294214527],[-75.262152262725905,39.965867352632635],[-75.262111088966506,39.965919667715035],[-75.262107424714102,39.965924122935618],[-75.262012482234638,39.966076524232143],[-75.261981212108907,39.966109973798041],[-75.261968784007408,39.966123267779786],[-75.261873537255781,39.966158124896154],[-75.26186471445169,39.966154826067616],[-75.261690108153815,39.96608953367214],[-75.26152697079425,39.966025219541393],[-75.26142994777156,39.965986969438276],[-75.261378400702711,39.965975082826688],[-75.261313964783994,39.965987530730132],[-75.261261515520744,39.966000239492388],[-75.261194462854689,39.96602955383203],[-75.261153913716797,39.96609944239632],[-75.261090596273448,39.966156496233708],[-75.261035985338154,39.966207650924026],[-75.260744813474588,39.966296717547685],[-75.260720817845936,39.966304182428424],[-75.26071245449603,39.966306784139533],[-75.260599502297026,39.966313262392909],[-75.260576210175529,39.966314597766832],[-75.260369961848355,39.96626858453655],[-75.260333129974981,39.966251840565725],[-75.260181300051656,39.966189251078852],[-75.260176995148214,39.966187476419918],[-75.260087940324937,39.966162466914902],[-75.260032536612329,39.966151688914685],[-75.2598119949905,39.966108787340268],[-75.259693932135022,39.966056994969932],[-75.259704055711055,39.966014137526059],[-75.259708238704263,39.965996430184752],[-75.259719964411232,39.965946792434657],[-75.259716196303074,39.965924657155966],[-75.259700916698876,39.965834900614205],[-75.259615947570012,39.965784538189411],[-75.259503228649223,39.965834786833867],[-75.259408624926152,39.965876959294825],[-75.259388777994744,39.965868835846713],[-75.259069058834996,39.965737975204966],[-75.258880719237922,39.965660887297169],[-75.25885096232409,39.965584763604149],[-75.258749905789003,39.965326240862048],[-75.258747284086027,39.965319535542072],[-75.258673738807047,39.965260228539272],[-75.258543382619038,39.965155110572361],[-75.258549242763081,39.965102183088248],[-75.258585859952447,39.964771466532824],[-75.258588689421913,39.96474590925304],[-75.258558286879762,39.964561901449699],[-75.258539906309721,39.964541201245794],[-75.258530956222558,39.964495598859557],[-75.258509584577197,39.964386699863333],[-75.258526001272585,39.964366794005706],[-75.258568170826209,39.964315664967479],[-75.258779541666243,39.964221795363244],[-75.258917273799682,39.963737102144961],[-75.258899457593259,39.96371646920916],[-75.258733159317885,39.963523877880952],[-75.258489196402593,39.96336165970208],[-75.257805645089988,39.96335604483388],[-75.257267578124413,39.963472046131322],[-75.256999571865265,39.963529299624618],[-75.256970615070045,39.963538759722688],[-75.256963775166753,39.963547776867557],[-75.256907748969155,39.963575026251817],[-75.256840990736379,39.963607496097381],[-75.256746981653123,39.963653220145183],[-75.25671052559693,39.963724881907488],[-75.256657879387603,39.96382225925985],[-75.25662161467551,39.963886564972526],[-75.25658502238727,39.963951371714458],[-75.256577718892643,39.963964307978891],[-75.25653260575551,39.964050906469531],[-75.256445717034623,39.964117979004648],[-75.256409872491062,39.964156217349583],[-75.256293212422619,39.964180407059189],[-75.256230792861842,39.964193350015101],[-75.256013830721102,39.964334810778155],[-75.255983170713293,39.964354802224285],[-75.255992641390662,39.964400434182629],[-75.256059421662897,39.964722174946886],[-75.256064714669762,39.964747678982349],[-75.255610136909453,39.965027706191783],[-75.255091170696048,39.96493163784897],[-75.254663536125165,39.965021774381484],[-75.254332891925387,39.965091466329739],[-75.254303106031827,39.965097744366957],[-75.254138422255693,39.96502773668373],[-75.253696423059139,39.965161913838323],[-75.253603160415366,39.965150402715715],[-75.253444161307968,39.96513098037569],[-75.253315660758375,39.965138782656581],[-75.253076854164746,39.965153282586805],[-75.252970213121003,39.965159757301606],[-75.252742100965406,39.965170132989037],[-75.252709242555994,39.965171627959158],[-75.252675150013673,39.96517672164476],[-75.252539381006883,39.965181793432443],[-75.25245088859495,39.965185099279694],[-75.252349951656015,39.965188180115575],[-75.252246245546374,39.965193774711146],[-75.252132772349938,39.965198042058255],[-75.252102212117606,39.965199895926446],[-75.252048345035931,39.965229188411477],[-75.25198281338713,39.965257327730725],[-75.251708870062174,39.965374956712886],[-75.251387889864603,39.965307797359323],[-75.251211855112857,39.964856704645882],[-75.251041809962359,39.964907271540071],[-75.250511774385956,39.965064888323631],[-75.25039318897484,39.965100152009043],[-75.250045539007331,39.965081638000939],[-75.249342210269162,39.964683410813329],[-75.249196439151348,39.964547750093892],[-75.248761423114274,39.964142897216774],[-75.248486241463141,39.963507848001299],[-75.248256474211956,39.963377028287248],[-75.247643248999424,39.963027201734988],[-75.24756140016656,39.962980509340802],[-75.247479212006155,39.962933622979229],[-75.247100259646984,39.962890820049495],[-75.246906785332712,39.962868965984846],[-75.246868885170429,39.963050637834556],[-75.246613677256931,39.964273952212388],[-75.246604614226996,39.964317394036399],[-75.246602455635838,39.964342226942577],[-75.246599990200224,39.964370588647959],[-75.246598443889738,39.964388370232001],[-75.247427363631203,39.964492984366757],[-75.247503676857008,39.96450261540533],[-75.247531384224857,39.964506111902196],[-75.247567831680229,39.964510710818686],[-75.247435386062975,39.965114991676415],[-75.247350864739218,39.965479639313642],[-75.247277803158696,39.965822655372129],[-75.247283276771157,39.965847334007393],[-75.247286946968998,39.965863880594625],[-75.250252115339322,39.966229367868848],[-75.250245840541297,39.966272510281279],[-75.250242597645411,39.966294800432536],[-75.251175141671837,39.966405196999148],[-75.251197359626133,39.966407827921564],[-75.251205217573371,39.9664087585857],[-75.251085265422532,39.96696408582897],[-75.25096956607635,39.967500360446522],[-75.250939704360363,39.967703655701023],[-75.250927125513726,39.967789287629813],[-75.250918561503767,39.967847588040499],[-75.251919039656698,39.967972309370509],[-75.251910465248372,39.968012478072502],[-75.251881744334938,39.96814702482358],[-75.251053827970566,39.968049229582704],[-75.25099045980356,39.968039321618463],[-75.250927013295481,39.968031543657411],[-75.250824121381086,39.968059636326686],[-75.250794014212019,39.968206945831554],[-75.250551765070284,39.969367552627737],[-75.250548583725788,39.969383299328094],[-75.250545912101316,39.969396522643407],[-75.250545992274809,39.969409460820231],[-75.250549441898087,39.969415893355048],[-75.250554830046624,39.969421484243313],[-75.25057137261598,39.969427693814254],[-75.250580426657464,39.969429097458914],[-75.250601620515297,39.969431740405959],[-75.250655526087272,39.969438461068144],[-75.251792767984469,39.969579213587636],[-75.251828144042278,39.969583636392514],[-75.251828316549606,39.969583658168027],[-75.251828909263892,39.969579449930563],[-75.251830485062925,39.969568251586168],[-75.251833445061962,39.969552083779938],[-75.251833897325071,39.969552140477795],[-75.253460131081596,39.969756247233498],[-75.253796904713482,39.969797257446146],[-75.254362525558818,39.969866131965375],[-75.255145201464089,39.969964694078257],[-75.25511763554276,39.970097534019182],[-75.254869301633235,39.971368182839534],[-75.254803617417068,39.971625929701062],[-75.254984249343067,39.972587342776542],[-75.254996053299863,39.972644482514241],[-75.255028351376978,39.972760906077241],[-75.255029144632161,39.972793637360887],[-75.255030863767828,39.972864543888576],[-75.255266843597411,39.974182471275881],[-75.257936694939715,39.973887669508279],[-75.257950004289981,39.973886996286019],[-75.257951353518806,39.973886928279803],[-75.2582523938066,39.973871711062053],[-75.258278970237157,39.973870367229267],[-75.258614852359614,39.973853386439096],[-75.258620555534733,39.973853097606387],[-75.258704250320818,39.973848866312281],[-75.258711091516574,39.973859760024951],[-75.258728798084462,39.97388284664256],[-75.258730833469826,39.973884728847075],[-75.258744882504431,39.973897733281952],[-75.258747959850425,39.973900581441839],[-75.258754817490072,39.973904896489593],[-75.258764819477534,39.973911190795832],[-75.258775452215133,39.973917880813552],[-75.258792523487301,39.973924954773686],[-75.25881616305422,39.973934749951759],[-75.258816678777748,39.973934961167053],[-75.258829889095438,39.973940436742168],[-75.258859509784855,39.973952710631536],[-75.258891887472473,39.973966126450172],[-75.258893684027555,39.973966857409565],[-75.258991242130335,39.974006533797137],[-75.259663606882157,39.974279974786022],[-75.25975143060765,39.974315692046481],[-75.259759280430174,39.974318884307735],[-75.259768415679488,39.974322599105548],[-75.259856867627363,39.974358209183229],[-75.25989205556904,39.974311651941733],[-75.2617587757547,39.972758853920112],[-75.26180004393467,39.972724766106616],[-75.261936724483206,39.972741100375345],[-75.261992037830581,39.972696438497756],[-75.262041953438484,39.972656132969377],[-75.262925905875193,39.971942363977327],[-75.264287875846335,39.970821391873052],[-75.265246194414317,39.970045345975592],[-75.265647816252297,39.970332516335496],[-75.265813074337345,39.970220232663607],[-75.267323761851486,39.971316401537081],[-75.267347328395076,39.971416218114257],[-75.2673810250798,39.971558951588378],[-75.267387821371983,39.971587734671182],[-75.267673564164056,39.971793116282129],[-75.268428106259179,39.972327763659969],[-75.268762900904392,39.97256469254485],[-75.268820590544237,39.97262947474961],[-75.268844110098044,39.972655885730809],[-75.268857482422504,39.972647418185126],[-75.269007643099769,39.972552332156056],[-75.269481658431914,39.973111652879922],[-75.270532220319311,39.972640843486992],[-75.270586702761406,39.972615030774506],[-75.270636637811123,39.972591565058501],[-75.270682940166353,39.972569866051579],[-75.270729247972156,39.972547952709917],[-75.270741176877067,39.972542288263966],[-75.271008372460074,39.972424187087356],[-75.271469666708384,39.972217195278041],[-75.271483774491855,39.972210865140305],[-75.271503712139463,39.972232349090334]]],[[[-75.247881664188768,39.958264588103773],[-75.247800129857751,39.958654545039245],[-75.247368273188016,39.960703816194744],[-75.247296836720309,39.96104087243954],[-75.247183303073314,39.961557769206188],[-75.247004917974266,39.962424212857883],[-75.246969278856326,39.962597316066223],[-75.247153420267367,39.962617396022175],[-75.247174554108199,39.962619700470462],[-75.247282776465454,39.962497999070749],[-75.247604387515096,39.962136328909814],[-75.247727286711395,39.961998119402693],[-75.247727955716925,39.961979955576602],[-75.247760119548403,39.96193131691988],[-75.247781975827081,39.961887646775907],[-75.247804119959653,39.961836192027569],[-75.24783714379258,39.961764199471808],[-75.247863995078745,39.961739567190989],[-75.248036227992856,39.961581566283961],[-75.248497562791329,39.961425426888518],[-75.248775481595061,39.961026373954184],[-75.24879643304925,39.960757790044681],[-75.248807434663377,39.96061676517941],[-75.248862927820127,39.960576414896671],[-75.248904524485724,39.960546169006228],[-75.248954664197313,39.960375868160234],[-75.249089416055185,39.960290511992028],[-75.249113658835199,39.960181971782831],[-75.249163416837021,39.960022050975617],[-75.249363165504334,39.959871260384872],[-75.249618126429183,39.959678787361462],[-75.25037515575373,39.959373271750728],[-75.250551478506168,39.959295746476442],[-75.250580714729523,39.959289456584038],[-75.250805318397653,39.959201582500974],[-75.250926525210019,39.959154161876683],[-75.250971125262126,39.958859090173611],[-75.250934394041096,39.958765550149636],[-75.250863130900427,39.958584066271392],[-75.250850134707491,39.958539541796469],[-75.250821174917803,39.958440324483632],[-75.250768752267348,39.958397633300116],[-75.250675168500649,39.958281332701269],[-75.250380073838571,39.957955487811148],[-75.250313603196233,39.957895076869285],[-75.24995558114648,39.95756969232459],[-75.249651559388894,39.957306565322355],[-75.249569878233558,39.957235870965043],[-75.249553776478052,39.95722193397313],[-75.249536978010013,39.957207395248219],[-75.249481478987477,39.95718048573184],[-75.249478396272579,39.957178991370832],[-75.249143247464829,39.957016489311997],[-75.24912673454952,39.956944195064402],[-75.24911058459044,39.956873491768306],[-75.249081929404298,39.95673523429889],[-75.249093640141012,39.956600451632539],[-75.24911008685892,39.956520307439853],[-75.249150709238194,39.956425108497669],[-75.249176126488692,39.956376322448747],[-75.249181878879355,39.956362952787778],[-75.249242547892081,39.956221957311847],[-75.249346079529502,39.956193192915912],[-75.249796096735281,39.956068164166361],[-75.249961909086792,39.95602209517692],[-75.250147940864338,39.955184763466825],[-75.250477418375169,39.954667374454957],[-75.251466521300998,39.954013734951623],[-75.251567738172739,39.953887558925089],[-75.251894427510734,39.95348030930262],[-75.252011317779321,39.953329639302154],[-75.252851208050316,39.952511732305894],[-75.252620601449053,39.952267800108466],[-75.253180698445959,39.951350313727247],[-75.253379736613766,39.951167671199663],[-75.253369301600841,39.951149720706667],[-75.253255507897393,39.95095396713883],[-75.253021964982423,39.95061973661597],[-75.252936560777485,39.950464662297385],[-75.25279530632902,39.95015873644639],[-75.252731955264807,39.949146192339782],[-75.252731437819151,39.949145555787311],[-75.252730019759966,39.949143814835367],[-75.251630659289674,39.949250113869638],[-75.251526589540006,39.949260176394461],[-75.251453307403779,39.949130423250082],[-75.251442709936399,39.949111659934545],[-75.25142500574087,39.949082669641797],[-75.251358306448651,39.948973452849302],[-75.250869014652281,39.948516132022249],[-75.250584613010631,39.948359316812379],[-75.250496355014462,39.948282084345919],[-75.250390892529765,39.948030487318263],[-75.250346752175616,39.94767115693201],[-75.250350312563455,39.947587607175414],[-75.250371408432301,39.947092592650861],[-75.25034335782918,39.947029656193131],[-75.250237259801239,39.946887113762294],[-75.250047835107139,39.946716785032301],[-75.250043404943284,39.946712791691134],[-75.249832301531569,39.946522516072491],[-75.24968056523528,39.946428318453194],[-75.249597638461566,39.946383909230043],[-75.24949858380387,39.946330863751896],[-75.249486158392685,39.946323214665746],[-75.249357089923564,39.946243760825872],[-75.249063650018073,39.94595587181793],[-75.248945939349895,39.945853976340125],[-75.24855972289626,39.945553406078893],[-75.248501817103843,39.945431431047261],[-75.248472834456635,39.945370379349868],[-75.248410319520801,39.945281371063395],[-75.248309500737463,39.94513309889674],[-75.248250104890843,39.945080491054661],[-75.247971330513749,39.94483357437521],[-75.247501572691561,39.944531655534128],[-75.247434929166658,39.944488823464582],[-75.247421104392529,39.944439342061742],[-75.247381272320169,39.944296782914911],[-75.247363175752142,39.944169790513158],[-75.247174473314928,39.943865734525559],[-75.247073098766293,39.943526578244708],[-75.247047535219721,39.943468731697529],[-75.247009070587652,39.943381691665721],[-75.246998356343738,39.943357448208296],[-75.247083958315628,39.943334767723435],[-75.247248751589552,39.943291106514089],[-75.247256441067123,39.943289068665891],[-75.247255489627122,39.943287854991645],[-75.247087270762236,39.943073083613413],[-75.246925974338879,39.942849478331155],[-75.246696968003619,39.942540647788036],[-75.245848674570098,39.941390542151716],[-75.24531713394758,39.941532800465012],[-75.245107808255369,39.94158276362699],[-75.244888745403969,39.941690943164609],[-75.244806335374633,39.941730044729454],[-75.244624980092965,39.941844890308452],[-75.244560194986619,39.941886323730849],[-75.244532384600561,39.941885716248756],[-75.24445438452959,39.941942441827294],[-75.243959169091781,39.94178554853611],[-75.24330687989017,39.941153887998226],[-75.243142704198419,39.941214572256399],[-75.243046128285528,39.941226095275155],[-75.242947240303579,39.941231723829993],[-75.242823500390472,39.941225124075082],[-75.242703508561675,39.941185495491744],[-75.24260157382605,39.9411365235826],[-75.242517983449645,39.94107042287942],[-75.242459675737933,39.941004876651135],[-75.242399557656924,39.940919813121241],[-75.242369778264191,39.940835412856302],[-75.242351994485119,39.940768803685224],[-75.242332528621162,39.940610617635514],[-75.242340658369841,39.940458877864415],[-75.242332884420222,39.940258098860099],[-75.242318807339913,39.940141858370879],[-75.242318802854172,39.940141821332027],[-75.242313491703854,39.940097967352507],[-75.242273729298077,39.939941284571319],[-75.242220822707367,39.939797949123644],[-75.242114666186396,39.939589175994278],[-75.241976075932413,39.939368008535666],[-75.241852885725407,39.939209502135434],[-75.241691772754393,39.939050166243263],[-75.241615555938907,39.938990069008959],[-75.241541793574285,39.938931974252846],[-75.241381342820702,39.938823290965168],[-75.241209186204841,39.938689032544929],[-75.24110984264945,39.938569999590207],[-75.240948648397094,39.938344440408152],[-75.240572511632578,39.937841505807057],[-75.24007913669638,39.938046899954777],[-75.240322750214361,39.938301530746351],[-75.240257115777453,39.93827200512191],[-75.240004180671235,39.938158223625109],[-75.239370054586729,39.938132658409323],[-75.239142955053168,39.93811600105208],[-75.23904211680248,39.938106002545815],[-75.23872892924561,39.938159523008395],[-75.238662551594331,39.938175598468227],[-75.238336854682274,39.938156780560142],[-75.238249290161022,39.938159813012348],[-75.238198601519031,39.938161568092902],[-75.238164582873466,39.938162746694815],[-75.238165916598632,39.938160261226187],[-75.238237948478144,39.93802606865858],[-75.236889168991212,39.938031581108142],[-75.236383815943626,39.93787637901945],[-75.236343087317309,39.937951445753448],[-75.236024392753592,39.937880188080086],[-75.235690865672012,39.937594361895599],[-75.235642078722407,39.937340095341277],[-75.236013448920176,39.937013238718961],[-75.236140906741269,39.936782312335886],[-75.236280139767814,39.936575016648497],[-75.236313139525819,39.936503676462429],[-75.236367875829643,39.936391911957614],[-75.236414666811712,39.936289711260862],[-75.236446659810454,39.936245616716683],[-75.236547834717925,39.93610955009899],[-75.236267716800896,39.936021609454038],[-75.236664274794293,39.93508178881747],[-75.236723480818696,39.934917534608829],[-75.236851066400675,39.934614548724618],[-75.236911978958986,39.934267251293917],[-75.237150423386012,39.933908262926231],[-75.237347646984432,39.933706132643763],[-75.237418851107449,39.933627838301533],[-75.237654506217282,39.933481083158199],[-75.237812306020615,39.933387156697854],[-75.238245282648265,39.933240827579773],[-75.238484357712522,39.933275278198245],[-75.239004955427049,39.933633361798627],[-75.239447012022154,39.933789113468556],[-75.240057615016511,39.933781969086134],[-75.240415086021812,39.933677961384433],[-75.240571052445233,39.933632581729334],[-75.24060402408692,39.933627998121885],[-75.240743384388907,39.933624666502652],[-75.240819797404086,39.933610757459029],[-75.24136361920192,39.933525337067657],[-75.241365641657296,39.933525019107407],[-75.241527238268176,39.933499635464663],[-75.241530450962543,39.933493927657729],[-75.24158348893026,39.933567951149399],[-75.241838579300932,39.933923974716848],[-75.24230653431772,39.934560866476978],[-75.244355289790349,39.934164500950132],[-75.244577816416466,39.933275388551969],[-75.244468698046575,39.93319850692307],[-75.244406281109832,39.933141634857193],[-75.24434955123148,39.93308488700756],[-75.244295470406556,39.933007747153439],[-75.244243554426234,39.932923350215695],[-75.244217968201269,39.932845371490174],[-75.244205705333968,39.932766223357831],[-75.244203946615215,39.932659550526743],[-75.244216385560648,39.932579481607853],[-75.244253633845233,39.932495572324008],[-75.244302418435609,39.932407532652881],[-75.24435044958183,39.93233992725569],[-75.244409587722217,39.932279867960844],[-75.244507020752607,39.932210420803557],[-75.244652389285761,39.932127412063593],[-75.244814660142808,39.932049155705201],[-75.244935495808178,39.93197965089098],[-75.245096600461935,39.931864362171197],[-75.245232641674548,39.931742684689127],[-75.245314877674119,39.931639306917965],[-75.245376318313333,39.931551056707541],[-75.245475873516867,39.931389627660273],[-75.245509856062981,39.931291283059089],[-75.245544062623381,39.931186856231058],[-75.245562995562466,39.931085017767096],[-75.245562376242773,39.930998820628254],[-75.245562995044295,39.930879053388274],[-75.245549897712849,39.930719546527193],[-75.245536115735362,39.930630140011424],[-75.245488461993219,39.930481564349826],[-75.245456972230443,39.930409299921969],[-75.245392054336904,39.930317316080462],[-75.245313597528309,39.930232339951182],[-75.245248035699092,39.930157871683761],[-75.245144664397813,39.930079655614719],[-75.245020437433595,39.930000983890537],[-75.244901039123008,39.92994578837569],[-75.244779421481255,39.929899309115143],[-75.244676332708366,39.929864921301196],[-75.244527742430918,39.929829538394699],[-75.244248823081733,39.929778161251065],[-75.244062555985664,39.929741349913265],[-75.244086680900239,39.929594599744249],[-75.24409081155585,39.9295694738937],[-75.244198186849488,39.92958480439124],[-75.244339744134933,39.92958789743065],[-75.244465691868186,39.929556889921891],[-75.244575840911835,39.929496972016025],[-75.244663161710577,39.929415779277839],[-75.244723710255727,39.929328808281682],[-75.24476171751958,39.929212778823427],[-75.245046819064143,39.928341263418801],[-75.245479990735419,39.92702112513966],[-75.245507024963985,39.926928227599269],[-75.245544647129549,39.926822577077871],[-75.245608753419191,39.926730490061168],[-75.245675848327693,39.926648854931258],[-75.245765769338036,39.926588494249017],[-75.245821318884992,39.926545560456759],[-75.245834901595231,39.926526801060561],[-75.245910163820113,39.926422850859645],[-75.245939898064378,39.926348190634272],[-75.245959234421619,39.926281093338218],[-75.245959839971746,39.926264655325348],[-75.245964874095534,39.926128000782668],[-75.246021832445848,39.92595525372878],[-75.246079674108501,39.925850045471726],[-75.246159579467758,39.925786868250242],[-75.246823723856465,39.924513318079548],[-75.247084815138678,39.924017820100531],[-75.247364281391555,39.923481174256622],[-75.247643075824655,39.922962689792193],[-75.24796622146107,39.922338701285113],[-75.24818342081106,39.92190756898291],[-75.248205581052744,39.921863581285969],[-75.248275499033937,39.921724796968221],[-75.248450626757247,39.921365054584257],[-75.248326252575708,39.921445441491656],[-75.248004341850262,39.921669539567596],[-75.247859214606606,39.921782799078237],[-75.247813355568155,39.921818587703598],[-75.247790744703607,39.921831353304562],[-75.247720358279267,39.921871092702013],[-75.247532780888761,39.921969848384812],[-75.247524209347333,39.921974360897408],[-75.247521689746904,39.921943278418134],[-75.247544237133269,39.921780581766782],[-75.247540432935466,39.92170400445017],[-75.247521678509045,39.921583753188585],[-75.247538955649617,39.921462021389004],[-75.247523679317979,39.921327299502643],[-75.247524395701276,39.921307839275393],[-75.247393848117852,39.920868715804168],[-75.247417753471581,39.92063162319706],[-75.24754876474708,39.920439716681301],[-75.247587945585863,39.920337345922391],[-75.247605686945519,39.920280967857401],[-75.247636642833001,39.920182596388706],[-75.247646517806714,39.920103663279463],[-75.247650979543366,39.920067997541807],[-75.247583394594841,39.919842542052614],[-75.247525740042946,39.91966600371078],[-75.247512924060487,39.919626762367457],[-75.24747828662278,39.919471804168467],[-75.247452113862977,39.919354710225967],[-75.247414663387616,39.919203924370535],[-75.24737159027903,39.918587524982513],[-75.24741855144687,39.91793024218984],[-75.247332162357779,39.917597255199155],[-75.247232656431152,39.917345783862721],[-75.247174631059877,39.917204285806896],[-75.247083874690034,39.916990009992205],[-75.247005949833692,39.916974879597319],[-75.246946621803531,39.916963359965941],[-75.246875960374268,39.917002079127535],[-75.246855887222026,39.91701307810753],[-75.246730409367601,39.917079208775498],[-75.24653378478267,39.917188799512722],[-75.246428788437484,39.917247222172215],[-75.246307423746984,39.917314752251585],[-75.246305306932186,39.917315930478118],[-75.24629889379888,39.917320595436124],[-75.245934641764137,39.917575464302459],[-75.246518278225551,39.918069914297313],[-75.246593965980708,39.918145286112789],[-75.246715871857617,39.918273073099492],[-75.246716589096593,39.91827780906155],[-75.246791530575109,39.918373460214475],[-75.246848756731538,39.918461417515175],[-75.246866635369813,39.918488897083407],[-75.246908448552418,39.918564086867363],[-75.246942093168883,39.918643217652445],[-75.246965191990412,39.918703076623721],[-75.246970581029757,39.918717043430966],[-75.246992779550354,39.918792234762556],[-75.247029824345105,39.918870264847222],[-75.247054206006979,39.919032453252342],[-75.247065664537615,39.919202149536488],[-75.247050487196177,39.919408269068313],[-75.247019520258874,39.91969974097632],[-75.246969895989011,39.920154409718577],[-75.246919697809872,39.920624646795694],[-75.246862222949289,39.92115510145814],[-75.246828511510614,39.921452357271377],[-75.246813078478837,39.921527978582411],[-75.24674792340663,39.921717427078072],[-75.246667100097213,39.921920166408754],[-75.246380011083716,39.922572205496365],[-75.246260432716866,39.922865638414905],[-75.246119126743451,39.923199497376608],[-75.246014189656989,39.923438715369144],[-75.245910991195117,39.923699395968335],[-75.245652998868238,39.924305128082857],[-75.245551000112812,39.924544607210628],[-75.245531192687793,39.924591650649838],[-75.245409614281513,39.924880411646441],[-75.24538154116577,39.924955756732089],[-75.245269070554102,39.925124694294908],[-75.245192111239376,39.925222343290073],[-75.24507666341124,39.925334733267796],[-75.244963814928695,39.925445232874054],[-75.244799911556939,39.925568249038129],[-75.244634841189651,39.925654234773852],[-75.244521328448613,39.925714080009811],[-75.244443920776419,39.925755237250641],[-75.244337273319772,39.925834708197065],[-75.244255974302504,39.925912785903449],[-75.244189984568436,39.925987302197569],[-75.244110426569918,39.926112867790188],[-75.244067153240152,39.926222372275625],[-75.243932868252088,39.92654858964827],[-75.243809145443876,39.926826735445403],[-75.243710705264107,39.927048039491474],[-75.243686396297733,39.927775932935603],[-75.243538212382845,39.92777695406776],[-75.243390939207188,39.927777967885945],[-75.243216706368187,39.927779167038942],[-75.243201517223767,39.927821816025009],[-75.242933187747482,39.928649547984023],[-75.242807763165899,39.929030405933318],[-75.242716669224876,39.9293070179206],[-75.242931424889974,39.929345469722413],[-75.243249476274997,39.929402415021507],[-75.243342761247504,39.929422900153476],[-75.243450180408587,39.929446488126295],[-75.243451885763903,39.929446863273448],[-75.243452985156608,39.929447104442694],[-75.2436434700397,39.92948893290918],[-75.243639673050083,39.929620436476831],[-75.243630430057479,39.929940539594057],[-75.243622316004974,39.930012939116132],[-75.243617966172167,39.930033117311325],[-75.24361688641973,39.930072650047258],[-75.243586225721231,39.93021805356949],[-75.243544074367833,39.930332044169873],[-75.243442937273713,39.930536284701617],[-75.243311984122741,39.930794408801958],[-75.243279065060591,39.930863805502682],[-75.243159154377395,39.93109685108945],[-75.243109346445337,39.931212621236767],[-75.243074561915833,39.931332615675998],[-75.243022285100167,39.931565192551098],[-75.242977851452835,39.931851175198496],[-75.242917893025947,39.932013467856756],[-75.242845122120173,39.932157301931404],[-75.242711107099225,39.932315378806543],[-75.24255041411071,39.93246508135374],[-75.24239895553464,39.932570189074966],[-75.242109271108248,39.932726684119096],[-75.241446834261211,39.933073287641655],[-75.241124376831308,39.933241522378687],[-75.240856003803856,39.93324055065132],[-75.240605427476837,39.9332396442476],[-75.24048437729806,39.933239205639779],[-75.2402689270086,39.933250072772687],[-75.240201104171319,39.933236901726715],[-75.239985282730132,39.933189331587506],[-75.239772421219897,39.933130138116574],[-75.239662270042288,39.933098511391442],[-75.239505094402062,39.933038589265713],[-75.239410831003269,39.932987834175009],[-75.239324509781383,39.932927514019383],[-75.239225837078124,39.932859133380887],[-75.23911979652388,39.932784748388194],[-75.238998875156653,39.932702247472534],[-75.238934516064461,39.932663832632826],[-75.238834621827579,39.932628534667188],[-75.238697311308201,39.932578784327163],[-75.238502364246443,39.932514137762674],[-75.238055261573834,39.932358270793095],[-75.237831860817508,39.932310528692675],[-75.237756311833323,39.932301082830463],[-75.237606092000235,39.93229912188049],[-75.237521001060401,39.932301770819215],[-75.237429133688906,39.932323130872007],[-75.237303683886978,39.932363230089038],[-75.237211023784326,39.932405996477698],[-75.237112158117611,39.932479789559977],[-75.237035250725157,39.932575486694923],[-75.23696859898493,39.932667514409566],[-75.236715142831954,39.933090445891672],[-75.236210064134838,39.933962105238251],[-75.236161637417169,39.93404167119148],[-75.236109457371526,39.934126261699859],[-75.236081994140804,39.934169513886552],[-75.236055452098412,39.934211971759616],[-75.235996864171824,39.934315443588183],[-75.235847532194299,39.93457917840901],[-75.235669962591828,39.934892783117441],[-75.235497938063119,39.935034605398464],[-75.235396251064458,39.935129518587466],[-75.235334633352878,39.935187030542274],[-75.235205648603014,39.935322486323528],[-75.235102303829123,39.935448766243589],[-75.234940900207121,39.935708160995674],[-75.234810263731561,39.935956545269434],[-75.234532812513521,39.936480223649383],[-75.234212170128004,39.937076966396496],[-75.234138725435429,39.937215587334144],[-75.234117786672854,39.937302773358198],[-75.234068836041999,39.937531523955528],[-75.234076656156432,39.937730357129396],[-75.234117768417079,39.937850065279221],[-75.234156711324289,39.937959988755459],[-75.234233427099866,39.938090731175187],[-75.23427933155358,39.93815172642077],[-75.234326539137143,39.938206800048413],[-75.234387596254805,39.938284469878425],[-75.234551290804276,39.938441926011166],[-75.234985662515442,39.938805926287323],[-75.236153280701345,39.939799511650079],[-75.236682564492114,39.940244813467771],[-75.236788813018293,39.94033420303866],[-75.237365507645606,39.940819382280068],[-75.238477347461327,39.941749395075966],[-75.239224056851228,39.942383857196354],[-75.239286723636255,39.942442952997084],[-75.239327691846114,39.942498384280178],[-75.239355658505417,39.94256326891297],[-75.239381384114822,39.942620314482369],[-75.239391725617054,39.942682865363253],[-75.239399896766173,39.94273563078432],[-75.239368719183588,39.942894656911506],[-75.239643548425391,39.943126601155342],[-75.240503437455615,39.943838203068637],[-75.240583935247642,39.943904818687564],[-75.240754255049922,39.943815056664178],[-75.241017605636628,39.94367279579329],[-75.241121253349093,39.943606894593259],[-75.241290120631234,39.943487885293024],[-75.241664039376715,39.943229233440157],[-75.242015482734786,39.942989494609478],[-75.242067462146878,39.942788145332926],[-75.242074142197296,39.942884638298729],[-75.242077688602137,39.942935872485279],[-75.242082316561124,39.943002713012987],[-75.242141985584411,39.94290526148918],[-75.242205281737398,39.942801884115397],[-75.242241180409522,39.942743252937724],[-75.242280111222684,39.942716836412096],[-75.242321354037045,39.942696314268353],[-75.242372062871794,39.942693527900019],[-75.242422413837389,39.942700471629195],[-75.242477102932327,39.942726986060748],[-75.24250622157895,39.942760733262887],[-75.242514897779117,39.94279987650971],[-75.242510287890383,39.942856257244337],[-75.242863173079854,39.942893185907991],[-75.244016374189712,39.94302607450674],[-75.244364874048344,39.943066231874546],[-75.245579502410777,39.943201827709132],[-75.245885160486367,39.943699964883912],[-75.246336468691666,39.943536978342038],[-75.246614414519144,39.943446448546226],[-75.246631589225217,39.943473130573651],[-75.246703160063845,39.943584325386986],[-75.246708720445753,39.943592962021306],[-75.246724520643866,39.943632554994551],[-75.246611055196112,39.94425465586837],[-75.246439211527601,39.945072815251713],[-75.246217610633039,39.946090506148501],[-75.24614052664046,39.946458336952475],[-75.246200814846205,39.946468320479219],[-75.24817023118824,39.946713955391289],[-75.248357078743439,39.94675107077331],[-75.248521370030232,39.946795118129465],[-75.248683511246483,39.946849115770029],[-75.248846014933349,39.946917538754853],[-75.249012466815515,39.94697987128481],[-75.249354772750948,39.947213262345542],[-75.249546898634165,39.947401827717414],[-75.249663013604206,39.947547186700987],[-75.249777889104266,39.947726277802289],[-75.249863885096715,39.947956677009394],[-75.249906721481139,39.948167957075874],[-75.249908912019208,39.948383544573183],[-75.249862405982853,39.948730512013931],[-75.24975988615968,39.949224279823262],[-75.249521186409567,39.950392862952768],[-75.249349613894225,39.951235712944701],[-75.249347691119553,39.951256435289089],[-75.24929345279979,39.951538312158142],[-75.24908636191887,39.952489445455697],[-75.248963630226356,39.953073663294049],[-75.248709983838907,39.954280871960393],[-75.248578686706395,39.954914242874509],[-75.248410090524644,39.955671014727699],[-75.248342145275757,39.956023141873715],[-75.248197572743805,39.956741919953451],[-75.248090893644374,39.957238766599581],[-75.248074345353146,39.957315845086583],[-75.248071821413305,39.957327601150119],[-75.248061607287525,39.957375168823766],[-75.248011345449328,39.957609255970461],[-75.247996339244636,39.957679140321069],[-75.247961776494847,39.957712576501201],[-75.247926217001009,39.95774824791885],[-75.247895537749656,39.957784671772842],[-75.247880495728992,39.957817342552332],[-75.247869148413514,39.957848527985817],[-75.247800670556174,39.958178422115779],[-75.247881664188768,39.958264588103773]]],[[[-75.255106954303514,39.978553430448294],[-75.255131751597133,39.978731554575496],[-75.25519841805837,39.9792104156801],[-75.2552741326095,39.979706882325203],[-75.255392916919021,39.980408141163011],[-75.255424724586803,39.980657168662631],[-75.255499303292183,39.981131842473751],[-75.255502657276068,39.981153185030713],[-75.255504780807115,39.981166701879012],[-75.255159080774945,39.981332294490826],[-75.255686932988439,39.981953034977373],[-75.256089688746798,39.982426654807426],[-75.256220829630891,39.982578572178333],[-75.256942387877544,39.983414434049031],[-75.257186179130201,39.983703144535326],[-75.257256453741206,39.983786367140816],[-75.257678894224554,39.984286633507033],[-75.258561068772337,39.985309786337325],[-75.258596257863914,39.985351786636762],[-75.258737548674446,39.985243658109034],[-75.258776838917299,39.985222295269104],[-75.258822556415438,39.985197437335195],[-75.259327521137621,39.984922877097432],[-75.259129460345534,39.984673949692876],[-75.259010938298132,39.984489757957199],[-75.258911811502799,39.984302281291384],[-75.258829943039984,39.984104059132747],[-75.258788115553614,39.983930798470212],[-75.258749850359834,39.983726109350272],[-75.258737618013441,39.98359982258544],[-75.2587353557375,39.983464487371343],[-75.258749572855692,39.983273909875507],[-75.258795912246157,39.983048044160633],[-75.258796511225455,39.983045125346052],[-75.258839219987991,39.982877329699519],[-75.258855620439576,39.98281289831499],[-75.260174149700433,39.982135420578778],[-75.260154489431457,39.982111881912722],[-75.259726440301591,39.981599382931833],[-75.259592257463623,39.98144821096578],[-75.259632980506652,39.981330113745678],[-75.259741625488928,39.980988138789719],[-75.259775195847411,39.980860992670934],[-75.259797680486116,39.980707660248633],[-75.259794773121811,39.980524124440961],[-75.259788472176211,39.98043317982701],[-75.259769863677889,39.980349379684597],[-75.259708439018084,39.980184959867202],[-75.259598434886357,39.979965741887341],[-75.259536535062821,39.979880865306875],[-75.259507316983274,39.979840801298458],[-75.259382828839477,39.979670102328981],[-75.260244143127025,39.979240303981044],[-75.260276385495075,39.979215057716218],[-75.260298999163254,39.979189602554698],[-75.261173364051501,39.978337538950115],[-75.261288155709039,39.97836041413106],[-75.261444034675932,39.978445338313435],[-75.262014600619366,39.978783882218728],[-75.263215601167218,39.979488431219288],[-75.263247999003127,39.979507436793213],[-75.264256986683435,39.980110149295513],[-75.26451878655898,39.980394874904412],[-75.264946080311091,39.980897092138072],[-75.265188531689901,39.981184036115252],[-75.265605848800789,39.981686082414356],[-75.26654297698407,39.981269889330385],[-75.267436511312852,39.980864072136704],[-75.267482537160532,39.98084316837636],[-75.267816112430694,39.98069166406006],[-75.267669806746255,39.980526084294731],[-75.267486209759184,39.980342348286563],[-75.26724131482213,39.980122073551279],[-75.266951025531981,39.97989154946557],[-75.266709052596866,39.979723228138944],[-75.26643331490699,39.97955602801288],[-75.266194803284321,39.979424845228927],[-75.265823461835495,39.979237042005316],[-75.26568805508488,39.979174233124297],[-75.265672964056293,39.979168102286863],[-75.265610873786898,39.979142551364504],[-75.265586614602,39.979126279655716],[-75.265446901656944,39.979060244528313],[-75.265304374144662,39.979005269165],[-75.26494137764449,39.97885285511974],[-75.26454000496328,39.978695903004073],[-75.264462277266816,39.978669164042337],[-75.264449167153373,39.978663633653042],[-75.264403457535636,39.978644578861811],[-75.264358629442583,39.978625886420922],[-75.264312046599017,39.978606340561633],[-75.264259319101797,39.978584000975268],[-75.264212730433769,39.978564583789435],[-75.264140659978722,39.978534316342881],[-75.264076498857975,39.978507395257346],[-75.264022011623283,39.978484374134958],[-75.263978948343748,39.978466234234325],[-75.26393148697629,39.978446282661345],[-75.263879632588001,39.978424477173732],[-75.263835681185398,39.978406190037774],[-75.263782054449337,39.978384045179247],[-75.263733718346018,39.978363645701606],[-75.263681866077832,39.978341753673021],[-75.263630889039717,39.97832039594735],[-75.26362214432325,39.978316678221937],[-75.263353021536446,39.978217995943474],[-75.262907009214686,39.978030418295049],[-75.262679053508506,39.97794022818627],[-75.262619488008184,39.977922258068006],[-75.262567618644198,39.977891481414126],[-75.261919794974887,39.977623542392834],[-75.260759324407204,39.977146183411918],[-75.260711303186071,39.976138219208359],[-75.260710750721898,39.976133066186833],[-75.260704202333187,39.976068216082261],[-75.26068621453669,39.975723152021907],[-75.26058243612394,39.975665153067666],[-75.260382298431367,39.975559036583661],[-75.260341452655197,39.975534054408605],[-75.260259517574255,39.975469266176972],[-75.260184939515682,39.975400930840408],[-75.260092532005032,39.975293290414676],[-75.259966395318827,39.975120054092294],[-75.259883042528898,39.974962571769495],[-75.259852918705178,39.974888967779165],[-75.259846776619725,39.974846857453237],[-75.25983945541023,39.974803145711604],[-75.259836434765347,39.974642125811961],[-75.259840747569314,39.97459750785454],[-75.259850515622006,39.974550133221086],[-75.259843473561034,39.97454749097907],[-75.25985923256242,39.974492202323923],[-75.258548952140458,39.973967285833091],[-75.258511452501722,39.973956895953208],[-75.258460715442681,39.97395329591604],[-75.258411241221935,39.97396063515032],[-75.257958511799629,39.974011781492308],[-75.257852180137363,39.974023793517119],[-75.255280518516983,39.974314281516612],[-75.255279696517348,39.974314374468292],[-75.255275102037729,39.974314893565492],[-75.255275961093872,39.974319658654501],[-75.255276333707897,39.974321725516312],[-75.25546772330641,39.975383709119761],[-75.25557879818011,39.976000021786966],[-75.255585623795611,39.976000521537898],[-75.255637021129658,39.976101241308371],[-75.255685867967543,39.976366996616811],[-75.255712901607225,39.976549203853196],[-75.255810415624438,39.977042436406023],[-75.255864117172948,39.977351242773011],[-75.255928495015795,39.97766665923308],[-75.25603357335504,39.978181478727294],[-75.255106954303514,39.978553430448294]]],[[[-75.281055593566307,39.980097466515012],[-75.28103092319607,39.980850143274694],[-75.281374503424885,39.981165851162281],[-75.28154527538463,39.981055715909193],[-75.282149137339331,39.980648645901965],[-75.282165939747387,39.980630383917116],[-75.281816607934644,39.980324898890785],[-75.281907705089139,39.98026064217013],[-75.282161809201696,39.980077804976098],[-75.282282921761222,39.980001777875465],[-75.282378944673837,39.979950041341731],[-75.282509830193689,39.979901124755607],[-75.282655490810242,39.97988977135816],[-75.282851088795582,39.979910530133267],[-75.28315784472781,39.979981271395005],[-75.283459223971064,39.980051896266517],[-75.283678774272076,39.979783473169483],[-75.283655201801707,39.979691919718462],[-75.283497920839423,39.979578869392441],[-75.283526119231979,39.979320819889018],[-75.283608732065488,39.97911980877943],[-75.283216804951806,39.9786540811672],[-75.283216117599991,39.978376786631721],[-75.283234693300855,39.978087490624837],[-75.283233013222855,39.977911568504737],[-75.283212654443474,39.977805599829573],[-75.283084835723002,39.977844237976598],[-75.283145783983343,39.977350996637433],[-75.283062801057582,39.977191950094415],[-75.282890367634394,39.97675577025349],[-75.28302474513886,39.976758659047015],[-75.28283608128153,39.976473185163677],[-75.282548537658911,39.976022114401829],[-75.282337776013534,39.975752718207907],[-75.282053117669491,39.975444486707168],[-75.281931787591802,39.975526716494088],[-75.281096756486093,39.974747269567644],[-75.281091782201386,39.974749641150552],[-75.280410727983252,39.975074422694938],[-75.280312185903583,39.975121414545804],[-75.280237329719057,39.975157111408976],[-75.279116411063171,39.975730995506034],[-75.2799354940543,39.976652891573025],[-75.280570508811337,39.97782947642677],[-75.281048983174031,39.978725411477633],[-75.281082269361804,39.978771650600891],[-75.281231481513885,39.978884530790317],[-75.281892010063871,39.979360181426593],[-75.281055593566307,39.980097466515012]]],[[[-75.25063406554726,39.956726360505264],[-75.250725197829354,39.958040629843303],[-75.250834967346677,39.958185173178464],[-75.250997720842946,39.958404907669077],[-75.251084410736539,39.958525114994657],[-75.251133438429278,39.958637199404592],[-75.251175647525216,39.958779810423543],[-75.251186902111968,39.958886688760067],[-75.251171191946938,39.959055792393634],[-75.251125885246523,39.959203801598115],[-75.251074603372615,39.959307857331389],[-75.251000185312833,39.959421635350083],[-75.250929113000538,39.959496045312569],[-75.25080163978329,39.95960720612586],[-75.250506861792346,39.959828660493244],[-75.250385722036413,39.959922430065014],[-75.250366003878824,39.959942450265743],[-75.250339949749971,39.959979861206946],[-75.249952760826275,39.960494370106268],[-75.249529651679794,39.961056298929101],[-75.249359242425669,39.961302371309799],[-75.248946268612755,39.961898115270024],[-75.248471121301023,39.962120014284942],[-75.248453405874884,39.962137156831901],[-75.248339624752049,39.962391766829171],[-75.248253856845267,39.962813511586823],[-75.248754678610084,39.962874095203283],[-75.249128951655152,39.962917312328806],[-75.249456236938769,39.962947817414502],[-75.24964206826084,39.96295332780084],[-75.249826056830628,39.96295733722323],[-75.250082821874841,39.962943942779503],[-75.250338871842601,39.962898394724732],[-75.25011925254104,39.962005480038833],[-75.250011753225209,39.961573680149087],[-75.25035726731663,39.961521319386186],[-75.250540483273554,39.961494634863207],[-75.252223880488657,39.9612464517799],[-75.251986777883928,39.960312259944139],[-75.251848008313843,39.959749776216221],[-75.251694318143521,39.959128536285618],[-75.251585561073426,39.958679181788156],[-75.251565288172301,39.958507834011101],[-75.251572944421298,39.958247990034138],[-75.251572568982454,39.958103368284632],[-75.25154667752129,39.957981563472416],[-75.251520677652678,39.957862677304298],[-75.251429942139666,39.957491134512175],[-75.251360696488547,39.957206242169114],[-75.25125690084117,39.956828572725655],[-75.251180163237748,39.956558206821178],[-75.25063406554726,39.956726360505264]]],[[[-75.249659915363821,39.968864475671694],[-75.249579577003303,39.969242043317507],[-75.249574995286451,39.969263538439016],[-75.249573021381948,39.969279911488883],[-75.249575859041215,39.969297367864421],[-75.249583787485989,39.969310898731621],[-75.249599969503905,39.969318979155396],[-75.249608986629113,39.969320048706201],[-75.249630998938812,39.969322660114194],[-75.250362882086108,39.969411719541768],[-75.250392671512159,39.969414891250047],[-75.250412484214195,39.969415607558929],[-75.250423127922161,39.969413557207226],[-75.250432936128348,39.969409772266211],[-75.250447337488751,39.969403014098191],[-75.250454743701567,39.969394653856234],[-75.250458155234597,39.969381085362926],[-75.25046057455188,39.969367781770934],[-75.250516525840823,39.969092689106297],[-75.250546429538517,39.968956888088577],[-75.250501102475255,39.968949832559311],[-75.249705294273355,39.968846385095858],[-75.249665237600198,39.968839403530339],[-75.249659915363821,39.968864475671694]]]]},"properties":{"OBJECTID_1":67,"OBJECTID":10,"ASSET_NAME":"Cobbs Creek Park","SITE_NAME":"Cobbs Creek Park","CHILD_OF":"Cobbs Creek Park","ADDRESS":"NA","TYPE":"Land","USE_":"Park- Regional/Watershed","ACREAGE":850.68804999999998,"ZIPCODE":"19143","ALLIAS":" ","GLOBALID":"b1b0c0cb-ade9-4dfd-bee5-b2045ed2a02e","Shape_Length":108090.75682220011,"Shape_Area":37055823.611642383}},{"type":"Feature","id":68,"geometry":{"type":"Polygon","coordinates":[[[-75.203878469027785,40.011283685808294],[-75.203964772285232,40.011309023002063],[-75.203997873828555,40.011318741830024],[-75.204033247350324,40.011332242083071],[-75.204102473063969,40.011358661011805],[-75.204266332254534,40.011429601924519],[-75.204400493370272,40.011495559343508],[-75.204549423758564,40.011582663514709],[-75.204599353908733,40.011614950563548],[-75.204641309185007,40.01164208185115],[-75.204667738659467,40.01166299980121],[-75.204719449459759,40.011703926345277],[-75.204810262978512,40.011773910267038],[-75.20500350208745,40.011926081672925],[-75.205195462752087,40.012085404491181],[-75.20539958742792,40.012244093744428],[-75.205435169121685,40.012271754720189],[-75.205518063036948,40.012339644298962],[-75.206209164024102,40.012905632628922],[-75.206370837398097,40.013031844440164],[-75.206444729968922,40.01310831596809],[-75.206529161560724,40.013209183092435],[-75.206609318211321,40.01334256093417],[-75.206648295070877,40.013440951534498],[-75.206677752896653,40.013543398414541],[-75.206695980634166,40.013662418251059],[-75.206697876791694,40.013715458121396],[-75.206699031919271,40.013747773836393],[-75.206695773092576,40.013810361872679],[-75.206689346294581,40.013845662252727],[-75.206675107103948,40.013923877326867],[-75.20667446545194,40.013927398647844],[-75.206673329697352,40.013931628925206],[-75.20666240341933,40.01397236629866],[-75.206657460817482,40.013990788636868],[-75.206639382870975,40.014037537659526],[-75.206603879841012,40.01412934005652],[-75.20652966710432,40.014313048584178],[-75.206429897348258,40.014560018846375],[-75.206381070464005,40.014699793637796],[-75.20638296179942,40.014746451607714],[-75.206383113379204,40.014750193225325],[-75.206386035182049,40.014753619592042],[-75.206407389056707,40.014778663878772],[-75.206435904090085,40.014799009492833],[-75.206455501429332,40.014804352279739],[-75.206826170884852,40.014905401197659],[-75.207069973544918,40.014971864530125],[-75.20711670385603,40.014872729606644],[-75.207378990914506,40.014289263591294],[-75.207526920623494,40.013950528742171],[-75.207754582409706,40.013463417014464],[-75.20775888922482,40.013454203217776],[-75.207780218258819,40.013419992287574],[-75.207730592300436,40.013385828525479],[-75.207673703539697,40.013355174611156],[-75.207496374365149,40.01329795466426],[-75.207084388185308,40.013021627994036],[-75.207073036465403,40.013014767731143],[-75.207042362930395,40.012999413762444],[-75.206995040288618,40.012975537869927],[-75.206873278205876,40.012936666663329],[-75.206689747389603,40.012830562029166],[-75.206599292465228,40.012766337812721],[-75.20650284988686,40.012718973789632],[-75.20641027593561,40.012663715204674],[-75.206346311545843,40.012631230694964],[-75.20630456031958,40.012601684487258],[-75.206088195264428,40.012466400465001],[-75.206030806717521,40.012425264976777],[-75.205902545295402,40.012369257591303],[-75.205820357520508,40.012322723297636],[-75.205750776594968,40.012273379662183],[-75.20563075966416,40.0121641738344],[-75.205558656905239,40.012110654805824],[-75.205553147105363,40.012106221404814],[-75.205534273332105,40.012091037507545],[-75.205452914952801,40.012025579532548],[-75.20544263751097,40.01201717065868],[-75.205433156963835,40.012009415552633],[-75.205253888217172,40.011862756021422],[-75.205154935101518,40.011801745343874],[-75.205142261932551,40.011793668970753],[-75.205131081066824,40.011786543794642],[-75.205066339667425,40.011745286269914],[-75.205032388541426,40.01172365118088],[-75.205014309206433,40.011712130260662],[-75.20500514603485,40.011705882322183],[-75.204878078642125,40.011619239973029],[-75.204786165059303,40.011556567683257],[-75.204724053782797,40.011535272321076],[-75.204710643328653,40.011530674544943],[-75.204608923707497,40.011483440553917],[-75.204453147396777,40.011377919539271],[-75.204398051268043,40.011347289257735],[-75.204283645528662,40.011290186123446],[-75.204248097113307,40.011272443750642],[-75.204111818727654,40.011215998837983],[-75.204079517687148,40.011196402072294],[-75.203975832942405,40.011147633664613],[-75.203935949283959,40.01111514384089],[-75.203905974598769,40.011090725985099],[-75.203883625635228,40.011086770528337],[-75.203834171512611,40.011085673833932],[-75.203763277219196,40.011056422818051],[-75.203568528568837,40.011013171380021],[-75.203462469764204,40.010978823562397],[-75.203389002521149,40.010958164877167],[-75.203349319209465,40.010936524664949],[-75.203293140241939,40.010904015550437],[-75.203243625626357,40.010875361862261],[-75.203205475781175,40.01087278571088],[-75.203163220468753,40.010859738916565],[-75.203008398685725,40.010788836475413],[-75.202806157292386,40.010703538845092],[-75.202607908473723,40.01060518828956],[-75.202597037986877,40.010599796065939],[-75.202417554818581,40.010526615704613],[-75.202232992549014,40.010468891695346],[-75.202200924206323,40.010461351373493],[-75.202119259774378,40.010442147978559],[-75.202006174619541,40.010398120143059],[-75.201914725755302,40.010377061434184],[-75.201855007362681,40.010349786259873],[-75.201817766160232,40.010323010816073],[-75.201763581594037,40.010268179564044],[-75.201655252184764,40.010217336309822],[-75.201590129968992,40.01021416094423],[-75.201522296551701,40.010222717704636],[-75.201485950302825,40.010215774194734],[-75.201045750437359,40.010121297032683],[-75.200937961903833,40.010090926000203],[-75.200908927612687,40.010083537366036],[-75.200797916189813,40.010042608755512],[-75.200692981235761,40.010021249621808],[-75.200678481807557,40.010020235705142],[-75.20051036561,40.010008485581601],[-75.200475329500406,40.010006036217533],[-75.200344966472628,40.00995920834243],[-75.200269195559017,40.009931990303521],[-75.200261910089438,40.009930049026103],[-75.200246721552588,40.009923111863863],[-75.199909013485112,40.009829174613046],[-75.199841704133632,40.009805130152493],[-75.199759248034354,40.009784268534943],[-75.199663694659307,40.009752737254573],[-75.199320189247402,40.009674178454539],[-75.199213071289975,40.009651039518332],[-75.199146546246723,40.00962534160265],[-75.19901997866792,40.009581012105961],[-75.198807733690103,40.009541696617823],[-75.198595682631719,40.009497196153049],[-75.198123365405365,40.009374251913755],[-75.198041147604116,40.009351566195896],[-75.198014261629922,40.009344147080384],[-75.197945358386278,40.009321856351541],[-75.1978966203922,40.009301743756303],[-75.197861305403663,40.009283659448698],[-75.197787841732477,40.0092629962788],[-75.1977297877376,40.009251326171395],[-75.19765163577523,40.009229052210827],[-75.197360023890468,40.009124819023732],[-75.197212413801708,40.009070288782013],[-75.197163287403413,40.009060546813899],[-75.197134389984527,40.009051253721964],[-75.197063370705123,40.009025455538755],[-75.197001902780784,40.009009451892943],[-75.196920075597035,40.00898814627142],[-75.196896280476224,40.008981951610096],[-75.196111774635511,40.008725769478886],[-75.195744982553606,40.00860862238514],[-75.195525567790227,40.008537985323031],[-75.195358223113573,40.008484110975175],[-75.194714170166066,40.008262183846014],[-75.193838071375538,40.00792955921392],[-75.19343496456618,40.007761428874986],[-75.193069876070254,40.007599331790921],[-75.192822554224108,40.007476187025013],[-75.192681561743328,40.007396927698593],[-75.192665796816328,40.007387845783072],[-75.192654897750771,40.007381566262367],[-75.192549838236602,40.007321039902905],[-75.192547247631623,40.007319547792093],[-75.192535719055698,40.007312282050201],[-75.192325303920299,40.007179666991597],[-75.19231754547053,40.007174245784455],[-75.192307962690563,40.007167550455833],[-75.192212804297256,40.007101056233353],[-75.192202554848407,40.007093894638402],[-75.192197434887845,40.007090063016186],[-75.192095345914581,40.00701365818049],[-75.191958427653361,40.006886050555067],[-75.191861120804447,40.006781815421007],[-75.191773457588681,40.006660494845882],[-75.191653121289136,40.006510767176721],[-75.191667153549389,40.006505407127506],[-75.1917215956299,40.006484613187325],[-75.191764692716717,40.006475193920949],[-75.191774101448175,40.006475403574456],[-75.191836620286779,40.006476796653835],[-75.19183701105797,40.006466425758546],[-75.191811471537605,40.006427797232831],[-75.191766972311569,40.006414696132858],[-75.191726088794084,40.006413785121879],[-75.191725166301438,40.00641376456575],[-75.191681558622122,40.006412792835633],[-75.1916432826266,40.006413669834089],[-75.191612399894737,40.006397412234513],[-75.191600274772156,40.006376010711698],[-75.191595525605166,40.006367627325865],[-75.191587301421876,40.006357748315502],[-75.191530959576127,40.006290070496817],[-75.191504783135969,40.006256752656505],[-75.191406454786204,40.006131599975269],[-75.191319184069656,40.005999908156255],[-75.191248298877085,40.005851282116701],[-75.19119350617143,40.005753183690437],[-75.191173495058308,40.005714929606512],[-75.191143145027937,40.005656913040688],[-75.191110633883781,40.005564500993231],[-75.191054443234819,40.005443881284691],[-75.190968103039665,40.005212442245728],[-75.190966587770973,40.005208379164557],[-75.19092433730458,40.005075960568213],[-75.19091703062729,40.005061391488333],[-75.190897137534208,40.005021725396233],[-75.190853779734738,40.004918690968907],[-75.190836157039541,40.004849099855392],[-75.190829121036558,40.004797044978645],[-75.190833541331202,40.004720463268818],[-75.190835603620684,40.004684742845889],[-75.190826193469562,40.004655421524987],[-75.190825538200755,40.00465337875],[-75.190810455086748,40.004635743176252],[-75.190801171846076,40.004464270920373],[-75.190796817042084,40.004422741011226],[-75.190773899911747,40.004204204331565],[-75.190768077355912,40.004148680588429],[-75.19075493956511,40.003987064111996],[-75.190751172085896,40.003940708881359],[-75.190739574724375,40.003890281342713],[-75.19068967165795,40.003781912012755],[-75.190662862357243,40.003717305864058],[-75.190611851871964,40.003638320694812],[-75.190554749144752,40.003541899429365],[-75.190544814307117,40.003507079243725],[-75.19053338165439,40.003392646865485],[-75.190534686445829,40.003119343567903],[-75.190527658654119,40.003041472270361],[-75.190523579668579,40.002996268776855],[-75.190531735593083,40.002890090259953],[-75.190533646992321,40.002865212803997],[-75.19053582877703,40.00279067693203],[-75.19053745776273,40.002747463980448],[-75.190512230809375,40.002711882081243],[-75.190484075660535,40.002671120771161],[-75.19046276623601,40.002640271797993],[-75.19044944419187,40.002575966286692],[-75.19042879185389,40.002527066751526],[-75.190419769514136,40.002468046905328],[-75.190408369303739,40.002412433910479],[-75.190406219972544,40.002350108334539],[-75.190405308771247,40.002254939799649],[-75.190411758746379,40.002203184662626],[-75.190421970480301,40.002175240535308],[-75.190429316136544,40.002155137947142],[-75.19045817646726,40.002105612401515],[-75.190423388517715,40.002073697045049],[-75.190410253034585,40.002055165976323],[-75.190408437572898,40.002052604478784],[-75.190407493233764,40.002017984726351],[-75.190410751329381,40.001931558824218],[-75.190426647577169,40.001867904758207],[-75.190530982682176,40.001546730461975],[-75.190612808693402,40.001285601075175],[-75.190676033514393,40.001100174975697],[-75.190690074437811,40.000906732608314],[-75.190717599161459,40.000713590847333],[-75.190734016044757,40.000636108877565],[-75.190744700021369,40.00059136785881],[-75.19075698038445,40.000444595376486],[-75.190766426850985,40.000313329128346],[-75.190759130771326,40.000268188167794],[-75.190749131191467,40.000235095577665],[-75.190749392240477,40.000108814355869],[-75.190750564941823,40.000077701673625],[-75.190705647351933,39.999896785254847],[-75.190713335250351,39.999692821637588],[-75.190717114014817,39.999592568760704],[-75.190707310006871,39.999554290718997],[-75.190702131249111,39.999512655924043],[-75.190720339739784,39.999327957039796],[-75.190741642135961,39.999240203481811],[-75.190753752231259,39.999195105023766],[-75.190765193070547,39.999152500950835],[-75.190770092063531,39.999110735834719],[-75.190791707229749,39.998926467888595],[-75.190825517163034,39.998745575777768],[-75.190846819206726,39.998657823098618],[-75.190925350753673,39.998424299978481],[-75.190977368655552,39.99817807621897],[-75.190986651510158,39.998110814799084],[-75.190998474920249,39.997856774353693],[-75.191041859666086,39.997660526229183],[-75.191067232437049,39.997524425190008],[-75.191096612453251,39.997341704335554],[-75.191136479098475,39.997238796039319],[-75.191208526426109,39.996998207589257],[-75.191221771836183,39.996984516498223],[-75.191241292521042,39.996964339275245],[-75.191241553093221,39.996957424443714],[-75.191235711131711,39.996927416808575],[-75.191228361662112,39.99688966294395],[-75.19124383234589,39.996777561138124],[-75.191333499255578,39.996487196369905],[-75.191425282465943,39.996200339486791],[-75.191451695592434,39.996155949911788],[-75.191526965851978,39.996008850509348],[-75.191582107809424,39.995918392089621],[-75.191695191634281,39.99578251587927],[-75.191742873657773,39.995710920409998],[-75.19177456488282,39.995645888285026],[-75.191817035743796,39.995593205929609],[-75.191861755047597,39.99554057366786],[-75.192003368383524,39.995363815451299],[-75.192152831065044,39.995157821299301],[-75.192232106114588,39.995083468867911],[-75.192404530154192,39.994924695176799],[-75.192420066073609,39.994930231136102],[-75.192483152442264,39.994867628281789],[-75.19249932464156,39.994837328225316],[-75.192553088296222,39.994736594223028],[-75.19259447341156,39.994659053849993],[-75.192753996407291,39.994484421936541],[-75.192812328218437,39.994428633630037],[-75.192844897034135,39.994399949406684],[-75.193157854786648,39.994152617013846],[-75.193714519641389,39.993704847555215],[-75.194317295769153,39.993226962532745],[-75.195404830088663,39.992358514406021],[-75.195544086832882,39.992243977279927],[-75.195746423867249,39.99206683533108],[-75.195928991140335,39.991877142717271],[-75.196113934618523,39.991684042840355],[-75.196408983056827,39.991374025166337],[-75.196849268625158,39.990909811882922],[-75.197406197349238,39.99033401473703],[-75.197586508132304,39.990144270401714],[-75.197715561506683,39.990001823212083],[-75.19794399540389,39.989728379994354],[-75.198179950636913,39.989434344404721],[-75.198299881773991,39.989295154564111],[-75.198388781207456,39.989203713723811],[-75.19855668167537,39.989044830850858],[-75.199796439476415,39.987892554529246],[-75.200833649589015,39.986922604168051],[-75.20101521568985,39.986758830767045],[-75.201468186530505,39.986374460448737],[-75.201953388844018,39.985970045771467],[-75.202245661140424,39.985732611375518],[-75.202463756456396,39.98555407734694],[-75.202834067387002,39.985214576162328],[-75.203015778137498,39.985024205352495],[-75.203186930798552,39.984823004175205],[-75.203255297858789,39.984709046713071],[-75.203314815957967,39.984561160155316],[-75.203348424552786,39.984429564566803],[-75.203360447945741,39.984333819417792],[-75.203363737223739,39.984156139538015],[-75.203352652363861,39.984046906269867],[-75.203326741954228,39.983928262804312],[-75.20328490310149,39.98378461349607],[-75.20323419966978,39.983652444478231],[-75.203184792740146,39.983530683776024],[-75.20303659119395,39.983254927561653],[-75.202917539910572,39.983056369230447],[-75.202771817962002,39.982849433232879],[-75.202648944733795,39.98270787742009],[-75.202477119917532,39.982522418228854],[-75.20234562629588,39.982385860499946],[-75.202156892039653,39.982198547775148],[-75.202142368321759,39.982184133626909],[-75.202124693568308,39.982168200706063],[-75.201911467578725,39.981975989257656],[-75.201848711891358,39.981919418361677],[-75.201820002814728,39.981896968498518],[-75.201606211513763,39.981729794535369],[-75.201250254506476,39.981462397677014],[-75.201000384351218,39.981289474740343],[-75.200890074769262,39.981210128340962],[-75.200860793076032,39.98118906476617],[-75.200752874989305,39.981126175050314],[-75.200670988366667,39.981078456167182],[-75.199557674699136,39.980454290863101],[-75.199443165899069,39.980391596675808],[-75.198404179770975,39.979822735479061],[-75.197628892021328,39.97940256706022],[-75.197628830047734,39.979402533245661],[-75.19732319776017,39.97923689244444],[-75.19688362893632,39.978996165397859],[-75.19618457008005,39.97861472485809],[-75.19601932636391,39.978524117445069],[-75.195668958269977,39.97833337632013],[-75.195371490511093,39.978171059949496],[-75.195054973744831,39.977977178070667],[-75.194232819007226,39.977416529450124],[-75.193801939596341,39.977079970445075],[-75.193649847318085,39.97695044416438],[-75.193511067629842,39.976832255186821],[-75.193398316631814,39.976736233153815],[-75.193381839277038,39.976721933781846],[-75.193220305872885,39.976581761088177],[-75.19314325533847,39.976522955623565],[-75.193113315157362,39.97651190892141],[-75.193080150155353,39.976496898004747],[-75.193017729456841,39.976452690384669],[-75.192973842961067,39.976408896615091],[-75.19293848047586,39.976362696961253],[-75.192910273060889,39.976350391363084],[-75.192876962938072,39.976339269504798],[-75.192857133046445,39.976328448021427],[-75.192851044452041,39.976317027224674],[-75.192844531359029,39.976304812190435],[-75.192843826444602,39.97629603688474],[-75.192842235026703,39.976276217093229],[-75.192824821136199,39.976245986770941],[-75.192806406658747,39.97619757073231],[-75.192769896249047,39.976137073477197],[-75.192711821113349,39.976067013489562],[-75.192664955527704,39.976012772691853],[-75.192601020282879,39.975919227925615],[-75.192551370584923,39.975849355614656],[-75.192504114784612,39.975805485659485],[-75.1924811591402,39.975788107186872],[-75.192460425491646,39.975756505364387],[-75.192333555485874,39.975587602159109],[-75.192298945113549,39.975552677145799],[-75.192128654568776,39.975380839009155],[-75.192078477908225,39.975330207467039],[-75.192044557460505,39.975290527812916],[-75.191950966480789,39.975192966241735],[-75.191950439096814,39.975192416583674],[-75.191889337379379,39.975113206511999],[-75.191796635363545,39.974977501520122],[-75.191785143384877,39.974958590856353],[-75.191675947648363,39.974778893044821],[-75.19133879613544,39.974238116102534],[-75.191292372409578,39.974172207473465],[-75.191032931647257,39.973717498431341],[-75.190806460732375,39.973282985807025],[-75.190782514953526,39.973235350641787],[-75.190690369920048,39.973052042368508],[-75.190627101096595,39.972901203488149],[-75.190623719434512,39.972893142425221],[-75.190597527126272,39.9728306994894],[-75.190509298942956,39.97262113652053],[-75.190454356678288,39.972468106388341],[-75.190421956795703,39.972370670323862],[-75.190404370538644,39.972317782581015],[-75.190342884149473,39.97206989147972],[-75.190281057352948,39.971831076709599],[-75.190246506625343,39.971629198131538],[-75.190241623388886,39.971579785101611],[-75.190216156283682,39.971315830519558],[-75.190181754702323,39.97093101262314],[-75.190179402612927,39.970909525154219],[-75.190165469583292,39.970782208138594],[-75.190161684774907,39.970747621377321],[-75.190147611035442,39.970641100104224],[-75.190136754548504,39.970558931886323],[-75.190134099877554,39.970547525359279],[-75.190107779975008,39.970434434629574],[-75.19009031304347,39.970359382863535],[-75.190042058343238,39.970245211698376],[-75.189932129590332,39.970070961098052],[-75.189906270998762,39.970029973020743],[-75.189885829958826,39.970008551382278],[-75.189661133389407,39.969773083241414],[-75.189453589399278,39.969632361860796],[-75.189440859006424,39.96962618427942],[-75.189388820895104,39.969600930041622],[-75.189368404860318,39.9695943854218],[-75.189257288169372,39.969558767484209],[-75.189249604235044,39.969556304736287],[-75.189246187548108,39.969555580660561],[-75.189115769040811,39.969527944544105],[-75.188793922869579,39.969476935992603],[-75.188110600201952,39.969392483102212],[-75.187495908913661,39.969316478579778],[-75.187331773637212,39.969294106173962],[-75.187212568996202,39.969277857496088],[-75.187116265177693,39.969267032505542],[-75.186725983604774,39.969223162641192],[-75.186391724665356,39.96918340291657],[-75.186219301795333,39.969144951729149],[-75.186055863822673,39.969106700144998],[-75.185949250455806,39.969072025622822],[-75.185816462729804,39.969016005007489],[-75.18581656029265,39.969013420387846],[-75.185818177726404,39.968970540522399],[-75.185534137507261,39.968830113375795],[-75.185417326335838,39.968757042733401],[-75.185123782241035,39.968567253804437],[-75.184985358111817,39.968475807315741],[-75.184915023407299,39.968424372181993],[-75.184833597710195,39.968359429785707],[-75.184725713396787,39.968262701017686],[-75.184664913594077,39.968195043560009],[-75.184659871438654,39.96818855798363],[-75.184612153552962,39.968127181088299],[-75.184581738435298,39.968081959614629],[-75.18455368772743,39.96802138642061],[-75.184530610707057,39.967970879688238],[-75.184510302302982,39.967917945361627],[-75.184498254214162,39.967858931898114],[-75.184492670478704,39.967794139726777],[-75.184488907039167,39.967728402549533],[-75.184501690133487,39.967649818414287],[-75.184513163912882,39.967582275719053],[-75.184543712387693,39.967529449536016],[-75.184567700053918,39.967461328868204],[-75.184583824104564,39.967388784114533],[-75.184584495391789,39.967385241033078],[-75.184596084041786,39.967324048518968],[-75.184598640651032,39.967256349693187],[-75.184595344490759,39.967201864875342],[-75.184587381767429,39.967152811528585],[-75.184574451337852,39.967117164069585],[-75.184558204081682,39.967074835338977],[-75.184550498690129,39.967042565458499],[-75.184552619030015,39.967009334044349],[-75.184552688349314,39.96700824266852],[-75.184554215194723,39.966967812425871],[-75.18456240395922,39.966948244465456],[-75.184569907829086,39.966930316347515],[-75.184535590354102,39.966893933005949],[-75.184575365983193,39.966797723143934],[-75.184578797708838,39.966789424079167],[-75.184462341114042,39.966754336979712],[-75.184454566000781,39.966771199437645],[-75.184447489757176,39.966786671945215],[-75.184439977028234,39.966803097872969],[-75.184426918264649,39.966799687483096],[-75.184104250719756,39.966715415969958],[-75.184098035582366,39.966713793017483],[-75.184099640681637,39.966709368008431],[-75.184106109602681,39.966691530301489],[-75.184116960117052,39.966661607112862],[-75.183739585387485,39.966565500833866],[-75.183723692965131,39.966598449442785],[-75.183719195411811,39.966607775224233],[-75.183715382690394,39.966615680111424],[-75.183713561053395,39.966612786768273],[-75.183676660921435,39.966554181427753],[-75.183637158710624,39.966560550127838],[-75.183636914766936,39.96655953734151],[-75.183626361810681,39.966515681570421],[-75.183634586369465,39.966513335490681],[-75.183665147840472,39.966504619709127],[-75.183631873967798,39.966393423270304],[-75.183594198672367,39.966398673215338],[-75.183584864127894,39.966362334794354],[-75.18362168355344,39.966356120549172],[-75.183546340567702,39.96624836021855],[-75.183545771473604,39.966246407612928],[-75.183531335161661,39.966196831848379],[-75.183545933082769,39.966194552649824],[-75.183565137811897,39.96619155477115],[-75.183585189468573,39.96618842446312],[-75.18356344340711,39.966102506014082],[-75.183534888058887,39.965989688743711],[-75.183527735525132,39.965961428931351],[-75.183580570661761,39.965743809274947],[-75.183563621426899,39.965720086770666],[-75.183565278445229,39.965676225686778],[-75.183572602208088,39.965647725646249],[-75.183573243414997,39.965607103499984],[-75.183571961853985,39.965570171233438],[-75.183566072324936,39.965544868859332],[-75.183563517386858,39.965533894162697],[-75.183548670293888,39.965501766292682],[-75.183539356983559,39.96546486971215],[-75.1835241464874,39.96541874371453],[-75.183502343910675,39.96538178220672],[-75.183459743400832,39.965352121282677],[-75.183456303121432,39.965348557415552],[-75.183428831370904,39.965320105268191],[-75.183424077177506,39.965290044814758],[-75.183423069644235,39.965283673754527],[-75.183391659647725,39.965217574863551],[-75.183369898852675,39.965179542059026],[-75.183342004905782,39.965138496024942],[-75.183315868094908,39.965098175861037],[-75.183287529814365,39.965045276083877],[-75.183252211754507,39.964988187230844],[-75.183246264357024,39.964979730643876],[-75.183234428444905,39.96496290167908],[-75.183235680327883,39.96495821829869],[-75.183243780378788,39.964927923710583],[-75.183235023044332,39.96489996495125],[-75.183211721817386,39.964879061008588],[-75.1831790125472,39.964847390345284],[-75.183149096064639,39.964812650237413],[-75.183127095611269,39.964788559668676],[-75.183107969142355,39.964767617553115],[-75.1830851961017,39.964732737203995],[-75.183052966956197,39.964688332442819],[-75.183012940644289,39.964637789434192],[-75.182989581235688,39.964618429374895],[-75.182911247988514,39.964515168879984],[-75.182895240099981,39.964494065841592],[-75.182834362432999,39.964405086726408],[-75.182816345357452,39.964407220846923],[-75.182791338240037,39.964410210398142],[-75.182709834882445,39.964418333894528],[-75.182709606789615,39.964418358524178],[-75.182623004387295,39.964425789415365],[-75.182622884644275,39.964425797548081],[-75.182573924570761,39.964428761940766],[-75.182571580867361,39.96442890321336],[-75.182522326213501,39.964431885319669],[-75.182521948264991,39.964431909298611],[-75.182449506419388,39.964436385362788],[-75.182446383162812,39.964436456929384],[-75.182446312829811,39.964436458959504],[-75.182445042359205,39.964436489995656],[-75.18244650927646,39.964453258203847],[-75.182455088177562,39.964551330629519],[-75.182373957212832,39.9645570619316],[-75.182314532548148,39.964561259780034],[-75.182306304119649,39.964562071252274],[-75.182268168354753,39.964565834580526],[-75.181937086674409,39.964513528164879],[-75.181756659882438,39.964473637492745],[-75.181739391197098,39.964469818996918],[-75.181552046027974,39.964409505784275],[-75.18145061466646,39.964374106727277],[-75.181374489472162,39.964347539999096],[-75.181317341488295,39.964333676163967],[-75.181213087941359,39.964308384327211],[-75.181094972406981,39.964282208082949],[-75.181034683774101,39.964268847730267],[-75.180807416297569,39.96423569869804],[-75.180663296129381,39.964212948296101],[-75.180614083964528,39.964205179661427],[-75.180407032466178,39.96417446116488],[-75.180406180119348,39.964174334855386],[-75.180404395748013,39.9641742074947],[-75.180275431776096,39.96416500126459],[-75.180253434274206,39.96416343097394],[-75.18023296379701,39.964165912492234],[-75.180125540277857,39.964178933561115],[-75.180097129555435,39.964182377888051],[-75.180038125342151,39.964199763072138],[-75.180002268956216,39.964215796225183],[-75.179996143510564,39.964218744083595],[-75.179890842066328,39.9642694198062],[-75.179801133997259,39.964327271713117],[-75.179655593740179,39.964442947646695],[-75.178956452450237,39.96499862126624],[-75.178933940992209,39.965034695214243],[-75.178930898174471,39.965039570883441],[-75.178915611758384,39.96506406564],[-75.178903769417374,39.96510593970951],[-75.178897212842045,39.96515068842168],[-75.178936550822556,39.965267550921453],[-75.179009848194951,39.96545064730995],[-75.179229342242238,39.966074755370414],[-75.179320165587001,39.966133746854048],[-75.179333005070148,39.966167016965436],[-75.179426806973808,39.966410086977035],[-75.179508915664144,39.966527528125368],[-75.179767794077719,39.966831042525477],[-75.180090906081588,39.967040603965067],[-75.180477645696399,39.967242920724907],[-75.181037028379251,39.967481114553927],[-75.180095015936189,39.967450836589954],[-75.180119608766688,39.967568654990984],[-75.180127382656494,39.967605901234485],[-75.180331939897528,39.967792696859156],[-75.180552189865665,39.967993820900553],[-75.180669257368891,39.968100720952165],[-75.180810422496833,39.968229626148222],[-75.180900224038339,39.968311628664694],[-75.181188749382528,39.968575092046265],[-75.181693999095671,39.969009491031819],[-75.181790346165968,39.968936165313885],[-75.181790503966567,39.968936296789444],[-75.18213747092102,39.969227194100647],[-75.182700679596223,39.969698406905891],[-75.183111162800358,39.97003613313094],[-75.183518820068073,39.970382464111857],[-75.183895404941993,39.970689561548021],[-75.184126072350608,39.970881632629862],[-75.184528878532959,39.971223998589878],[-75.184960700859435,39.971593988812621],[-75.185179008135989,39.971781926821393],[-75.185426617500951,39.971989788280439],[-75.185632598796161,39.972178487851167],[-75.185814194659258,39.972403021290084],[-75.185845308961277,39.972444343105614],[-75.186028465755001,39.972771299115166],[-75.186433545520714,39.973538839357971],[-75.186473186433346,39.973613949220542],[-75.18647855387276,39.97362411899104],[-75.186554477341744,39.9737679754951],[-75.187070822063745,39.974782886765659],[-75.187181242906931,39.974998982235029],[-75.18724862426842,39.975156698676869],[-75.187275984809887,39.975221861627965],[-75.187342464893163,39.975369053908103],[-75.187416207616209,39.97555581937808],[-75.187494773937857,39.975692810820718],[-75.18761171241816,39.975915617002109],[-75.187856177353368,39.976358597436352],[-75.187993447208385,39.97652957514417],[-75.188182574249808,39.976683681146255],[-75.188538111043783,39.976879955499811],[-75.188753895894678,39.976959455515825],[-75.18904496443281,39.977040035121064],[-75.18932951939729,39.977077255346408],[-75.189624482576733,39.977154153242026],[-75.189695637934364,39.977160007959441],[-75.189773250818092,39.977360213714391],[-75.189865806165955,39.977562679114001],[-75.189899969256004,39.977719522076761],[-75.189914077301211,39.977810402589895],[-75.1899046445414,39.977927735041227],[-75.189882700115589,39.978044788374213],[-75.189849003625525,39.978141346479063],[-75.189793183564703,39.978226812450046],[-75.189718392927347,39.978350394008302],[-75.189638959979661,39.978464237464721],[-75.18956848630377,39.978539742820082],[-75.189468053153121,39.97861265242301],[-75.189344759897153,39.978713540860426],[-75.189259457171019,39.978803214188787],[-75.189209266562003,39.978886731394979],[-75.189175235244349,39.97897927327066],[-75.189147651361012,39.97908936199633],[-75.18911585421877,39.979233132815963],[-75.189088909492142,39.979354966027785],[-75.189058507523399,39.979493162793432],[-75.189047969058336,39.97954587540719],[-75.189014286156421,39.979700261257264],[-75.188948345976073,39.980002490989648],[-75.188948319125217,39.98000261292767],[-75.188845828044947,39.980471919123779],[-75.18879591774261,39.980712442335225],[-75.188743828885094,39.980947802784428],[-75.188706636590723,39.981109367873856],[-75.188653649941685,39.981371375416543],[-75.188645188817617,39.981413213237573],[-75.188618239844118,39.981535858984095],[-75.188569900858482,39.981754210027425],[-75.188473670442477,39.982188865055285],[-75.188457955884019,39.982259855297954],[-75.18845792068565,39.982260012188917],[-75.188450401715286,39.982293974585886],[-75.188450290296714,39.982296897675027],[-75.188384657012193,39.982614115998011],[-75.188326741421818,39.982868987348816],[-75.188284248187287,39.983055987532111],[-75.188284236923522,39.983056037737207],[-75.18825325232541,39.983198880459717],[-75.18819076773444,39.983486947461905],[-75.188154459596618,39.983652015456386],[-75.18811450541638,39.983833656305009],[-75.188099168209391,39.983903379106351],[-75.187990787738002,39.984403054236921],[-75.187882738008241,39.984898546083194],[-75.187779802329359,39.985376667943711],[-75.187697444293519,39.985750622164318],[-75.18769734693241,39.985751060584164],[-75.187612705699308,39.986139124045636],[-75.187559904610922,39.986382089836169],[-75.187479963766535,39.986754221107084],[-75.187409139584176,39.987078332979522],[-75.187408712086281,39.987080287634491],[-75.187329631074462,39.987438404809673],[-75.187244074215826,39.98782963720025],[-75.187155967115359,39.988231526499199],[-75.187138809943946,39.988309786175321],[-75.187097846497835,39.988500519737926],[-75.187086466406413,39.988555219074918],[-75.187034086400971,39.988807008663414],[-75.187022349587338,39.988850517605442],[-75.187009976565349,39.988896389202147],[-75.186965623585905,39.989103822030003],[-75.18649606159741,39.991257477831745],[-75.186438872523212,39.991516240848163],[-75.186435826111733,39.991531465638907],[-75.186430936538244,39.991553872655032],[-75.186419418803212,39.991608497689768],[-75.186401291999445,39.991694461783062],[-75.186402719088619,39.991696904757184],[-75.186401259489386,39.991704197363028],[-75.186343118039645,39.99196291024117],[-75.186324966295857,39.992046395993107],[-75.186297939239893,39.992171879577135],[-75.186253315902519,39.99237906739711],[-75.186213629347819,39.992559864085536],[-75.186213612311604,39.992559942993822],[-75.186190645336012,39.992662023427449],[-75.186178195667594,39.992742655985282],[-75.186201907567551,39.992791432860052],[-75.18633051852774,39.993037828405846],[-75.186424436134061,39.993220982888396],[-75.186561518562172,39.993476616169822],[-75.186643625978746,39.993626870338701],[-75.18701085558375,39.994368881207869],[-75.187253659602305,39.994863983585923],[-75.187330749520029,39.9950236686498],[-75.187380588251983,39.995190299336208],[-75.187413964603977,39.995301891967607],[-75.187444256092022,39.995410145057321],[-75.187487380632987,39.995562151087029],[-75.187515498059597,39.995649326973961],[-75.187586437132609,39.995899435813236],[-75.187597640362128,39.996048871328696],[-75.187622054618387,39.996318785499589],[-75.187611404774501,39.996536742356248],[-75.187661388189767,39.996552434613456],[-75.189209062367169,39.996867701103426],[-75.189266153577989,39.996873614892138],[-75.189328933815716,39.996863648246901],[-75.189548797451508,39.996871327705534],[-75.189696286178403,39.996906409474633],[-75.189788760798635,39.996933993053396],[-75.189898269963834,39.996989796714836],[-75.190046263093507,39.997065019269677],[-75.190113685564484,39.997110843420302],[-75.190134499325382,39.997124989379401],[-75.190218674156299,39.997212709095741],[-75.190366274186516,39.997378406172125],[-75.190490548602838,39.997522702096759],[-75.190580489278474,39.99761751037137],[-75.19065942347153,39.997684232034558],[-75.190696945514432,39.997729150405178],[-75.190674127247775,39.997883023047478],[-75.190654209359025,39.997983690067429],[-75.190606704135988,39.998300283917487],[-75.190553902652255,39.998530241294368],[-75.19048769326875,39.998829862060134],[-75.190460047873657,39.99897206891594],[-75.190408516454525,39.999237145212405],[-75.190336550186757,39.999607336032994],[-75.190301579820414,39.999751651873275],[-75.190291848668352,39.999791810852663],[-75.190276597020926,39.999854753057889],[-75.190272244872347,39.999872711309735],[-75.190310031210387,39.999910675389685],[-75.190370094913533,39.999997857278423],[-75.190405609370572,40.000096091338094],[-75.190413384265227,40.000209948452017],[-75.190421770896762,40.000307578538454],[-75.190404907728237,40.000434806873542],[-75.190390141789891,40.000506400587724],[-75.190352703223766,40.000619249578463],[-75.190300105956112,40.000734080653288],[-75.190294382597003,40.00080587508419],[-75.190312423607125,40.000887479781582],[-75.190314956430214,40.000980340060934],[-75.190305257501009,40.001077566893187],[-75.190284375447717,40.001151343418144],[-75.190191542922008,40.001453203204711],[-75.190067211005498,40.001870364382199],[-75.190003164707562,40.002128785047375],[-75.189990713078217,40.002218990192517],[-75.189960480344183,40.002380720871123],[-75.189967687760557,40.002429603596077],[-75.190020065118787,40.0025606960236],[-75.190065801043886,40.002707880991174],[-75.190110796435945,40.002794726950128],[-75.19012822594992,40.002892558693617],[-75.190172870112491,40.003148762826996],[-75.190172213749619,40.00324619037994],[-75.190175707897666,40.00331355014594],[-75.190173697707678,40.003366867508078],[-75.190139795969472,40.00346587475368],[-75.190100302419296,40.003553156827813],[-75.190095714811591,40.00359481624217],[-75.190103097258898,40.003639062664206],[-75.190113406715511,40.003685693546686],[-75.190177274443172,40.003752080324332],[-75.190246560464118,40.003834827638698],[-75.190383603111556,40.003960847320627],[-75.190429473657943,40.004024511687817],[-75.190443147313914,40.004061938061668],[-75.190449961421891,40.004201294765565],[-75.190453368503313,40.004270972666944],[-75.190457384995199,40.004484509124339],[-75.190474202614709,40.004758652537603],[-75.190512602513181,40.004940474223474],[-75.190552925140182,40.005071297576627],[-75.190626973158359,40.0052678354104],[-75.190728210185597,40.005507747417802],[-75.190790056618823,40.005663563289524],[-75.190614790043128,40.005635000099176],[-75.190526185068819,40.005620559336037],[-75.190690709119252,40.006058082060946],[-75.190860566473233,40.00651428233072],[-75.190947452213209,40.006778872623229],[-75.190871201310699,40.006796965400994],[-75.189940229304298,40.006918337366166],[-75.189903927640472,40.006981067847377],[-75.18988549475911,40.00701292099744],[-75.189866001528117,40.00704660657582],[-75.189949055145334,40.007075821283564],[-75.1903096549472,40.007202663919834],[-75.190554221900086,40.00727771829456],[-75.191362289491721,40.00750177399965],[-75.191403743479412,40.007391776637164],[-75.191409182317813,40.00739246277719],[-75.191440631779344,40.007396428896556],[-75.191530390612328,40.007422663566864],[-75.191539259720145,40.007425256989578],[-75.192062814930935,40.007657812982231],[-75.192066459948165,40.007659432211881],[-75.192068298023287,40.007660217395802],[-75.192427436910364,40.007813673359507],[-75.192886308666488,40.008005024885229],[-75.193179826288798,40.008129104551799],[-75.193438873984192,40.008237000559284],[-75.193596646272539,40.008306028574417],[-75.193982825292764,40.008464927210099],[-75.194328056337483,40.008613277655051],[-75.194514097339479,40.008663665603123],[-75.194740140455281,40.008743749617388],[-75.194517439086752,40.009097120405627],[-75.195156268422693,40.009333350130412],[-75.195637696326514,40.009511197752069],[-75.195639665542942,40.00951192542697],[-75.195822089443993,40.00923283917043],[-75.195907080866363,40.009100334075249],[-75.196650254620025,40.009334744553492],[-75.196663179879309,40.009338821632404],[-75.19677602148667,40.009345573928009],[-75.196786603955886,40.009346207508031],[-75.197415711535541,40.009545801314871],[-75.198443991086521,40.009881866378237],[-75.198954488632751,40.010048077756956],[-75.198996526476677,40.010061764615017],[-75.198601091317656,40.010679111500188],[-75.198987409853729,40.010816460012897],[-75.198996126902117,40.010803162045249],[-75.199395509933808,40.010196207262489],[-75.199900860574814,40.010351951950469],[-75.199738967720734,40.010613256863223],[-75.200401374241565,40.010870705275224],[-75.200151495500322,40.011238039582118],[-75.200679975226052,40.011089613337148],[-75.200969985791417,40.011004699450517],[-75.201182510736174,40.010949385450871],[-75.201415483305695,40.010891915642432],[-75.201628724996738,40.010862717931047],[-75.201664883287251,40.010859445235234],[-75.200638379021868,40.010564554749202],[-75.200657904939064,40.010499583493726],[-75.200658948053459,40.010496112559991],[-75.200705879499253,40.010383397407168],[-75.200706201461742,40.010382624286102],[-75.201255673174884,40.010535928649013],[-75.20179325999824,40.010690046856702],[-75.201805077438735,40.010693434716991],[-75.202021351649137,40.01075543654941],[-75.202303155696484,40.0108362237794],[-75.202450104359187,40.010877078809393],[-75.202450248114204,40.010877119841261],[-75.202716111764531,40.01095103538298],[-75.203057800827622,40.011048823176125],[-75.203878469027785,40.011283685808294]]]},"properties":{"OBJECTID_1":68,"OBJECTID":11,"ASSET_NAME":"East Fairmount Park","SITE_NAME":"East Fairmount Park","CHILD_OF":"East Fairmount Park","ADDRESS":"NA","TYPE":"Land","USE_":"Park- Regional/Watershed","ACREAGE":649.46507999999994,"ZIPCODE":"19121","ALLIAS":" ","GLOBALID":"342ce47f-acd5-4326-8782-c017e6a18dc8","Shape_Length":52940.117955300593,"Shape_Area":28318628.370448496}},{"type":"Feature","id":69,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.097153016592017,40.016863928691009],[-75.097146351173933,40.017474192763601],[-75.097149097538107,40.017755682868604],[-75.097716782901685,40.018109200927867],[-75.098473995039285,40.018195873131233],[-75.099850164276077,40.018379586578689],[-75.101154797250587,40.018547100375557],[-75.10263207246561,40.018738397931585],[-75.104236202270783,40.018937884746144],[-75.105520728328685,40.019093910580061],[-75.105671107794592,40.019112175924327],[-75.105739608888129,40.019120495838962],[-75.106678448680782,40.019244956654092],[-75.106747742468556,40.01925414298185],[-75.10750053055645,40.019353934486418],[-75.108232343377921,40.019448726973792],[-75.108336401175762,40.018967982283108],[-75.108423003364507,40.018567878357203],[-75.108596276261764,40.017780436852767],[-75.108785413508471,40.016894268208247],[-75.108877941853748,40.016455474886413],[-75.108880238279028,40.016444582876154],[-75.108005984640442,40.016610766528586],[-75.107904723134581,40.016629865756379],[-75.107680590219914,40.016672140296038],[-75.107658378426066,40.016676329834524],[-75.107625142785494,40.016682598452419],[-75.107424076707304,40.016446905097837],[-75.107339873688559,40.016329866613475],[-75.10730077628223,40.016274795808364],[-75.10721164074738,40.016137635371564],[-75.1071531774205,40.015987902333052],[-75.107117705889308,40.015866889971136],[-75.107090137103768,40.015703447878742],[-75.107084561471581,40.015640240070546],[-75.107086484543885,40.015544976742163],[-75.107092915622147,40.015467473807128],[-75.107091871889679,40.015461384033181],[-75.107101442194278,40.015347976937825],[-75.107135438479389,40.015180961106317],[-75.107225377624573,40.014746823496473],[-75.106110184449449,40.014554811960075],[-75.101946938641987,40.014019515709045],[-75.101939759966342,40.014049617678076],[-75.101592454816469,40.014003797095889],[-75.100682481246253,40.013886206636059],[-75.100123359979108,40.013802474574334],[-75.099248183457831,40.013684500760284],[-75.098851386619899,40.013637022807082],[-75.098639435810981,40.013608345797223],[-75.098552138026221,40.013599724387163],[-75.098435191468141,40.013602308266847],[-75.098268148769904,40.013611663258949],[-75.098079936879529,40.013635061862544],[-75.097991556177647,40.013654160589198],[-75.097824993026748,40.013695236149715],[-75.097476685277016,40.013814030544367],[-75.097360687157988,40.014320032882246],[-75.097322665981196,40.01450148618158],[-75.097215726870829,40.01503940784022],[-75.097193452474045,40.015169697413086],[-75.097176083223999,40.015350306903606],[-75.097161197898743,40.01564328153011],[-75.097160403168559,40.015912650208449],[-75.097159934369088,40.016071336927709],[-75.097159857260962,40.016080206740028],[-75.097153016592017,40.016863928691009]]],[[[-75.110281391862131,40.047613828429427],[-75.110047876286529,40.047818306710028],[-75.109955037639011,40.047885512812996],[-75.109559179484151,40.048173845547481],[-75.109476821221634,40.048215746169568],[-75.108652529152266,40.048652979723052],[-75.108695838406376,40.048678517788396],[-75.109109779909517,40.048922604332084],[-75.10954488404785,40.049456303695443],[-75.109744272284374,40.049274763357872],[-75.109908745926433,40.049136213964871],[-75.110222110046024,40.048893428061113],[-75.110699832397984,40.048575952334517],[-75.111062723410882,40.048341600476398],[-75.111270459089212,40.048189445470996],[-75.111439387402768,40.048058295577597],[-75.111707101277361,40.047829053982852],[-75.111843242858143,40.04768620211761],[-75.112112727004771,40.047411382975078],[-75.112234106564543,40.04748327642789],[-75.112247336125208,40.047491111910773],[-75.112261980684352,40.047421022819691],[-75.112266028049646,40.04740165532192],[-75.112347893033316,40.047026243429201],[-75.112409060194935,40.046690119581243],[-75.112475516410768,40.046305350734457],[-75.112112096703783,40.046267262001919],[-75.112142251057222,40.046112571013701],[-75.112206999379879,40.045780413827309],[-75.112300109548229,40.045241748576125],[-75.112305019029094,40.045213349132013],[-75.112679740651188,40.045223777568687],[-75.112697374616971,40.045136595162894],[-75.112732358962248,40.044969523073405],[-75.112781328367674,40.044748030010588],[-75.112819605329989,40.044557312093694],[-75.112911880087069,40.044137919065456],[-75.112980323707831,40.043781842952875],[-75.113076985932338,40.043371672566813],[-75.113134240249352,40.043059133150628],[-75.113217478716251,40.042967389136955],[-75.113320803241223,40.042853506512991],[-75.113440720577003,40.042721335337134],[-75.11355332438221,40.042597224382732],[-75.11361086256484,40.042533805152146],[-75.113675346207231,40.042462731577253],[-75.113808896185702,40.042315531109146],[-75.11415556416199,40.041947592666183],[-75.114301672833037,40.041792193964987],[-75.114510583784366,40.041609040020795],[-75.114761553117859,40.041443273693183],[-75.115021229620211,40.041297777904902],[-75.115239095939927,40.041189643269369],[-75.115372031476653,40.041128826661968],[-75.115670289995819,40.040723279215229],[-75.116175355775667,40.040004969858266],[-75.116435797668586,40.03961320148602],[-75.116450169230447,40.03959158374758],[-75.115999004865387,40.039227241500576],[-75.115428116671126,40.038767089432667],[-75.115008893683637,40.038436319986985],[-75.114878228454529,40.038316539947942],[-75.114832914214162,40.038260758311793],[-75.114748907715253,40.038162119899155],[-75.114672513148435,40.038050884881869],[-75.114621429497788,40.037960300981688],[-75.114591622437544,40.037872029829501],[-75.114478753237037,40.037533792228373],[-75.114468287742525,40.03750242873754],[-75.11446135498683,40.037474756732095],[-75.114398407477111,40.03722346682796],[-75.114280801756522,40.036857716382713],[-75.114228443516836,40.036675582774009],[-75.113986801355153,40.035864784560736],[-75.113894351231622,40.035761432964513],[-75.113797998715512,40.035653717233501],[-75.11376752408647,40.035619648133647],[-75.114395088256273,40.034864014921396],[-75.114746210380645,40.034441435692145],[-75.11446500240362,40.034102881739202],[-75.113691943868375,40.033165476711204],[-75.113199953064807,40.032545435840788],[-75.112863794942641,40.032139058697183],[-75.112625043521291,40.031849071556223],[-75.112529685706903,40.031737398461892],[-75.112397799997254,40.031588391062328],[-75.112361537697225,40.031560019170037],[-75.112313238450014,40.031504335407789],[-75.112116578828051,40.031311871804803],[-75.112039273956825,40.031224333435425],[-75.112005471896921,40.031177938761786],[-75.111981368172891,40.031126292187544],[-75.111934824708854,40.031041285808307],[-75.111894795904973,40.030910809892923],[-75.111512253531444,40.031042526854485],[-75.111202267141493,40.031148321041414],[-75.111201895135807,40.031148453054762],[-75.111042949536326,40.031204686994222],[-75.110843305660481,40.031275320129261],[-75.110822882161685,40.031251129369373],[-75.110495663253005,40.031364042089919],[-75.110441899471866,40.031392544954734],[-75.110528988394677,40.031543768889833],[-75.110184655346885,40.03166362093117],[-75.110097921901996,40.031510144206692],[-75.110019276570384,40.031528266325068],[-75.109928507878905,40.031567993039118],[-75.110025179207412,40.031732776511355],[-75.109853952881821,40.031791638695665],[-75.109758005448128,40.031627448373591],[-75.109179733452052,40.031813694401734],[-75.109114412595886,40.03196729497391],[-75.109095115451211,40.032036190987576],[-75.109061405828598,40.032170446154311],[-75.10904029423412,40.03234696013218],[-75.109049061355577,40.032487666710935],[-75.10905592340886,40.032555339659801],[-75.10907025461367,40.032614060519037],[-75.109117726589872,40.032742223617063],[-75.10915560272376,40.032824712635758],[-75.109249583214293,40.032980326358327],[-75.109405405924988,40.033188773786044],[-75.109496925119785,40.033300846940165],[-75.109708869136043,40.033588552170642],[-75.109899641337577,40.033839036167151],[-75.109903118235849,40.033843006741591],[-75.11041352364542,40.034513466446882],[-75.110781254821688,40.035007295976079],[-75.11095264600884,40.035239325576612],[-75.111367283075623,40.035137543362438],[-75.111649010191513,40.035049764924501],[-75.111683667165778,40.035038966584523],[-75.111747259047476,40.035133499250207],[-75.112313193245654,40.03596397779242],[-75.112438976182872,40.036008130837132],[-75.112491180597814,40.036026456435195],[-75.112503539310879,40.03603471525237],[-75.112680488884905,40.036152952515572],[-75.112771152419981,40.036213533659996],[-75.113090807806984,40.036417944311808],[-75.11311640695483,40.036468431946894],[-75.113184766389907,40.036603259108176],[-75.113196014489219,40.036625443891545],[-75.113210047622402,40.036653123115933],[-75.112598012536694,40.037370086163641],[-75.11260759235968,40.037390977563312],[-75.112807674187039,40.037827308204868],[-75.113033521538739,40.038319821687821],[-75.113252889820103,40.038809343157141],[-75.113291300819697,40.038895055944899],[-75.113341603048781,40.039005693851166],[-75.11336133908452,40.0390522462666],[-75.113422066806194,40.039195488426245],[-75.113490282940887,40.039333908930899],[-75.113585227986349,40.039456520740728],[-75.113666190861963,40.03951129651248],[-75.113925113536411,40.040062239255001],[-75.112760299149613,40.040829853111219],[-75.112319284058472,40.041120806608774],[-75.112228526433498,40.041272682300011],[-75.112164389112422,40.041380010553098],[-75.112062730526048,40.041463892769855],[-75.11204175106019,40.041481203594692],[-75.112361180007611,40.041753124654555],[-75.112302363090748,40.041778766173444],[-75.111967529812048,40.041924732955678],[-75.111965932776229,40.041965812066579],[-75.111965686984021,40.041972134353493],[-75.111409993911323,40.042220307228369],[-75.111116729391568,40.042709697171929],[-75.110914908752761,40.043046485072033],[-75.110836586126567,40.043228983156006],[-75.110531148860545,40.044001126373679],[-75.110244540370445,40.044777348973227],[-75.109900558782968,40.045685459784188],[-75.109784265435223,40.045954368270536],[-75.109718336533632,40.046097309714447],[-75.110400494770502,40.046505304242416],[-75.110932846308344,40.046832511315898],[-75.111017303802114,40.046884422697744],[-75.110281391862131,40.047613828429427]]],[[[-75.110827883978232,40.023359753372674],[-75.110836328659389,40.023432831839337],[-75.110851882498494,40.023567432088711],[-75.110854028363519,40.023586000292667],[-75.11086998558369,40.023724093192911],[-75.110879416642263,40.023805715370678],[-75.111216246131647,40.023999536747269],[-75.111145372752105,40.024070994335709],[-75.110903314754481,40.024315053268616],[-75.110900838520593,40.024317549882113],[-75.110925471349987,40.024332657717608],[-75.111016158099801,40.024388278334648],[-75.110998415317894,40.024743390303286],[-75.111409410921013,40.024754881640575],[-75.111605812156967,40.024760372708911],[-75.111606110064599,40.024784909209743],[-75.111606747702041,40.024837549451213],[-75.111490699174283,40.025291764224001],[-75.111471012848469,40.025314887371941],[-75.111408990347385,40.025387738765609],[-75.111274943361735,40.025545187234698],[-75.111171088825458,40.025667170088624],[-75.111447221545944,40.025701129739531],[-75.111609790344559,40.025721123962875],[-75.111776397304581,40.025739327570982],[-75.111942909819547,40.025757520656512],[-75.112113804562568,40.025810243432652],[-75.112308483104059,40.025870304203075],[-75.112420995625101,40.025883865679511],[-75.112494556657765,40.025892732800529],[-75.11260597627701,40.026013293362759],[-75.112641276114729,40.026067054000791],[-75.112672351349417,40.026128281754723],[-75.112723964429904,40.026268649197576],[-75.112762783919578,40.026434440915132],[-75.112780945780557,40.026524116744227],[-75.112797877149177,40.026544172347855],[-75.112850370232607,40.02676322796502],[-75.112876462689329,40.026759475168468],[-75.114265308676764,40.026559706687387],[-75.11427176544619,40.026393441904112],[-75.114282507691982,40.026015475831997],[-75.114258152226284,40.025933223171897],[-75.114197602014571,40.025827016629485],[-75.114120935488643,40.025733696983394],[-75.114004338382529,40.025643003565641],[-75.113985654664191,40.025628471777189],[-75.113868460032009,40.025562164385441],[-75.113701356273623,40.025491363799084],[-75.113533839133467,40.025401524619149],[-75.113452223013724,40.025341463207198],[-75.113365145077807,40.025261106774657],[-75.113357071798177,40.025251433567256],[-75.113325332650831,40.025208587988701],[-75.113251934800616,40.02507175453588],[-75.113214837731263,40.0249710668148],[-75.113214679047715,40.02496981164046],[-75.113199429459385,40.024848580195439],[-75.113196359058108,40.024824167465908],[-75.113188170640413,40.024736096576881],[-75.113231113230626,40.024261838781833],[-75.113278877298143,40.023837889869988],[-75.113307601103131,40.023556904506485],[-75.113308500905973,40.023548102279996],[-75.113319574768369,40.023465654596421],[-75.113348137230176,40.023405796328326],[-75.113425607174563,40.023302684345225],[-75.113480696352582,40.023235366373008],[-75.113638919350919,40.023079645518855],[-75.114217656580422,40.022499895482952],[-75.11465261376604,40.022045993120507],[-75.114671578002671,40.022026202026574],[-75.113736903211048,40.021907925883291],[-75.112854421979691,40.021796891137818],[-75.112791900789404,40.021789312970142],[-75.11250008621235,40.021753937296701],[-75.112389187336206,40.02174049479688],[-75.111775870259123,40.021666543786701],[-75.111728205111461,40.021652147660852],[-75.111440153772548,40.021618966844756],[-75.111246382985328,40.021595546649721],[-75.111152144907436,40.021584669898665],[-75.110630362789905,40.021506510764851],[-75.110101961120236,40.021432337290804],[-75.109767308288539,40.021385309664915],[-75.108927730567274,40.021267666736215],[-75.108898653065424,40.02127993316337],[-75.108655653657863,40.02138243705587],[-75.107841561078757,40.021722254070319],[-75.107678145875198,40.021471899499474],[-75.107090504271483,40.020594537578724],[-75.106671272854882,40.019961072483831],[-75.107050099622356,40.019812975892528],[-75.107198906776915,40.019555566463495],[-75.107202002939388,40.01955020990566],[-75.106687008959355,40.01948812968277],[-75.106249765715859,40.019983862568729],[-75.106137147574501,40.020093339149454],[-75.106064928350321,40.020159116787745],[-75.105810379359568,40.020335739787519],[-75.105404784956235,40.020548555221552],[-75.105324185278263,40.020564550178548],[-75.104960804323611,40.020687093254317],[-75.10412974779922,40.020894068627449],[-75.103987292829459,40.021106991706482],[-75.103770647506977,40.021171422154708],[-75.10372794463153,40.021406479009421],[-75.10384990677143,40.021851616617589],[-75.104018985006434,40.022147091496436],[-75.105059996914704,40.022776049949051],[-75.105971458185508,40.02275736938681],[-75.106566381679343,40.0227512306896],[-75.107124237826895,40.022736301324699],[-75.107375320336772,40.022648854457394],[-75.107406715566853,40.022637675217439],[-75.107508633895293,40.022604317191316],[-75.107555726034647,40.022587549610336],[-75.107726822040192,40.022500243642341],[-75.107784533771053,40.022475785839227],[-75.10804800825187,40.022335068049252],[-75.10838623292257,40.022196068374036],[-75.10853047180926,40.022135913217603],[-75.108792553056333,40.022030864208801],[-75.109251196231938,40.021847026620549],[-75.10956400580001,40.021963313988259],[-75.109795078114971,40.021859532886666],[-75.1102219293888,40.02182967569339],[-75.110669762817764,40.022189070624222],[-75.110550547986648,40.02230261124015],[-75.110500975539807,40.022349823816427],[-75.110640665110481,40.022406589180036],[-75.11074738608167,40.022448711750023],[-75.110815903301898,40.022478056273251],[-75.110848489228331,40.022502607723325],[-75.110875918471748,40.022527039749519],[-75.110900539343987,40.022557358535067],[-75.110926966907172,40.022607554129578],[-75.110938237129602,40.022649467797599],[-75.110989510032113,40.022856932638213],[-75.1109189638358,40.022842293276945],[-75.110183324945837,40.022689637857546],[-75.109824468625675,40.023052272018894],[-75.110276876303573,40.023315510941586],[-75.110303602151433,40.023331061687237],[-75.110428881281862,40.023210333492408],[-75.110475331968985,40.023165569361254],[-75.110827883978232,40.023359753372674]]],[[[-75.109231483796151,40.03159501114844],[-75.111083603142319,40.030941352492718],[-75.11118044769033,40.030907172489179],[-75.111239698300352,40.030886997441932],[-75.111358085347405,40.030846686983502],[-75.111864041685337,40.030678188167705],[-75.111861820806894,40.030661386098295],[-75.111852431455759,40.030495655660474],[-75.11185970478904,40.030347986196723],[-75.111889548328051,40.030251962354995],[-75.11192406376226,40.030157868608093],[-75.111971887293507,40.030087802869048],[-75.112041479493882,40.030007288716554],[-75.112175638409909,40.029853443211685],[-75.112632763363465,40.029329294919826],[-75.113298015491324,40.028580008682589],[-75.113546427815265,40.028295579273781],[-75.113990329799449,40.027805793183695],[-75.114234135426287,40.027517606597861],[-75.114325590965905,40.027419965225057],[-75.114357948553646,40.027385418123927],[-75.113484180225328,40.027514990048488],[-75.113073593335244,40.027574902718328],[-75.112956809609173,40.027592342923711],[-75.112827474121929,40.027611657249636],[-75.112660563585365,40.027636582422559],[-75.112115967349283,40.027724434753011],[-75.111812379382073,40.027779502324421],[-75.111622834320741,40.027831714536404],[-75.111466560451561,40.027882866281651],[-75.111291174143517,40.027937227848689],[-75.111178637757959,40.027972821415581],[-75.111178224819056,40.027972951586875],[-75.111179722939013,40.027992871755345],[-75.111202343536462,40.028293607701968],[-75.110550559808217,40.028487700071366],[-75.110554683090044,40.028545596860823],[-75.110574855139205,40.02882887870544],[-75.11029740884571,40.029625988844089],[-75.110190893580935,40.029740324037931],[-75.110145840571576,40.029744424318267],[-75.109894852634255,40.029693276128945],[-75.109684434228001,40.03029399008512],[-75.10994933899795,40.030348585181301],[-75.109637050987573,40.03121492297354],[-75.10937804912146,40.03115943037281],[-75.109231483796151,40.03159501114844]]],[[[-75.101536838786075,40.02083622589879],[-75.1015280477137,40.020857228968353],[-75.10173007043322,40.020844984040906],[-75.10199965355929,40.020823027518809],[-75.102205116671854,40.020816496160961],[-75.102507435318785,40.020814971854875],[-75.102673036380367,40.020814136886464],[-75.103116145217669,40.02082153414991],[-75.103275664538373,40.020828135814114],[-75.103321024030024,40.020830012960651],[-75.103326311074525,40.020808783035726],[-75.103326555622687,40.020807801139796],[-75.103414869255971,40.020453232001955],[-75.103461497575708,40.020266022279579],[-75.103513968277383,40.020178740228637],[-75.103547407621548,40.020123116145278],[-75.103567298539161,40.020090028204251],[-75.103604773383083,40.0197503914302],[-75.103619768705244,40.019614480077209],[-75.103622077492375,40.019593556332772],[-75.103638224987847,40.019538558184337],[-75.103852257355896,40.019454236144291],[-75.104067293303544,40.019358705465208],[-75.104124380168898,40.019335603799455],[-75.104349205597188,40.019302280242485],[-75.104504763471695,40.019281017368563],[-75.104523223398644,40.019278493585503],[-75.104737251231455,40.019249238262063],[-75.104812034943279,40.019235907477075],[-75.103967679200863,40.019125386939528],[-75.103124118525102,40.019019545811346],[-75.103034251594678,40.019006205012765],[-75.102676931585037,40.018960402539221],[-75.10227819476431,40.018911766183244],[-75.10195723101657,40.018873373708495],[-75.101927649236316,40.018880204327083],[-75.101875479900968,40.018902479441323],[-75.10181917224007,40.018936867199116],[-75.101764977455019,40.018979756258084],[-75.101704104682682,40.019038424256095],[-75.101652246448936,40.019132408017974],[-75.101600217817321,40.019226700487991],[-75.101502077070094,40.019425408891216],[-75.1012843644708,40.019871166270306],[-75.101875115417826,40.020037242855615],[-75.101892095615071,40.020042016173811],[-75.101880014648899,40.020069911089834],[-75.101595400920189,40.020696314308353],[-75.101536838786075,40.02083622589879]]],[[[-75.10718800411108,40.024046106965905],[-75.1076908192329,40.024381403983568],[-75.108180003156704,40.023896443601146],[-75.108683646766906,40.023393659894445],[-75.108777712052046,40.023298561629993],[-75.108827033274522,40.023248698549303],[-75.108998161587721,40.02294703875684],[-75.109138861930347,40.02271242302271],[-75.109200567687182,40.022650635633838],[-75.109059384140267,40.022665777900528],[-75.108745328040328,40.022364827469815],[-75.10718800411108,40.024046106965905]]]]},"properties":{"OBJECTID_1":69,"OBJECTID":12,"ASSET_NAME":"Tacony Creek Park","SITE_NAME":"Tacony Creek Park","CHILD_OF":"Tacony Creek Park","ADDRESS":"NA","TYPE":"Land","USE_":"Park- Regional/Watershed","ACREAGE":303.559933,"ZIPCODE":"19120","ALLIAS":" ","GLOBALID":"4015abaa-fb39-4452-a997-5df5ced4b3fa","Shape_Length":48821.39503080264,"Shape_Area":13223017.898963714}},{"type":"Feature","id":70,"geometry":{"type":"Polygon","coordinates":[[[-75.189958390915294,39.897203199874411],[-75.189751525259481,39.89714679928705],[-75.189746571794373,39.897145448854545],[-75.189531587308892,39.897095876374266],[-75.189517808851591,39.897093444003815],[-75.189463815308798,39.897083910723204],[-75.189399237802618,39.897072509247536],[-75.189129618941863,39.897024905960585],[-75.189009763711155,39.897010524885609],[-75.1889003903771,39.896997399636568],[-75.188847684997242,39.89699196380694],[-75.188809795748639,39.896988056458305],[-75.188601982967043,39.896966624234118],[-75.188464904042149,39.896959606383049],[-75.188422615181793,39.896957441348384],[-75.188363237282601,39.896954401530735],[-75.188113168170304,39.89695202376668],[-75.187949552120401,39.896958223759285],[-75.187587743940512,39.896978533130039],[-75.187167416565586,39.897023231575524],[-75.187055655047388,39.897035116380366],[-75.186906473247163,39.897050980220833],[-75.185972847054586,39.897156651754791],[-75.185864414842172,39.897168924335396],[-75.185420174755976,39.897219202058906],[-75.185304099823611,39.89723163829035],[-75.184086893306599,39.897459010753906],[-75.18408685443049,39.897459017992759],[-75.181637151440697,39.897938122996074],[-75.180109929642384,39.898220387550118],[-75.178702593468714,39.898486722716058],[-75.177622598303287,39.898725440716575],[-75.177398434355794,39.898771275685981],[-75.177065348340832,39.898810572941429],[-75.176811033072383,39.898817608085025],[-75.176436555741589,39.898796456958365],[-75.176079322152276,39.898767194353475],[-75.175754314138061,39.898734363728153],[-75.175655494255167,39.898728620515406],[-75.17565512197676,39.898735920280146],[-75.175654648391486,39.898745216219005],[-75.175645898828847,39.898916817882366],[-75.175645699792639,39.89892071570452],[-75.175645134801087,39.89893180801473],[-75.175631628288755,39.899058801753014],[-75.175631248971953,39.89906236305201],[-75.175593823617646,39.899263564121981],[-75.17557435077974,39.899349742166912],[-75.175536529115192,39.899517124668343],[-75.175495198972683,39.899700357390707],[-75.175495108522711,39.899700768924752],[-75.175461303364912,39.899850640307903],[-75.175418440632242,39.900037943609782],[-75.175240117275109,39.900874176370543],[-75.175228516041884,39.900928578517842],[-75.175182847804862,39.901142730237311],[-75.175169239724937,39.901198812744639],[-75.175166912422227,39.901208402221663],[-75.175126332004766,39.90137564427517],[-75.174808411535693,39.902843633315172],[-75.174771762407616,39.903024188688036],[-75.174762737225606,39.903067421135354],[-75.174762662318088,39.903067761837981],[-75.174622448737836,39.903739457199947],[-75.174457456699855,39.90447503809817],[-75.174446899164408,39.904522578089562],[-75.174269668707169,39.905320377298878],[-75.174275328357993,39.905321191938668],[-75.174391976063475,39.905337982167147],[-75.175274702458083,39.905449765571774],[-75.175317655064362,39.90545520471737],[-75.175475798069357,39.905477219127384],[-75.175478076783136,39.905477536102495],[-75.175691311538074,39.905507218902294],[-75.176821738287245,39.905649690758963],[-75.177699768074689,39.90576582522629],[-75.179814951486193,39.906040563602652],[-75.180805659255554,39.906172974943829],[-75.183158576343914,39.906481589510484],[-75.183153913054227,39.906427199130242],[-75.183153786435028,39.906425718635646],[-75.183140796858964,39.90627420105254],[-75.183071653784793,39.905467668991939],[-75.182746812172795,39.90553346946065],[-75.182660339157607,39.905550985732361],[-75.182638646624994,39.905555379795437],[-75.182614607264611,39.905368138205326],[-75.182612909492363,39.905354913870838],[-75.182580350631554,39.905101313844639],[-75.182540826658339,39.904793454735895],[-75.182558970035942,39.904784180615131],[-75.182641996007419,39.904741740933424],[-75.182978972049938,39.9045694886088],[-75.183037091456001,39.904375975072305],[-75.183572366608814,39.904271070887752],[-75.184218515087196,39.901889357824238],[-75.184425107667963,39.901777092703945],[-75.184757440511547,39.901687122845033],[-75.185016265969381,39.901537105490739],[-75.185175024449208,39.901345842946029],[-75.185309576205754,39.901134556940278],[-75.18544486122579,39.900903806436517],[-75.185725687473067,39.900832163201279],[-75.18595280798742,39.900837243738678],[-75.186370248726206,39.90082874132402],[-75.186408673643612,39.900827958136851],[-75.186461434385009,39.900815709419035],[-75.18709753010522,39.90066802882513],[-75.187685738154414,39.900505846564521],[-75.188250314179285,39.900284687370451],[-75.188564294018448,39.900018963587655],[-75.188778046245943,39.899692597870462],[-75.188968482395111,39.89934618687262],[-75.189063980630465,39.898822321582117],[-75.189083040234934,39.89831623012892],[-75.18899705830637,39.897924723106506],[-75.188937482693774,39.897494800373174],[-75.189958390915294,39.897203199874411]]]},"properties":{"OBJECTID_1":70,"OBJECTID":13,"ASSET_NAME":"Franklin D. Roosevelt Park","SITE_NAME":"Franklin D. Roosevelt Park","CHILD_OF":"Franklin D. Roosevelt Park","ADDRESS":"3500 S BROAD ST","TYPE":"Land","USE_":"Park- Metropolitan","ACREAGE":200.79120499999999,"ZIPCODE":"19145","ALLIAS":" ","GLOBALID":"5f9860e1-fadf-4796-b54e-9bcd817f33dc","Shape_Length":13839.160704177371,"Shape_Area":8746429.5233642273}},{"type":"Feature","id":71,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.141960798612303,40.013172339802182],[-75.141907702066788,40.013183507449618],[-75.141879455137541,40.013195240446116],[-75.141850947969957,40.013213716178015],[-75.141820547834811,40.01324339816054],[-75.141802014069469,40.013268850891329],[-75.14178446759027,40.013306699780031],[-75.141776720704499,40.013356019633981],[-75.141761535077521,40.013408545734521],[-75.141565899519577,40.014292788356194],[-75.141430063763337,40.014915158469059],[-75.141337121899042,40.015354014248615],[-75.141258250863473,40.015731320990994],[-75.141249446284775,40.015771493941607],[-75.141220134707424,40.015905241529431],[-75.141208574638327,40.015957988704869],[-75.141026694926737,40.016769423443719],[-75.140819701422188,40.017701216167822],[-75.140581003600403,40.018810586881116],[-75.140571533519307,40.01886661797424],[-75.140568240303438,40.018877902320718],[-75.140545063533537,40.018957319708051],[-75.140531093019788,40.019005188883774],[-75.140241413610923,40.020336698076896],[-75.140757056957568,40.020403400057376],[-75.141411460510326,40.020075191426486],[-75.141792304066797,40.019883608456688],[-75.14217957582747,40.019710872763433],[-75.142522269786852,40.019572947267768],[-75.142829450008747,40.019447931593398],[-75.143019385319221,40.019378749423225],[-75.143201349565445,40.019313884788914],[-75.1433449112169,40.01926483502978],[-75.14352550016271,40.019210439175453],[-75.143846213317659,40.019126600159396],[-75.14421198318675,40.019050532300007],[-75.144362083001099,40.019028064720892],[-75.144482642789995,40.019012801587365],[-75.144595764486809,40.019000744783845],[-75.144730857437537,40.018988060994651],[-75.144838002310763,40.018979242671051],[-75.144909847385449,40.018975248476629],[-75.144991925928153,40.018971485497005],[-75.145072498889974,40.018968813678747],[-75.145173559114909,40.018966044317992],[-75.145715685762255,40.018945718712317],[-75.146804109880946,40.018910777668417],[-75.146865593208986,40.018909921667941],[-75.146893453716714,40.018908303416502],[-75.14692428215082,40.018905627966824],[-75.146959623655206,40.018899679595656],[-75.146981982789285,40.018888937222208],[-75.147005760048813,40.018879352365872],[-75.147022874057143,40.018852742153769],[-75.147035947932437,40.018817040966788],[-75.147046726875061,40.018497809719712],[-75.147067089746159,40.017051063634646],[-75.147068891575657,40.016655957592718],[-75.147069451515662,40.016533139615184],[-75.147069854367203,40.016444795612209],[-75.147084402241262,40.01579829743995],[-75.147088596718035,40.015536286656364],[-75.147087806357561,40.015476095908468],[-75.147087103567102,40.015422636865324],[-75.147087343620271,40.01541478721316],[-75.147092924512876,40.015232658066893],[-75.146724491651952,40.015073565562169],[-75.145189087098458,40.014443661837859],[-75.14385515601434,40.01390155369365],[-75.14330919308965,40.013679925861283],[-75.143231309575825,40.013649064580832],[-75.143133057266866,40.01361013256232],[-75.14307429963381,40.013586849610242],[-75.142147975831264,40.013212588948313],[-75.142078678428319,40.013188516456616],[-75.142014881309819,40.013173568262616],[-75.141960798612303,40.013172339802182]]],[[[-75.140132902000687,40.020723454470819],[-75.140523861729179,40.020525354111513],[-75.140184587926001,40.020482771432484],[-75.140132902000687,40.020723454470819]]]]},"properties":{"OBJECTID_1":71,"OBJECTID":14,"ASSET_NAME":"Hunting Park","SITE_NAME":"Hunting Park","CHILD_OF":"Hunting Park","ADDRESS":"1101 W HUNTING PARK AVE","TYPE":"Land","USE_":"Park- Community","ACREAGE":74.532055,"ZIPCODE":"19140","ALLIAS":" ","GLOBALID":"ca25de20-9dfa-46c4-b868-689d9d1e836c","Shape_Length":7966.7915511112951,"Shape_Area":3246603.3884894438}},{"type":"Feature","id":72,"geometry":{"type":"Polygon","coordinates":[[[-75.161908773169927,40.052933579430793],[-75.161898720149111,40.052939578967326],[-75.161845508675469,40.052991549968553],[-75.161845414866519,40.052991642461684],[-75.161644627083518,40.053189138906731],[-75.161595146816879,40.053237309591232],[-75.161471192511527,40.053359889330913],[-75.161375250462029,40.053449749080968],[-75.161375217595577,40.053449780776937],[-75.161307861597422,40.053514320947698],[-75.16119476579594,40.053624825511882],[-75.161194714670188,40.053624874816613],[-75.161090442667671,40.053726130080769],[-75.161090403737504,40.053726167046094],[-75.161036082902754,40.053777741481355],[-75.160979856881241,40.05383112364202],[-75.160953717725519,40.053855940484738],[-75.160921815730148,40.053887240896806],[-75.160867548056984,40.053940487837544],[-75.160781367218149,40.054025045690651],[-75.160698667542491,40.054103268520436],[-75.160662467281668,40.054137509311701],[-75.160575958028844,40.054220490052238],[-75.160575925161737,40.054220521747972],[-75.160561301880875,40.054234773273038],[-75.160440008286244,40.054352946518627],[-75.16024810228825,40.054537601403709],[-75.160248071832569,40.054537631351643],[-75.160126019955271,40.054654446485877],[-75.160124992791722,40.054655430665242],[-75.161739566328649,40.055762719892577],[-75.163368425353283,40.054221852145439],[-75.164314079797251,40.054818414585654],[-75.164390591713399,40.054864529468318],[-75.165097735958398,40.054231142954706],[-75.165272211103769,40.054314429646226],[-75.166325882689918,40.053312488415294],[-75.165088987162051,40.052551541343497],[-75.165015130196394,40.052506147053222],[-75.164872810740107,40.052418659385737],[-75.164693103166584,40.052309075267708],[-75.16456230976604,40.052229557446225],[-75.164351479399855,40.052099137406103],[-75.16429685627503,40.052065590458497],[-75.164154517386393,40.051978168095431],[-75.163931942282559,40.051842104742143],[-75.163835400885077,40.051781981024277],[-75.163802458486572,40.051761464898874],[-75.163802413829615,40.051761436863138],[-75.163508800272709,40.051579084967464],[-75.163474982350948,40.051558104832118],[-75.163438564441861,40.051535512800427],[-75.163419743715991,40.051527378178534],[-75.163404929922507,40.051524730842445],[-75.163387855775582,40.051525155525738],[-75.163372983730028,40.051528864427162],[-75.1633590947649,40.051536802294507],[-75.16335464051879,40.051541110665404],[-75.163350927721851,40.051544699602019],[-75.163140451167877,40.051748504574135],[-75.163140335589915,40.051748614598317],[-75.163073833127541,40.051812506401163],[-75.162950612903401,40.05193091804643],[-75.162653669439052,40.052216388205032],[-75.162653513656551,40.052216537868972],[-75.162423860031836,40.052438621979924],[-75.162347801050672,40.052511509212508],[-75.162271728470628,40.052584410508061],[-75.162163913292119,40.052689684683109],[-75.162078824925644,40.05277276696156],[-75.162018035268048,40.052832903511792],[-75.162013096993505,40.052840644606661],[-75.162010606291418,40.052851166404935],[-75.162010641341524,40.052859345699723],[-75.162015414092949,40.05287128172769],[-75.161953699496507,40.052933377840077],[-75.161938480210992,40.052931395144725],[-75.161919562181708,40.05293143028873],[-75.161908773169927,40.052933579430793]]]},"properties":{"OBJECTID_1":72,"OBJECTID":15,"ASSET_NAME":"Awbury Park","SITE_NAME":"Awbury Park","CHILD_OF":"Awbury Park","ADDRESS":"6101 ARDLEIGH ST","TYPE":"Land","USE_":"Park- Community","ACREAGE":28.155799999999999,"ZIPCODE":"19138","ALLIAS":"Awbury Arboretum","GLOBALID":"4695e5a4-2449-4ef7-8d4b-3c9734518508","Shape_Length":5050.172835781219,"Shape_Area":1226461.8388038769}},{"type":"Feature","id":73,"geometry":{"type":"Polygon","coordinates":[[[-75.134212000325761,40.044721830092556],[-75.134214298274287,40.044703306032275],[-75.13424403343133,40.044707019592927],[-75.134388246571959,40.043320214406485],[-75.134392281474177,40.04329953950834],[-75.134334946738434,40.043294769518383],[-75.134280493361857,40.043288180172596],[-75.134185968798889,40.043275818175495],[-75.134121100955454,40.043267576985173],[-75.134034712984231,40.043257326542999],[-75.133954796495729,40.043247525262096],[-75.133853235012708,40.043233815178553],[-75.133747340091318,40.043219846824151],[-75.13374378610132,40.043219378437819],[-75.133672820490588,40.043209968238365],[-75.133569353102686,40.04319239235074],[-75.133523345733749,40.04318113850853],[-75.133522745845269,40.043180947342663],[-75.133470102733412,40.043164141595831],[-75.133456305495855,40.04315897980841],[-75.133424849967653,40.043147213138823],[-75.133407842053899,40.043137453270987],[-75.133393550090616,40.043129251867498],[-75.133374544226527,40.043118345432255],[-75.133347462540911,40.043100531594199],[-75.13334712875286,40.043100310448096],[-75.133321503681529,40.043083454234583],[-75.133319851836049,40.043082209234541],[-75.133285971889748,40.043056705259858],[-75.13325472538709,40.0430308260716],[-75.133212475529533,40.042992818920027],[-75.133196877104908,40.042978613043253],[-75.133166335735098,40.042931837143179],[-75.133147711328988,40.042892438190542],[-75.13313000169596,40.042854975649796],[-75.133109353795319,40.042811293979724],[-75.133092086030629,40.04276976166517],[-75.133077785783257,40.042735362778728],[-75.133064804951019,40.04270414122378],[-75.133045691862037,40.042652764627526],[-75.133044677482985,40.042650037546487],[-75.133037571426769,40.042630936142672],[-75.133019612097257,40.042582655612982],[-75.133011768687268,40.04255416135959],[-75.133005825517714,40.042532568987916],[-75.132988409266346,40.042462123036636],[-75.132976414556367,40.042400441415552],[-75.132967232952524,40.04235099040249],[-75.132966979929023,40.042348097758989],[-75.132960568028608,40.042274828224087],[-75.132957796525403,40.042208843508512],[-75.132956333895706,40.042167160380359],[-75.132955405510486,40.042140714015588],[-75.132956468429413,40.042078290105742],[-75.132956618705578,40.042071384482469],[-75.132957792235928,40.042017339005703],[-75.132957030878103,40.041988203287382],[-75.132956929079981,40.041984307646139],[-75.132955772168231,40.041979501358718],[-75.132949638868638,40.041954025744566],[-75.132937718097679,40.041936358088229],[-75.132902393222537,40.041913655681405],[-75.132852082794571,40.041900987111369],[-75.132788583390891,40.041892226689406],[-75.132748277180852,40.041887404171653],[-75.132734443468536,40.041885749143241],[-75.132730977763572,40.041885334093813],[-75.13266576969302,40.04187753300446],[-75.132428682348745,40.041848790360916],[-75.131997401224169,40.041791062141456],[-75.13199489839154,40.041790727581791],[-75.131798153142128,40.041764763705167],[-75.131697703292204,40.041751507682378],[-75.131588391842172,40.041737651314257],[-75.131540587858311,40.041732706108405],[-75.131472596060718,40.041733253737185],[-75.131438915076671,40.041737533459319],[-75.131395659387351,40.041745899086848],[-75.131367141900895,40.041755080937826],[-75.131336366580143,40.04176499159523],[-75.131283071831888,40.041786376067542],[-75.131239719655269,40.04180377130124],[-75.131158626961337,40.041842177526043],[-75.13109872379232,40.04187212955614],[-75.131095672077123,40.041873806162286],[-75.131066936126089,40.041889587465363],[-75.131011349379889,40.041920113606587],[-75.130977661906869,40.041940989909712],[-75.130944339546659,40.041961639361098],[-75.130922633946696,40.041978297242672],[-75.13089384897232,40.042000388158527],[-75.130859938923436,40.042025814030019],[-75.130838581835604,40.042041550887504],[-75.130810920110974,40.042061934726817],[-75.13078808489449,40.04208365040418],[-75.13075856965169,40.042111720050052],[-75.130751791174688,40.042118407859455],[-75.130727495034407,40.042142376110633],[-75.130726506633323,40.04214335190688],[-75.130725837579547,40.042144011517543],[-75.130692479032618,40.042179138629798],[-75.130672596179707,40.042201598277991],[-75.13065745323631,40.042218704902609],[-75.130628391148647,40.042253101930541],[-75.130624338604363,40.042257897573087],[-75.130622375554168,40.042260221600451],[-75.130615460817666,40.042268403797209],[-75.130603472632018,40.04228259185674],[-75.130584488528399,40.042307034416353],[-75.130561830046972,40.042339442930817],[-75.130558278711192,40.042345224007903],[-75.130543834462586,40.04236873661479],[-75.130528572167563,40.042393579397867],[-75.130515248335826,40.042416674248209],[-75.130488772667803,40.042461383880422],[-75.130466679251441,40.042499255559029],[-75.130446274653792,40.04252991160272],[-75.130425458890485,40.042554424995316],[-75.13042349510539,40.042556737289537],[-75.130410173099833,40.042570764264077],[-75.130396988040857,40.042584644790352],[-75.130387840941253,40.042592741825381],[-75.130385357520566,40.042594940452645],[-75.130369785783245,40.04260872600004],[-75.130345068028504,40.042625843085403],[-75.130343717770273,40.042626778189245],[-75.130305683774523,40.0426512430721],[-75.130269167176095,40.042668651489734],[-75.130259131897887,40.042672515970743],[-75.130239182754792,40.042680197242021],[-75.130198666215691,40.042694568963547],[-75.130140759634017,40.042711642666632],[-75.130138059544663,40.042712438858622],[-75.130090746163262,40.042721763861536],[-75.130060527709233,40.042726374453366],[-75.130058907118411,40.042726507783748],[-75.130011540426722,40.042730411877905],[-75.129969742872646,40.042728772835147],[-75.129969133019017,40.042728749013591],[-75.129965197684086,40.042728594377692],[-75.129940744382239,40.04272586424316],[-75.129877327490746,40.042717535694386],[-75.129816506143442,40.042709631231034],[-75.129747141725801,40.042700615516033],[-75.129651107955212,40.04268833425877],[-75.129395787787772,40.04265662857528],[-75.129346235083815,40.042650567649879],[-75.129293620676094,40.042644133204412],[-75.129265453448042,40.042643560840752],[-75.129250041134014,40.042650298461787],[-75.129242388036488,40.042653644154441],[-75.129237744760161,40.042661560035903],[-75.129228145313306,40.042696055688253],[-75.129227976466339,40.042696663631517],[-75.12922753553454,40.042698245681542],[-75.129218146145178,40.042741477052857],[-75.129170392123541,40.042961345727527],[-75.128962292970101,40.043919463842862],[-75.128947448348853,40.043980147006273],[-75.12893750540016,40.044020795106171],[-75.128936349961251,40.044025517140632],[-75.128935886837795,40.044035594443329],[-75.12893916635079,40.044047326729384],[-75.128943705684719,40.044054730407233],[-75.128953733044298,40.044061882680566],[-75.128964391893703,40.044063916225653],[-75.128966793880195,40.044064374692063],[-75.128982856026269,40.044066104439622],[-75.128999281748563,40.044068255149888],[-75.12902204940832,40.044071235340859],[-75.129497674082401,40.044132714363911],[-75.131966796470294,40.044451845980241],[-75.131967382035938,40.04445192239767],[-75.132018706812573,40.044458612714244],[-75.133827297024581,40.044690912972186],[-75.133827488356374,40.044690937152268],[-75.133937273934905,40.044705126435524],[-75.133941018289974,40.044685668521872],[-75.133961699865424,40.04468842812048],[-75.134212000325761,40.044721830092556]]]},"properties":{"OBJECTID_1":73,"OBJECTID":16,"ASSET_NAME":"Fisher Park","SITE_NAME":"Fisher Park","CHILD_OF":"Fisher Park","ADDRESS":"6000 N 05TH ST","TYPE":"Land","USE_":"Park- Community","ACREAGE":24.498369,"ZIPCODE":"19120","ALLIAS":" ","GLOBALID":"376fe5cf-0ab6-4537-ae57-db1b2453d755","Shape_Length":4516.6057955899241,"Shape_Area":1067144.7613877603}},{"type":"Feature","id":74,"geometry":{"type":"Polygon","coordinates":[[[-75.250819709214412,39.904113050535159],[-75.250767427339753,39.904161976148011],[-75.250705275117085,39.904234327676882],[-75.250660988419867,39.904277544978378],[-75.250623474074004,39.904319330480931],[-75.25061973781014,39.90432349089096],[-75.250587728069164,39.904359123691094],[-75.250551349274772,39.904399644610649],[-75.250513659947018,39.904441603760446],[-75.250477805045207,39.904481523406631],[-75.250421063850098,39.904544716160437],[-75.250366767580971,39.904605172728054],[-75.250330475082336,39.904645566622925],[-75.250294204750588,39.904685960990669],[-75.250259548411833,39.904724552518104],[-75.250222909009821,39.90476534156079],[-75.250186223389633,39.904806177337441],[-75.2501492750919,39.904847347049191],[-75.250090976623426,39.904915872904823],[-75.250045037331546,39.904968027831174],[-75.250013867501792,39.904952735794751],[-75.249955842324752,39.905018181647741],[-75.249850276780052,39.905135535676934],[-75.249608099279826,39.905404055398328],[-75.249642184750044,39.905425483824281],[-75.249744667622153,39.905480750539034],[-75.249902667097601,39.905565956054978],[-75.249907598196231,39.905554247982046],[-75.249933926638661,39.90549166620783],[-75.250117013287124,39.905288751418745],[-75.25054991646472,39.905516462515187],[-75.250369199204982,39.905720978449267],[-75.250585061599764,39.905833540087862],[-75.250794093003321,39.905646195925513],[-75.251227656591425,39.905873661978347],[-75.24990991848378,39.907352531496819],[-75.249751479273826,39.907288015891091],[-75.249622429169392,39.907395893633463],[-75.24900940219139,39.907107427808079],[-75.248407104159313,39.907771091551801],[-75.248801281120038,39.907998637018558],[-75.249033359162311,39.907900477026793],[-75.249220894111815,39.908019521168178],[-75.249601707089639,39.908267115780419],[-75.249686960738828,39.908351083501252],[-75.249815054256047,39.908595510632423],[-75.249724165202139,39.90883047051733],[-75.249560849776984,39.90919584699823],[-75.249855642110134,39.909435445779621],[-75.249991710578996,39.909544895024645],[-75.249919073968201,39.909409551530509],[-75.249931643785843,39.909222534573281],[-75.249913539028412,39.909147943041525],[-75.249945499752144,39.909031274058655],[-75.24992635486214,39.908917230620737],[-75.249986670796574,39.908759189233621],[-75.249979959417331,39.908621238812238],[-75.250099041514346,39.908369519697644],[-75.250118968419926,39.907709718815148],[-75.250313123215335,39.907512186013065],[-75.251114638609877,39.907059545618125],[-75.251520702237954,39.906774141176712],[-75.252092757319673,39.90658805115045],[-75.252474821125858,39.906536879300965],[-75.253309023379046,39.905695208829727],[-75.253198802886885,39.905305363084217],[-75.251937432643999,39.904668650940081],[-75.251465667753848,39.904245470302548],[-75.253966307676876,39.901453535984487],[-75.253551331685216,39.90121508803152],[-75.253155885139293,39.901093913477183],[-75.252944894605378,39.901330965270873],[-75.253211371708304,39.901468592903086],[-75.252863535018577,39.901852735686369],[-75.252850653712798,39.901844747097051],[-75.252846066340311,39.901842019873868],[-75.252745413003368,39.901962416090612],[-75.252756331750049,39.901971125978193],[-75.252713017750878,39.9020189593585],[-75.252703228182085,39.902012853605143],[-75.252519015921607,39.902233205257957],[-75.252325707559962,39.902132731560435],[-75.252231984978138,39.902167277809546],[-75.251872325630941,39.902572031649186],[-75.252073626106622,39.902716157607244],[-75.250819709214412,39.904113050535159]]]},"properties":{"OBJECTID_1":74,"OBJECTID":17,"ASSET_NAME":"Eastwick Regional Park","SITE_NAME":"Eastwick Regional Park","CHILD_OF":"Eastwick Regional Park","ADDRESS":"80TH ST & MARS PL","TYPE":"Land","USE_":"Park- Community","ACREAGE":23.362777999999999,"ZIPCODE":"19153","ALLIAS":" ","GLOBALID":"af17e708-93bb-4964-a3fb-eae564991834","Shape_Length":9236.3306461726752,"Shape_Area":1017678.4242800148}},{"type":"Feature","id":75,"geometry":{"type":"Polygon","coordinates":[[[-75.236963530511517,39.940321097081473],[-75.237042902219031,39.940477789345771],[-75.23903867315795,39.942202138099994],[-75.239507655898109,39.941872700043476],[-75.238802853156912,39.941040789622335],[-75.238658031201496,39.940769432172566],[-75.238342948786112,39.940077165603675],[-75.237807428569027,39.940321704733357],[-75.236963530511517,39.940321097081473]]]},"properties":{"OBJECTID_1":75,"OBJECTID":18,"ASSET_NAME":"Whitby Ave Playground","SITE_NAME":"Whitby Ave Playground","CHILD_OF":"Cobbs Creek Park","ADDRESS":"1300 COBBS CREEK PKY","TYPE":"Land","USE_":"Recreation Site","ACREAGE":4.6718440000000001,"ZIPCODE":"19143","ALLIAS":" ","GLOBALID":"9ed845b1-60af-4624-9571-0e0548102b15","Shape_Length":2227.6758816155211,"Shape_Area":203504.67661547274}},{"type":"Feature","id":76,"geometry":{"type":"Polygon","coordinates":[[[-75.037914420468084,40.058675208663793],[-75.036919236811613,40.058501517867171],[-75.03675173945004,40.059043507238123],[-75.036752325084947,40.05933914187365],[-75.036765633362847,40.059394288783189],[-75.036828058519916,40.059462516505242],[-75.036919429332542,40.05950520259335],[-75.037055339157433,40.0595203319006],[-75.037260680902051,40.059506107837514],[-75.037295539062555,40.059487859201361],[-75.037350614392921,40.059429558570358],[-75.037381940702105,40.059344472986652],[-75.037423613001721,40.059233406543967],[-75.037494324303552,40.059094418178233],[-75.037561555717346,40.058964883452411],[-75.037737464719783,40.058833145937086],[-75.037916430387781,40.058780153861612],[-75.038067782921672,40.058719357181168],[-75.038106978127061,40.058670217207037],[-75.038104545973908,40.058653471418538],[-75.037980941752167,40.05864101797367],[-75.037955382500698,40.058659487208352],[-75.037914420468084,40.058675208663793]]]},"properties":{"OBJECTID_1":76,"OBJECTID":19,"ASSET_NAME":"Holme Street Field","SITE_NAME":"Holme Street Field","CHILD_OF":"Pennypack Creek Park","ADDRESS":"2761 HOLME AVE","TYPE":"Land","USE_":"Athletic","ACREAGE":1.74139,"ZIPCODE":"19152","ALLIAS":" ","GLOBALID":"a4cfb485-c2f7-4f33-a5be-977591b22942","Shape_Length":1245.6363020670392,"Shape_Area":75854.73234671526}},{"type":"Feature","id":77,"geometry":{"type":"Polygon","coordinates":[[[-75.194841211341654,39.921774957775668],[-75.194948830886972,39.921289843781977],[-75.194947877777167,39.921275662298321],[-75.194934569505122,39.921259060201415],[-75.194918840509985,39.921247553423044],[-75.194897249262993,39.921238775810728],[-75.194876775524378,39.921234886739022],[-75.194858649407138,39.921232766398639],[-75.194534976091646,39.92127323098611],[-75.194510577297265,39.921279838517272],[-75.194489676973618,39.921292246318423],[-75.194478056709656,39.92130486004212],[-75.194465791682759,39.921334624505221],[-75.194424953908424,39.921556134560156],[-75.19443798981969,39.921559404733401],[-75.194444076557019,39.921562222693318],[-75.194446911926278,39.921572277168245],[-75.194426666315991,39.921675308558981],[-75.194412432169656,39.921683335552466],[-75.194392641141604,39.921699164864293],[-75.194393070169497,39.921714490668073],[-75.194397862723335,39.921720855887855],[-75.194765861986227,39.92175762365423],[-75.194775494098593,39.921785293825479],[-75.194798062873446,39.921792352492716],[-75.194820148613857,39.921791652621373],[-75.19483524839147,39.921785314435851],[-75.194841211341654,39.921774957775668]]]},"properties":{"OBJECTID_1":77,"OBJECTID":20,"ASSET_NAME":"29th & Passyunk Playground","SITE_NAME":"29th & Passyunk Playground","CHILD_OF":"29th & Passyunk Playground","ADDRESS":"2827 W PASSYUNK AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.53089399999999998,"ZIPCODE":"19145","ALLIAS":" ","GLOBALID":"980fb013-3c0e-4229-a7f6-5bbadfdf8ac5","Shape_Length":625.95368079815341,"Shape_Area":23125.664529803125}},{"type":"Feature","id":78,"geometry":{"type":"Polygon","coordinates":[[[-75.179992284108579,40.033044983612712],[-75.17978224444218,40.0332493401989],[-75.179967603796371,40.033357815116965],[-75.180175254336817,40.033154451714147],[-75.180216622837463,40.033114192182801],[-75.180033528453151,40.033005187189907],[-75.179992284108579,40.033044983612712]]]},"properties":{"OBJECTID_1":78,"OBJECTID":21,"ASSET_NAME":"Price Street Play Lot","SITE_NAME":"Price Street Play Lot","CHILD_OF":"Price Street Play Lot","ADDRESS":"177-85 W PRICE ST","TYPE":"Land","USE_":"Youth & Tot\\Play Areas","ACREAGE":0.168938,"ZIPCODE":"19144","ALLIAS":" ","GLOBALID":"bdfbdde6-a655-4e1b-8539-637be90f0b7d","Shape_Length":356.35974170589878,"Shape_Area":7358.8983273861304}},{"type":"Feature","id":79,"geometry":{"type":"Polygon","coordinates":[[[-75.194871755136191,39.979489149640095],[-75.194669236040156,39.979499449389195],[-75.194246459093634,39.980031386173522],[-75.1938240754845,39.980472872762242],[-75.193277147730043,39.980682832871011],[-75.192778011381961,39.980390329919778],[-75.192227592694451,39.980437302373751],[-75.191425310734587,39.980782253818319],[-75.191144596072846,39.981079592539935],[-75.191154632638842,39.981324176042378],[-75.191332069156644,39.981468823632802],[-75.191527903344934,39.981636095428264],[-75.192855417309005,39.982169208515252],[-75.193124711395228,39.982175208446314],[-75.193397066725296,39.982099823962308],[-75.19369645543685,39.981817704776162],[-75.194247392290976,39.980734063783977],[-75.194581480606061,39.980028021901951],[-75.194936725076801,39.979809002151669],[-75.195022848000349,39.979566561040706],[-75.194871755136191,39.979489149640095]]]},"properties":{"OBJECTID_1":79,"OBJECTID":22,"ASSET_NAME":"Sedgley Woods Disc Golf","SITE_NAME":"Sedgley Woods Disc Golf","CHILD_OF":"East Fairmount Park","ADDRESS":"3400 RESERVOIR DR","TYPE":"Land","USE_":"Athletic","ACREAGE":9.8943119999999993,"ZIPCODE":"19121","ALLIAS":" ","GLOBALID":"90e00489-7d8d-4cf9-ad2b-272c9b78eba8","Shape_Length":3297.5794308894415,"Shape_Area":430994.47642865404}},{"type":"Feature","id":80,"geometry":{"type":"Polygon","coordinates":[[[-75.245788165655071,39.943056278989047],[-75.245579502410777,39.943201827709132],[-75.245893440143092,39.94371450566711],[-75.246588065701332,39.943472209495695],[-75.246670974054652,39.943441121023376],[-75.246768525789363,39.943416074273493],[-75.246883322265333,39.94338739795915],[-75.246683952511233,39.943204562101258],[-75.245788165655071,39.943056278989047]]]},"properties":{"OBJECTID_1":80,"OBJECTID":23,"ASSET_NAME":"61st & Baltimore Ave Playground","SITE_NAME":"61st & Baltimore Ave Playground","CHILD_OF":"Cobbs Creek Park","ADDRESS":"6100 BALTIMORE AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":1.1232409999999999,"ZIPCODE":"19143","ALLIAS":" ","GLOBALID":"737de6c2-6ef9-415b-ae81-480dd202eff7","Shape_Length":931.66273326212104,"Shape_Area":48928.229529749959}},{"type":"Feature","id":81,"geometry":{"type":"Polygon","coordinates":[[[-75.250306072111655,39.949488947314848],[-75.249800937067874,39.949327754272119],[-75.249241769197511,39.951897306537397],[-75.250398615780085,39.952530406700468],[-75.250698977569883,39.952701438665564],[-75.251028160797702,39.95259418406421],[-75.251147991148017,39.952367941656888],[-75.251164284553568,39.951924896215047],[-75.250994703858453,39.95173526005744],[-75.25081846577153,39.951473961494372],[-75.250451622184698,39.951594698948831],[-75.250225892256665,39.951668447657411],[-75.250069016968538,39.95138611539668],[-75.250084265585542,39.950971652766007],[-75.250412578219155,39.949877456564849],[-75.250394975443797,39.949598159338251],[-75.250306072111655,39.949488947314848]]]},"properties":{"OBJECTID_1":81,"OBJECTID":24,"ASSET_NAME":"Cobbs Creek Environmental Education Center","SITE_NAME":"Cobbs Creek Park","CHILD_OF":"Cobbs Creek Park","ADDRESS":"700 COBBS CREEK PKY","TYPE":"Land","USE_":"Environmental Education Center","ACREAGE":6.906574,"ZIPCODE":"19143","ALLIAS":" ","GLOBALID":"5d5216f5-a305-4db8-8c9f-09141089f7af","Shape_Length":3148.3023303898499,"Shape_Area":300849.13332310627}},{"type":"Feature","id":82,"geometry":{"type":"Polygon","coordinates":[[[-75.240721845033107,40.058132136616834],[-75.239058891557704,40.059257236217775],[-75.239064334610163,40.059324396114917],[-75.24005421701024,40.060223628136079],[-75.241822917886097,40.059062050198889],[-75.240721845033107,40.058132136616834]]]},"properties":{"OBJECTID_1":82,"OBJECTID":25,"ASSET_NAME":"Al Pearlman Sports Center","SITE_NAME":"Al Pearlman Sports Center","CHILD_OF":"Al Pearlman Sports Center","ADDRESS":"600 PORT ROYAL AVE","TYPE":"Land","USE_":"Athletic","ACREAGE":6.6858389999999996,"ZIPCODE":"19128","ALLIAS":" ","GLOBALID":"b29f432d-455c-49fe-a57f-af204c103a67","Shape_Length":2183.0262662531122,"Shape_Area":291233.8279671708}},{"type":"Feature","id":83,"geometry":{"type":"Polygon","coordinates":[[[-75.112854421979691,40.021796891137818],[-75.111925315532943,40.02272620036036],[-75.113219933138296,40.02354818426948],[-75.113319574768369,40.023465654596421],[-75.113348137230176,40.023405796328326],[-75.113425607174563,40.023302684345225],[-75.113480696352582,40.023235366373008],[-75.113638919350919,40.023079645518855],[-75.114671578002671,40.022026202026574],[-75.112854421979691,40.021796891137818]]]},"properties":{"OBJECTID_1":83,"OBJECTID":26,"ASSET_NAME":"Lauretha Vaird Boys/Girls Club","SITE_NAME":"Lauretha Vaird Boys/Girls Club","CHILD_OF":"Tacony Creek Park","ADDRESS":"4800 WHITAKER AVE","TYPE":"Land","USE_":"Other","ACREAGE":5.8789569999999998,"ZIPCODE":"19120","ALLIAS":" ","GLOBALID":"52680538-b1b7-41ea-98da-38260f93f0ff","Shape_Length":2102.0701904342081,"Shape_Area":256086.28215682652}},{"type":"Feature","id":84,"geometry":{"type":"Polygon","coordinates":[[[-75.019927876076665,40.038249250243773],[-75.02038464807211,40.038797447246282],[-75.020647607539004,40.039164377220565],[-75.019942492308473,40.04094724573072],[-75.019905811906895,40.041277713765346],[-75.020083838028313,40.041513808064742],[-75.02052158779486,40.04158309713997],[-75.02066975062823,40.041344225117086],[-75.020721543940297,40.040866260512345],[-75.02094548587138,40.039115726624146],[-75.020967778478578,40.0386771148249],[-75.0211174130947,40.038079887806902],[-75.020896888168394,40.037663398865526],[-75.020499128119909,40.03783632743248],[-75.020022972234656,40.038107521448644],[-75.019927876076665,40.038249250243773]]]},"properties":{"OBJECTID_1":84,"OBJECTID":27,"ASSET_NAME":"Torresdale & Enfield Fields","SITE_NAME":"Torresdale & Enfield Fields","CHILD_OF":"Pennypack Creek Park","ADDRESS":"4600 ENFIELD AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":5.6474209999999996,"ZIPCODE":"19136","ALLIAS":" ","GLOBALID":"7d826eb8-5288-4113-8534-ddfb7043c3f0","Shape_Length":3223.0541505804672,"Shape_Area":246000.55757913529}},{"type":"Feature","id":85,"geometry":{"type":"Polygon","coordinates":[[[-75.203728813517372,39.998046573017177],[-75.203603768003788,39.99782433091206],[-75.203149395941395,39.99803833780723],[-75.20273838131115,39.998253305074385],[-75.202276201562697,39.998510046616538],[-75.201792931749765,39.998833068234042],[-75.201494117182918,39.999031451136702],[-75.201193691456425,39.999272707872791],[-75.200816071408539,39.999588534161653],[-75.200475794515611,39.999900422332992],[-75.200133902083877,40.000255183136176],[-75.19979039571416,40.000652818407644],[-75.200124822050967,40.000827120476799],[-75.200804201909349,40.000069821580098],[-75.201061987787469,39.999808547425339],[-75.201537285397833,39.999533030138885],[-75.20164967530151,39.999511686363995],[-75.201828235722928,39.999544256986546],[-75.201990893970091,39.999504958039594],[-75.202174817244284,39.999394611811752],[-75.202317642294645,39.999388246325104],[-75.202375892565357,39.999322789071215],[-75.202325149577547,39.999188164726746],[-75.202254394313542,39.999091237521426],[-75.202263626458361,39.999010388968848],[-75.202391442946137,39.998908334320696],[-75.202891682187087,39.99862859708783],[-75.203549988701369,39.998266544528306],[-75.203650702661292,39.998225868296771],[-75.203702756161647,39.998160272960476],[-75.203741885806508,39.998108695274368],[-75.203728813517372,39.998046573017177]]]},"properties":{"OBJECTID_1":85,"OBJECTID":28,"ASSET_NAME":"Chamounix Tennis","SITE_NAME":"Chamounix Tennis","CHILD_OF":"West Fairmount Park","ADDRESS":"3601 CHAMOUNIX DR","TYPE":"Land","USE_":"Athletic","ACREAGE":4.6453329999999999,"ZIPCODE":"19131","ALLIAS":" ","GLOBALID":"004d9091-b692-4007-baf7-84be709fa848","Shape_Length":3265.3294359925803,"Shape_Area":202349.84156126619}},{"type":"Feature","id":86,"geometry":{"type":"Polygon","coordinates":[[[-75.1963841082665,39.980945548087043],[-75.196077770212071,39.980810000005256],[-75.195643751441011,39.980732399317368],[-75.195227176799719,39.980808947541064],[-75.194855969107081,39.980915111324208],[-75.194750371546419,39.981127313431074],[-75.194739544621441,39.981291562926629],[-75.194642293419747,39.981528980763606],[-75.194629045270062,39.981757542489724],[-75.194686197049805,39.981844635947333],[-75.19497442202524,39.981843901776543],[-75.195132199367833,39.981850989464682],[-75.195360928086728,39.981949054214866],[-75.195500202397781,39.982077310483128],[-75.195579098892907,39.982204220916692],[-75.195883005204607,39.982157347818685],[-75.196275464118813,39.981733399917033],[-75.196486401683046,39.981562875598655],[-75.196541788582437,39.981449680106756],[-75.196533363063395,39.981302881754935],[-75.1965184123124,39.981205999943761],[-75.196464079676559,39.981043876669794],[-75.1963841082665,39.980945548087043]]]},"properties":{"OBJECTID_1":86,"OBJECTID":29,"ASSET_NAME":"Smith Memorial Playground","SITE_NAME":"Smith Memorial Playground","CHILD_OF":"East Fairmount Park","ADDRESS":"3500 RESERVOIR DR","TYPE":"Land","USE_":"Recreation Site","ACREAGE":4.6207029999999998,"ZIPCODE":"19121","ALLIAS":" ","GLOBALID":"a9763ba7-37a1-4fc0-9723-ec7379c8106b","Shape_Length":1716.3012397117623,"Shape_Area":201277.0861564372}},{"type":"Feature","id":87,"geometry":{"type":"Polygon","coordinates":[[[-75.247295931325425,39.960707178316028],[-75.247368273188016,39.960703816194744],[-75.24769478958963,39.960688642095597],[-75.248609147245915,39.959646382510883],[-75.24872736497268,39.958838693397063],[-75.247800129857751,39.958654545039245],[-75.247726008022994,39.958639824392208],[-75.247295931325425,39.960707178316028]]]},"properties":{"OBJECTID_1":87,"OBJECTID":30,"ASSET_NAME":"Laura Sims Rink","SITE_NAME":"Laura Sims Rink","CHILD_OF":"Cobbs Creek Park","ADDRESS":"200 S 63RD ST","TYPE":"Land","USE_":"Ice Rink","ACREAGE":4.0904959999999999,"ZIPCODE":"19139","ALLIAS":" ","GLOBALID":"9764b3c5-6bbc-40cc-9eb5-1b6595a49a1c","Shape_Length":1918.7936329950517,"Shape_Area":178181.42547731061}},{"type":"Feature","id":88,"geometry":{"type":"Polygon","coordinates":[[[-75.109084509039491,40.032312547406093],[-75.109139988752716,40.03268000213513],[-75.109241637215149,40.032936949132122],[-75.109957752609574,40.033901044666408],[-75.11055533978562,40.034683613599654],[-75.110930724534342,40.034481257170945],[-75.110685607513631,40.033965690948506],[-75.10999275432053,40.032522955068522],[-75.109084509039491,40.032312547406093]]]},"properties":{"OBJECTID_1":88,"OBJECTID":31,"ASSET_NAME":"Garland & Bingham Fields","SITE_NAME":"Garland & Bingham Fields","CHILD_OF":"Tacony Creek Park","ADDRESS":"5153 E TABOR RD","TYPE":"Land","USE_":"Athletic","ACREAGE":3.9308740000000002,"ZIPCODE":"19120","ALLIAS":" ","GLOBALID":"49f9ce15-1c83-4c4b-9435-dcd05238403b","Shape_Length":2121.7797489142376,"Shape_Area":171228.21318547751}},{"type":"Feature","id":89,"geometry":{"type":"Polygon","coordinates":[[[-75.181372199373754,39.899791404371989],[-75.181409630308067,39.899853497572757],[-75.181454921257981,39.899912404308253],[-75.181507620790441,39.899967533300426],[-75.181567202163507,39.900018335732845],[-75.181633069204153,39.900064304481823],[-75.181704565522907,39.900104977927633],[-75.181780977544548,39.900139952636948],[-75.181861539421575,39.900168877166394],[-75.181945447822201,39.90019146320639],[-75.182031864268396,39.900207485634034],[-75.182119926791884,39.900216783675383],[-75.182208753271539,39.900219265485717],[-75.182297456765596,39.900214904888777],[-75.18238515352526,39.900203746061706],[-75.182470966604157,39.900185900912405],[-75.182554037650149,39.900161546640696],[-75.182633537358271,39.900130927774093],[-75.182708671587676,39.900094349096491],[-75.182778689510329,39.900052176731045],[-75.18284289203153,39.900004832021345],[-75.182900637770402,39.899952788060787],[-75.182951350310788,39.899896563547387],[-75.182994522944441,39.899836721087397],[-75.18302972368592,39.89977385829711],[-75.183056601285642,39.89970860343206],[-75.183074886704091,39.899641607310414],[-75.183084399056554,39.899573540743091],[-75.183085041412639,39.899505081825012],[-75.182143583392502,39.898822454819552],[-75.181885753416935,39.898888196403774],[-75.181372199373754,39.899791404371989]]]},"properties":{"OBJECTID_1":89,"OBJECTID":32,"ASSET_NAME":"R. Ashburn Field","SITE_NAME":"Franklin D. Roosevelt Park","CHILD_OF":"Franklin D. Roosevelt Park","ADDRESS":"3500 S BROAD ST","TYPE":"Land","USE_":"Athletic","ACREAGE":3.679433,"ZIPCODE":"19145","ALLIAS":" ","GLOBALID":"54dd1c68-15b2-4260-b31d-3873ea68777c","Shape_Length":1496.4605434493083,"Shape_Area":160275.42910068738}},{"type":"Feature","id":90,"geometry":{"type":"Polygon","coordinates":[[[-75.116450169230447,40.03959158374758],[-75.115766257241887,40.039220626205527],[-75.115578476764966,40.039263999201836],[-75.115167768211776,40.039616942621322],[-75.115115693387011,40.040159293717643],[-75.115166017001073,40.040460829494862],[-75.115039011068887,40.040696313859186],[-75.115216715727271,40.041072290802383],[-75.115371661931547,40.041075844904185],[-75.116450169230447,40.03959158374758]]]},"properties":{"OBJECTID_1":90,"OBJECTID":33,"ASSET_NAME":"Hammond & Nedro Fields","SITE_NAME":"Hammond & Nedro Fields","CHILD_OF":"Tacony Creek Park","ADDRESS":"5901 HAMMOND AVE","TYPE":"Land","USE_":"Athletic","ACREAGE":3.300856,"ZIPCODE":"19120","ALLIAS":" ","GLOBALID":"59f6eb63-b5ff-490b-946d-0ce013903238","Shape_Length":1671.9090923783754,"Shape_Area":143784.68562659604}},{"type":"Feature","id":91,"geometry":{"type":"Polygon","coordinates":[[[-75.251165138234327,39.966871176216571],[-75.250930749571907,39.967906585495555],[-75.251962413783588,39.968025548966331],[-75.251969187948035,39.966951618159882],[-75.251165138234327,39.966871176216571]]]},"properties":{"OBJECTID_1":91,"OBJECTID":34,"ASSET_NAME":"Bocce Court","SITE_NAME":"Cobbs Creek Park","CHILD_OF":"Cobbs Creek Park","ADDRESS":"6600 VINE ST","TYPE":"Land","USE_":"Athletic","ACREAGE":2.2973020000000002,"ZIPCODE":"19151","ALLIAS":" ","GLOBALID":"70e504f1-d5f9-4d41-999f-d696f49e5580","Shape_Length":1293.744857653603,"Shape_Area":100070.09043360293}},{"type":"Feature","id":92,"geometry":{"type":"Polygon","coordinates":[[[-75.079645745665957,40.074113490165843],[-75.080027321833256,40.074336915816005],[-75.080261465802849,40.074113166649546],[-75.080298941182946,40.074128666502681],[-75.080454491834232,40.073966483649457],[-75.081565408692072,40.074609143961119],[-75.081850500597156,40.074323468703433],[-75.081272911198454,40.074000209130922],[-75.081217511852586,40.07397186353478],[-75.080309899982396,40.073471932915616],[-75.079645745665957,40.074113490165843]]]},"properties":{"OBJECTID_1":92,"OBJECTID":35,"ASSET_NAME":"Fox Chase School Playground","SITE_NAME":"Fox Chase School Playground","CHILD_OF":"Fox Chase School Playground","ADDRESS":"702-12 RHAWN ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":2.1077699999999999,"ZIPCODE":"19111","ALLIAS":" ","GLOBALID":"cd14634c-b15e-4d62-a563-dbab17f1eee9","Shape_Length":1674.2237757335683,"Shape_Area":91814.148243797637}},{"type":"Feature","id":93,"geometry":{"type":"Polygon","coordinates":[[[-75.23354730103101,40.081213198398807],[-75.233828374233866,40.081360506762067],[-75.23389577500879,40.081390691476663],[-75.234039195636441,40.081386653778836],[-75.234354937424257,40.081439020917763],[-75.234540684227355,40.081469403347711],[-75.234706243380998,40.081456279004271],[-75.234898383376148,40.081398281084205],[-75.23501369714873,40.081312283831615],[-75.235066857596152,40.081222533456],[-75.235065962162921,40.08116270336884],[-75.235027101045347,40.081118788354516],[-75.234709400052324,40.081035277945603],[-75.234625721224219,40.080940140890689],[-75.234442441129843,40.080675352086409],[-75.234246465936977,40.080584934149584],[-75.23354730103101,40.081213198398807]]]},"properties":{"OBJECTID_1":93,"OBJECTID":36,"ASSET_NAME":"Wissahickon Environmental Education Center","SITE_NAME":"Wissahickon Environmental Education Center","CHILD_OF":"Wissahickon Valley Park","ADDRESS":"300 W NORTHWESTERN AVE","TYPE":"Land","USE_":"Environmental Education Center","ACREAGE":1.730567,"ZIPCODE":"19128","ALLIAS":"Tree House","GLOBALID":"634df79b-5ffc-4456-8a22-6f063b43e694","Shape_Length":1137.2055363058773,"Shape_Area":75383.13077482245}},{"type":"Feature","id":94,"geometry":{"type":"Polygon","coordinates":[[[-75.206448396789412,39.998872294108416],[-75.205928690192479,39.999465098476783],[-75.205919224923861,39.999593619548762],[-75.206104878981606,39.999726463756772],[-75.206418779056648,39.999787057912876],[-75.207115189029025,39.999069434964653],[-75.206622923736916,39.998929798656711],[-75.206448396789412,39.998872294108416]]]},"properties":{"OBJECTID_1":94,"OBJECTID":37,"ASSET_NAME":"Ford Road North Playground","SITE_NAME":"Ford Road North Playground","CHILD_OF":"West Fairmount Park","ADDRESS":"3905 FORD RD","TYPE":"Land","USE_":"Recreation Site","ACREAGE":1.3661700000000001,"ZIPCODE":"19131","ALLIAS":" ","GLOBALID":"9ec19656-a23b-4226-bd03-ebb926416f80","Shape_Length":995.44776879866606,"Shape_Area":59510.079244620385}},{"type":"Feature","id":95,"geometry":{"type":"Polygon","coordinates":[[[-75.246987294660968,39.897846794002902],[-75.246324813260529,39.897491701599641],[-75.245980333075323,39.897903739731589],[-75.246656116389602,39.898244615886313],[-75.246987294660968,39.897846794002902]]]},"properties":{"OBJECTID_1":95,"OBJECTID":38,"ASSET_NAME":"82nd & Lyons Park","SITE_NAME":"82nd & Lyons Park","CHILD_OF":"82nd & Lyons Park","ADDRESS":"8200 LYONS AVE","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.91161800000000004,"ZIPCODE":"19153","ALLIAS":"Pepper School Playground","GLOBALID":"ab119153-19c0-4324-95ef-fbb99fda9650","Shape_Length":803.7912282479424,"Shape_Area":39709.985919657964}},{"type":"Feature","id":96,"geometry":{"type":"Polygon","coordinates":[[[-75.141443182678515,40.003906318813158],[-75.141373466887444,40.004226505072452],[-75.141555985759297,40.00424978638231],[-75.142306169476015,40.004347107390181],[-75.142479920185224,40.004369478045355],[-75.14255022836619,40.004047371092831],[-75.141443182678515,40.003906318813158]]]},"properties":{"OBJECTID_1":96,"OBJECTID":39,"ASSET_NAME":"Franklinville Playground","SITE_NAME":"Franklinville Playground","CHILD_OF":"Franklinville Playground","ADDRESS":"3432 N 07TH ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.85574099999999997,"ZIPCODE":"19140","ALLIAS":" ","GLOBALID":"7a62ec35-b30f-4111-abd2-9599c6a4e1ed","Shape_Length":865.9113819941067,"Shape_Area":37275.926430300438}},{"type":"Feature","id":97,"geometry":{"type":"Polygon","coordinates":[[[-75.06781515097471,40.080432506946707],[-75.066800625574672,40.080384985148477],[-75.066656831421255,40.080685589894493],[-75.067136000977769,40.08092921627658],[-75.06781515097471,40.080432506946707]]]},"properties":{"OBJECTID_1":97,"OBJECTID":40,"ASSET_NAME":"Verree & Susquehanna Playground","SITE_NAME":"Verree & Susquehanna Playground","CHILD_OF":"Pennypack Creek Park","ADDRESS":"8543 VERREE RD","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.836924,"ZIPCODE":"19111","ALLIAS":" ","GLOBALID":"5a0b0909-00f7-423b-8939-c5fd355ac9f6","Shape_Length":824.28682466452756,"Shape_Area":36456.217435198349}},{"type":"Feature","id":98,"geometry":{"type":"Polygon","coordinates":[[[-75.146324340543899,40.007058955217353],[-75.146202610140136,40.007624696204239],[-75.146805809447415,40.00769680882825],[-75.146926195865163,40.007135922175074],[-75.146324340543899,40.007058955217353]]]},"properties":{"OBJECTID_1":98,"OBJECTID":41,"ASSET_NAME":"11th & Venango Play Lot","SITE_NAME":"11th & Venango Play Lot","CHILD_OF":"11th & Venango Play Lot","ADDRESS":"3600 N 11TH ST","TYPE":"Land","USE_":"Youth & Tot\\Play Areas","ACREAGE":0.81627000000000005,"ZIPCODE":"19140","ALLIAS":" ","GLOBALID":"5ac4fecd-34a3-46cb-af90-6ea1d18f77bb","Shape_Length":757.89428413581652,"Shape_Area":35556.603791431458}},{"type":"Feature","id":99,"geometry":{"type":"Polygon","coordinates":[[[-75.13031475681521,39.999109168110699],[-75.130076435426957,40.000215815826607],[-75.130838294646352,40.000311641529287],[-75.131076403570589,39.999206937483763],[-75.13031475681521,39.999109168110699]]]},"properties":{"OBJECTID_1":99,"OBJECTID":42,"ASSET_NAME":"Collazo Playground","SITE_NAME":"Collazo Playground","CHILD_OF":"Collazo Playground","ADDRESS":"130-60 W WESTMORELAND ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":2.0273669999999999,"ZIPCODE":"19140","ALLIAS":" ","GLOBALID":"a2a885ee-f426-4cbb-9841-52e4e6526c90","Shape_Length":1249.1552869469999,"Shape_Area":88311.77630891485}},{"type":"Feature","id":100,"geometry":{"type":"Polygon","coordinates":[[[-75.021582832958089,40.043791730346456],[-75.021033135540335,40.043730991658805],[-75.020930530792043,40.044276885507081],[-75.02137876530071,40.044392432477316],[-75.021582832958089,40.043791730346456]]]},"properties":{"OBJECTID_1":100,"OBJECTID":43,"ASSET_NAME":"Frankford & Solly Playground","SITE_NAME":"Frankford & Solly Playground","CHILD_OF":"Pennypack Creek Park","ADDRESS":"8300 FRANKFORD AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.70142099999999996,"ZIPCODE":"19136","ALLIAS":" ","GLOBALID":"7d01974f-65ed-4053-8955-db5042b04a80","Shape_Length":714.93851448168925,"Shape_Area":30553.765519424582}},{"type":"Feature","id":101,"geometry":{"type":"Polygon","coordinates":[[[-75.204101754268748,39.966228257883273],[-75.204123454673194,39.966391979814063],[-75.204874065932657,39.966336160760505],[-75.20488035309738,39.966366814540393],[-75.205143646892111,39.966351676462637],[-75.205149625905861,39.966456701305283],[-75.205500024829789,39.966432050649971],[-75.205482091698485,39.966122988697947],[-75.204101754268748,39.966228257883273]]]},"properties":{"OBJECTID_1":101,"OBJECTID":44,"ASSET_NAME":"Belmont School Playground","SITE_NAME":"Belmont School Playground","CHILD_OF":"Belmont School Playground","ADDRESS":"4030-60 BROWN ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.67399399999999998,"ZIPCODE":"19104","ALLIAS":" ","GLOBALID":"12c96f96-5e04-400b-8d7d-9776dfeadd7c","Shape_Length":995.06098768948561,"Shape_Area":29359.085722388358}},{"type":"Feature","id":102,"geometry":{"type":"Polygon","coordinates":[[[-75.181866131688338,39.968919447571132],[-75.182146736916579,39.968764978213784],[-75.18204302763715,39.968623435692059],[-75.181775838516316,39.968413391015758],[-75.181483931868215,39.968660507050451],[-75.181778604047665,39.968930289198347],[-75.181866131688338,39.968919447571132]]]},"properties":{"OBJECTID_1":102,"OBJECTID":45,"ASSET_NAME":"26th & Pennsylvania Playground","SITE_NAME":"26th & Pennsylvania Playground","CHILD_OF":"East Fairmount Park","ADDRESS":"2700 PENNSYLVANIA AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.43226599999999998,"ZIPCODE":"19130","ALLIAS":" ","GLOBALID":"888ff308-988a-413a-be12-6f88342e6d20","Shape_Length":537.83409317282531,"Shape_Area":18829.429946576249}},{"type":"Feature","id":103,"geometry":{"type":"Polygon","coordinates":[[[-75.244210247238215,39.944496886920192],[-75.243775267462667,39.944651870806084],[-75.243748481734215,39.944672740907784],[-75.243741963174116,39.944698344371076],[-75.243750086944658,39.94472998907564],[-75.24378303482429,39.944743582370201],[-75.243812479994972,39.944751376913366],[-75.24423610656973,39.944803541842418],[-75.244254832602522,39.944799660389208],[-75.244285279100126,39.944780300919014],[-75.244319073478849,39.94456934984273],[-75.244314819944535,39.944533499197824],[-75.24429163084676,39.944507246744337],[-75.244249345745686,39.944494880397571],[-75.244210247238215,39.944496886920192]]]},"properties":{"OBJECTID_1":103,"OBJECTID":46,"ASSET_NAME":"60th & Baltimore Park","SITE_NAME":"60th & Baltimore Park","CHILD_OF":"60th & Baltimore Park","ADDRESS":"5961 BALTIMORE AVE","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.27262599999999998,"ZIPCODE":"19143","ALLIAS":" ","GLOBALID":"2c2a2a3f-1cba-4ce9-a4f9-cca91b586209","Shape_Length":448.12820969166194,"Shape_Area":11875.565040166452}},{"type":"Feature","id":104,"geometry":{"type":"Polygon","coordinates":[[[-75.14171846303168,39.98678128500535],[-75.141477834976172,39.986749867759812],[-75.141435988162542,39.986944564767406],[-75.14192319157209,39.987009686582255],[-75.141930954269597,39.986974544692643],[-75.14195394890136,39.986863613411494],[-75.141792386323871,39.986841610706698],[-75.141783700911304,39.986791041653795],[-75.141737422958556,39.986784654116207],[-75.14171846303168,39.98678128500535]]]},"properties":{"OBJECTID_1":104,"OBJECTID":47,"ASSET_NAME":"Dauphin Street Play Lot","SITE_NAME":"Dauphin Street Play Lot","CHILD_OF":"Dauphin Street Play Lot","ADDRESS":"2324-30 N 05TH ST","TYPE":"Land","USE_":"Youth & Tot\\Play Areas","ACREAGE":0.20874000000000001,"ZIPCODE":"19133","ALLIAS":" ","GLOBALID":"816dd317-8850-40ad-9151-4c505ee1d9f4","Shape_Length":415.93756890804588,"Shape_Area":9092.6822338877555}},{"type":"Feature","id":105,"geometry":{"type":"Polygon","coordinates":[[[-75.154806222515376,39.963370318682706],[-75.15476559534504,39.963566256246118],[-75.154745860573399,39.963660626830745],[-75.155055421727639,39.963699047175254],[-75.155074131069327,39.963610665857026],[-75.155039485640742,39.963606706183761],[-75.155039959681062,39.963600365619712],[-75.155014582999158,39.963597243582726],[-75.155055115064044,39.963400466749114],[-75.154806222515376,39.963370318682706]]]},"properties":{"OBJECTID_1":105,"OBJECTID":48,"ASSET_NAME":"10th & Lemon Playground","SITE_NAME":"10th & Lemon Playground","CHILD_OF":"10th & Lemon Playground","ADDRESS":"1015-21 MOUNT VERNON ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.18723500000000001,"ZIPCODE":"19123","ALLIAS":" ","GLOBALID":"119992f7-4878-4eea-867a-16b74ec2c9ef","Shape_Length":390.15257571213368,"Shape_Area":8155.9254024761485}},{"type":"Feature","id":106,"geometry":{"type":"Polygon","coordinates":[[[-75.208568286455588,39.941384263641176],[-75.208760664585085,39.941581622983769],[-75.208777507160377,39.941586763357783],[-75.208802351270819,39.941584929740785],[-75.208824547215542,39.941571118067266],[-75.209131224039126,39.941362168662941],[-75.209136310144146,39.941350361955571],[-75.209125791720879,39.941341784746847],[-75.209105677594209,39.941341339159408],[-75.208599720690756,39.941371847837814],[-75.208576378272753,39.941374906711516],[-75.208568286455588,39.941384263641176]]]},"properties":{"OBJECTID_1":106,"OBJECTID":49,"ASSET_NAME":"47th & Grays Ferry Park","SITE_NAME":"47th & Grays Ferry Park","CHILD_OF":"47th & Grays Ferry Park","ADDRESS":"4700 PASCHALL AVE","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.16961899999999999,"ZIPCODE":"19143","ALLIAS":" ","GLOBALID":"7b32f43d-741b-4293-96b0-8ffbb172614c","Shape_Length":392.31468644649306,"Shape_Area":7388.577007409177}},{"type":"Feature","id":107,"geometry":{"type":"Polygon","coordinates":[[[-75.146497537403732,39.989331892332658],[-75.146569426014565,39.989037197812117],[-75.146379263048473,39.989017626362674],[-75.146321603221793,39.989313002165673],[-75.146497537403732,39.989331892332658]]]},"properties":{"OBJECTID_1":107,"OBJECTID":50,"ASSET_NAME":"Hartranft Pool","SITE_NAME":"Hartranft Pool","CHILD_OF":"Hartranft Pool","ADDRESS":"800 W CUMBERLAND ST","TYPE":"Land","USE_":"Pool","ACREAGE":0.129471,"ZIPCODE":"19133","ALLIAS":" ","GLOBALID":"4338af56-cac0-4db7-bd2a-153634f2ad70","Shape_Length":321.56697992919021,"Shape_Area":5639.7175147813832}},{"type":"Feature","id":108,"geometry":{"type":"Polygon","coordinates":[[[-75.143280074080224,40.010120897649159],[-75.143316393429373,40.009953542975843],[-75.143046440434716,40.009917221316826],[-75.143010131773423,40.010085897961027],[-75.143280074080224,40.010120897649159]]]},"properties":{"OBJECTID_1":108,"OBJECTID":51,"ASSET_NAME":"Butler & Percy Play Lot","SITE_NAME":"Butler & Percy Play Lot","CHILD_OF":"Butler & Percy Play Lot","ADDRESS":"913-921 BUTLER ST","TYPE":"Land","USE_":"Youth & Tot\\Play Areas","ACREAGE":0.109282,"ZIPCODE":"19140","ALLIAS":" ","GLOBALID":"16aa9d8e-d0bf-490a-b8cf-47ff3de78a49","Shape_Length":277.54057191753293,"Shape_Area":4760.3225317996075}},{"type":"Feature","id":109,"geometry":{"type":"Polygon","coordinates":[[[-75.243228014295511,39.966067922005514],[-75.243172895279073,39.966328546444551],[-75.243332009543224,39.966348254028205],[-75.243386141502839,39.9660888179965],[-75.243228014295511,39.966067922005514]]]},"properties":{"OBJECTID_1":109,"OBJECTID":52,"ASSET_NAME":"Horton Street Play Lot","SITE_NAME":"Horton Street Play Lot","CHILD_OF":"Horton Street Play Lot","ADDRESS":"225-35 N HORTON ST","TYPE":"Land","USE_":"Youth & Tot\\Play Areas","ACREAGE":0.099283999999999997,"ZIPCODE":"19139","ALLIAS":" ","GLOBALID":"7315d9e4-ae2a-45e9-a4ee-9a3f861033c1","Shape_Length":282.05353312002626,"Shape_Area":4324.8085997982735}},{"type":"Feature","id":110,"geometry":{"type":"Polygon","coordinates":[[[-75.211610770357964,39.956089981408475],[-75.21159030979571,39.956186310800945],[-75.211942896070383,39.95623176737449],[-75.211963417534335,39.956135487030515],[-75.211610770357964,39.956089981408475]]]},"properties":{"OBJECTID_1":110,"OBJECTID":53,"ASSET_NAME":"45th & Sansom Tot Lot","SITE_NAME":"45th & Sansom Tot Lot","CHILD_OF":"45th & Sansom Tot Lot","ADDRESS":"122-24 S 45TH ST","TYPE":"Land","USE_":"Youth & Tot\\Play Areas","ACREAGE":0.081798999999999997,"ZIPCODE":"19139","ALLIAS":" ","GLOBALID":"f5174cc6-436f-40d9-b319-77d84c2d81b1","Shape_Length":271.56214602666518,"Shape_Area":3563.1461715043656}},{"type":"Feature","id":111,"geometry":{"type":"Polygon","coordinates":[[[-75.145396153533227,39.965402219720147],[-75.145405725526899,39.96536183154398],[-75.145416135452464,39.965323074317567],[-75.145175640929367,39.965289081114712],[-75.145165217271341,39.965328193013377],[-75.145158320492698,39.965368192297596],[-75.145267481693764,39.965384227298081],[-75.14526182182135,39.965438938627166],[-75.145362883177413,39.965455288817651],[-75.145519901067743,39.965479292868849],[-75.145533731012009,39.965421302558809],[-75.145396153533227,39.965402219720147]]]},"properties":{"OBJECTID_1":111,"OBJECTID":54,"ASSET_NAME":"Community Park","SITE_NAME":"Community Park","CHILD_OF":"Community Park","ADDRESS":"854-56 N LAWRENCE ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.081737000000000004,"ZIPCODE":"19123","ALLIAS":" ","GLOBALID":"6d49996f-2d49-4278-a335-d1f42db51681","Shape_Length":312.78117214612053,"Shape_Area":3560.4088105030842}},{"type":"Feature","id":112,"geometry":{"type":"Polygon","coordinates":[[[-75.235874784884345,39.913606055488003],[-75.235867222806064,39.913621339947895],[-75.235890924424169,39.913782291993392],[-75.235900965085548,39.913790726550893],[-75.235917615224452,39.913800334978369],[-75.235934549973777,39.913802247026773],[-75.236060054872837,39.91378959378261],[-75.236072162501969,39.913786777856409],[-75.236086525414365,39.913777079114361],[-75.236092177870589,39.913759486763759],[-75.236085949232049,39.913738552494351],[-75.235922987583336,39.9136009496752],[-75.235907109355637,39.913597520988894],[-75.235887091705635,39.913597852387859],[-75.235874784884345,39.913606055488003]]]},"properties":{"OBJECTID_1":112,"OBJECTID":55,"ASSET_NAME":"71st & Dicks Triangle","SITE_NAME":"71st & Dicks Triangle","CHILD_OF":"71st & Dicks Triangle","ADDRESS":"2700 S 71ST ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.068072999999999995,"ZIPCODE":"19153","ALLIAS":" ","GLOBALID":"725da35f-45cd-497d-8415-f39c8c9f6522","Shape_Length":221.25956242198424,"Shape_Area":2965.2461790845618}},{"type":"Feature","id":113,"geometry":{"type":"Polygon","coordinates":[[[-75.118150251956607,39.976462255076981],[-75.118041880287961,39.976517979716959],[-75.118202067889655,39.976701828096147],[-75.118310961839228,39.97664505116245],[-75.118150251956607,39.976462255076981]]]},"properties":{"OBJECTID_1":113,"OBJECTID":56,"ASSET_NAME":"Webb Street Play Lot","SITE_NAME":"Webb Street Play Lot","CHILD_OF":"Webb Street Play Lot","ADDRESS":"2536-38 WEBB ST","TYPE":"Land","USE_":"Youth & Tot\\Play Areas","ACREAGE":0.067827999999999999,"ZIPCODE":"19125","ALLIAS":" ","GLOBALID":"dcfe5293-8fd9-439e-b01f-b4cf7dd31c74","Shape_Length":234.41633823055284,"Shape_Area":2954.5772364552613}},{"type":"Feature","id":114,"geometry":{"type":"Polygon","coordinates":[[[-75.165980252203951,40.053420054559432],[-75.164899868576001,40.052790230718813],[-75.164540454399301,40.052453160238791],[-75.164103933020542,40.052185870032105],[-75.162791387675128,40.05341503695162],[-75.163722593320486,40.053888951362296],[-75.163494001788393,40.054188948771241],[-75.164390840071633,40.054864535057717],[-75.165097984314386,40.054231148542591],[-75.165272459460127,40.054314435233721],[-75.166074357539316,40.053555671514879],[-75.165980252203951,40.053420054559432]]]},"properties":{"OBJECTID_1":114,"OBJECTID":57,"ASSET_NAME":"Awbury Park & Recreation Center","SITE_NAME":"Awbury Park & Recreation Center","CHILD_OF":"Awbury Park & Recreation Center","ADDRESS":"6101 ARDLEIGH ST","TYPE":"Land","USE_":"Recreation Center","ACREAGE":10.162046,"ZIPCODE":"19138","ALLIAS":" ","GLOBALID":"2661809c-af6a-4bfe-86c4-1cef408e422d","Shape_Length":2838.2902087931789,"Shape_Area":442657.01590993686}},{"type":"Feature","id":115,"geometry":{"type":"Polygon","coordinates":[[[-75.14435636678877,40.018327603009745],[-75.144437420869622,40.018275803595621],[-75.144505768805118,40.018191532250448],[-75.144504961563541,40.018091387089086],[-75.144490762617409,40.017976635250704],[-75.1444253117226,40.017864296580115],[-75.144356172799618,40.017726842013701],[-75.144277605131336,40.017592749584054],[-75.144272013977627,40.017496072001123],[-75.144266561133975,40.017395822304607],[-75.144156958155946,40.017343271579399],[-75.143928458514154,40.017237959773212],[-75.143846461810028,40.0171931876],[-75.143638745166427,40.017031132059721],[-75.143548673350523,40.017075574789509],[-75.143466659698092,40.01715238304967],[-75.143451740689557,40.017298657654365],[-75.143406215010529,40.01739417492815],[-75.143244932799746,40.017476335870576],[-75.142884776324564,40.017650532035475],[-75.142718295665816,40.017746877949072],[-75.14274315692461,40.017826113342657],[-75.142929679329541,40.01805563169976],[-75.142537951977999,40.018204078776137],[-75.142381429486463,40.018404352538397],[-75.142337117462162,40.018589293646421],[-75.14242278082844,40.018780763456888],[-75.142548913734245,40.018887329875703],[-75.142813512766679,40.018900490306841],[-75.143037800085551,40.018873399034042],[-75.143241731444107,40.018770750502846],[-75.143516602198602,40.018637529247755],[-75.143993757305751,40.018444532185917],[-75.14435636678877,40.018327603009745]]]},"properties":{"OBJECTID_1":115,"OBJECTID":58,"ASSET_NAME":"Hunting Park Recreation Center","SITE_NAME":"Hunting Park","CHILD_OF":"Hunting Park","ADDRESS":"1101 W HUNTING PARK AVE","TYPE":"Land","USE_":"Recreation Center","ACREAGE":5.3661300000000001,"ZIPCODE":"19140","ALLIAS":" ","GLOBALID":"829e94fa-3890-4a93-bd76-3c0657b62d39","Shape_Length":2067.0756430239257,"Shape_Area":233747.65991670373}},{"type":"Feature","id":116,"geometry":{"type":"Polygon","coordinates":[[[-75.170771316234791,39.980444374016017],[-75.170468055913403,39.980403915917229],[-75.170353981244119,39.980863727124586],[-75.170669744746917,39.980910242894581],[-75.170693476556949,39.980854102473955],[-75.170765746124772,39.980518788837216],[-75.170771316234791,39.980444374016017]]]},"properties":{"OBJECTID_1":116,"OBJECTID":59,"ASSET_NAME":"Martin Luther King Older Adult Center","SITE_NAME":"Martin Luther King Recreation Center","CHILD_OF":"Martin Luther King Recreation Center","ADDRESS":"2101 W CECIL B MOORE AVE","TYPE":"Land","USE_":"Older Adult Center","ACREAGE":0.35710500000000001,"ZIPCODE":"19121","ALLIAS":" ","GLOBALID":"225ae542-a02b-4e74-a1c0-9b2a0ce33392","Shape_Length":519.35041265795087,"Shape_Area":15555.453915703823}},{"type":"Feature","id":117,"geometry":{"type":"Polygon","coordinates":[[[-75.015468905537602,40.028307807466575],[-75.014459389953998,40.0271252178716],[-75.013563324339827,40.027034701973356],[-75.012761504420808,40.02739601176981],[-75.011632526818374,40.028060766405545],[-75.009406047902473,40.029166203493261],[-75.011216306977772,40.031128774288426],[-75.013449089946718,40.029867827579508],[-75.013420166941899,40.029469428128031],[-75.014650389084309,40.028912067966957],[-75.015468905537602,40.028307807466575]]]},"properties":{"OBJECTID_1":117,"OBJECTID":60,"ASSET_NAME":"Pennypack on the Delaware Fields","SITE_NAME":"Pennypack on the Delaware Fields","CHILD_OF":"Pennypack on the Delaware","ADDRESS":"8201 State Road","TYPE":"Land","USE_":"Athletic","ACREAGE":28.248456999999998,"ZIPCODE":"19136","ALLIAS":" ","GLOBALID":"a7d37803-ff0f-47f6-8693-9b0896e54a43","Shape_Length":4684.4570260407281,"Shape_Area":1230497.8851786659}},{"type":"Feature","id":118,"geometry":{"type":"Polygon","coordinates":[[[-75.214735765352401,39.988871527698159],[-75.214625060327563,39.988516265652954],[-75.214342369243113,39.988119061082479],[-75.213994548479675,39.987806236165213],[-75.213723895277113,39.987418831194049],[-75.213523717082836,39.986804128645154],[-75.213129706807564,39.985736967092301],[-75.213025351404553,39.985543949023857],[-75.212732716482989,39.985413516700987],[-75.21232682848806,39.98532825787963],[-75.211954894520943,39.985329569794636],[-75.210649304740528,39.985767935217083],[-75.210197181827823,39.986587530837667],[-75.209598462991366,39.987680412375994],[-75.209516303885195,39.987888377898429],[-75.209434500731504,39.98808681503948],[-75.209461324791818,39.988344930635193],[-75.209500889975359,39.988631816131239],[-75.209798704769582,39.989286829352089],[-75.209806814337455,39.989401436136156],[-75.209624134458792,39.989645319206367],[-75.209531368894034,39.98980537167774],[-75.209990609008912,39.989877485575107],[-75.210339271730874,39.990080712855772],[-75.210651270005812,39.990688359008509],[-75.211213586387643,39.990901046605337],[-75.211518628604892,39.991031755815165],[-75.211811285399051,39.991162191208353],[-75.212092982229606,39.991254240492161],[-75.212411127545209,39.99136616637427],[-75.212475555090521,39.991300840912444],[-75.21252232848893,39.991044413738429],[-75.21263067920907,39.99079888310613],[-75.212761668556865,39.990611065514329],[-75.212966622114806,39.990434419770509],[-75.213193144159646,39.990344070764188],[-75.213493986369627,39.990255363736459],[-75.213795895324139,39.990138071818329],[-75.213984899206821,39.990056427573563],[-75.214150197267131,39.989945652506371],[-75.214303818816205,39.989815547766682],[-75.214563648180786,39.989497076795836],[-75.214712707085795,39.989157087093538],[-75.214735765352401,39.988871527698159]]]},"properties":{"OBJECTID_1":118,"OBJECTID":61,"ASSET_NAME":"Belmont Plateau","SITE_NAME":"Belmont Plateau","CHILD_OF":"West Fairmount Park","ADDRESS":"1800 BELMONT MANSION DR","TYPE":"Land","USE_":"Multi-Use Area","ACREAGE":49.290126999999998,"ZIPCODE":"19131","ALLIAS":" ","GLOBALID":"6a9003ed-e6c2-44f6-b0b6-d4d7c0545829","Shape_Length":5848.2137734755916,"Shape_Area":2147069.4941262649}},{"type":"Feature","id":119,"geometry":{"type":"Polygon","coordinates":[[[-75.211856866486841,39.979400923249678],[-75.2125693642827,39.978260772010806],[-75.212552646411467,39.977592237336218],[-75.206604577127067,39.975447273203912],[-75.205561991491052,39.977140576299746],[-75.206710665012963,39.978770887138317],[-75.207209678555301,39.97967829394706],[-75.208225949771204,39.979681735493045],[-75.209598800384299,39.980093559448903],[-75.211045864173045,39.979515302238241],[-75.211856866486841,39.979400923249678]]]},"properties":{"OBJECTID_1":119,"OBJECTID":62,"ASSET_NAME":"Memorial Area","SITE_NAME":"Memorial Area","CHILD_OF":"West Fairmount Park","ADDRESS":"4200 S CONCOURSE DR","TYPE":"Land","USE_":"Museum","ACREAGE":46.473027000000002,"ZIPCODE":"19131","ALLIAS":" ","GLOBALID":"5e3a8f1d-26d3-4c6f-8d02-41667728a261","Shape_Length":5648.2419987490812,"Shape_Area":2024356.6360139048}},{"type":"Feature","id":120,"geometry":{"type":"Polygon","coordinates":[[[-75.195009962128296,39.990208348876671],[-75.194362347958176,39.99012241284769],[-75.193663456638831,39.989957856204825],[-75.192175146357258,39.989769743920363],[-75.191815999511547,39.989636583553676],[-75.19139583472419,39.989255367705447],[-75.190978445526298,39.989451039205989],[-75.190239506604826,39.99014377789053],[-75.189634067314557,39.990994445555167],[-75.189436471511158,39.991508540088788],[-75.189383284917383,39.991686147884316],[-75.189490880747528,39.991915021090911],[-75.1899541560351,39.992163747029927],[-75.19094736544983,39.992537522914063],[-75.191504114034316,39.992567813655981],[-75.192227373431635,39.992703128733687],[-75.192571160355385,39.992627351170782],[-75.193064615294134,39.992280756338864],[-75.193756321365242,39.991813419494264],[-75.195152274702892,39.99095649063149],[-75.195312711173855,39.990811066626883],[-75.195361052663458,39.990555871943343],[-75.195260508163685,39.99034504114362],[-75.195009962128296,39.990208348876671]]]},"properties":{"OBJECTID_1":120,"OBJECTID":63,"ASSET_NAME":"Edgely Fields","SITE_NAME":"Edgely Fields","CHILD_OF":"East Fairmount Park","ADDRESS":"2100 RESERVOIR DR","TYPE":"Land","USE_":"Athletic","ACREAGE":29.260206,"ZIPCODE":"19121","ALLIAS":" ","GLOBALID":"c0e530be-3974-46e7-ab27-203f76eb6060","Shape_Length":4482.5421309294607,"Shape_Area":1274569.3722379226}},{"type":"Feature","id":121,"geometry":{"type":"Polygon","coordinates":[[[-75.200225118699464,39.984881250029659],[-75.200257758936942,39.984672190483529],[-75.200064126427122,39.98438181844508],[-75.199710086326803,39.98390670483446],[-75.199521866313518,39.983802398882816],[-75.199280349046575,39.983797031453364],[-75.199098610531436,39.983850205162497],[-75.198195035091089,39.984144794707454],[-75.19761788128541,39.984494316552691],[-75.197340023906747,39.984631171655735],[-75.197169057661725,39.984727493308313],[-75.19708425228302,39.984840035657776],[-75.196946247639517,39.985213624341668],[-75.196811671047442,39.985825680115305],[-75.196896281953144,39.986542737884911],[-75.19689684752764,39.986857427820382],[-75.196950973217028,39.986901542237476],[-75.197025289917761,39.986903195324054],[-75.197787540786777,39.986576863701721],[-75.198488500114422,39.986396967427048],[-75.198771122960267,39.986298357649439],[-75.199068815840107,39.986128564813896],[-75.199216802221628,39.98598405108482],[-75.199417977017077,39.985578488725167],[-75.199516953955211,39.985418582033638],[-75.200082972431716,39.985035430055554],[-75.200225118699464,39.984881250029659]]]},"properties":{"OBJECTID_1":121,"OBJECTID":64,"ASSET_NAME":"Dairy Fields","SITE_NAME":"Dairy Fields","CHILD_OF":"East Fairmount Park","ADDRESS":"3700 MOUNT PLEASANT DR","TYPE":"Land","USE_":"Athletic","ACREAGE":15.153846,"ZIPCODE":"19121","ALLIAS":" ","GLOBALID":"e3e07843-f587-438e-9e1a-f0c75fb8a453","Shape_Length":3261.9270102630203,"Shape_Area":660098.85767593037}},{"type":"Feature","id":122,"geometry":{"type":"Polygon","coordinates":[[[-75.217526849068662,40.046340078323091],[-75.217522377308256,40.04438220649007],[-75.217488961293739,40.044306211223571],[-75.217410272138011,40.044269479815107],[-75.217297360135461,40.044200490406759],[-75.216843037581796,40.04409308004864],[-75.21653855211666,40.044044646175095],[-75.216137088675907,40.044101348846375],[-75.215405893721382,40.044162694525291],[-75.215162484557098,40.044243739239981],[-75.215050230963755,40.044342578537353],[-75.215000295793345,40.044433852381964],[-75.214964853872615,40.044552265181153],[-75.214989506060519,40.04472266190426],[-75.215058532296965,40.044950654806968],[-75.215255845417445,40.045169559136944],[-75.215536924425962,40.045533345691162],[-75.215607287819239,40.045725609766649],[-75.215761102157884,40.045967392962737],[-75.215967058662599,40.046162648007474],[-75.216709608107521,40.046524689906555],[-75.216843757035676,40.046566386559121],[-75.216928764193042,40.046574221146926],[-75.217526849068662,40.046340078323091]]]},"properties":{"OBJECTID_1":122,"OBJECTID":65,"ASSET_NAME":"Pachella Fields","SITE_NAME":"Pachella Fields","CHILD_OF":"Wissahickon Valley Park","ADDRESS":"6899 HENRY AVE","TYPE":"Land","USE_":"Athletic","ACREAGE":11.371655000000001,"ZIPCODE":"19128","ALLIAS":" ","GLOBALID":"c58672ae-821a-4bd6-b40a-ac6dab0b2e65","Shape_Length":2711.1755170947276,"Shape_Area":495347.26212341909}},{"type":"Feature","id":123,"geometry":{"type":"Polygon","coordinates":[[[-75.214176865629582,39.996057572242833],[-75.214393540819273,39.995733380658841],[-75.21403741701053,39.995143840885341],[-75.213923191901927,39.995070285992469],[-75.213680842717295,39.99506444665252],[-75.213375742784521,39.995100614153117],[-75.213155933278927,39.995176808803315],[-75.213059287966502,39.995274797554735],[-75.21294459478824,39.995358083042156],[-75.212817599041358,39.995393074927172],[-75.212476137564849,39.995452620153557],[-75.211473006900192,39.995754651617872],[-75.210794803050916,39.995987577372397],[-75.210738659548639,39.996162744410519],[-75.210750471792267,39.9963441827813],[-75.210706003978231,39.99653867959217],[-75.210782963075076,39.996635736819442],[-75.21089124814516,39.99672395250402],[-75.211055814924251,39.996799110426139],[-75.211118971027688,39.996869884431298],[-75.211180009673484,39.996959194729193],[-75.211282457581945,39.997037745620084],[-75.211412531828046,39.997040622253998],[-75.212823098920154,39.99661886645346],[-75.213668888013572,39.996314353967968],[-75.214176865629582,39.996057572242833]]]},"properties":{"OBJECTID_1":123,"OBJECTID":66,"ASSET_NAME":"Belmont & Edgely Cricket Fields","SITE_NAME":"Belmont & Edgely Cricket Fields","CHILD_OF":"West Fairmount Park","ADDRESS":"4105 EDGELY AVE","TYPE":"Land","USE_":"Athletic","ACREAGE":9.6485909999999997,"ZIPCODE":"19131","ALLIAS":" ","GLOBALID":"25975645-1449-4a41-84e8-9b3485f1f209","Shape_Length":2712.1848778721837,"Shape_Area":420290.99716515548}},{"type":"Feature","id":124,"geometry":{"type":"Polygon","coordinates":[[[-75.204139649623613,40.021425269397554],[-75.203298770374957,40.020522533364783],[-75.201710898182128,40.022045843270227],[-75.201835679134135,40.023130044527441],[-75.203306405706243,40.023183240851708],[-75.204139649623613,40.021425269397554]]]},"properties":{"OBJECTID_1":124,"OBJECTID":67,"ASSET_NAME":"Daisy Fields","SITE_NAME":"Daisy Fields","CHILD_OF":"Wissahickon Valley Park","ADDRESS":"5000 HERMIT LN","TYPE":"Land","USE_":"Athletic","ACREAGE":9.4329149999999995,"ZIPCODE":"19128","ALLIAS":" ","GLOBALID":"1f6d099e-8d7b-47aa-ab6b-bb40ecbbe4cd","Shape_Length":2606.0612000185865,"Shape_Area":410895.91773257486}},{"type":"Feature","id":125,"geometry":{"type":"Polygon","coordinates":[[[-75.190522052374803,39.997162968048492],[-75.190701494211751,39.996848523891373],[-75.190978146524984,39.995524046407212],[-75.190814556865888,39.995418041231972],[-75.190671094024211,39.995562692649621],[-75.190529342715294,39.995661889272782],[-75.190372674245111,39.995764544540947],[-75.190211793838188,39.995848150273382],[-75.190037137507161,39.995904911176765],[-75.189887962584592,39.995939495080194],[-75.189779044480531,39.995952229823871],[-75.189655922466685,39.995949483684022],[-75.189451077028394,39.995891839683821],[-75.18925665180771,39.9958192646993],[-75.189101770944276,39.995743780160623],[-75.188866595287749,39.995575519187831],[-75.18871500153513,39.995412914154464],[-75.188636279829282,39.995278472387298],[-75.188573828472627,39.995235377462706],[-75.188495888934611,39.995210892300364],[-75.188260706155745,39.995304209765969],[-75.188003536788614,39.995457693745678],[-75.187885548993549,39.995580163534129],[-75.187677834750588,39.995859853928927],[-75.187709056629657,39.996309337004305],[-75.187698407066407,39.996527293869129],[-75.189353154900729,39.996864165125182],[-75.189415935116926,39.996854198432352],[-75.18963579990249,39.996861877750526],[-75.189783288619864,39.996896960308142],[-75.18987576326262,39.996924543816789],[-75.189985272484009,39.996980347395329],[-75.190133265689454,39.997055569838082],[-75.19022150198586,39.99711553988098],[-75.190262456398642,39.997119269684895],[-75.190522052374803,39.997162968048492]]]},"properties":{"OBJECTID_1":125,"OBJECTID":68,"ASSET_NAME":"Robin Hood Dell East","SITE_NAME":"Robin Hood Dell East","CHILD_OF":"East Fairmount Park","ADDRESS":"2499 STRAWBERRY MANSION BRIDGE DR","TYPE":"Land","USE_":"Multi-Use Area","ACREAGE":8.6894469999999995,"ZIPCODE":"19132","ALLIAS":" ","GLOBALID":"5a3a8bff-eade-42d9-bdbf-93a74bde5aa7","Shape_Length":2921.9998185694139,"Shape_Area":378510.72747650399}},{"type":"Feature","id":126,"geometry":{"type":"Polygon","coordinates":[[[-75.205235240548419,39.97777899057553],[-75.205288902312091,39.977693891345403],[-75.205303177888553,39.977612231842706],[-75.205285167641435,39.97746828630482],[-75.205277632912114,39.977395938885564],[-75.205217523910733,39.977310840521213],[-75.20516674326943,39.977212269940075],[-75.205154778048083,39.977082569049905],[-75.205163289364378,39.977005095742683],[-75.204593018651437,39.976509221488222],[-75.204420767492365,39.976466570084931],[-75.204254441267736,39.976415420937087],[-75.204019744305597,39.976392955462423],[-75.203695232641081,39.976372812472256],[-75.203463229493764,39.976428067721841],[-75.203257951312935,39.976518431298231],[-75.203056820462393,39.976647718070403],[-75.202871043374387,39.976816175902314],[-75.202799275201656,39.976935389655672],[-75.202708272105994,39.977118894688743],[-75.202620769512365,39.977358565818427],[-75.202611770234981,39.977448971105112],[-75.202799459982032,39.977603981692461],[-75.203308436586269,39.978163386075757],[-75.203534788959814,39.978259013989287],[-75.203718574295763,39.978293293631218],[-75.203988676211054,39.978269084652446],[-75.204301558724225,39.978150904138261],[-75.204598760030109,39.978002174218524],[-75.204931956438728,39.977869269694153],[-75.205155498990237,39.977811738853951],[-75.205235240548419,39.97777899057553]]]},"properties":{"OBJECTID_1":126,"OBJECTID":69,"ASSET_NAME":"Sweet Briar Area","SITE_NAME":"Sweet Briar Area","CHILD_OF":"West Fairmount Park","ADDRESS":"3700 SWEET BRIAR LN","TYPE":"Land","USE_":"Athletic","ACREAGE":8.6423729999999992,"ZIPCODE":"19131","ALLIAS":" ","GLOBALID":"ae13e108-ae71-4492-99da-3baff35767e7","Shape_Length":2245.3298162113692,"Shape_Area":376460.26528944873}},{"type":"Feature","id":127,"geometry":{"type":"Polygon","coordinates":[[[-75.217635190616733,39.984222089150933],[-75.217662804511235,39.984146413448826],[-75.217395521443692,39.983668503208733],[-75.217115626725843,39.983528827906696],[-75.216745124261109,39.983492043755845],[-75.215830368006991,39.983424170715132],[-75.215278854349151,39.983421527783726],[-75.215067366579234,39.983441810001302],[-75.2154550095659,39.984846223605892],[-75.215754045680882,39.984805148717477],[-75.216036282528705,39.984716023901257],[-75.216903874738421,39.98438712644279],[-75.217090726849065,39.984362643541616],[-75.217219001621871,39.984413152654348],[-75.217332427533762,39.984363209379751],[-75.217635190616733,39.984222089150933]]]},"properties":{"OBJECTID_1":127,"OBJECTID":70,"ASSET_NAME":"Ohio House Fields","SITE_NAME":"Ohio House","CHILD_OF":"West Fairmount Park","ADDRESS":"4700 STATES DR","TYPE":"Land","USE_":"Athletic","ACREAGE":5.873049,"ZIPCODE":"19131","ALLIAS":" ","GLOBALID":"7ffce52d-d1e9-41d5-ae45-40e7efa80a9b","Shape_Length":2082.1248290961021,"Shape_Area":255828.84609945098}},{"type":"Feature","id":128,"geometry":{"type":"Polygon","coordinates":[[[-75.199000224769748,40.001150663265129],[-75.199049636242734,40.001073091787489],[-75.199067734438742,40.00096264327756],[-75.199023425206178,40.000904444838064],[-75.198962698680603,40.000876313908911],[-75.198761167689028,40.00083067468158],[-75.198591020052802,40.000780406760001],[-75.198504496605651,40.000731997246852],[-75.198366735003859,40.000686024883379],[-75.198230183256229,40.000607896228949],[-75.198145270451462,40.000516612750161],[-75.19810042520227,40.000472704575955],[-75.198018010156133,40.00043869037161],[-75.197888735752329,40.000414360832202],[-75.197754815431153,40.000389927853973],[-75.19764358681546,40.000380303605581],[-75.19754454905447,40.000417435893851],[-75.197457433279112,40.000508471860272],[-75.197365538120565,40.000602976681868],[-75.197320099464505,40.000698515370502],[-75.197281400554985,40.000862145153235],[-75.197221889158271,40.000960946068133],[-75.197142586724368,40.001091488972484],[-75.19710031579244,40.001226432338633],[-75.197096151343587,40.001337191372436],[-75.197163017917205,40.001413771765229],[-75.197307653277875,40.001524264450445],[-75.197411416874843,40.001608816414468],[-75.197464748724883,40.001674368294445],[-75.197476537925908,40.001731844284137],[-75.197707912696913,40.002008755308189],[-75.197869790587347,40.002155388785532],[-75.197927903748607,40.002217470632537],[-75.198005406170452,40.002258527826783],[-75.199000224769748,40.001150663265129]]]},"properties":{"OBJECTID_1":128,"OBJECTID":71,"ASSET_NAME":"Chamounix North Softball Field","SITE_NAME":"Chamounix","CHILD_OF":"West Fairmount Park","ADDRESS":"3299 CHAMOUNIX DR","TYPE":"Land","USE_":"Athletic","ACREAGE":4.9625979999999998,"ZIPCODE":"19131","ALLIAS":" ","GLOBALID":"80ba79f1-a530-4a5a-af92-25cb7cbf82b3","Shape_Length":1853.5879543659905,"Shape_Area":216169.8618530391}},{"type":"Feature","id":129,"geometry":{"type":"Polygon","coordinates":[[[-75.208277326818319,39.995781675603176],[-75.208037307515298,39.995486716271365],[-75.207756685501352,39.995158674237558],[-75.207573849992642,39.994950800813456],[-75.207429078140578,39.994843894150875],[-75.207347467982373,39.994788448832331],[-75.207137089027071,39.994819547559977],[-75.206765810077485,39.994942713597609],[-75.206461963962582,39.995094233406178],[-75.206183469410036,39.99520606553768],[-75.206163175591612,39.995272969407971],[-75.206149842201924,39.995359082846136],[-75.206721186908581,39.996365832464576],[-75.206847952056421,39.996332882876949],[-75.20736684611262,39.996133401538891],[-75.20782918939598,39.995954121122423],[-75.208277326818319,39.995781675603176]]]},"properties":{"OBJECTID_1":129,"OBJECTID":72,"ASSET_NAME":"Chamounix South Fields","SITE_NAME":"Chamounix","CHILD_OF":"West Fairmount Park","ADDRESS":"3701 CHAMOUNIX DR","TYPE":"Land","USE_":"Athletic","ACREAGE":4.6419769999999998,"ZIPCODE":"19131","ALLIAS":" ","GLOBALID":"7610682f-7db0-462f-9b2a-c78a37da83eb","Shape_Length":1753.0218280245761,"Shape_Area":202203.70811783397}},{"type":"Feature","id":130,"geometry":{"type":"Polygon","coordinates":[[[-75.207891362727551,40.033006167077673],[-75.207784108259474,40.032597494594441],[-75.207729823106519,40.032345620865499],[-75.207603662541629,40.031811230078333],[-75.20759201016395,40.031772074094867],[-75.207566603521727,40.031749902051452],[-75.207519682529551,40.031751744758303],[-75.20737665221391,40.031817729331998],[-75.206909894826666,40.032020610802185],[-75.206042667064139,40.032407666677869],[-75.207089622654436,40.033074807750332],[-75.207891362727551,40.033006167077673]]]},"properties":{"OBJECTID_1":130,"OBJECTID":73,"ASSET_NAME":"Boyce Field","SITE_NAME":"Wissahickon Valley Park","CHILD_OF":"Wissahickon Valley Park","ADDRESS":"5901 HENRY AVE","TYPE":"Land","USE_":"Athletic","ACREAGE":3.2592219999999998,"ZIPCODE":"19128","ALLIAS":" ","GLOBALID":"387c8c59-54ad-4f17-be47-8565ab4b6e64","Shape_Length":1565.6554479718136,"Shape_Area":141971.09291491451}},{"type":"Feature","id":131,"geometry":{"type":"Polygon","coordinates":[[[-75.20588519905607,40.029275644404819],[-75.205871933533629,40.029232441214099],[-75.205547849614604,40.028794728360651],[-75.205503874911912,40.028776589977802],[-75.204188035873798,40.029332439088684],[-75.204562811921022,40.029857099934041],[-75.205861925724932,40.029300875880473],[-75.20588519905607,40.029275644404819]]]},"properties":{"OBJECTID_1":131,"OBJECTID":74,"ASSET_NAME":"Arrow Field","SITE_NAME":"Arrow Field","CHILD_OF":"Wissahickon Valley Park","ADDRESS":"640 W WALNUT LN","TYPE":"Land","USE_":"Athletic","ACREAGE":2.1351420000000001,"ZIPCODE":"19128","ALLIAS":" ","GLOBALID":"d917898d-119c-4a59-a1ea-f29b90de079d","Shape_Length":1279.808780178244,"Shape_Area":93006.358060126571}},{"type":"Feature","id":132,"geometry":{"type":"Polygon","coordinates":[[[-75.059783510991622,40.08771805514089],[-75.05982520804703,40.087630917113863],[-75.059740622151082,40.087484750589532],[-75.059194745718656,40.087311765402227],[-75.059003427316156,40.08722718272567],[-75.058707682945339,40.087233609136561],[-75.058417825277672,40.087704773407239],[-75.058620496376577,40.087853706005454],[-75.05875243507235,40.088033023238488],[-75.058933039381159,40.088037251753171],[-75.059051167880256,40.087863789431594],[-75.059293545646085,40.087888154824633],[-75.059437956063348,40.087840802918734],[-75.059509622476654,40.087874521574733],[-75.059626650743212,40.08790396236536],[-75.059708227397593,40.08786314967319],[-75.059764451694264,40.087760331130923],[-75.059783510991622,40.08771805514089]]]},"properties":{"OBJECTID_1":132,"OBJECTID":75,"ASSET_NAME":"Pennypack Environmental Education Center","SITE_NAME":"Pennypack Environmental Education Center","CHILD_OF":"Pennypack Creek Park","ADDRESS":"8600 VERREE RD","TYPE":"Land","USE_":"Environmental Education Center","ACREAGE":1.6940269999999999,"ZIPCODE":"19115","ALLIAS":" ","GLOBALID":"927e4fdf-eb3b-4284-b2fc-20b21f2dc305","Shape_Length":1121.5374118397958,"Shape_Area":73791.543788179872}},{"type":"Feature","id":133,"geometry":{"type":"Polygon","coordinates":[[[-75.271503712139463,39.972232349090334],[-75.271544734752823,39.972281937870761],[-75.271590836580515,39.972339059551963],[-75.271627598311909,39.972383148561008],[-75.271670279226143,39.972436205860674],[-75.271708742967675,39.972482563339987],[-75.271830862042393,39.972632937883994],[-75.271937647398616,39.97276332887386],[-75.271964976968974,39.972796915820155],[-75.272000013751097,39.972839380814641],[-75.272030730433343,39.97287793323413],[-75.272057213372392,39.972910301762283],[-75.272092250336314,39.972952764927989],[-75.272118736859923,39.972985004677241],[-75.272147753317341,39.973021245362204],[-75.272180235458748,39.973060393569064],[-75.272207549604076,39.973094409888802],[-75.272239174962209,39.973132552998983],[-75.27226734796902,39.973167488832651],[-75.272301533769507,39.973208862279279],[-75.272326268907435,39.973240162275076],[-75.272358731303058,39.973279825363619],[-75.272389505873932,39.97331683373892],[-75.27241599113718,39.973349115732219],[-75.272447580368947,39.973388287825131],[-75.272479173162566,39.973427331144613],[-75.272507362483637,39.973461794249026],[-75.27253640862925,39.973497264224463],[-75.272567181786471,39.973534316665457],[-75.272631240209606,39.973612978874705],[-75.27354797898137,39.974723068264062],[-75.274496497966481,39.975881817112246],[-75.275606105089381,39.977235155590655],[-75.276361473422028,39.976890799735706],[-75.276691651941761,39.976719456692372],[-75.278465976445361,39.975805095104334],[-75.278900769904183,39.975578671250496],[-75.278893201525662,39.975247033093858],[-75.278855637346624,39.975151309261015],[-75.278787146879097,39.97504706556775],[-75.278728785254486,39.974958789135052],[-75.278660583376862,39.974846656258961],[-75.278582000846214,39.974750048957354],[-75.278523351157546,39.974669703864102],[-75.278454574565998,39.974573350903007],[-75.278376280909796,39.974468853453367],[-75.278247159007933,39.974363304392121],[-75.278146315030426,39.97428994555456],[-75.277976754573402,39.974167691228004],[-75.277766725717925,39.974005002633447],[-75.27762891895037,39.973843912925624],[-75.277530089661397,39.973715243212823],[-75.277403848080027,39.973530673193814],[-75.277307320242798,39.97333880472997],[-75.277180791600117,39.973162123567192],[-75.277106240204915,39.972954896399038],[-75.27711371845345,39.972749477469158],[-75.277203227011583,39.972545828049661],[-75.277319600937005,39.972437629217744],[-75.277528157378669,39.972370936338514],[-75.277766165954262,39.972328606812773],[-75.278074930236642,39.972303633988602],[-75.278258636487962,39.972331320355963],[-75.278451891595395,39.97239083569572],[-75.278590206685891,39.972464314796234],[-75.278713365802545,39.972615256392025],[-75.27878021338789,39.972697184405192],[-75.278737518474315,39.97255165448459],[-75.27862875392168,39.972298548725909],[-75.278583965309821,39.97228554337913],[-75.278045057150607,39.972129057476629],[-75.277860564748266,39.971978932724284],[-75.277947875116709,39.971750098902859],[-75.277972060282096,39.971686709577142],[-75.277990975417225,39.971637135016493],[-75.278002899589211,39.971474320244745],[-75.277929174374165,39.971357350286979],[-75.277762350454068,39.971279874724814],[-75.277720749333639,39.971260554229666],[-75.277587630254814,39.971182303531677],[-75.277585326890346,39.97118342878511],[-75.27755040081955,39.971200492299566],[-75.277261916376943,39.971341434623653],[-75.27705175748514,39.971292291724332],[-75.276922004200472,39.97120874471517],[-75.27686203338763,39.971170130769622],[-75.276809498778363,39.971136304515262],[-75.276643893720191,39.971126581394323],[-75.276556207999221,39.971118537626801],[-75.276554249044395,39.971118115186037],[-75.276492721542141,39.971104861709684],[-75.276385331065342,39.971067685015868],[-75.27630315912846,39.971039239107462],[-75.276349666242936,39.970860245858653],[-75.27637586171474,39.970832753922508],[-75.276428666555844,39.970777335671762],[-75.276418230385232,39.970755374474301],[-75.276363665428619,39.970640552656093],[-75.276420405407649,39.970507710321058],[-75.276443085763859,39.970454608722243],[-75.276446488409434,39.970397728191571],[-75.2763770094286,39.970383923918867],[-75.275730709612375,39.970286914597338],[-75.275706120333268,39.970238641249388],[-75.275535522158194,39.969903717596821],[-75.275531043670682,39.969894925624608],[-75.275463319863192,39.969778084267702],[-75.275437942475094,39.969651386630119],[-75.275413930289304,39.969597023290163],[-75.275384669265492,39.96946716502309],[-75.275379224942881,39.969439981151353],[-75.2753634357518,39.969361150519873],[-75.275319165395643,39.969358931689186],[-75.275234807974158,39.969354704930666],[-75.275105544873327,39.969346670573792],[-75.275083193315808,39.969345281193029],[-75.274973253826531,39.96934444787842],[-75.274853157415464,39.969348011109624],[-75.274801392705882,39.969349489335791],[-75.274669015235176,39.969353269485012],[-75.274416180996084,39.969323200121273],[-75.274272724970331,39.969309336485068],[-75.274147265894911,39.969285802396904],[-75.274105910636479,39.969278045476095],[-75.273861718506566,39.969283738523018],[-75.273831753231761,39.969284437059862],[-75.27349332588166,39.969298671488978],[-75.273190844917593,39.969302961822059],[-75.273172050002586,39.969296553770469],[-75.273131485371238,39.969297015225258],[-75.273079708404936,39.969291281830266],[-75.273055693204427,39.969283172637716],[-75.272807141149343,39.969199246585795],[-75.272703339813418,39.969192000653358],[-75.272647590535883,39.969188109408371],[-75.27246645624966,39.969165737416141],[-75.272326549072332,39.969129621551645],[-75.272240224149385,39.969107337608428],[-75.272116626512314,39.969075431678938],[-75.272076238963038,39.969065006377193],[-75.272073872538698,39.969050396258908],[-75.272062128341403,39.968977889056902],[-75.272045231773248,39.968873571233097],[-75.271952052365066,39.968769687294717],[-75.271945324736052,39.968762185461699],[-75.271846814888733,39.968757660464419],[-75.271755695588439,39.968753475199229],[-75.271353375223185,39.96873624031101],[-75.271248629763093,39.968731753090168],[-75.270941814068152,39.968811276984724],[-75.270745105661902,39.968734018310158],[-75.270498297811031,39.968637082173899],[-75.270236148317707,39.968040661679829],[-75.27017327290379,39.96790084479747],[-75.270010425843807,39.967541947715148],[-75.269943947378181,39.967391283330102],[-75.269930843971395,39.967391743424891],[-75.269875502528663,39.967395199041619],[-75.26948452098928,39.967419610904443],[-75.269295987426631,39.967431381561212],[-75.26913435697405,39.9674414730138],[-75.269079907859918,39.967363227225796],[-75.268915892738661,39.967127525611033],[-75.268806953111934,39.966973384454057],[-75.268794484054794,39.966955741109807],[-75.268663040859025,39.966769757965849],[-75.268544754703399,39.96674865131947],[-75.268182323258785,39.966683977537201],[-75.267883431424551,39.966546746695812],[-75.267446941733198,39.966345000681066],[-75.267359798478438,39.966295999023231],[-75.267287777567446,39.966255500058537],[-75.267207930600534,39.966210600672554],[-75.26678136002414,39.966175216691063],[-75.266517014910249,39.96607032563454],[-75.26637538061027,39.966014125179129],[-75.266183592876843,39.966009973658409],[-75.265795957896103,39.965784662881362],[-75.265579736467373,39.965464603483618],[-75.26553263070825,39.96544294459968],[-75.265383107654699,39.965374193396705],[-75.265162159104861,39.96525984323732],[-75.26515353116497,39.965255377599419],[-75.264583889690016,39.965250732374273],[-75.264297536975107,39.965372218913267],[-75.264161629360899,39.96539361741543],[-75.264054484871281,39.965410487099177],[-75.263860588940361,39.965441016340691],[-75.263598041253061,39.965370774184642],[-75.263260328592722,39.965449769152571],[-75.263140045761531,39.965477903903029],[-75.262904843070302,39.965640667089794],[-75.262860547556471,39.965671318985535],[-75.262824878612832,39.965663549637995],[-75.262813062138449,39.96566097615527],[-75.26270633412102,39.965637729939104],[-75.262712558225289,39.965626903446868],[-75.262762163358303,39.965540618993046],[-75.262783206701243,39.965504014826628],[-75.2623495999228,39.965546504365236],[-75.262316362894893,39.965684424154681],[-75.262303308098012,39.965738594112359],[-75.262203679566426,39.96581689672302],[-75.262186633127385,39.965830294214527],[-75.262152262725905,39.965867352632635],[-75.262111088966506,39.965919667715035],[-75.262107424714102,39.965924122935618],[-75.262012482234638,39.966076524232143],[-75.261981212108907,39.966109973798041],[-75.261968784007408,39.966123267779786],[-75.261873537255781,39.966158124896154],[-75.26186471445169,39.966154826067616],[-75.261690108153815,39.96608953367214],[-75.26152697079425,39.966025219541393],[-75.26142994777156,39.965986969438276],[-75.261378400702711,39.965975082826688],[-75.261313964783994,39.965987530730132],[-75.261261515520744,39.966000239492388],[-75.261194462854689,39.96602955383203],[-75.261153913716797,39.96609944239632],[-75.261090596273448,39.966156496233708],[-75.261035985338154,39.966207650924026],[-75.260744813474588,39.966296717547685],[-75.260720817845936,39.966304182428424],[-75.26071245449603,39.966306784139533],[-75.260599502297026,39.966313262392909],[-75.260576210175529,39.966314597766832],[-75.260369961848355,39.96626858453655],[-75.260333129974981,39.966251840565725],[-75.260218888639798,39.966276049853782],[-75.259306530396728,39.966469388459366],[-75.259002198361941,39.967044001620799],[-75.258971773945774,39.967490733381453],[-75.257430265824866,39.967307430064963],[-75.255976253594667,39.967326109382149],[-75.254642618299471,39.967675742340226],[-75.254112419491761,39.968505060611598],[-75.253796904713482,39.969797257446146],[-75.254362525558818,39.969866131965375],[-75.255145201464089,39.969964694078257],[-75.25511763554276,39.970097534019182],[-75.254869301633235,39.971368182839534],[-75.254803617417068,39.971625929701062],[-75.254984249343067,39.972587342776542],[-75.254996053299863,39.972644482514241],[-75.258139756908534,39.973665704815623],[-75.25821560421528,39.973675933730227],[-75.258249565151402,39.973662367966099],[-75.25830407962799,39.973620641189548],[-75.260027595258904,39.972204123448272],[-75.260214906108445,39.972335493784477],[-75.260237483874988,39.97236124466621],[-75.260264170059202,39.972377081010499],[-75.260313215678693,39.972391494177103],[-75.260402238798747,39.972397240409549],[-75.260519570410324,39.972392165376199],[-75.260811620391209,39.972361954137888],[-75.26096160134378,39.97235216203331],[-75.261170415895123,39.972335712589185],[-75.261307736692501,39.972342505635631],[-75.261431607119576,39.972361886446194],[-75.261624818937321,39.972416137993548],[-75.261816984046561,39.972498972875243],[-75.262041953438484,39.972656132969377],[-75.262925905875193,39.971942363977327],[-75.264287875846335,39.970821391873052],[-75.265246194414317,39.970045345975592],[-75.265647816252297,39.970332516335496],[-75.265813074337345,39.970220232663607],[-75.267323761851486,39.971316401537081],[-75.267347328395076,39.971416218114257],[-75.2673810250798,39.971558951588378],[-75.267387821371983,39.971587734671182],[-75.267673564164056,39.971793116282129],[-75.268428106259179,39.972327763659969],[-75.268762900904392,39.97256469254485],[-75.268820590544237,39.97262947474961],[-75.268844110098044,39.972655885730809],[-75.268857482422504,39.972647418185126],[-75.269007643099769,39.972552332156056],[-75.269481658431914,39.973111652879922],[-75.270532220319311,39.972640843486992],[-75.270586702761406,39.972615030774506],[-75.270636637811123,39.972591565058501],[-75.270682940166353,39.972569866051579],[-75.270729247972156,39.972547952709917],[-75.270741176877067,39.972542288263966],[-75.271008372460074,39.972424187087356],[-75.271469666708384,39.972217195278041],[-75.271483774491855,39.972210865140305],[-75.271503712139463,39.972232349090334]]]},"properties":{"OBJECTID_1":133,"OBJECTID":76,"ASSET_NAME":"Cobbs Creek & Karakung Golf Course","SITE_NAME":"Cobbs Creek & Karakung Golf Course","CHILD_OF":"Cobbs Creek Park","ADDRESS":"7900 LANSDOWNE AVE","TYPE":"Land","USE_":"Golf","ACREAGE":304.47773999999998,"ZIPCODE":"19151","ALLIAS":" ","GLOBALID":"3c4b2c64-6b26-4f90-9afa-dedd0f9eeda7","Shape_Length":22530.741073543872,"Shape_Area":13262997.328498222}},{"type":"Feature","id":134,"geometry":{"type":"Polygon","coordinates":[[[-75.011740964019069,40.035641008270964],[-75.011472521050493,40.036699773915096],[-75.011421911393924,40.036891834001111],[-75.012097495230208,40.036506033190506],[-75.012175662287845,40.036460293478484],[-75.011990559980759,40.036259144170188],[-75.01230505518798,40.035797159483636],[-75.012287624195849,40.035492613378764],[-75.012068655756693,40.035223835972936],[-75.01227470234096,40.034993113061859],[-75.012934558598289,40.034266442793964],[-75.013661421082446,40.033195015847078],[-75.0135830802095,40.032943668111976],[-75.013474752465569,40.032615274238097],[-75.014494859342207,40.032037330164293],[-75.015040389776033,40.031734066888028],[-75.015739238065734,40.031501803010755],[-75.01600267335526,40.031865326006297],[-75.016248143691996,40.03220206559525],[-75.016486830595369,40.032518145833507],[-75.0165444226636,40.032601508524714],[-75.016580830064854,40.032643370562575],[-75.016652314610326,40.032665570119434],[-75.016716187315737,40.032687588474097],[-75.016778998485961,40.032735935722506],[-75.016822311062526,40.032795531775314],[-75.016824467513715,40.032836578606855],[-75.016821993207998,40.032898014341157],[-75.016831406919451,40.032948019214487],[-75.016864009893993,40.032989790614565],[-75.017398092654375,40.033538376634056],[-75.01774112956106,40.033344486291512],[-75.017768310749005,40.033329541003191],[-75.017927498331616,40.03324200920401],[-75.01833326845383,40.033018890575541],[-75.018197518682754,40.032889744947475],[-75.017754454401697,40.032445819966021],[-75.017420737644898,40.032124553907252],[-75.017120685753511,40.031818728314548],[-75.016898635641837,40.031467906696349],[-75.016851871449944,40.031399443174195],[-75.016656029128796,40.031154663313103],[-75.016580233707955,40.031050369178054],[-75.015549088889955,40.030548510759317],[-75.014924614468697,40.030542425488626],[-75.014474801969556,40.030077827094338],[-75.013979100543963,40.029995739384098],[-75.013614307470874,40.029606820082897],[-75.015727291266884,40.028394605583834],[-75.015401016890436,40.028016276546801],[-75.015090447554542,40.027656154299216],[-75.015383373294256,40.027339131265443],[-75.01599851480384,40.026673373841945],[-75.016161834609605,40.026492530254956],[-75.016397201379618,40.026231908737074],[-75.016532828758102,40.026079938606422],[-75.016785242925494,40.02596002979152],[-75.01691388373267,40.025886956456738],[-75.017033497217284,40.02584880677562],[-75.017152288325761,40.025831135612634],[-75.017270607010531,40.025825166863569],[-75.017403205647852,40.025842963548534],[-75.017587077656515,40.025911760943053],[-75.017736347755871,40.025988520093847],[-75.017846740456889,40.026084851388596],[-75.018003540711604,40.026258422563025],[-75.018088931245373,40.026347511674885],[-75.018815019928908,40.027106429331852],[-75.01905938767996,40.027375786272351],[-75.019757159440644,40.02811566404781],[-75.0205536950902,40.028957446162806],[-75.021276961314385,40.029727201497714],[-75.021320158289782,40.029789721507733],[-75.021334128238237,40.02991597003534],[-75.021363085051561,40.030048430623289],[-75.021427116400261,40.030161227273688],[-75.021529909496422,40.030257374164485],[-75.02164027026987,40.030376261439947],[-75.021659035842731,40.03039647647482],[-75.021780518481521,40.030527344285915],[-75.021810496542301,40.030559638529844],[-75.021935374986128,40.030694163131685],[-75.021949046783362,40.030708891312948],[-75.021960744607711,40.030721492959877],[-75.021876634426292,40.030918617985229],[-75.021841208084879,40.030947059014522],[-75.02182381966459,40.031011167116638],[-75.021814375589074,40.031045983117906],[-75.022325619990738,40.03075423242295],[-75.022449865274254,40.030683329910367],[-75.022119159188236,40.030316699929706],[-75.022107069336428,40.030303296054697],[-75.022106258862394,40.030302434314009],[-75.021985381764253,40.030173963633324],[-75.021955912081978,40.030142642036715],[-75.021839027295755,40.030018412693224],[-75.021823784389426,40.030002212686895],[-75.021317991335536,40.029464632132758],[-75.020393307712453,40.028493893210573],[-75.018705098231607,40.026714352844401],[-75.01738015750702,40.025280183526448],[-75.016029650506155,40.023859890476686],[-75.015998071151444,40.023879563851743],[-75.015248113535478,40.02434677468478],[-75.015167677573686,40.024397360260622],[-75.015069984206178,40.024458798929537],[-75.013468512314915,40.025465922006369],[-75.011804125141765,40.026490916333088],[-75.010554913020215,40.027281664993311],[-75.00955017982389,40.027915481645763],[-75.00484731678273,40.030888672429555],[-75.004114236079886,40.031355271400543],[-75.004267627019331,40.032071298141496],[-75.003598869484804,40.032226961082557],[-75.003002441118056,40.032066790957984],[-75.002017083834716,40.032688346654766],[-75.000806373664858,40.033451836788295],[-74.999150998575132,40.034487891514779],[-74.999080392121996,40.034493012397206],[-74.999019109316919,40.034455370347153],[-74.999013842415508,40.034452134613268],[-74.998928744783527,40.034399863654265],[-74.99882869435578,40.034465739846397],[-74.998820452872337,40.034471165973372],[-74.99882402329915,40.034603424264468],[-74.99880216292496,40.034620618253498],[-74.998688340642417,40.03471014808747],[-74.998685624732985,40.034712284328471],[-74.999503459676461,40.035404582290312],[-74.999741137831791,40.035296573164295],[-75.000330044278286,40.034928042044626],[-75.002221651079495,40.034625822223319],[-75.002719992379426,40.034546177806128],[-75.006025267784096,40.034017874409116],[-75.007383839218477,40.035316183148595],[-75.007811811297032,40.035725157464697],[-75.007867126117887,40.035770402228046],[-75.008247969931617,40.035961781076402],[-75.008321387873096,40.035983299385506],[-75.008403634968175,40.035998439837485],[-75.008540115196212,40.036014874755836],[-75.008625570910581,40.036021307179993],[-75.008702906631257,40.036016564488776],[-75.008803342601837,40.036005784518828],[-75.008904311503599,40.035981839148697],[-75.008999483683525,40.035959952139443],[-75.009205338497893,40.035885801089428],[-75.009804976591596,40.035682683785083],[-75.010164329127122,40.035557287894903],[-75.010489693634824,40.035424490749335],[-75.010821206440653,40.03528085901285],[-75.011184737281596,40.035122615070925],[-75.011740964019069,40.035641008270964]]]},"properties":{"OBJECTID_1":134,"OBJECTID":77,"ASSET_NAME":"Pennypack on the Delaware","SITE_NAME":"Pennypack on the Delaware","CHILD_OF":"Pennypack on the Delaware","ADDRESS":"8201 STATE RD","TYPE":"Land","USE_":"Park- Metropolitan","ACREAGE":216.00095899999999,"ZIPCODE":"19136","ALLIAS":" ","GLOBALID":"ebb2e6f5-62cf-4321-8528-43f4f2a017d6","Shape_Length":24776.299921023656,"Shape_Area":9408964.6127966233}},{"type":"Feature","id":135,"geometry":{"type":"Polygon","coordinates":[[[-75.183158576343914,39.906481589510484],[-75.183185282352838,39.906484260706819],[-75.183186254404546,39.906484358156668],[-75.183300671895736,39.906495803957213],[-75.183529329788527,39.906518678634427],[-75.183704033574202,39.906550140841951],[-75.183845883983182,39.906583163144035],[-75.183954277291733,39.906633803494195],[-75.184095953697309,39.906671413140423],[-75.184323754130887,39.906717838384488],[-75.184816312032368,39.906779370881196],[-75.185922431872285,39.906934983775862],[-75.186468435429774,39.9070022969454],[-75.187124047104405,39.90708812837785],[-75.187402834095465,39.907126503273446],[-75.187506830083578,39.907135715238695],[-75.187605127224359,39.907137912404835],[-75.187713139142147,39.907119663747089],[-75.187815192787369,39.907101281821419],[-75.187862765052401,39.907104640828187],[-75.189056845364092,39.907262507114496],[-75.189262925323717,39.907289751160299],[-75.189539633655244,39.907324592881238],[-75.189639752661407,39.907337198710259],[-75.189702133818216,39.907343183462807],[-75.189779580412718,39.907344913089325],[-75.189812402085181,39.907343954889349],[-75.189869113896265,39.907342321042606],[-75.189931950024459,39.907328454869855],[-75.189935250969924,39.907327726686063],[-75.190000936446296,39.907312478886404],[-75.19000743145034,39.907310971473414],[-75.190017614290937,39.907307657895714],[-75.190075134251927,39.907288939927227],[-75.190113066736345,39.907276595278397],[-75.190169638164505,39.907248265734928],[-75.190231568362108,39.907217251877746],[-75.190300865479557,39.907187299885251],[-75.19044370536794,39.907125559708092],[-75.1905147790998,39.907089494261982],[-75.19067772875394,39.907006806505244],[-75.190844751507001,39.906925586194966],[-75.190969555451389,39.906857198759781],[-75.191037503707904,39.906794430292621],[-75.191093365140972,39.906735983536528],[-75.191138088262548,39.906656625284754],[-75.191188052483923,39.90649118893085],[-75.19120217484587,39.906409644737799],[-75.191623589193497,39.904023649247804],[-75.191859659862175,39.902772237551552],[-75.191970986250993,39.901942255970454],[-75.191973400936035,39.901924248223104],[-75.191981154455533,39.901866446704609],[-75.192005171554399,39.901764169385459],[-75.192010603060425,39.901741036442161],[-75.192141173050501,39.901184982849188],[-75.192252555370501,39.9005089181681],[-75.192253181312537,39.900505121767054],[-75.19301565798628,39.900573071270244],[-75.193015384792147,39.900556630772222],[-75.193015113256934,39.900540146161774],[-75.193014532138989,39.900531894372662],[-75.193014258945311,39.900515453874654],[-75.193013987376659,39.900498970164456],[-75.193013714217088,39.90048252876619],[-75.193013133099853,39.900474276977107],[-75.193012861497806,39.900457794167153],[-75.193012589963601,39.900441309556683],[-75.193012317192938,39.900424826720617],[-75.193011737279051,39.900416574057353],[-75.193011465711422,39.900400090347112],[-75.193011194143907,39.900383606636893],[-75.193010613027823,39.900375354847824],[-75.193010343051711,39.900358828825638],[-75.193010071518501,39.900342344215161],[-75.193009490402929,39.900334092426021],[-75.193008909253635,39.900325841537189],[-75.193008636095911,39.900309400138894],[-75.193008054980794,39.900301148349754],[-75.193007473865791,39.900292896560664],[-75.193007200708593,39.90027645516232],[-75.193003079894254,39.900227413222822],[-75.192969323501771,39.900006843749907],[-75.19294077499211,39.899820286397009],[-75.192920424794906,39.8997514422406],[-75.192920270137321,39.899750919809343],[-75.192871908054329,39.899587305220024],[-75.192823797617493,39.899467554636487],[-75.192773055995389,39.899341812184268],[-75.192704241410794,39.899204984135991],[-75.192634490584865,39.899093057964983],[-75.192564873794751,39.898977573948791],[-75.192490639212721,39.898861986853191],[-75.1924268168179,39.898778510632027],[-75.192393713820252,39.898735212847235],[-75.192247674482815,39.898575819216511],[-75.192247187921936,39.898575288477019],[-75.19210039391875,39.898422478597396],[-75.191904135096649,39.898232961223265],[-75.191838467498599,39.898187001138787],[-75.191755002039642,39.898117210341084],[-75.191740360584276,39.898104967714339],[-75.191705700821061,39.89807598714718],[-75.191466398412203,39.897900174004938],[-75.191226402001774,39.897758971540313],[-75.191186321950127,39.897734433421519],[-75.191159298076855,39.89771825349257],[-75.191131377116861,39.897702225623092],[-75.191095624459408,39.897681130426115],[-75.191058970337764,39.897660272781152],[-75.191026667290444,39.897642258539562],[-75.190998718985639,39.897626958942666],[-75.190970764222698,39.897611831287342],[-75.190941913542403,39.897596855715648],[-75.190913946387766,39.897582026904431],[-75.190885973909317,39.897567370961056],[-75.190857104378622,39.897552866174337],[-75.190828228389094,39.897538533328763],[-75.190799347600731,39.897524328311803],[-75.190770460353178,39.897510295235918],[-75.190741566646224,39.897496434101129],[-75.190712665378555,39.897482743080843],[-75.19068287092125,39.897469162756053],[-75.190653067310791,39.897455794857244],[-75.190618883160823,39.897440399175757],[-75.190589068258518,39.897427331944783],[-75.190553977349566,39.897412345777944],[-75.190524146766933,39.897399664712616],[-75.190494309299766,39.897387197925902],[-75.190464466997994,39.89737485986754],[-75.190293962566315,39.897310547747018],[-75.190138066835914,39.89726068044726],[-75.189958390915294,39.897203199874411],[-75.188937482693774,39.897494800373174],[-75.18899705830637,39.897924723106506],[-75.189083040234934,39.89831623012892],[-75.189063980630465,39.898822321582117],[-75.188968482395111,39.89934618687262],[-75.188778046245943,39.899692597870462],[-75.188564294018448,39.900018963587655],[-75.188250314179285,39.900284687370451],[-75.187685738154414,39.900505846564521],[-75.18709753010522,39.90066802882513],[-75.186461434385009,39.900815709419035],[-75.186408673643612,39.900827958136851],[-75.186370248726206,39.90082874132402],[-75.18595280798742,39.900837243738678],[-75.185725687473067,39.900832163201279],[-75.18544486122579,39.900903806436517],[-75.185309576205754,39.901134556940278],[-75.185175024449208,39.901345842946029],[-75.185016265969381,39.901537105490739],[-75.184757440511547,39.901687122845033],[-75.184425107667963,39.901777092703945],[-75.184218515087196,39.901889357824238],[-75.183572366608814,39.904271070887752],[-75.183037091456001,39.904375975072305],[-75.182978972049938,39.9045694886088],[-75.182641996007419,39.904741740933424],[-75.182558970035942,39.904784180615131],[-75.182540826658339,39.904793454735895],[-75.182580350631554,39.905101313844639],[-75.182612909492363,39.905354913870838],[-75.182614607264611,39.905368138205326],[-75.182638646624994,39.905555379795437],[-75.182660339157607,39.905550985732361],[-75.182746812172795,39.90553346946065],[-75.183071653784793,39.905467668991939],[-75.183140796858964,39.90627420105254],[-75.183153786435028,39.906425718635646],[-75.183153913054227,39.906427199130242],[-75.183158576343914,39.906481589510484]]]},"properties":{"OBJECTID_1":135,"OBJECTID":78,"ASSET_NAME":"Franklin D. Rooselvelt Golf Course","SITE_NAME":"Franklin D. Rooselvelt Golf Course","CHILD_OF":"Franklin D. Rooselvelt Golf Course","ADDRESS":"1954 PATTISON AVE","TYPE":"Land","USE_":"Golf","ACREAGE":144.514005,"ZIPCODE":"19145","ALLIAS":" ","GLOBALID":"ebffa731-3e2a-4f30-a0fa-fae03913a8d7","Shape_Length":11213.63396794413,"Shape_Area":6295005.092786354}},{"type":"Feature","id":136,"geometry":{"type":"Polygon","coordinates":[[[-75.072242645573709,40.093349558188926],[-75.072329657420681,40.093956822136875],[-75.072577477520781,40.094571472607576],[-75.072749052566806,40.094538201713675],[-75.074948820481524,40.093589091753714],[-75.0758818025339,40.093244669759322],[-75.077320207001989,40.092819805926908],[-75.079560850960377,40.092126544402966],[-75.079607336879306,40.0920269388374],[-75.07952364795517,40.089396706085921],[-75.079426618134562,40.087537649879316],[-75.076853919652976,40.087804748707534],[-75.076687694328925,40.087702811975873],[-75.076718357476082,40.087572764661992],[-75.076352224952146,40.087404133264705],[-75.075107930043359,40.087698138767095],[-75.074079419590021,40.087937679041154],[-75.073531782702958,40.088065165293855],[-75.072646145599862,40.088444137070674],[-75.072481805801715,40.088531110366624],[-75.072321449084342,40.088630363686157],[-75.072205779465634,40.088707228125486],[-75.071966158640336,40.088844284609095],[-75.071075869340589,40.089385773121244],[-75.070469822187945,40.089746699392052],[-75.07045676942893,40.08978295571508],[-75.070471902341879,40.089807168024336],[-75.070283210398784,40.089922064221156],[-75.070252469727862,40.089908217606528],[-75.070193834277532,40.089921612353557],[-75.069633294731247,40.090261793788471],[-75.069594802617004,40.090285320705014],[-75.06959298730483,40.090286429903657],[-75.069455597720946,40.090369822346332],[-75.06943217662581,40.090384071247449],[-75.069313621281864,40.090456198230093],[-75.068873771987199,40.09072821575684],[-75.068214848235314,40.091114501443904],[-75.068124097085928,40.09117134553879],[-75.06843175623834,40.091461743686089],[-75.068498996352844,40.091524676742303],[-75.068732576907607,40.091744256810735],[-75.069167005859967,40.091858321676369],[-75.069159650905235,40.091886042748683],[-75.069026805189708,40.092216200527936],[-75.069566235171109,40.092455699267965],[-75.069645461126711,40.092464241380753],[-75.069855041419288,40.092499594961232],[-75.070019326507847,40.092527456909906],[-75.07027974055211,40.092746887033357],[-75.070612813005312,40.093028001371643],[-75.070648266898729,40.093058351229487],[-75.070738395178495,40.093130397876685],[-75.070894834557762,40.09297218035568],[-75.071068828234687,40.092799609108411],[-75.071178771281069,40.092686910293509],[-75.071199213395843,40.092668342303739],[-75.071317656835376,40.092560754827133],[-75.071320639369063,40.092558045522814],[-75.072242645573709,40.093349558188926]]]},"properties":{"OBJECTID_1":136,"OBJECTID":79,"ASSET_NAME":"Fox Chase Farm","SITE_NAME":"Fox Chase Farm","CHILD_OF":"Fox Chase Farm","ADDRESS":"8800 PINE RD","TYPE":"Land","USE_":"Farm","ACREAGE":118.320756,"ZIPCODE":"19111","ALLIAS":"Butler Exhibit Farm","GLOBALID":"1e008937-8177-4f6b-9b76-5d57c2c857d5","Shape_Length":9759.9111388216752,"Shape_Area":5154031.5611681975}},{"type":"Feature","id":137,"geometry":{"type":"Polygon","coordinates":[[[-75.255106954303514,39.978553430448294],[-75.255131751597133,39.978731554575496],[-75.25519841805837,39.9792104156801],[-75.2552741326095,39.979706882325203],[-75.255392916919021,39.980408141163011],[-75.255424724586803,39.980657168662631],[-75.255499303292183,39.981131842473751],[-75.255502657276068,39.981153185030713],[-75.255504780807115,39.981166701879012],[-75.255159080774945,39.981332294490826],[-75.255686932988439,39.981953034977373],[-75.256089688746798,39.982426654807426],[-75.256220829630891,39.982578572178333],[-75.256942387877544,39.983414434049031],[-75.257186179130201,39.983703144535326],[-75.257256453741206,39.983786367140816],[-75.257678894224554,39.984286633507033],[-75.258561068772337,39.985309786337325],[-75.258596257863914,39.985351786636762],[-75.258737548674446,39.985243658109034],[-75.258776838917299,39.985222295269104],[-75.258822556415438,39.985197437335195],[-75.259327521137621,39.984922877097432],[-75.259129460345534,39.984673949692876],[-75.259010938298132,39.984489757957199],[-75.258911811502799,39.984302281291384],[-75.258829943039984,39.984104059132747],[-75.258788115553614,39.983930798470212],[-75.258749850359834,39.983726109350272],[-75.258737618013441,39.98359982258544],[-75.2587353557375,39.983464487371343],[-75.258749572855692,39.983273909875507],[-75.258795912246157,39.983048044160633],[-75.258796511225455,39.983045125346052],[-75.258839219987991,39.982877329699519],[-75.258855620439576,39.98281289831499],[-75.260174149700433,39.982135420578778],[-75.260154489431457,39.982111881912722],[-75.259726440301591,39.981599382931833],[-75.259592257463623,39.98144821096578],[-75.259632980506652,39.981330113745678],[-75.259741625488928,39.980988138789719],[-75.259775195847411,39.980860992670934],[-75.259797680486116,39.980707660248633],[-75.259794773121811,39.980524124440961],[-75.259788472176211,39.98043317982701],[-75.259769863677889,39.980349379684597],[-75.259708439018084,39.980184959867202],[-75.259598434886357,39.979965741887341],[-75.259536535062821,39.979880865306875],[-75.259507316983274,39.979840801298458],[-75.259382828839477,39.979670102328981],[-75.260244143127025,39.979240303981044],[-75.260276385495075,39.979215057716218],[-75.260298999163254,39.979189602554698],[-75.261173364051501,39.978337538950115],[-75.261288155709039,39.97836041413106],[-75.261444034675932,39.978445338313435],[-75.262014600619366,39.978783882218728],[-75.263215601167218,39.979488431219288],[-75.263247999003127,39.979507436793213],[-75.264256986683435,39.980110149295513],[-75.26451878655898,39.980394874904412],[-75.264946080311091,39.980897092138072],[-75.265188531689901,39.981184036115252],[-75.265605848800789,39.981686082414356],[-75.26654297698407,39.981269889330385],[-75.267436511312852,39.980864072136704],[-75.267482537160532,39.98084316837636],[-75.267816112430694,39.98069166406006],[-75.267669806746255,39.980526084294731],[-75.267486209759184,39.980342348286563],[-75.26724131482213,39.980122073551279],[-75.266951025531981,39.97989154946557],[-75.266709052596866,39.979723228138944],[-75.26643331490699,39.97955602801288],[-75.266194803284321,39.979424845228927],[-75.265823461835495,39.979237042005316],[-75.26568805508488,39.979174233124297],[-75.265672964056293,39.979168102286863],[-75.265610873786898,39.979142551364504],[-75.265586614602,39.979126279655716],[-75.265446901656944,39.979060244528313],[-75.265304374144662,39.979005269165],[-75.26494137764449,39.97885285511974],[-75.26454000496328,39.978695903004073],[-75.264462277266816,39.978669164042337],[-75.264449167153373,39.978663633653042],[-75.264403457535636,39.978644578861811],[-75.264358629442583,39.978625886420922],[-75.264312046599017,39.978606340561633],[-75.264259319101797,39.978584000975268],[-75.264212730433769,39.978564583789435],[-75.264140659978722,39.978534316342881],[-75.264076498857975,39.978507395257346],[-75.264022011623283,39.978484374134958],[-75.263978948343748,39.978466234234325],[-75.26393148697629,39.978446282661345],[-75.263879632588001,39.978424477173732],[-75.263835681185398,39.978406190037774],[-75.263782054449337,39.978384045179247],[-75.263733718346018,39.978363645701606],[-75.263681866077832,39.978341753673021],[-75.263630889039717,39.97832039594735],[-75.26362214432325,39.978316678221937],[-75.263353021536446,39.978217995943474],[-75.262907009214686,39.978030418295049],[-75.262679053508506,39.97794022818627],[-75.262619488008184,39.977922258068006],[-75.262567618644198,39.977891481414126],[-75.261919794974887,39.977623542392834],[-75.260759324407204,39.977146183411918],[-75.260711303186071,39.976138219208359],[-75.260710750721898,39.976133066186833],[-75.260704202333187,39.976068216082261],[-75.26068621453669,39.975723152021907],[-75.26058243612394,39.975665153067666],[-75.260382298431367,39.975559036583661],[-75.260341452655197,39.975534054408605],[-75.260259517574255,39.975469266176972],[-75.260184939515682,39.975400930840408],[-75.260092532005032,39.975293290414676],[-75.259966395318827,39.975120054092294],[-75.259883042528898,39.974962571769495],[-75.259852918705178,39.974888967779165],[-75.259846776619725,39.974846857453237],[-75.25983945541023,39.974803145711604],[-75.259836434765347,39.974642125811961],[-75.259840747569314,39.97459750785454],[-75.259850515622006,39.974550133221086],[-75.259843473561034,39.97454749097907],[-75.25985923256242,39.974492202323923],[-75.258548952140458,39.973967285833091],[-75.258541268856277,39.974015429131569],[-75.258620633988343,39.974639341661991],[-75.258645855350906,39.974869941360005],[-75.258815071062102,39.975428186023912],[-75.257691164013835,39.975557019654467],[-75.257555583880034,39.975116254748656],[-75.257047037796696,39.975017644680946],[-75.256989308060326,39.974264799830721],[-75.256977323519322,39.974268397503849],[-75.256920683202267,39.974285400301866],[-75.256739965217392,39.974339649061065],[-75.256572020485436,39.976072685582672],[-75.255637021129658,39.976101241308371],[-75.255685867967543,39.976366996616811],[-75.255712901607225,39.976549203853196],[-75.255810415624438,39.977042436406023],[-75.255864117172948,39.977351242773011],[-75.255928495015795,39.97766665923308],[-75.25603357335504,39.978181478727294],[-75.255106954303514,39.978553430448294]]]},"properties":{"OBJECTID_1":137,"OBJECTID":80,"ASSET_NAME":"Morris Park","SITE_NAME":"Morris Park","CHILD_OF":"Cobbs Creek Park","ADDRESS":"6600 SHERWOOD RD","TYPE":"Land","USE_":"Park- Regional/Watershed","ACREAGE":115.355141,"ZIPCODE":"19151","ALLIAS":" ","GLOBALID":"b5c90888-8214-479f-9165-f636ce70387f","Shape_Length":15839.442068994234,"Shape_Area":5024849.7379658679}},{"type":"Feature","id":138,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.097153016592017,40.016863928691009],[-75.097146351173933,40.017474192763601],[-75.097149097538107,40.017755682868604],[-75.097716782901685,40.018109200927867],[-75.098473995039285,40.018195873131233],[-75.099850164276077,40.018379586578689],[-75.101154797250587,40.018547100375557],[-75.10263207246561,40.018738397931585],[-75.104236202270783,40.018937884746144],[-75.105520728328685,40.019093910580061],[-75.105671107794592,40.019112175924327],[-75.105739608888129,40.019120495838962],[-75.106678448680782,40.019244956654092],[-75.106747742468556,40.01925414298185],[-75.10750053055645,40.019353934486418],[-75.108232343377921,40.019448726973792],[-75.108336401175762,40.018967982283108],[-75.108423003364507,40.018567878357203],[-75.108596276261764,40.017780436852767],[-75.108785413508471,40.016894268208247],[-75.108877941853748,40.016455474886413],[-75.108880238279028,40.016444582876154],[-75.108005984640442,40.016610766528586],[-75.107904723134581,40.016629865756379],[-75.107680590219914,40.016672140296038],[-75.107658378426066,40.016676329834524],[-75.107625142785494,40.016682598452419],[-75.107424076707304,40.016446905097837],[-75.107339873688559,40.016329866613475],[-75.10730077628223,40.016274795808364],[-75.10721164074738,40.016137635371564],[-75.1071531774205,40.015987902333052],[-75.107117705889308,40.015866889971136],[-75.107090137103768,40.015703447878742],[-75.107084561471581,40.015640240070546],[-75.107086484543885,40.015544976742163],[-75.107091871889679,40.015461384033181],[-75.105067525542452,40.015296125727829],[-75.103577503403883,40.014970008280166],[-75.103305366889018,40.015264969103612],[-75.102142892197278,40.015138957920001],[-75.101814718496144,40.014573926926396],[-75.101939759966342,40.014049617678076],[-75.101592454816469,40.014003797095889],[-75.100682481246253,40.013886206636059],[-75.100123359979108,40.013802474574334],[-75.099248183457831,40.013684500760284],[-75.098851386619899,40.013637022807082],[-75.098639435810981,40.013608345797223],[-75.098552138026221,40.013599724387163],[-75.098435191468141,40.013602308266847],[-75.098268148769904,40.013611663258949],[-75.098079936879529,40.013635061862544],[-75.097991556177647,40.013654160589198],[-75.097824993026748,40.013695236149715],[-75.097476685277016,40.013814030544367],[-75.097360687157988,40.014320032882246],[-75.097322665981196,40.01450148618158],[-75.097215726870829,40.01503940784022],[-75.097193452474045,40.015169697413086],[-75.097176083223999,40.015350306903606],[-75.097161197898743,40.01564328153011],[-75.097160403168559,40.015912650208449],[-75.097159934369088,40.016071336927709],[-75.097159857260962,40.016080206740028],[-75.097153016592017,40.016863928691009]]],[[[-75.101536838786075,40.02083622589879],[-75.1015280477137,40.020857228968353],[-75.10173007043322,40.020844984040906],[-75.10199965355929,40.020823027518809],[-75.102205116671854,40.020816496160961],[-75.102507435318785,40.020814971854875],[-75.102673036380367,40.020814136886464],[-75.103116145217669,40.02082153414991],[-75.103275664538373,40.020828135814114],[-75.103321024030024,40.020830012960651],[-75.103326311074525,40.020808783035726],[-75.103326555622687,40.020807801139796],[-75.103414869255971,40.020453232001955],[-75.103461497575708,40.020266022279579],[-75.103513968277383,40.020178740228637],[-75.103547407621548,40.020123116145278],[-75.103567298539161,40.020090028204251],[-75.103604773383083,40.0197503914302],[-75.103619768705244,40.019614480077209],[-75.103622077492375,40.019593556332772],[-75.103638224987847,40.019538558184337],[-75.103852257355896,40.019454236144291],[-75.104067293303544,40.019358705465208],[-75.104124380168898,40.019335603799455],[-75.104349205597188,40.019302280242485],[-75.104504763471695,40.019281017368563],[-75.104523223398644,40.019278493585503],[-75.104737251231455,40.019249238262063],[-75.104812034943279,40.019235907477075],[-75.103967679200863,40.019125386939528],[-75.103124118525102,40.019019545811346],[-75.103034251594678,40.019006205012765],[-75.102676931585037,40.018960402539221],[-75.10227819476431,40.018911766183244],[-75.10195723101657,40.018873373708495],[-75.101927649236316,40.018880204327083],[-75.101875479900968,40.018902479441323],[-75.10181917224007,40.018936867199116],[-75.101764977455019,40.018979756258084],[-75.101704104682682,40.019038424256095],[-75.101652246448936,40.019132408017974],[-75.101600217817321,40.019226700487991],[-75.101502077070094,40.019425408891216],[-75.1012843644708,40.019871166270306],[-75.101875115417826,40.020037242855615],[-75.101892095615071,40.020042016173811],[-75.101880014648899,40.020069911089834],[-75.101595400920189,40.020696314308353],[-75.101536838786075,40.02083622589879]]]]},"properties":{"OBJECTID_1":138,"OBJECTID":81,"ASSET_NAME":"Juniata Golf Course","SITE_NAME":"Juniata Golf Course","CHILD_OF":"Tacony Creek Park","ADDRESS":"1391 E CAYUGA ST","TYPE":"Land","USE_":"Golf","ACREAGE":114.078256,"ZIPCODE":"19124","ALLIAS":" ","GLOBALID":"a50a82e0-76a4-489b-8493-83e4734edff5","Shape_Length":12807.844980462693,"Shape_Area":4969228.9463134743}},{"type":"Feature","id":139,"geometry":{"type":"Polygon","coordinates":[[[-75.197174543862431,40.025562651339541],[-75.196678535050665,40.025893206055073],[-75.198914329454539,40.028630162080702],[-75.198914574818133,40.028630463060423],[-75.199608722769383,40.028389068916169],[-75.19960955525049,40.028388779259991],[-75.19990013227239,40.028817435980187],[-75.199872014670404,40.028860677912569],[-75.199865373311113,40.028964191846413],[-75.199860419084644,40.029169286386328],[-75.199882594578,40.029311519320586],[-75.199884519828288,40.029312372973656],[-75.19988642605982,40.029356031098693],[-75.19991489409864,40.029477248174359],[-75.199980220137519,40.029569665831218],[-75.200023867599938,40.029653140784838],[-75.200030290087128,40.029701940296917],[-75.200018784838377,40.029788421781497],[-75.200016084610922,40.029860289866789],[-75.200010793544322,40.029927868411484],[-75.199988686494493,40.030003536712478],[-75.199937255589859,40.030127210820908],[-75.199874826790193,40.030250640708239],[-75.199851766381386,40.03035167450431],[-75.199864531824673,40.030451387337685],[-75.199922165466603,40.030528826200154],[-75.200081460022957,40.030610636859137],[-75.20022811682972,40.030662550722106],[-75.200281998656124,40.030693363845721],[-75.20031914503376,40.030730152080764],[-75.200422917888034,40.030751502150075],[-75.200586776600844,40.030757238050342],[-75.200586865705858,40.030757237325268],[-75.200587820849321,40.03075727114166],[-75.200803409818079,40.030732439704849],[-75.200986159368526,40.030702647901371],[-75.201147733443293,40.030706234760302],[-75.201148778063157,40.030706257943727],[-75.201156640818482,40.03070643244299],[-75.201275366733029,40.030754854472626],[-75.201387031394034,40.030800395945782],[-75.201414262265985,40.030849023706558],[-75.201417981064637,40.030883893070197],[-75.201408565471596,40.030964646494624],[-75.201383113213325,40.031047497481772],[-75.201334049634681,40.031164172550234],[-75.201287991867531,40.031285821169909],[-75.201281857022636,40.031364194861297],[-75.201273637986247,40.031413080211358],[-75.201259593396102,40.03144711658765],[-75.201258548979382,40.031474927207917],[-75.201268686506126,40.031490871985909],[-75.20127514633738,40.031501034499584],[-75.201302159583349,40.03152000723113],[-75.201313189841045,40.031527754664772],[-75.201341855298296,40.031553231453849],[-75.201347100290576,40.03158154294583],[-75.201354362152216,40.031614575401619],[-75.201353313545823,40.031642498554177],[-75.20134446372596,40.031680528136697],[-75.201339910115763,40.031712582996903],[-75.201352315287295,40.031740804703851],[-75.201379790579949,40.031762114959342],[-75.201410305474582,40.031774177184452],[-75.20143347719609,40.031774691375404],[-75.201434521832496,40.031774714556249],[-75.201452784613338,40.03178319370322],[-75.201464959056125,40.031788845548661],[-75.201466873589609,40.031809588584345],[-75.201465267419422,40.031834413427823],[-75.201481697056892,40.031845108905586],[-75.201500181464496,40.031854834544895],[-75.201520712699548,40.031856279427579],[-75.201521667779303,40.031856346571523],[-75.201560075835246,40.031837532623236],[-75.201594951827289,40.031805185607354],[-75.20163171589607,40.0317583896393],[-75.201663082308556,40.031724832170269],[-75.201666784808779,40.031720871520854],[-75.20177935376779,40.031663337137843],[-75.201803977439468,40.031659455939767],[-75.201825405821182,40.031656078682779],[-75.201868756990905,40.031657040505898],[-75.201869801625648,40.031657063682779],[-75.201887996387256,40.0316696651428],[-75.201896047911006,40.031675241687402],[-75.201913640470991,40.031708752879361],[-75.201930313359469,40.031730858587707],[-75.201956338853861,40.031746177300867],[-75.20198208980834,40.031755103606315],[-75.202015500297136,40.03176084810314],[-75.202132630154651,40.031793309451174],[-75.202270408356355,40.031853292152753],[-75.20233434953569,40.031907497612508],[-75.202355395742231,40.03195661052478],[-75.202374436361481,40.032023275534478],[-75.202379618142814,40.032047975246847],[-75.202390258186313,40.032098689960996],[-75.202405077776277,40.032134952490999],[-75.202457357870472,40.0321876342012],[-75.202468825503729,40.032222236605513],[-75.202473547158917,40.032266502199249],[-75.20249320034614,40.032338086732693],[-75.202523525892758,40.032380466807297],[-75.20256633133161,40.032430484875597],[-75.202566264942263,40.032431129422221],[-75.202569052872136,40.032434359185771],[-75.202569389207042,40.032461277803428],[-75.202553154522619,40.032499213944959],[-75.202534524257217,40.032525902888004],[-75.202496294531542,40.032595762940616],[-75.202491739628243,40.032702930823092],[-75.202498080175701,40.032722336707856],[-75.202497629970736,40.03275881103685],[-75.202519401085709,40.032824500422862],[-75.202545169118764,40.032891314609898],[-75.202577016159196,40.032939632682798],[-75.202582850359519,40.032963567484863],[-75.202578929113074,40.03301782180322],[-75.202569525671251,40.033049224023294],[-75.202564792795513,40.033051031877186],[-75.202560250694276,40.0330634640844],[-75.202480938932368,40.033095861035989],[-75.202435299915678,40.033127969588158],[-75.202429788957261,40.033167178832969],[-75.202426450345115,40.033256117568968],[-75.202425052757221,40.03329334844922],[-75.202389244679338,40.033350515701109],[-75.202338036599073,40.033419564349295],[-75.202339041282883,40.033445381450825],[-75.202387610711909,40.03351188243407],[-75.202379324815254,40.033581484927659],[-75.202375174707655,40.03359059211261],[-75.202347818658836,40.03362905550361],[-75.202324054335392,40.033652334668133],[-75.202323122589959,40.033677154653532],[-75.202331803358746,40.033697012501669],[-75.202355436879444,40.033713062819359],[-75.202387647881494,40.033715846912969],[-75.202408380017133,40.033720323450254],[-75.202419704738361,40.033722768588099],[-75.202449987790985,40.033741035082372],[-75.202472121590802,40.03376119221867],[-75.202477769380636,40.033769048095685],[-75.202488757507709,40.033784332260929],[-75.202511124303598,40.033798283042692],[-75.202535641207263,40.033798826832303],[-75.202536685875216,40.033798850003109],[-75.202562846208281,40.033797423704748],[-75.202563670722697,40.033797378922131],[-75.202588960571546,40.033805184808813],[-75.202610787340987,40.033805668916145],[-75.20261183200904,40.033805692086268],[-75.202638685027026,40.033792869030933],[-75.202684336018336,40.033771068130065],[-75.202724935354141,40.033746169250321],[-75.203197183520999,40.033560368470411],[-75.203563282925018,40.033408776891285],[-75.203563815108538,40.033408557132738],[-75.203607261191124,40.03342916764263],[-75.203751346468209,40.033469093221534],[-75.203860572940371,40.033485932520222],[-75.20395377150534,40.033497595146443],[-75.203953916153452,40.033497613670008],[-75.204052144058451,40.033498160312696],[-75.20415162230951,40.033489122692082],[-75.204219151675773,40.033474657375656],[-75.204298582697433,40.033452474739335],[-75.204429780732568,40.033407407873312],[-75.204512345571644,40.033373107591103],[-75.204865417929099,40.033318111609177],[-75.205190996266865,40.033325325945498],[-75.205192040928367,40.033325349092188],[-75.205434209743572,40.033393535165615],[-75.205610530784853,40.033478970390682],[-75.205970260827556,40.033675230459068],[-75.206290537958211,40.033851819782988],[-75.206732848451793,40.034037288648328],[-75.207055762796884,40.034119788492895],[-75.207307155154311,40.034148833394674],[-75.207414616511613,40.034182738409747],[-75.207478500876164,40.034227550266699],[-75.20749304310273,40.034276869546716],[-75.2075453800514,40.034338224011776],[-75.207591381491312,40.034374240802734],[-75.207668526593508,40.034405346323737],[-75.207770009288907,40.034418792062958],[-75.207872686505596,40.034421064703501],[-75.207873731184918,40.034421087825784],[-75.207926815898929,40.034413863623016],[-75.207977362075297,40.034377184439528],[-75.208000364852978,40.034297898165683],[-75.208040725635328,40.034241394949326],[-75.208054384730573,40.034235161387841],[-75.208096312445278,40.034216026722717],[-75.20822450330428,40.034176171564972],[-75.208235594572741,40.034171211934378],[-75.208235428485409,40.034170795600232],[-75.20810883914578,40.033856545848572],[-75.20806156125191,40.03373569426163],[-75.207891362727551,40.033006167077673],[-75.207089622654436,40.033074807750332],[-75.206042667064139,40.032407666677869],[-75.205591152613366,40.032603677079734],[-75.205520074733045,40.032635945850352],[-75.205078575083789,40.032029028162221],[-75.204887929041732,40.031765486988149],[-75.204590330099762,40.031355510235393],[-75.204237386371759,40.030872273401421],[-75.203759636242097,40.030219154019285],[-75.20373799919021,40.030190400844639],[-75.203722150680946,40.030169340822212],[-75.203924040296911,40.03010800118237],[-75.204562811921022,40.029857099934041],[-75.204188035873798,40.029332439088684],[-75.205503874911912,40.028776589977802],[-75.205401770141236,40.028636983423112],[-75.205362749466289,40.028581965899363],[-75.205187702913022,40.02833138286335],[-75.205183905388552,40.028325947661543],[-75.204999608048198,40.028072554521103],[-75.204861256488101,40.027903768908679],[-75.204387921880382,40.027230410343115],[-75.204280091151162,40.02708575718281],[-75.203976251012605,40.026692927406678],[-75.203826151903272,40.026497993261934],[-75.203691446600743,40.026342298318276],[-75.203529933413108,40.026201854708489],[-75.203258922595609,40.0260330526866],[-75.203006520995544,40.025917807491076],[-75.202845288603314,40.025864602416931],[-75.202642707957565,40.025813164930426],[-75.202478569821125,40.02578446433386],[-75.202417209439403,40.025777525035764],[-75.202416380942978,40.025776023605125],[-75.202184536387605,40.025749904829446],[-75.201946636488657,40.025747507996535],[-75.201743717522518,40.025761733739472],[-75.201523297815953,40.02579285921567],[-75.201066884757964,40.025870609201341],[-75.200406089680229,40.026001446457542],[-75.200153135023214,40.026050574383788],[-75.199747327983445,40.026128002105864],[-75.19947790002557,40.026166678705479],[-75.19925218517298,40.026189038039703],[-75.19905884303769,40.026197708970336],[-75.198731552864643,40.026180354408801],[-75.198490664262778,40.02615771416729],[-75.198236149047986,40.02609875568028],[-75.198010045894634,40.026031782858148],[-75.19775522998728,40.025931037917161],[-75.197437641163745,40.025755422912724],[-75.197174543862431,40.025562651339541]]]},"properties":{"OBJECTID_1":139,"OBJECTID":82,"ASSET_NAME":"Walnut Lane Golf Course","SITE_NAME":"Walnut Lane Golf Course","CHILD_OF":"Wissahickon Valley Park","ADDRESS":"700 WALNUT LA","TYPE":"Land","USE_":"Golf","ACREAGE":89.809201000000002,"ZIPCODE":"19128","ALLIAS":" ","GLOBALID":"70b59cde-b392-44f0-acbf-856db6db9d33","Shape_Length":12307.747777354909,"Shape_Area":3912073.271310057}},{"type":"Feature","id":140,"geometry":{"type":"Polygon","coordinates":[[[-74.986301703243853,40.091502470488173],[-74.986351717399714,40.091547282800633],[-74.986395577719946,40.091571351461333],[-74.986452205493578,40.091581763235972],[-74.986502890265328,40.091587701578035],[-74.986560424353101,40.091577315950282],[-74.986606119784255,40.091561598812206],[-74.986796232396756,40.091429069170594],[-74.986981660743766,40.091298383748892],[-74.987066683506001,40.091229936149809],[-74.986821554038841,40.091023918727075],[-74.986800112751069,40.091038481739673],[-74.986786555382693,40.091047690012324],[-74.986674688761084,40.090952734266196],[-74.986218160632447,40.090600097266488],[-74.986173878091364,40.090543489866555],[-74.985984706658286,40.090382112270078],[-74.986651303059318,40.089859814708255],[-74.98774011388339,40.089006685682243],[-74.988320360737873,40.088378732642006],[-74.988651417371912,40.088030758227703],[-74.988731107179447,40.087569040060856],[-74.989161258212192,40.087211676067412],[-74.990498718328794,40.086100416093103],[-74.991926924776664,40.086913116805199],[-74.991549769823493,40.087342595353547],[-74.991071657517722,40.087887029459175],[-74.99141533582285,40.088738971581563],[-74.991572293887202,40.089127374216105],[-74.991636270759287,40.089285687615209],[-74.991701758572418,40.089393829896707],[-74.991752561766361,40.089477722614419],[-74.991854789718701,40.089646532079662],[-74.991920411660047,40.089754912613756],[-74.99200458843795,40.089778389469622],[-74.992355200967268,40.089524169272515],[-74.992598018928319,40.089350290761487],[-74.992714267858275,40.089410371825998],[-74.992827087138821,40.089334925193505],[-74.992824709626305,40.089383585114334],[-74.993011311304244,40.089557875646364],[-74.99310302521674,40.089610799048742],[-74.993367367380174,40.089748478089845],[-74.993551569592682,40.089843789529361],[-74.993617114805531,40.089912483416747],[-74.993986614678178,40.090299725565764],[-74.994106232842924,40.090425085123059],[-74.994125801100935,40.090453645858084],[-74.994422928220388,40.090252453239287],[-74.995349901917095,40.089606319765494],[-74.994474715205627,40.088843194487715],[-74.994025934783394,40.088453855511403],[-74.994041223603034,40.088421867584877],[-74.994065804230218,40.088370443029078],[-74.994084130912441,40.088323459440993],[-74.994100466609694,40.088273707800695],[-74.994123863498075,40.088202451265111],[-74.99413974530141,40.088154080881495],[-74.994151679952793,40.088060003992744],[-74.994157238561556,40.088016180656915],[-74.994160176318857,40.087943579371455],[-74.994156285749867,40.087843138183089],[-74.994142132629037,40.087716283130426],[-74.994119226801942,40.087460833690841],[-74.994085117319187,40.087047793403855],[-74.994047820265848,40.086716280635855],[-74.993969031107156,40.085900392490728],[-74.993958507561914,40.085756036540161],[-74.993852199618729,40.085281216998879],[-74.993833761879543,40.085199251963957],[-74.993824273989745,40.085013378147835],[-74.993789676752982,40.084229275715764],[-74.993759103230303,40.083786965078382],[-74.993755830619492,40.083683520083724],[-74.993767256737101,40.083518943447331],[-74.993787853967874,40.08343364614224],[-74.993805940558644,40.083358744578959],[-74.993837435635427,40.08328042784531],[-74.99389153154533,40.083162149332281],[-74.993938074547685,40.083078866334922],[-74.993974222315245,40.083024952937109],[-74.994034610809052,40.082934885307232],[-74.994109770264444,40.082854430272747],[-74.994211163748346,40.082756945166913],[-74.994332005123169,40.082665288509119],[-74.99475488213568,40.082358264010068],[-74.994936668233478,40.082233188473971],[-74.995633775478638,40.081753549603363],[-74.996073190221793,40.08145630864211],[-74.996333046358771,40.081286504980341],[-74.996963721786727,40.080877544686729],[-74.997366301858762,40.080606591855776],[-74.997490930923064,40.08050912531796],[-74.997567285540754,40.080441972165701],[-74.997435363469904,40.080330566091568],[-74.997412331790599,40.080313735856457],[-74.99736332868062,40.080289675175067],[-74.997303555284461,40.080275028522593],[-74.997252660254603,40.080272985920239],[-74.997216037013416,40.080277278113513],[-74.997158072198175,40.080293874932131],[-74.996105999740166,40.080895236435566],[-74.995592788613322,40.081189681633568],[-74.994336680525706,40.08191033298818],[-74.992813131862803,40.082786988824097],[-74.991603533143078,40.083480128487068],[-74.990717377405531,40.083988526920614],[-74.990514977416154,40.084095024871438],[-74.990306603569294,40.084192785579205],[-74.98938183748524,40.084600322478238],[-74.989179493632122,40.084698197217058],[-74.988945493199253,40.084829032630289],[-74.988790742300935,40.084925135070357],[-74.988532220378701,40.085109431017749],[-74.988372495746759,40.085239573739855],[-74.987370425633969,40.086049832641358],[-74.987100046649999,40.086305135636088],[-74.986943885734675,40.086483714292662],[-74.98676504483079,40.086718465138723],[-74.986505479725452,40.087093710991894],[-74.98611536001583,40.087653096520249],[-74.986008739186403,40.087823638353072],[-74.985676507899868,40.088414901293575],[-74.985599810345988,40.088554292610318],[-74.985412479852727,40.088892278959719],[-74.985348786159037,40.089001707953855],[-74.985316610890919,40.089053814961908],[-74.985176732040699,40.089255234063693],[-74.985072686443303,40.089381345992074],[-74.985040785656608,40.089417678247301],[-74.984930261646738,40.089534891165727],[-74.984856948111585,40.08961039129845],[-74.984792484615028,40.089671111441625],[-74.984731083648612,40.089726695259273],[-74.984665209832158,40.089784278132065],[-74.984482726721623,40.089932312266228],[-74.984467553783546,40.089965682257997],[-74.984470620794838,40.089996395034404],[-74.984504058315451,40.090041168002216],[-74.985450816031019,40.09081319052175],[-74.986301703243853,40.091502470488173]]]},"properties":{"OBJECTID_1":140,"OBJECTID":83,"ASSET_NAME":"Walton Run","SITE_NAME":"Walton Run","CHILD_OF":"Walton Run","ADDRESS":"11000 ACADEMY RD","TYPE":"Land","USE_":"Park- Watershed\\Conservation","ACREAGE":90.014874000000006,"ZIPCODE":"19154","ALLIAS":" ","GLOBALID":"a88985f0-c45b-40bf-856e-fa892c735049","Shape_Length":15709.078454980432,"Shape_Area":3921032.1515745069}},{"type":"Feature","id":141,"geometry":{"type":"Polygon","coordinates":[[[-74.995491041914946,40.062376810923794],[-74.995664181634169,40.062478082895225],[-74.996413287654519,40.0629038609909],[-74.998051844504573,40.063842615440223],[-74.998408012677373,40.064041656522384],[-74.998454442870482,40.064067603539435],[-74.998492370728144,40.063927488076068],[-74.998522478521565,40.063796714990254],[-74.998569839798236,40.06373757335799],[-74.998888338059999,40.063339847206109],[-74.999146883751195,40.063016983384408],[-74.999270057521812,40.062854135660558],[-74.999445987717408,40.062708167112994],[-74.999465045056596,40.062692355523296],[-74.999647345414886,40.062541101262362],[-74.999647955280224,40.062464887671062],[-74.999693054928386,40.062490865429034],[-74.999881461667343,40.062599390374658],[-75.000595664987515,40.062990944159061],[-75.000872864684538,40.063145956858605],[-75.001052290052513,40.06324744114643],[-75.00116868057998,40.063313113637896],[-75.001406339719765,40.063446482494051],[-75.001595601155273,40.063550106938592],[-75.001842634902346,40.063697037527625],[-75.002128930694653,40.06385443617539],[-75.002434527552793,40.064025698928084],[-75.00248058705283,40.064051511071256],[-75.00271850884188,40.063872346169568],[-75.002892479286302,40.063741199451847],[-75.003558693003129,40.063213999699244],[-75.003871164236173,40.062969914251369],[-75.0041981913635,40.062713192452875],[-75.004457777249328,40.062509410355737],[-75.004982951837064,40.062106196782835],[-75.005899695158234,40.061383280238289],[-75.006066295405745,40.061250048126816],[-75.006915444914924,40.060590701483271],[-75.007303699682282,40.060281240619425],[-75.00758601892052,40.060061438454696],[-75.007733899202591,40.059946338023977],[-75.007882125325722,40.059822669367279],[-75.008162497364154,40.059604963022224],[-75.008458055764621,40.059368916886719],[-75.008572853864507,40.05927723394052],[-75.008733047762036,40.059156919730142],[-75.008464081397989,40.059000428462696],[-75.008155565227483,40.058819864257536],[-75.008000726390762,40.058729241784569],[-75.007617706742934,40.05851010669921],[-75.007452942493288,40.05841395640531],[-75.007375281476556,40.058450880616235],[-75.006630856505097,40.058804815330326],[-75.006074836989939,40.059069167123702],[-75.005595555617049,40.059293086872501],[-75.005594684284631,40.059293494063567],[-75.00535614250856,40.059407362234943],[-75.005319959335608,40.05942463443094],[-75.004964897026895,40.059594121421171],[-75.004752891824168,40.059989141101894],[-75.004268255358141,40.060309396249188],[-75.004004973204687,40.060067946536108],[-75.004001462424455,40.060064726929454],[-75.003969617817191,40.060035522885848],[-75.003669934367096,40.060184484245383],[-75.003223793712465,40.06031031932956],[-75.00283320360559,40.06042571309505],[-75.002649262282404,40.060477954729024],[-75.002030695461087,40.060653633053228],[-75.002017889420515,40.060636970668128],[-75.001920135399345,40.060509782187822],[-75.00159409945104,40.0600901308826],[-75.001534318252666,40.060057948428003],[-75.001507173377789,40.060043335289031],[-75.001402285169874,40.059985904474772],[-75.001399304723179,40.059984272531509],[-75.001294688031578,40.059920579412356],[-75.001250702028386,40.059893191700311],[-75.001220002410463,40.059874077333276],[-75.00118136780776,40.059844911874961],[-75.001105058839514,40.059786124525573],[-75.001060837827623,40.059732939975554],[-75.001013625851741,40.059676157080766],[-75.000874021721913,40.059517549084241],[-75.00076181850028,40.059390071448568],[-74.999998016132452,40.059418860812492],[-74.999093080160335,40.059453680297402],[-74.999013334309979,40.059456477138596],[-74.998961030674877,40.05946228550048],[-74.998908728202366,40.059468093866641],[-74.998850018519491,40.059480808622837],[-74.998792750969557,40.059503185753499],[-74.998753543465881,40.059518506585881],[-74.99865018538344,40.059574868278553],[-74.996697337099363,40.060601259005047],[-74.996174693333174,40.060875854875825],[-74.99597733854543,40.060984090055271],[-74.995726915449026,40.061116940359405],[-74.99497181501971,40.061534225828858],[-74.994656949533933,40.061896166231847],[-74.994938281270166,40.062058240891218],[-74.995366303239408,40.062303849090945],[-74.995427771616974,40.062339802927696],[-74.995491041914946,40.062376810923794]]]},"properties":{"OBJECTID_1":141,"OBJECTID":84,"ASSET_NAME":"John Byrne Golf Course","SITE_NAME":"John Byrne Golf Course","CHILD_OF":"John Byrne Golf Course","ADDRESS":"9550 LEON ST","TYPE":"Land","USE_":"Golf","ACREAGE":84.961374000000006,"ZIPCODE":"19114","ALLIAS":" ","GLOBALID":"7fdfcf2d-f23b-44ce-8f7c-78c1d08e6a45","Shape_Length":10414.969374541548,"Shape_Area":3700902.5844016559}},{"type":"Feature","id":142,"geometry":{"type":"Polygon","coordinates":[[[-74.986789270738313,40.056984038822982],[-74.986846152394889,40.057035357605407],[-74.986917600681494,40.057090612941266],[-74.988187890741898,40.056983228547367],[-74.988499344974528,40.056956210680916],[-74.988744877617634,40.056934910757981],[-74.988967625421694,40.056915273057733],[-74.989045902590419,40.0569083715245],[-74.989655713063513,40.056854605835902],[-74.989708771751836,40.056849927289697],[-74.989941870450494,40.056829374028979],[-74.990017003753039,40.056898329233526],[-74.990105556780449,40.056985755153711],[-74.99026858282889,40.056984226196242],[-74.990457930311592,40.056974255494687],[-74.990749843364966,40.056823374591801],[-74.991083267009799,40.056639006904049],[-74.991569387710783,40.056358487195439],[-74.991903691386099,40.05615236048412],[-74.992148481839607,40.055998529240732],[-74.992301254685017,40.055900564291989],[-74.99241037700267,40.055830590084014],[-74.992526725573484,40.055757158825571],[-74.992825594864826,40.055551086438946],[-74.992892532530647,40.055501851122195],[-74.992954624304573,40.055456181232017],[-74.993217325851987,40.055268295660177],[-74.993251155002554,40.055242609770758],[-74.993358666340313,40.055160980408907],[-74.993542463275233,40.055016836196216],[-74.993556260962421,40.055006014753623],[-74.993355485102896,40.05483241501949],[-74.993105463806074,40.054624469420801],[-74.992533309877203,40.054106706536032],[-74.992908956769199,40.053856001722338],[-74.993027535877687,40.053778281336228],[-74.993170643336086,40.053685528560528],[-74.993167542531651,40.053682859079572],[-74.992819237764238,40.053383088186692],[-74.992285574138648,40.052916564865697],[-74.991594652701394,40.052310148785566],[-74.991443137403607,40.052163157182513],[-74.991174116359048,40.051923590942479],[-74.990919742339642,40.051697422357712],[-74.99045290250497,40.051291815634933],[-74.990185786391038,40.051414254099527],[-74.989843538354279,40.051583886855312],[-74.989672193520448,40.05167414316108],[-74.989474379981772,40.051776466433367],[-74.989290720794642,40.051879129529958],[-74.989005165363537,40.052048308436262],[-74.988682817706362,40.052251084369061],[-74.988474234759849,40.052385813542806],[-74.988253041981622,40.052540204173845],[-74.988073137680161,40.052666549244833],[-74.987921913237514,40.052784508950175],[-74.988165061671936,40.053019026834001],[-74.988276167116041,40.053132404848547],[-74.988367703528155,40.053219300302139],[-74.988563847716364,40.053405501106219],[-74.988712519885567,40.053552144405558],[-74.988358090859165,40.053788630557207],[-74.988101600646601,40.053960064088102],[-74.987769571243717,40.05418198423019],[-74.987535083327231,40.054338709423973],[-74.9873347443786,40.054477896108239],[-74.987279188582178,40.054516493645629],[-74.987275025425802,40.054519385976732],[-74.987094683766259,40.054636140800909],[-74.987085824718861,40.054641876595461],[-74.986931931921248,40.054751296413535],[-74.986922871717695,40.054757738300943],[-74.986823256343982,40.054826121306291],[-74.986762451111773,40.054865908808551],[-74.986718922211452,40.054894391631571],[-74.986473531404911,40.055062715990964],[-74.98628159917692,40.055194213405265],[-74.986175488257516,40.055265399627814],[-74.985832400869199,40.055495561731419],[-74.985419551947629,40.055774190424408],[-74.985434178462526,40.055787552021805],[-74.98608985221378,40.056386509442142],[-74.986789270738313,40.056984038822982]]]},"properties":{"OBJECTID_1":142,"OBJECTID":85,"ASSET_NAME":"Fluehr Park","SITE_NAME":"Fluehr Park","CHILD_OF":"Fluehr Park","ADDRESS":"4800 GRANT AVE","TYPE":"Land","USE_":"Park- Community","ACREAGE":61.501691000000001,"ZIPCODE":"19114","ALLIAS":" ","GLOBALID":"869d4d9e-b376-4b2a-84b5-b741f4552d50","Shape_Length":7095.179215014874,"Shape_Area":2679003.1796125569}},{"type":"Feature","id":143,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.192644452956642,39.968426297265161],[-75.192880415747624,39.969022117278129],[-75.192952244415167,39.969203486198431],[-75.193237389928754,39.969912429063704],[-75.193503620544647,39.970574333321458],[-75.193614442327132,39.97084339158927],[-75.193720588767874,39.971101097393976],[-75.193734105551911,39.971133913176907],[-75.1938993668238,39.971535139024319],[-75.194173679415044,39.972220028645914],[-75.194612576691739,39.973315815550158],[-75.19485636325291,39.973935961787902],[-75.195097369433867,39.975060649154855],[-75.195657705637259,39.974994095887944],[-75.19566168058482,39.974993623941167],[-75.195697523063942,39.974975268156847],[-75.195680103885351,39.974962251007341],[-75.195685396996026,39.974940553645951],[-75.195693283332346,39.974929247656284],[-75.195927635089674,39.974769129088344],[-75.196433284525426,39.974418713603797],[-75.19684608369802,39.974096656286569],[-75.197143608585392,39.973843792916298],[-75.19729198843558,39.973711611235011],[-75.197394797095498,39.973596786290841],[-75.197550501306964,39.97342458233593],[-75.197708384002226,39.973234055119036],[-75.197831148618846,39.973024950869934],[-75.19789605788921,39.972877838367232],[-75.197971751433357,39.972706285308227],[-75.198020738376243,39.972595263441036],[-75.198061277929327,39.972452548204039],[-75.198097046516452,39.972294898092393],[-75.198110618470935,39.972092550074052],[-75.198111049588917,39.971882447682525],[-75.198103040790457,39.971646724887393],[-75.198101837128533,39.971611277756701],[-75.1980437224382,39.97133098418935],[-75.197925387230086,39.970976660744448],[-75.197783964078113,39.970679493443122],[-75.197599631326867,39.970408146680384],[-75.197446570579004,39.970206967360227],[-75.197280427245275,39.970021544599177],[-75.197071289328548,39.969840486357256],[-75.196916113998853,39.9697194172835],[-75.196706862783046,39.969565131933848],[-75.19652364874517,39.969454122519274],[-75.196327183562175,39.969353561497456],[-75.196060008257206,39.969236244335214],[-75.195858850029325,39.969149099438646],[-75.195613263883459,39.969052928163627],[-75.195336109512809,39.968962942614944],[-75.195088637247167,39.968897154308948],[-75.194624234611155,39.968781094939295],[-75.194045576706074,39.968636601773412],[-75.193926043757315,39.968603740886131],[-75.193265108925843,39.968442052260698],[-75.192621310204004,39.968286921703651],[-75.192644452956642,39.968426297265161]]],[[[-75.202899122345798,39.974384557262916],[-75.202443893774529,39.974434422826967],[-75.202164273370101,39.974466319226821],[-75.201284704327904,39.974564245654008],[-75.200901017878039,39.974600176090398],[-75.200174852391896,39.974668173450063],[-75.199336062467566,39.974765879330427],[-75.199338883490043,39.974774335805307],[-75.199531292867817,39.975351131327173],[-75.199531854951204,39.975352816987588],[-75.19953768135079,39.975370280933106],[-75.200725737977649,39.975225258964898],[-75.200750774663675,39.975014835706482],[-75.202961132514602,39.974802390707339],[-75.202900885077923,39.974384363929943],[-75.202899122345798,39.974384557262916]]],[[[-75.197056191337452,39.974350864611829],[-75.196824140887543,39.974508942657565],[-75.196573731905787,39.974670735663047],[-75.196393458709636,39.974791216291962],[-75.196189038493657,39.974931640956726],[-75.196203056410496,39.974930216680299],[-75.196287824628754,39.974921602796918],[-75.197067605236185,39.974836999862077],[-75.197099217151205,39.974833570213235],[-75.198670140975025,39.974663115022608],[-75.198669203454173,39.974658236854559],[-75.1986663701407,39.97464350007526],[-75.19850444501742,39.973801281135309],[-75.198432278486635,39.973399119766988],[-75.198265985324355,39.973501056886285],[-75.198001452966423,39.973696707653183],[-75.197506483250038,39.974093162765001],[-75.197286525172402,39.97426694762418],[-75.197266230310163,39.974249955477816],[-75.197248084730063,39.974234762696696],[-75.197056191337452,39.974350864611829]]]]},"properties":{"OBJECTID_1":143,"OBJECTID":86,"ASSET_NAME":"Philadelphia Zoological Gardens","SITE_NAME":"Philadelphia Zoological Gardens","CHILD_OF":"West Fairmount Park","ADDRESS":"3400 W GIRARD AVE","TYPE":"Land","USE_":"Zoo Habitat","ACREAGE":55.906574999999997,"ZIPCODE":"19104","ALLIAS":" ","GLOBALID":"e48619f4-fbdc-4460-b05c-a9503b1b0ae2","Shape_Length":10767.471058585274,"Shape_Area":2435280.4907987015}},{"type":"Feature","id":144,"geometry":{"type":"Polygon","coordinates":[[[-75.258637317200112,40.057286303432747],[-75.258244966345131,40.057613878960382],[-75.258107506483071,40.057724449893449],[-75.257810607700293,40.057963272117846],[-75.257440643759281,40.058256423750151],[-75.2570651578324,40.058555946949873],[-75.256990875809223,40.058614678755163],[-75.256741678601102,40.058811705008715],[-75.256734382091366,40.058817474262376],[-75.256463450565235,40.059031592132264],[-75.254307378895774,40.060533283655111],[-75.254292897160624,40.060543369192608],[-75.25430091857676,40.060550098100201],[-75.254445830036431,40.060671654123539],[-75.255122419118621,40.060820235510782],[-75.256057564111259,40.061022881059323],[-75.256338958945861,40.061087644408083],[-75.256700575329987,40.06118220094536],[-75.257489762499944,40.061382942234914],[-75.258381415206756,40.061617990377279],[-75.259059591857664,40.061789109946353],[-75.260281178392731,40.062105748932694],[-75.260420018575147,40.0614824601641],[-75.259420630218827,40.061357158181927],[-75.258576092603235,40.061137095077115],[-75.258687576990084,40.060599267115705],[-75.258792940045879,40.060087174539447],[-75.259094052721608,40.05983302787628],[-75.260004439175248,40.059752995392998],[-75.260498960621973,40.059326034324855],[-75.261129045810321,40.058780788472845],[-75.261725972839102,40.058263786133757],[-75.261718581290694,40.057475701479028],[-75.261709363897097,40.056623212698838],[-75.261700819811111,40.055898274647824],[-75.261387117396751,40.055519597786727],[-75.260410720659394,40.05433130736948],[-75.258852297448868,40.055305105307838],[-75.259458237271872,40.055970466281707],[-75.258972040320927,40.056234547195636],[-75.258692401583161,40.056385897831099],[-75.259127315215025,40.056865158087973],[-75.259144545699414,40.056884145096241],[-75.259183578572376,40.05692715742164],[-75.259121973575674,40.056970344053767],[-75.259069689087127,40.056950355606958],[-75.259051064978138,40.056943234985035],[-75.258637317200112,40.057286303432747]]]},"properties":{"OBJECTID_1":144,"OBJECTID":87,"ASSET_NAME":"Manatawna Farm","SITE_NAME":"Manatawna Farm","CHILD_OF":"Manatawna Farm","ADDRESS":"130 SPRING LA","TYPE":"Land","USE_":"Farm","ACREAGE":54.28595,"ZIPCODE":"19128","ALLIAS":" ","GLOBALID":"d46c2c13-6f93-4fcd-bac5-d0e8a25d971d","Shape_Length":8850.7611466206599,"Shape_Area":2364686.477661035}},{"type":"Feature","id":145,"geometry":{"type":"Polygon","coordinates":[[[-75.092564566263476,40.066637728705643],[-75.092393484136778,40.066539272375437],[-75.090632375913998,40.065525737240485],[-75.090429007911496,40.065408691921569],[-75.090427818393266,40.065409868172154],[-75.087412068635174,40.06839289855553],[-75.092572832750307,40.071073241762591],[-75.092655615698533,40.071116232463204],[-75.093913771361798,40.07176961108695],[-75.093914604710491,40.071770043923017],[-75.094123261202625,40.071565978938125],[-75.096685719139941,40.069059779632802],[-75.09434892785103,40.067704888899002],[-75.09282350300056,40.069628220050781],[-75.090507171468772,40.068525768669353],[-75.092564566263476,40.066637728705643]]]},"properties":{"OBJECTID_1":145,"OBJECTID":88,"ASSET_NAME":"Burholme Park","SITE_NAME":"Burholme Park","CHILD_OF":"Burholme Park","ADDRESS":"7370 CENTRAL AVE","TYPE":"Land","USE_":"Park- Community","ACREAGE":52.661580999999998,"ZIPCODE":"19111","ALLIAS":" ","GLOBALID":"794fa616-2881-4147-ae11-b8387eb8263b","Shape_Length":8874.9162131769335,"Shape_Area":2293929.2416035305}},{"type":"Feature","id":146,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.155819962923971,40.033918648318021],[-75.155777656437706,40.034113271952528],[-75.155713988325545,40.034398320257971],[-75.15569012115877,40.034504986836389],[-75.15563878823508,40.034738521485949],[-75.155577154325385,40.035019632287039],[-75.155515990285082,40.03528843947943],[-75.155507767686913,40.035330990768934],[-75.15549843622928,40.035377864416049],[-75.155493287137247,40.035438594671128],[-75.155489468709106,40.035538470829792],[-75.155495313798767,40.035582788733038],[-75.155510353375774,40.035657738066583],[-75.155522207544365,40.035717404475669],[-75.155549044358239,40.035804210068846],[-75.15556361192759,40.035842206139371],[-75.155601360061084,40.035914770738891],[-75.155645033541219,40.03598022498997],[-75.155706098719449,40.036059111569813],[-75.15577480653991,40.036135273065966],[-75.155827342246965,40.036190787365427],[-75.155915214838558,40.036258689520103],[-75.155999707259895,40.036316373419787],[-75.156098434870259,40.036371481970633],[-75.156171435641639,40.036409348745231],[-75.15628087987011,40.036455282622541],[-75.156406635066645,40.036493616121696],[-75.156551332480532,40.036529479523495],[-75.156704891884146,40.036555402790441],[-75.156907688134922,40.036575192390522],[-75.157138509555551,40.036576782149353],[-75.15741471936073,40.036574324150138],[-75.157835957408153,40.036574415142937],[-75.158041440082116,40.03657325797456],[-75.158081954354799,40.036573447827166],[-75.158222656429373,40.036438149339297],[-75.158222918100833,40.036437896652359],[-75.158487735741929,40.036183280194955],[-75.158487887880156,40.036183133158005],[-75.158709465756615,40.035969976645561],[-75.158709602049882,40.035969845469126],[-75.158866032830659,40.035818475584641],[-75.158877849056267,40.035807037960652],[-75.158883720657528,40.035801354365162],[-75.158931022434686,40.035755557834612],[-75.158995903662841,40.035692743024342],[-75.158996069231634,40.035692581873491],[-75.159107434899369,40.035584522336158],[-75.159177881916619,40.035515979983771],[-75.159178553935789,40.035515325687918],[-75.159245211074818,40.035450439726318],[-75.159320742199483,40.035376782477378],[-75.159389836234467,40.035309403331865],[-75.159438600429354,40.035261850175097],[-75.1594556928179,40.035245181268586],[-75.159537155007413,40.035165741592735],[-75.159590642878683,40.035113580800633],[-75.159604080274704,40.035100476751019],[-75.159651078812942,40.035054645173837],[-75.159675340806757,40.035030985672599],[-75.158773315450134,40.034493040194199],[-75.158988636139668,40.034278493293321],[-75.159109822729931,40.034158075368481],[-75.158805930423483,40.033969168509742],[-75.158644367410218,40.03386965076924],[-75.158185750318054,40.033585687165377],[-75.157922924076232,40.03342642896056],[-75.157759549155131,40.033333692418253],[-75.15733404890527,40.033760364595288],[-75.157059204629107,40.033764932517009],[-75.1570430133428,40.033264828999272],[-75.157034334690081,40.032558194676611],[-75.157022653412739,40.031157345765941],[-75.156972563842459,40.031084791273749],[-75.156620516952586,40.031155343326702],[-75.156620118924366,40.031155422638435],[-75.156345056002237,40.031209474727959],[-75.156344957976074,40.031209494138601],[-75.155963942381106,40.031285934080692],[-75.155157035897446,40.031466181988314],[-75.15512840405502,40.03147567603591],[-75.155106306602889,40.031486766550607],[-75.155088833919578,40.031500134807587],[-75.155077924475307,40.031514375771778],[-75.15507274624099,40.031526572974585],[-75.155071251222594,40.031541026650416],[-75.155070642414898,40.031556949185209],[-75.155074907459067,40.031568635334558],[-75.15507817442348,40.031581747768421],[-75.155086067342793,40.031597137975304],[-75.155101463946309,40.031613421237147],[-75.155189855211219,40.031692201195789],[-75.155275478506383,40.031769469710731],[-75.155369187506324,40.031857062674703],[-75.155496487330595,40.031978009585906],[-75.155581917649471,40.032060344419548],[-75.155651867173461,40.032128566454901],[-75.15568634413799,40.032163390177786],[-75.155742311000523,40.032227674213352],[-75.155786175881346,40.032288062773851],[-75.155816637706579,40.032329315518879],[-75.155852166865827,40.032385894580244],[-75.155876952876184,40.032427742622602],[-75.15591198535374,40.032497349059327],[-75.155942227065424,40.03256901962903],[-75.15595820585952,40.032619361737709],[-75.15597211020831,40.032674727912607],[-75.155983188677027,40.032730030259927],[-75.15599537678753,40.032830267950338],[-75.156002025119946,40.032902853553459],[-75.155998040562864,40.032982444080183],[-75.15599161959274,40.033076466126694],[-75.15597811071126,40.033183367601595],[-75.155953692114181,40.033329137610252],[-75.155874728014069,40.033669254843126],[-75.155819962923971,40.033918648318021]]],[[[-75.15463824049472,40.031587840545392],[-75.154615109069994,40.031590442544953],[-75.154550230666146,40.031604078336599],[-75.154484736213703,40.031616137805791],[-75.154411019511002,40.031630615355255],[-75.154356413841015,40.031641358474843],[-75.15429718930497,40.031648872449452],[-75.154248874631335,40.031654550722017],[-75.154176810159854,40.031661253645098],[-75.154118402936774,40.031665141385858],[-75.154077672221618,40.031667345487328],[-75.154032919981049,40.031668416197327],[-75.153963144872961,40.031668401390078],[-75.153860841387413,40.03166869282262],[-75.153805897059385,40.031670575530676],[-75.153762280810781,40.031677400484405],[-75.153732141512421,40.031686093347282],[-75.153699114338878,40.0316994071108],[-75.153664515600127,40.031718413106162],[-75.153641065733851,40.031747045318433],[-75.153623705560378,40.031775815195402],[-75.15361865323699,40.031794058310226],[-75.153613570250627,40.031810988850083],[-75.153608400402263,40.031830189792416],[-75.153603318547297,40.031847121258487],[-75.153598235553119,40.031864051797641],[-75.153595890058256,40.03188672604032],[-75.153595151644566,40.031906027163863],[-75.153594586950675,40.031920787482036],[-75.153592241452628,40.031943461724623],[-75.153595542375911,40.03197308161625],[-75.15360275466206,40.03201642683274],[-75.153618479928696,40.032107692301736],[-75.153638898519176,40.032192244966467],[-75.153700151215617,40.032329993262699],[-75.153752325173841,40.032434582476142],[-75.153787903829851,40.032509250357393],[-75.153865968581684,40.032632606406189],[-75.153933781858427,40.032753458306608],[-75.153988128238481,40.032839913067761],[-75.154045038577351,40.032936654101981],[-75.154101861028337,40.033035666384279],[-75.154165809350914,40.033141657689633],[-75.154220026007096,40.033231519744469],[-75.154269898107245,40.033319011214409],[-75.154313037802865,40.033389304158788],[-75.154369991312322,40.033484909801579],[-75.154405961990378,40.033549359773566],[-75.154425468187242,40.033580482041174],[-75.154462656401847,40.033651777505703],[-75.154498106194353,40.033729851667722],[-75.154539812265426,40.033837612453048],[-75.154562361103231,40.033943804124064],[-75.154577314591023,40.034051525271103],[-75.154564537679448,40.034157490795238],[-75.154543500716343,40.034258364520234],[-75.154511670478868,40.034341523609953],[-75.154469880483333,40.034429214986829],[-75.154425873749744,40.034497539346461],[-75.1543726574738,40.034574745924076],[-75.154322944558658,40.034653824679161],[-75.154276646975148,40.034719977121156],[-75.154195379510696,40.034836403454747],[-75.154137863326454,40.034915690511433],[-75.154069783504724,40.035014219679425],[-75.154014936537067,40.035093739104198],[-75.153916259686909,40.035244958294093],[-75.153883506284544,40.035307297282806],[-75.153854814725491,40.035380198798599],[-75.153833866296452,40.035460826759305],[-75.153825447849556,40.035540794578381],[-75.153827741821814,40.035620918041261],[-75.15383666001857,40.035691322392843],[-75.153855309687273,40.03576417762789],[-75.153884714470365,40.035836074903607],[-75.153915664567762,40.035890927414563],[-75.153972334734689,40.035973909858797],[-75.154027869592028,40.03603987522775],[-75.154070040767948,40.036081593994552],[-75.154109725338486,40.036109596221976],[-75.154165923207728,40.036148459488579],[-75.154229565257324,40.036189418241541],[-75.154316865359874,40.03623476706872],[-75.154410614381248,40.036275442022252],[-75.154491061108459,40.036303285849762],[-75.154568182300991,40.036324849167187],[-75.15461994503994,40.036335392125054],[-75.154660997279208,40.036342569215826],[-75.154689984025225,40.036346348031671],[-75.15472034452128,40.036349637994263],[-75.154781901655824,40.03635207048525],[-75.154830677683421,40.036352131005671],[-75.154865278920369,40.036350829657998],[-75.154893787653734,40.036349391545393],[-75.154912820419383,40.036347738424048],[-75.154927831334987,40.036344952854371],[-75.154942823522589,40.036342687647497],[-75.15495918831742,40.036339932663147],[-75.154982361108083,40.036336290818618],[-75.155005574896549,40.036331607419072],[-75.15503838402833,40.036324016977346],[-75.155065739039983,40.036317343977338],[-75.155091062019025,40.036310625963139],[-75.155120507530896,40.036302437816722],[-75.155144536307006,40.036294128188551],[-75.155174816708325,40.036281793489181],[-75.155196198568532,40.036271861688434],[-75.155233586575989,40.036250834154394],[-75.155258711199764,40.036231613617659],[-75.155277584225558,40.036216417247289],[-75.155295342070616,40.036194947129019],[-75.15531302035906,40.03617555746105],[-75.155323172728487,40.036158080926803],[-75.155341089114629,40.036114743099894],[-75.155344891008198,40.036086187461862],[-75.155344651164896,40.036057019731381],[-75.155341674899844,40.036028571365478],[-75.155335800716287,40.036005005017572],[-75.155318837565758,40.035970251619297],[-75.155285907009471,40.0359101432907],[-75.155258212479637,40.035837132644332],[-75.155235942266842,40.035763984139322],[-75.155223458051083,40.035700691284646],[-75.15521057546286,40.035630098398961],[-75.155204679878125,40.03555393559563],[-75.155204837457205,40.035496656102403],[-75.155209156070512,40.035436867576479],[-75.155217117452992,40.035352685221767],[-75.155229558164194,40.03525766841971],[-75.155261944133144,40.035101652855388],[-75.155348384309136,40.034701324101867],[-75.155423308165538,40.034371819070294],[-75.155503666546949,40.034006503310067],[-75.155527234496191,40.03390392602897],[-75.155548672130706,40.033803905461454],[-75.155575104918611,40.033679521603283],[-75.155619214975147,40.033500338053024],[-75.155650465999358,40.033356273985888],[-75.155660954674033,40.033294541671346],[-75.155668677859296,40.033252014233163],[-75.155677435953379,40.033200136892738],[-75.155685157304092,40.033139903529175],[-75.155693317348224,40.033068224545687],[-75.155697236944135,40.033001135965876],[-75.155699185484494,40.032932440499565],[-75.155691757959261,40.032860929303475],[-75.155687117073526,40.032805104685806],[-75.155676126669547,40.032755905980856],[-75.15566354264034,40.03271291982869],[-75.155650521589877,40.032663674349422],[-75.155616078189666,40.032572285536261],[-75.155594836044187,40.032525459180277],[-75.155560573070801,40.032464798199932],[-75.155530610842405,40.032415691693842],[-75.155495253373942,40.032365941609719],[-75.155441719658242,40.032295471974614],[-75.155363122615256,40.032207251897894],[-75.155284325700009,40.032124234224483],[-75.155163444434635,40.032007978626027],[-75.15508552550321,40.031937478650015],[-75.155011587355787,40.031869151713821],[-75.154934942946156,40.031800763577259],[-75.154891803313348,40.031759690842094],[-75.154815238737768,40.031689221271925],[-75.154792344441859,40.031667874222016],[-75.154763697549015,40.031637543780597],[-75.154736763028424,40.031615583732794],[-75.154715660683948,40.031600526615179],[-75.15469573311934,40.031590181330536],[-75.15467146562186,40.031587029001052],[-75.15463824049472,40.031587840545392]]],[[[-75.151171486656239,40.035242183615814],[-75.151294055503755,40.035107021860554],[-75.151680821400433,40.035211166574271],[-75.151746860001893,40.035194613132632],[-75.15174348612922,40.035094846375131],[-75.15174652905543,40.035015368838295],[-75.151769034963934,40.034929514491644],[-75.151809959417619,40.034864530810196],[-75.151849169036808,40.034775570979178],[-75.151931724343953,40.034604759268497],[-75.151969368681463,40.034480898203675],[-75.151984673812208,40.034377462459091],[-75.151978474406746,40.034302321491424],[-75.151960771641853,40.034231279436234],[-75.151920965079654,40.034144912021524],[-75.151844585313469,40.034035914417679],[-75.151780606419607,40.033958592365302],[-75.151741399519906,40.033915844113807],[-75.151694857586577,40.033857231469938],[-75.151657184797529,40.033804052568115],[-75.151619211815941,40.033758715629645],[-75.151587604244924,40.033721995862592],[-75.151567622381762,40.033664725589858],[-75.151544730529395,40.033567616733976],[-75.151541084040801,40.033469806204032],[-75.15156063498145,40.033383884142062],[-75.151590177942296,40.033307279411012],[-75.151650955378202,40.033225699492931],[-75.151704868014448,40.033168964791713],[-75.151829548607836,40.033078603001165],[-75.151944845409744,40.033001665719041],[-75.152095025307986,40.032901653018513],[-75.152280132584551,40.032777430488188],[-75.152421275806077,40.032681759524472],[-75.152524580910736,40.032609096107059],[-75.152621803750762,40.032540839783238],[-75.152717593070335,40.032471414779515],[-75.152823678472728,40.032403358715761],[-75.152987625735818,40.032291156415297],[-75.15305643685727,40.032231348555683],[-75.153160609518125,40.03213597604114],[-75.153220949550942,40.032065750000456],[-75.153280247155891,40.031984135825724],[-75.153332115051953,40.031903489825787],[-75.153343410425379,40.031878744669541],[-75.153351316661585,40.03186528742232],[-75.153356530053827,40.031844950390109],[-75.153366347446863,40.03182017271704],[-75.153371385890779,40.031804377362903],[-75.153374861880636,40.03179081904959],[-75.153375339719531,40.031778330035138],[-75.153378553865892,40.0317715847033],[-75.153378727634589,40.03176704299797],[-75.153377081787298,40.031747870875158],[-75.153369957783369,40.031712179077935],[-75.153360228787136,40.031695281276782],[-75.153347754745056,40.031676146354513],[-75.15333322894773,40.031661315155013],[-75.153321337294159,40.031651619843942],[-75.153308558367399,40.031640453832196],[-75.153289238083246,40.03162769018256],[-75.15326606372777,40.031617014445644],[-75.153239120794183,40.031606253495369],[-75.153194269479755,40.031595087619493],[-75.152852567389004,40.031551830261037],[-75.152572735643091,40.031518672289565],[-75.152502355801303,40.03150910383809],[-75.152222019677311,40.031809490461846],[-75.151897300339286,40.03216035570609],[-75.151699289148922,40.032379939557295],[-75.151582362139834,40.032502015844628],[-75.15142291106504,40.032675337588067],[-75.151320605114918,40.032785053599113],[-75.151260560400928,40.032850406366684],[-75.151164399268637,40.032950484339445],[-75.151089183542283,40.033055927831363],[-75.151048129947853,40.033120743443881],[-75.15101062533131,40.033180482826026],[-75.150975090073288,40.033276362457258],[-75.150949904806765,40.033364741054065],[-75.150940932217651,40.033467665860478],[-75.150942793132259,40.033501803406189],[-75.150944872253319,40.033539945510029],[-75.150955068336074,40.033667798277236],[-75.150988082182238,40.033812925429906],[-75.151031098703527,40.034003397406607],[-75.151077219458116,40.034200385487885],[-75.151090398893004,40.034294144533881],[-75.151096160758271,40.034406426454581],[-75.151093989348837,40.034506927349526],[-75.15108974853311,40.034573865341955],[-75.151073877341332,40.034637961447032],[-75.15105455679452,40.034704558211622],[-75.151028928374402,40.034760698280628],[-75.151003201204773,40.03481941572533],[-75.150978213939496,40.034858812254875],[-75.150925871212152,40.034943490320046],[-75.150906701245134,40.034974502953503],[-75.150839377581406,40.035068373843977],[-75.151171486656239,40.035242183615814]]]]},"properties":{"OBJECTID_1":146,"OBJECTID":89,"ASSET_NAME":"Wisters Woods Park","SITE_NAME":"Wisters Woods Park","CHILD_OF":"Wisters Woods Park","ADDRESS":"432-60 E WISTER ST","TYPE":"Land","USE_":"Park- Neighborhood","ACREAGE":51.567802,"ZIPCODE":"19141","ALLIAS":" ","GLOBALID":"55cfb2da-b458-4e82-879e-f873cd2bf5bd","Shape_Length":13682.512512796087,"Shape_Area":2246284.2964932332}},{"type":"Feature","id":147,"geometry":{"type":"Polygon","coordinates":[[[-75.212876862198556,39.983956036282798],[-75.212999707688752,39.983981280516595],[-75.213249483394975,39.984032608501664],[-75.213263594141836,39.98403663972492],[-75.213400220303313,39.984075669800916],[-75.213567927679549,39.984141818394981],[-75.213585252021986,39.98414865153422],[-75.213762284554406,39.984229563401769],[-75.213967874179417,39.984335475389656],[-75.214019822672881,39.984360873715367],[-75.21419200452867,39.984445056469568],[-75.214330474363337,39.984519882377711],[-75.214852615626143,39.984491902761881],[-75.214517983148028,39.983102750480725],[-75.214341441094547,39.982465438118865],[-75.214220845383139,39.982130295111205],[-75.214228497794608,39.982112456779134],[-75.214261057656074,39.982036550528477],[-75.214155782607932,39.981644820663135],[-75.213814124087804,39.981090224256604],[-75.21324120622296,39.980814147755126],[-75.212866725950889,39.980706360251212],[-75.21251243877056,39.98068464649738],[-75.21150779752341,39.980733358565011],[-75.211475449973889,39.980765444942783],[-75.211444324201594,39.980868531181677],[-75.2114404198675,39.980881459795413],[-75.21078165356144,39.981173801783704],[-75.209235522631019,39.981742224586469],[-75.208580644524972,39.981857458169088],[-75.2078410234827,39.982020526527158],[-75.208082656391255,39.982469608265887],[-75.208431560021495,39.983040314568839],[-75.208584519829571,39.983636789714993],[-75.208672576100994,39.984204569416242],[-75.208658239241842,39.985179582195961],[-75.208669779221651,39.985846850151731],[-75.209097733578602,39.985879354884744],[-75.209697223521488,39.985663922788461],[-75.210037894349085,39.985469720831091],[-75.210261049635022,39.985322893407634],[-75.210294945647576,39.985296799909804],[-75.210432823180554,39.985190661953517],[-75.210830174734696,39.984884778488961],[-75.211510363693534,39.984601257977751],[-75.212434148128892,39.984510102816913],[-75.212426286146822,39.984433531243567],[-75.212530348709393,39.984118920864347],[-75.212560115285584,39.98394414852401],[-75.212692707071596,39.983940164733994],[-75.212876862198556,39.983956036282798]]]},"properties":{"OBJECTID_1":147,"OBJECTID":90,"ASSET_NAME":"Horticulture Center","SITE_NAME":"Horticulture Center","CHILD_OF":"West Fairmount Park","ADDRESS":"4180 HORTICULTURE DR","TYPE":"Land","USE_":"Gardens","ACREAGE":51.514870000000002,"ZIPCODE":"19131","ALLIAS":" ","GLOBALID":"5987f64f-9d2f-4634-b6bd-be2cbebc6590","Shape_Length":6674.3633915736991,"Shape_Area":2243978.6466186261}},{"type":"Feature","id":148,"geometry":{"type":"Polygon","coordinates":[[[-75.011207288713109,40.071080367344976],[-75.011162843036757,40.071129758355532],[-75.01147987592293,40.071286030410974],[-75.011982327385283,40.070612262081177],[-75.012072933731517,40.070509385352928],[-75.012275409604698,40.070347609900153],[-75.012497530040477,40.070400563184059],[-75.012880489327685,40.069984460587136],[-75.013206545193981,40.069570985146981],[-75.013173246579825,40.069549182977319],[-75.013167371125405,40.069545336984085],[-75.013210354657147,40.069501513214938],[-75.013773332427292,40.068927543358306],[-75.013845807245318,40.068855066921451],[-75.013903369000872,40.068744200749009],[-75.013944112469119,40.068581439480432],[-75.014144725761753,40.068404960888351],[-75.014099711899135,40.068378924399667],[-75.014056848055901,40.068354132086327],[-75.01409306966795,40.068303431422663],[-75.01423161397895,40.068109504475956],[-75.014270011689874,40.068088704046168],[-75.014639207774536,40.067947330112204],[-75.014755242250658,40.067733930985476],[-75.014902047458719,40.067496276935863],[-75.015042398975964,40.06729585313164],[-75.015153168425172,40.067150003240805],[-75.015217090367443,40.067070631185153],[-75.015514827995446,40.066738410860921],[-75.01567698663618,40.066578323989347],[-75.015838433860864,40.066430164407777],[-75.015962901966773,40.066323844814669],[-75.016205027729058,40.066128146203489],[-75.016306431983139,40.066055242915972],[-75.016517608824529,40.065906928386163],[-75.016573846099874,40.065872381580398],[-75.016663669300982,40.06582652708272],[-75.016641645375344,40.065770610620213],[-75.016637275865165,40.065759518272017],[-75.016623568270788,40.065704845765488],[-75.016616407305534,40.065681043363007],[-75.016607307707872,40.065606430124234],[-75.016604432798687,40.065556968426023],[-75.016604883370135,40.065507779564228],[-75.016608800929731,40.065461026741737],[-75.016609006869686,40.065458564543455],[-75.016615917183188,40.065408932850055],[-75.016626494703985,40.065359387493196],[-75.01665963537917,40.065255489115863],[-75.016700850831043,40.065166769214343],[-75.016751395375621,40.065086051855232],[-75.016827644074453,40.064990690989603],[-75.016904593394756,40.064913852675375],[-75.016987952526563,40.064845081669951],[-75.017035903219139,40.064811031375072],[-75.017109010019411,40.0647658088713],[-75.017205860387435,40.064714432749547],[-75.017337300780966,40.064660427245549],[-75.017397289710829,40.064640543005588],[-75.01745821804893,40.06462284001077],[-75.017519752915689,40.064607779794414],[-75.017584374939503,40.064594743750611],[-75.017647115538509,40.064584161564397],[-75.017708861884003,40.064576892318982],[-75.017782769688409,40.064570315900731],[-75.017874446552909,40.064567965315632],[-75.017870860492039,40.06449889866046],[-75.017867558215229,40.06443530637177],[-75.017874631639174,40.064422885885101],[-75.018110493617755,40.064008729007917],[-75.018279143004577,40.063703836299069],[-75.018304700590249,40.063664072931353],[-75.018327682334288,40.063636349525183],[-75.018359918603821,40.063607969404551],[-75.018404144860725,40.063577779364302],[-75.018461523966295,40.063551818893202],[-75.018494762215909,40.0635412764683],[-75.018532744719195,40.063532232644555],[-75.018563627893698,40.063528598488645],[-75.018617028974376,40.063525618560895],[-75.018664672237819,40.06352805044957],[-75.018714425111753,40.063535873034773],[-75.01877703228088,40.063555982515823],[-75.019054309948061,40.063649865874567],[-75.019091848150694,40.063666975313417],[-75.019138492030393,40.06369606896876],[-75.019167899711235,40.063721803790116],[-75.019207256554296,40.063768808447541],[-75.019231857103534,40.063818115098876],[-75.019244118402256,40.063864186532776],[-75.019244359406528,40.063872648684828],[-75.019245412872294,40.063909693667576],[-75.019239728656288,40.06394508817106],[-75.019224832877825,40.063986566645042],[-75.019201310956646,40.064029549408943],[-75.019077352623881,40.064246422547569],[-75.018904326290908,40.064550680705253],[-75.018779216794997,40.064770989864414],[-75.018748440976793,40.064825184983292],[-75.019701410170128,40.065363950021158],[-75.019726135842845,40.06538001590765],[-75.019964622044697,40.065137785438914],[-75.019965251577091,40.065091490563155],[-75.019956975713583,40.065080472234484],[-75.019940446303906,40.065058464038181],[-75.019856033319826,40.065035250180614],[-75.019719724916058,40.064956372975843],[-75.019663450900637,40.064820928729922],[-75.019686722939582,40.064797759591848],[-75.019799139331539,40.064685838841726],[-75.019771322060251,40.064648370577423],[-75.019431531648991,40.064190680227007],[-75.01946446234021,40.064160222247523],[-75.0195961702792,40.064038401603284],[-75.019694726080189,40.063997024265845],[-75.019721764918714,40.063991590940979],[-75.019702564971368,40.063937839870228],[-75.019699504771864,40.063927627554698],[-75.019687545301053,40.063887713966643],[-75.019675456004819,40.063811518921788],[-75.019667693683914,40.063735828567118],[-75.019667324521677,40.06365048606088],[-75.019671515120592,40.063597389918954],[-75.019672664545396,40.063582818301448],[-75.019688377487853,40.063488513984275],[-75.019703828327167,40.063410072859114],[-75.01973031882828,40.06332108948245],[-75.019739665357307,40.063288077879747],[-75.019761617251206,40.063232167184836],[-75.019741330243164,40.063227484392065],[-75.019726010433757,40.063223947734812],[-75.019616583170148,40.063176854115959],[-75.01958180445898,40.063155812428803],[-75.019551287990481,40.063130036043297],[-75.019532685227617,40.063107460392459],[-75.019515479038773,40.063077808583806],[-75.019505333308146,40.063045778171606],[-75.019502050659483,40.063018923438001],[-75.019504498470667,40.062982614030204],[-75.019508820190126,40.06297133187271],[-75.01951465023518,40.062956110995188],[-75.019525597082733,40.062932754424267],[-75.019553022347139,40.062888897529916],[-75.019617060677618,40.062801159673946],[-75.019724660640122,40.062674187776473],[-75.019813376575073,40.062585843222543],[-75.01989373574547,40.062513259566074],[-75.019962307503221,40.062458870159503],[-75.020009456670408,40.062423267852957],[-75.020057265134284,40.062390018535545],[-75.020123111029918,40.062346679715084],[-75.020209109811788,40.062294388297168],[-75.020313444019976,40.062238091114658],[-75.020438568191764,40.062179241267003],[-75.020498440542795,40.062152791211759],[-75.020668618438108,40.06209075121351],[-75.020989768432827,40.061986136681597],[-75.021163048318385,40.061930219345626],[-75.021217720506542,40.061907208200566],[-75.021174157130503,40.061858012974703],[-75.021093004900536,40.061766368216261],[-75.021047065802605,40.061722246229174],[-75.021015943975826,40.061694613188727],[-75.020960915747708,40.061648270429956],[-75.020883535900737,40.061590424557785],[-75.020824019744452,40.061553677710251],[-75.02063165822274,40.061434909222903],[-75.020535591694454,40.061375591991549],[-75.020527041861087,40.061370313226249],[-75.020485907534649,40.061345346281961],[-75.019586511967333,40.060799435608956],[-75.01955742872498,40.06083159791558],[-75.019174846786214,40.061170709137087],[-75.019002028280823,40.061057239199052],[-75.018833343716054,40.060947446255888],[-75.018695897146529,40.060857983747141],[-75.018572280256691,40.060788789351705],[-75.018435957512096,40.06090746696443],[-75.018341232196022,40.06098992423653],[-75.018310744690197,40.061016463594449],[-75.018329143911544,40.06103667295703],[-75.018364495329251,40.061136585658069],[-75.01839281554723,40.061279101694176],[-75.018397860651703,40.061323447361566],[-75.018398007061407,40.061324733047712],[-75.018388980342934,40.061468521001508],[-75.018377285707984,40.061532954236718],[-75.018362715944207,40.061582178640265],[-75.018309725716875,40.061714364562349],[-75.01827386452193,40.061773899944981],[-75.018227712678367,40.061841508313634],[-75.018117634727616,40.061957816282501],[-75.017980638207888,40.062064755539112],[-75.017849840907388,40.062144102082932],[-75.017578573771004,40.062291072623985],[-75.017275848807415,40.062441804158432],[-75.0170757599561,40.062530319010165],[-75.016998623115072,40.062560510541417],[-75.016871802297999,40.062610149004797],[-75.016483740988647,40.062747243827012],[-75.016174237511464,40.062841971801177],[-75.016152405095227,40.063047289229118],[-75.01609377559366,40.063219107385329],[-75.016052424449683,40.063321416308277],[-75.015962932577779,40.063449172655417],[-75.015851581442647,40.063583608236378],[-75.015759709061257,40.063658015585936],[-75.015688198962707,40.063718269740697],[-75.015594101731878,40.063778912611369],[-75.015534780494349,40.063817816924541],[-75.015451878206491,40.063863642387282],[-75.015323148416257,40.06392170824774],[-75.015131947763578,40.06398523420863],[-75.014962768572786,40.064027634311863],[-75.014824820683359,40.064045936338339],[-75.014758950968513,40.064053878980729],[-75.014677306348574,40.064056193776011],[-75.014481188630953,40.064060018196876],[-75.014262743843489,40.064066069728064],[-75.01405335685422,40.064066516584482],[-75.013990040420993,40.064067442668033],[-75.013951636541407,40.064078070753617],[-75.013905124613785,40.064102998386808],[-75.013886509626929,40.064129637344145],[-75.01388064230386,40.064146504216055],[-75.01387248276545,40.064169959111084],[-75.013869947076003,40.064187583816377],[-75.01389387697823,40.064290261678892],[-75.013918580541713,40.064456505151085],[-75.013949200786357,40.064786578600568],[-75.013971114593076,40.065024057324479],[-75.013983441404989,40.065378036350729],[-75.013982883910884,40.065576015482129],[-75.013976984956798,40.065719091143492],[-75.013972116034424,40.065802089792577],[-75.013968657927308,40.065861043935861],[-75.013956423003833,40.066049928142135],[-75.013915896885834,40.066403907410759],[-75.013883742241688,40.06652167786018],[-75.013847740525932,40.066637129276643],[-75.013805074399656,40.066739251206599],[-75.013752447151418,40.066855953833901],[-75.013660785159402,40.067019603750069],[-75.013556571358663,40.067165673272569],[-75.013486235669816,40.067247954407392],[-75.013345100132952,40.067392789429107],[-75.013201343134355,40.067543865663559],[-75.012709084512892,40.068060670902895],[-75.012590231762104,40.06818517635994],[-75.012512395716399,40.068268048673325],[-75.012468112536382,40.068315197660304],[-75.012631459266586,40.068405157371302],[-75.013122952754657,40.068688348570042],[-75.013139246553166,40.068697736432981],[-75.013038913332707,40.068991919480872],[-75.012267375095163,40.06986930017225],[-75.012247330247988,40.06992456663918],[-75.011921830853652,40.070286299539077],[-75.011904614133371,40.070305433279351],[-75.011207288713109,40.071080367344976]]]},"properties":{"OBJECTID_1":148,"OBJECTID":91,"ASSET_NAME":"Wooden Bridge Run","SITE_NAME":"Wooden Bridge Run","CHILD_OF":"Wooden Bridge Run","ADDRESS":"2855 WILLITS RD","TYPE":"Land","USE_":"Park- Regional/Watershed","ACREAGE":51.356940999999999,"ZIPCODE":"19114","ALLIAS":" ","GLOBALID":"ec3b07c9-1147-4d72-8bd1-feff6786af38","Shape_Length":12413.420823030703,"Shape_Area":2237099.5102551002}},{"type":"Feature","id":149,"geometry":{"type":"Polygon","coordinates":[[[-75.210326870741142,39.931402460009473],[-75.210321438772525,39.931415342097488],[-75.210321964778061,39.931431960143122],[-75.210343071464848,39.931459574800407],[-75.210308150613045,39.931558885834463],[-75.210283112523229,39.931631377506953],[-75.210268954762881,39.931654489161374],[-75.21024949164935,39.931662976261997],[-75.210230143486143,39.931667572668601],[-75.210224358755994,39.931680967720553],[-75.210225237461898,39.931697072797988],[-75.21017983858475,39.931704852151285],[-75.210164135724511,39.931711588072218],[-75.210149954068157,39.931712380423278],[-75.210127587800017,39.931716405408785],[-75.210124658071493,39.931724400000675],[-75.210095527079872,39.931740764871961],[-75.210057040656764,39.931765792013458],[-75.21003331623163,39.931781731506206],[-75.210008648590659,39.931795319207232],[-75.209955413719911,39.931840593180297],[-75.209934818831385,39.93185321239315],[-75.209913997462621,39.931873613961031],[-75.209825559526351,39.931935407427197],[-75.209789147820032,39.931958653202436],[-75.209758721891063,39.931973179192568],[-75.209576785175258,39.932094121003473],[-75.209543774739416,39.932107525601523],[-75.209519773207433,39.932121384744015],[-75.209494401083887,39.932135997392756],[-75.209466461891367,39.932169251700351],[-75.209453223288378,39.932172396656753],[-75.209438864167254,39.932190833853717],[-75.209405270531349,39.93220997570031],[-75.209373912443453,39.932233308977708],[-75.209348123968354,39.932262188777962],[-75.209322876776255,39.932284070754527],[-75.209314790356885,39.932307028484892],[-75.209301676772455,39.932317441889417],[-75.209283106378678,39.932340768322],[-75.209268619963879,39.93236436182741],[-75.209269649094409,39.932375278665127],[-75.209243656816554,39.932390321717349],[-75.209246877458966,39.932404729843519],[-75.209237735172039,39.932429225616552],[-75.209164798503068,39.932505332093982],[-75.209144293775012,39.932530463609226],[-75.209115594936534,39.932559985268],[-75.209096947732661,39.932588493446964],[-75.209011648619537,39.932667964185605],[-75.208912626412385,39.932803536347379],[-75.20880581312278,39.932905755421238],[-75.208774152043631,39.932939463200469],[-75.208744994516735,39.93296828444069],[-75.208707964585997,39.933001121797545],[-75.208696747574052,39.933012171827016],[-75.20867748872908,39.933031143679059],[-75.208676379309409,39.933032236339898],[-75.208608328691142,39.933111509672038],[-75.208474415834488,39.933264385148675],[-75.208342148730324,39.933418585391394],[-75.208310411205204,39.933454888052452],[-75.208264113072531,39.933504952497159],[-75.208203342387961,39.933577344705427],[-75.208141514499601,39.933651275793679],[-75.208084972816891,39.933715452615388],[-75.208083635649245,39.933716970002052],[-75.208098075507081,39.933747496218231],[-75.208098241500949,39.933747845882955],[-75.208108697347853,39.933782283352244],[-75.20810783734288,39.933823272595554],[-75.208096289876195,39.933872380872216],[-75.208080028927981,39.933909729286228],[-75.208057733935661,39.933945935732595],[-75.208024815214415,39.933976507884758],[-75.207984442771618,39.933996830775691],[-75.207948597763448,39.934000622368877],[-75.207927369574264,39.934046449034469],[-75.207876607155129,39.934099289487925],[-75.20776619382066,39.934209230569309],[-75.207665763372049,39.934312078499183],[-75.207534943120137,39.934428154235874],[-75.207364274762938,39.934581170553763],[-75.207346480867983,39.934613302312634],[-75.207310018019086,39.934626684723384],[-75.207278697242131,39.934648720848649],[-75.207273654035959,39.934659792301588],[-75.207242950755713,39.934672236500106],[-75.207189836621396,39.934724777655063],[-75.207096110429617,39.93479426360912],[-75.207064425932074,39.934805652553486],[-75.207057129642521,39.934836149252185],[-75.207063136563121,39.93484974795571],[-75.207033651868514,39.934866625933509],[-75.207000759420183,39.93488474110579],[-75.206994746996884,39.934905917446443],[-75.206975824077503,39.934907407084857],[-75.206971523141391,39.934916155977227],[-75.206961691697003,39.934918061644282],[-75.206951594279033,39.934929046241365],[-75.206940276949467,39.934935597875175],[-75.206925981738436,39.934940281466943],[-75.206923088340986,39.934946978446185],[-75.206923879486325,39.934954518475926],[-75.206919026178852,39.934959105091302],[-75.206909432306361,39.934964389382962],[-75.206904741780761,39.934974947861328],[-75.206901534767724,39.934980861219977],[-75.20688760195597,39.934996191003663],[-75.206896665042777,39.935009064601125],[-75.206899768860566,39.935018202036908],[-75.206915182007336,39.935033001331007],[-75.206941882947248,39.935053706524066],[-75.211842763195079,39.933970797109886],[-75.213261947532317,39.933632258015088],[-75.213497573256745,39.933291637816723],[-75.213535596587121,39.933236669783668],[-75.213898740077553,39.932711706531336],[-75.214155849003362,39.932340020607349],[-75.214138785637545,39.932332254181212],[-75.213260828847524,39.931932589000297],[-75.213336909636524,39.931836068886469],[-75.214505786010065,39.93012280553188],[-75.214675612694577,39.929873389365689],[-75.214738896405279,39.929826471287271],[-75.214690342983616,39.929800270722041],[-75.214587660735987,39.929744859449407],[-75.213901111733676,39.929465264863623],[-75.213896325279421,39.929463315559431],[-75.213637082871642,39.929360517975212],[-75.212673520985774,39.928965968266439],[-75.212385368823163,39.928849398693245],[-75.212280856966501,39.928806278625551],[-75.211983916260678,39.928686251896181],[-75.211964576241428,39.928728141274057],[-75.21196701516098,39.928730398205403],[-75.211973438357646,39.928736339220777],[-75.21198266478774,39.928755184274678],[-75.212006450062461,39.928760266160928],[-75.212024654729191,39.9287632630503],[-75.212041675288503,39.928766065243018],[-75.212092789076578,39.928793418351205],[-75.212210380042222,39.928853062308377],[-75.2122623246768,39.928886658754656],[-75.212310684209683,39.928939138350735],[-75.212347906932891,39.928980525206931],[-75.212368736773314,39.929006058354986],[-75.212383267775721,39.929039527805337],[-75.212400225084949,39.929070702929756],[-75.212410342590843,39.929116812192092],[-75.212396286845561,39.929124874183678],[-75.212380345766746,39.929128232664596],[-75.212359161593497,39.929137987570613],[-75.212345734269277,39.929147617692522],[-75.21233610493222,39.929154199070659],[-75.212325103899857,39.929161534867411],[-75.212322526063716,39.929169016514855],[-75.212321633602045,39.929176526447876],[-75.21232677474822,39.929185179922555],[-75.212347467593048,39.929192284529996],[-75.212363608643685,39.929193601278023],[-75.212374307744838,39.929196641053821],[-75.212369038420817,39.929215495069791],[-75.212342409974184,39.929259572141589],[-75.212296545944199,39.929317601748963],[-75.212264800468333,39.929333851616839],[-75.212239982616879,39.929352627123166],[-75.21221967746834,39.929378487966233],[-75.212206350414007,39.929407842347992],[-75.212177709447104,39.929442123292517],[-75.212160308611573,39.92947244529384],[-75.21210243430275,39.929572916584881],[-75.212088228005754,39.929586166789505],[-75.212074536489581,39.929604874948772],[-75.212043279606519,39.929647934107471],[-75.212040236513644,39.929659819467084],[-75.212044183176985,39.929686358460437],[-75.212050794020982,39.929713980855517],[-75.212059971059062,39.929722963327634],[-75.212043852009757,39.929743965774115],[-75.21201623280686,39.929743229285364],[-75.211992420958467,39.929750603188651],[-75.211965202815321,39.929759216263022],[-75.211931446676488,39.929772387867594],[-75.211922683516306,39.929783914168226],[-75.211910978107881,39.929792275898663],[-75.211903585449789,39.929803048657618],[-75.211900390753982,39.929820121337926],[-75.211893877202044,39.929846998261063],[-75.211886848871529,39.929868417226665],[-75.211877846646075,39.929876566679383],[-75.211867989782419,39.929890929454764],[-75.211843797013614,39.929946048064828],[-75.211817042121325,39.929985032462646],[-75.211770560600471,39.930041583181676],[-75.211746144557139,39.930069708183034],[-75.211691314211606,39.93012351973799],[-75.211618920497259,39.930201681354163],[-75.211556508894049,39.930272748640199],[-75.21149800893248,39.930336877360041],[-75.211437081352358,39.930403299427546],[-75.211340810558667,39.930502588844419],[-75.211317487852682,39.930527878180726],[-75.211231415028564,39.930601131724167],[-75.211170160655271,39.930655609933844],[-75.211096573234286,39.930716882540814],[-75.211045842133572,39.930757269512718],[-75.21100372281218,39.93079131665548],[-75.210953344312884,39.930831190615486],[-75.210906762735831,39.93086801583258],[-75.210885551343111,39.930890227153427],[-75.21087721521441,39.93089864716616],[-75.210871756955541,39.930923985067359],[-75.210861535545874,39.930927701545237],[-75.210855589051519,39.930935124796747],[-75.21085430575252,39.930944445194477],[-75.21086277854117,39.930954453729051],[-75.210835077122923,39.931025860292792],[-75.210806242792657,39.931101400798468],[-75.210788652490834,39.931138207445606],[-75.21077147690643,39.931160748675438],[-75.210751711808385,39.93117961143313],[-75.21070629945028,39.931211006889143],[-75.210642479914739,39.931249350533079],[-75.210563813558835,39.931288215929193],[-75.210536243070791,39.931297341659814],[-75.210493709713546,39.931310879827492],[-75.210444640439988,39.931328976482988],[-75.210367730147055,39.931400052770634],[-75.210347942133083,39.931396596195839],[-75.210326870741142,39.931402460009473]]]},"properties":{"OBJECTID_1":149,"OBJECTID":92,"ASSET_NAME":"Bartrams Garden","SITE_NAME":"Bartrams Garden","CHILD_OF":"Bartrams Garden","ADDRESS":"5400 LINDBERGH BLV","TYPE":"Land","USE_":"Park- Community","ACREAGE":45.822091,"ZIPCODE":"19143","ALLIAS":" ","GLOBALID":"d9af83ef-9858-4d75-9155-58729f944629","Shape_Length":7448.3277775971756,"Shape_Area":1996002.3910952238}},{"type":"Feature","id":150,"geometry":{"type":"Polygon","coordinates":[[[-75.065083461990255,40.024043373641433],[-75.065082957103371,40.024043633952267],[-75.065038609535179,40.02406632246992],[-75.065030054643643,40.024074597673554],[-75.065026520182471,40.024080159178347],[-75.065024062445431,40.024095684383909],[-75.065030268508451,40.024107114177085],[-75.065046106924839,40.024125843290207],[-75.065046805251214,40.024126677766752],[-75.0654251995864,40.024556658385244],[-75.065425489970139,40.024556991351993],[-75.066305239134607,40.025563122427805],[-75.06631918500328,40.025580201458389],[-75.066345809264249,40.025603879580146],[-75.066371063582821,40.025623285365775],[-75.067228579636591,40.026100429415088],[-75.067228563336698,40.026100545268982],[-75.067913810169756,40.026485019141433],[-75.06795399487676,40.026507094353825],[-75.067975461195587,40.026518035193995],[-75.068004691462107,40.026518470072546],[-75.068016813574573,40.026516108615475],[-75.068066964727194,40.026504894111326],[-75.07010752325931,40.026052618115855],[-75.070127211298129,40.02604825427872],[-75.072059189719965,40.025610995972137],[-75.071672212149579,40.02514894664759],[-75.071637758118285,40.025107808784583],[-75.070974828130844,40.024351975088244],[-75.070493310897916,40.023794449725159],[-75.070996019124379,40.02353577662489],[-75.071050615633936,40.023503708127727],[-75.070927549240849,40.023402793627135],[-75.069182321790692,40.022048928657874],[-75.069161508810438,40.022032782618147],[-75.069142310253881,40.022019321531673],[-75.069099599546178,40.021991439044918],[-75.069077416755007,40.021986444763598],[-75.069044188659618,40.021993037723654],[-75.068976685415819,40.022028072907943],[-75.06620720006589,40.023460845105532],[-75.066207114453789,40.023460787239905],[-75.065083461990255,40.024043373641433]]]},"properties":{"OBJECTID_1":150,"OBJECTID":93,"ASSET_NAME":"Wissinoming Playground","SITE_NAME":"Wissinoming Playground","CHILD_OF":"Wissinoming Playground","ADDRESS":"5801 FRANKFORD AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":42.421838999999999,"ZIPCODE":"19135","ALLIAS":" ","GLOBALID":"91b60fc1-3120-4409-8888-a5b747216a16","Shape_Length":5557.4117441850467,"Shape_Area":1847888.0724312004}},{"type":"Feature","id":151,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.168485909493953,40.018487098570489],[-75.168003155216397,40.018575637004069],[-75.167744630522549,40.01862228146134],[-75.167605500488961,40.018645381106133],[-75.167438309098827,40.01869821994142],[-75.167365292349615,40.018729708894178],[-75.167317810727539,40.018750728409415],[-75.167226067601703,40.018802503187523],[-75.167119500539926,40.018866367634644],[-75.166589419995361,40.01925477622612],[-75.166332659551301,40.019443644536246],[-75.166181460659644,40.019547919040761],[-75.166080010336245,40.019618800374936],[-75.166025938627996,40.019671421930163],[-75.166041383537902,40.019878838797609],[-75.166946747574883,40.020535831496296],[-75.16818878887139,40.021428851442465],[-75.16823572003473,40.0214538348243],[-75.168283139706773,40.021465944674546],[-75.16832605593801,40.021470591075513],[-75.168376287516963,40.021471720381008],[-75.168436507575876,40.02146203049513],[-75.168504812311355,40.02142859411051],[-75.168569242949303,40.021371143281456],[-75.169859054919371,40.020055793376791],[-75.170696410860572,40.019235284532073],[-75.170825276060285,40.019104275930346],[-75.170809549969064,40.01909287898652],[-75.170985504461925,40.018856630899748],[-75.171060930209364,40.018761692198865],[-75.17112553942134,40.018667891780304],[-75.171045235237955,40.018465921899583],[-75.170969842431901,40.018276485427307],[-75.170818314973289,40.018295169418387],[-75.170679449856408,40.018311376939145],[-75.170093070459913,40.018386553498566],[-75.170088370625379,40.018368501522744],[-75.169542507786161,40.018416975858031],[-75.169295691321182,40.018439038735011],[-75.169130021409828,40.018451880356558],[-75.169121942847283,40.018428230983979],[-75.168485909493953,40.018487098570489]]],[[[-75.167768897311632,40.017711557947344],[-75.167806604302911,40.017761988701992],[-75.167788663320721,40.017784285388643],[-75.167836711789633,40.017828377597446],[-75.167894119954667,40.017871485513623],[-75.167967147018558,40.017912555126337],[-75.168054463982372,40.017945581899113],[-75.168172969750401,40.01797572654683],[-75.168277909973796,40.017994812466995],[-75.168423354398726,40.018011225601398],[-75.168531900422749,40.018017250168697],[-75.16867633715195,40.018019302495937],[-75.168771091651067,40.018020237821936],[-75.168881461463286,40.018019134591732],[-75.169054208774654,40.018012263967243],[-75.16925823433364,40.018000123255646],[-75.169251606121577,40.017970104787878],[-75.169479283092215,40.01794893730743],[-75.169483205103546,40.0179275191595],[-75.170055502480736,40.017874667344408],[-75.170057554116269,40.017861571262422],[-75.17036117261604,40.017824627745163],[-75.170582997323322,40.017791377384988],[-75.17104071696231,40.017730727232518],[-75.171053013146405,40.017775209798657],[-75.171556065428646,40.017663445855923],[-75.171547747606425,40.017636974731417],[-75.171985542773086,40.017524940097665],[-75.171068789622026,40.016725964248401],[-75.169812833881466,40.015673837182874],[-75.169771686138972,40.015652600992787],[-75.169713235012978,40.015636950565998],[-75.169674467490395,40.015634884629897],[-75.169607481257742,40.015639352988678],[-75.169552597503767,40.015652456500526],[-75.169492874631757,40.015670231108992],[-75.169406632404119,40.015731615199421],[-75.169268066503832,40.015820497975426],[-75.168772424249667,40.016146279262813],[-75.168773659037939,40.016154670229795],[-75.168607017656512,40.01628712753908],[-75.168393077758935,40.016457947764131],[-75.167933325346851,40.016820377568557],[-75.167945429010487,40.016829012955938],[-75.167790750629436,40.016973685606963],[-75.167818107307653,40.016989832488449],[-75.167744971992008,40.017074211194405],[-75.167707218710348,40.017127126568255],[-75.167680652269979,40.017171930303597],[-75.167656917256025,40.017223966177788],[-75.167644551978569,40.017263114657808],[-75.167634563960462,40.017321434314624],[-75.167631467394969,40.017361985987428],[-75.16763385441827,40.017421777797075],[-75.167643178266246,40.017462609700189],[-75.167656887361616,40.017510707789604],[-75.167682517387547,40.017572217058863],[-75.167729157874575,40.017653315632963],[-75.167768897311632,40.017711557947344]]],[[[-75.166788828970667,40.018666486061441],[-75.166757088025264,40.018671335758484],[-75.166137837242161,40.018765940914506],[-75.165186709186784,40.018990483589981],[-75.164925237997423,40.019083935247941],[-75.164926684607281,40.019084876037731],[-75.165021168037399,40.019146145671009],[-75.165151892232188,40.019249517322386],[-75.165171405131645,40.019267557888377],[-75.165240316379069,40.019284931806361],[-75.16529384817396,40.019293862083714],[-75.165374145027428,40.019325130859386],[-75.165453719225042,40.019393786226956],[-75.165520870390367,40.019510362599377],[-75.165567667101854,40.019569966482052],[-75.165606817549261,40.019609186696471],[-75.165611045589117,40.019612022740858],[-75.165665906055267,40.01964882408835],[-75.16708511173772,40.018710683654405],[-75.167008288929054,40.018637577245002],[-75.167004105636636,40.018633596168513],[-75.166788828970667,40.018666486061441]]],[[[-75.163847606446865,40.019406645343174],[-75.163748523298125,40.019441358078232],[-75.163687808376366,40.019469291604054],[-75.16363858470524,40.019500031995577],[-75.163555328987215,40.019554211590517],[-75.163504352543313,40.019587460517712],[-75.163469933644024,40.019621082385392],[-75.163399533634689,40.019685741930225],[-75.163348121649705,40.019730446398725],[-75.163302991448717,40.019784210600697],[-75.163229119698599,40.019869295343206],[-75.163126676375796,40.02001389176408],[-75.163079192857921,40.020085915103415],[-75.162991266584072,40.020240871265372],[-75.162932325346958,40.020344525149483],[-75.163338157756286,40.020578804311526],[-75.163341809948051,40.020580912963624],[-75.163358023807021,40.020571245391359],[-75.163351908609258,40.020552951285978],[-75.163345473651276,40.020533699406293],[-75.163342702726325,40.020508557232816],[-75.163342232499716,40.020471999665148],[-75.163341406413963,40.020444749676734],[-75.163342661495051,40.020411814310364],[-75.163348327706458,40.020385427775174],[-75.163354238302659,40.020352597278496],[-75.163373265588675,40.020293547172578],[-75.163390461566081,40.020258104756472],[-75.163410532015263,40.020220576363904],[-75.163434300947401,40.020183848485622],[-75.16346176839167,40.020147920219067],[-75.163512702195746,40.020083140219306],[-75.163558325633389,40.020035439162911],[-75.163604853772412,40.019988474774102],[-75.163639384205851,40.019957403446554],[-75.163668499103878,40.019932579408987],[-75.163704623384277,40.01989772185599],[-75.163752288631841,40.019864399161683],[-75.163813973831324,40.019811007644179],[-75.163897423614088,40.019751736990763],[-75.164144072896207,40.019584032742614],[-75.164232489033168,40.019524873696646],[-75.164337751170933,40.019458449708921],[-75.1643939364304,40.019418948436865],[-75.164840882208608,40.019125808342835],[-75.164634535243579,40.01919250404562],[-75.16426235113137,40.019306423827402],[-75.164245110063263,40.019280556686795],[-75.163847606446865,40.019406645343174]]]]},"properties":{"OBJECTID_1":151,"OBJECTID":94,"ASSET_NAME":"Fernhill Park","SITE_NAME":"Fernhill Park","CHILD_OF":"Fernhill Park","ADDRESS":"4600 MORRIS ST","TYPE":"Land","USE_":"Park- Community","ACREAGE":39.212820999999998,"ZIPCODE":"19144","ALLIAS":" ","GLOBALID":"4c0f421e-8685-4840-9e9b-47a33fc08988","Shape_Length":10285.301081405174,"Shape_Area":1708103.4316036876}},{"type":"Feature","id":152,"geometry":{"type":"Polygon","coordinates":[[[-75.237894671559715,40.055588023951046],[-75.236992864493558,40.056144943494573],[-75.236883941385557,40.056215058413891],[-75.236879007191419,40.056227664381787],[-75.236876416920211,40.05624067931349],[-75.236876248799035,40.056253858949404],[-75.236878444045573,40.056266922696373],[-75.236883014942151,40.056279602327194],[-75.236898802597523,40.056302932862906],[-75.23734444004009,40.05670712660487],[-75.239109117846596,40.058288858379285],[-75.239306785644274,40.058468172947826],[-75.239516669037712,40.058651918442358],[-75.239628167693922,40.058728526902264],[-75.239850337158884,40.05858508404836],[-75.239940151107149,40.05852709965162],[-75.240583084922008,40.058080915681892],[-75.24223506112601,40.056935272444292],[-75.243236566798402,40.056241817313335],[-75.243267134600174,40.056220377554524],[-75.243280389329428,40.05620594907343],[-75.243291325504515,40.056190423955741],[-75.243305820476692,40.056156962087208],[-75.243309799402113,40.056121815682921],[-75.243303087351634,40.05608692706555],[-75.243285997079951,40.056054177115819],[-75.243274170608103,40.05603480638441],[-75.243260091003961,40.056016345145899],[-75.243243864310301,40.055998938069479],[-75.243135766200808,40.05590688233454],[-75.241943642537677,40.054913739911676],[-75.240895115097373,40.054030230186754],[-75.240726375740792,40.053891975603129],[-75.240706076352382,40.053883432336292],[-75.237894671559715,40.055588023951046]]]},"properties":{"OBJECTID_1":152,"OBJECTID":95,"ASSET_NAME":"Roxborough Reservoir","SITE_NAME":"Roxborough Reservoir","CHILD_OF":"Roxborough Reservoir","ADDRESS":"601 PORT ROYAL AVE","TYPE":"Land","USE_":"Reservoir","ACREAGE":37.285187000000001,"ZIPCODE":"19128","ALLIAS":" ","GLOBALID":"06aca50e-8544-46ea-9587-46c1fb1b4621","Shape_Length":5072.7160316944846,"Shape_Area":1624136.2227825546}},{"type":"Feature","id":153,"geometry":{"type":"Polygon","coordinates":[[[-75.247465238379547,40.042279605288961],[-75.247490847041291,40.042307272166234],[-75.248299331766916,40.042891061661798],[-75.248486756639963,40.043018182417718],[-75.249667592630232,40.043791491140738],[-75.249955079815209,40.043538468088613],[-75.249995016793449,40.043563354919904],[-75.250134839834104,40.04364543079592],[-75.250204911125365,40.043554914290283],[-75.250045860482203,40.04345447955999],[-75.249937211676539,40.043363191893349],[-75.249466058641858,40.04297135081729],[-75.249456776243605,40.042963630903735],[-75.248911438932851,40.042578014728086],[-75.248485075534759,40.042312018076657],[-75.248429587493774,40.04227740101755],[-75.247918062809163,40.041938592818347],[-75.247402906512093,40.041517786938478],[-75.247118380843077,40.041247668018528],[-75.247020495483156,40.041154737890558],[-75.246860154569902,40.041002515747415],[-75.24673730846105,40.040875422792197],[-75.246622774341375,40.040756929693408],[-75.246582117561815,40.040714867486436],[-75.246547285504974,40.040663721391908],[-75.246433354456613,40.040496428304479],[-75.246269622756728,40.040253278246126],[-75.246158091837003,40.039854118749588],[-75.246154708871686,40.039842013187311],[-75.246106480148853,40.039644702836519],[-75.246043085544841,40.039377092771204],[-75.245971933614896,40.039259493270713],[-75.245892663560127,40.039121237235662],[-75.245740669529653,40.038908011786788],[-75.245619861598499,40.038692053123462],[-75.245501854879222,40.03852052645744],[-75.245387531366106,40.038369559477673],[-75.245268935013584,40.038227663169089],[-75.245131634086391,40.038084097438848],[-75.244930727329574,40.0379329491318],[-75.244676704131678,40.037777228052789],[-75.244596161033172,40.037853974545719],[-75.244500373475546,40.037802393742346],[-75.244307084175148,40.037685541780846],[-75.24423798102076,40.037632836388184],[-75.244232774245432,40.037593471143133],[-75.24422953395171,40.0375609747027],[-75.244192574638532,40.037539689788993],[-75.244115369710684,40.037526059226295],[-75.244029542280416,40.037505413684265],[-75.243924126721211,40.037474101839656],[-75.243832084130588,40.037441374306432],[-75.243733827503931,40.03739656577158],[-75.243592260441432,40.037360356264628],[-75.243421912801352,40.03730514730789],[-75.243297736586086,40.037257382420037],[-75.243049013245155,40.037196085395585],[-75.242796062317424,40.037152460382373],[-75.242441552712705,40.037101726203083],[-75.242324781358548,40.037095314314534],[-75.241978708335637,40.037009662965566],[-75.241849909713821,40.036966171660687],[-75.241810398213559,40.03694771610089],[-75.241738103068684,40.03692210703344],[-75.241689324587057,40.036912718461352],[-75.241643134849738,40.036905787544399],[-75.241614943469344,40.036895216832271],[-75.24143556495099,40.036842725957229],[-75.24130192572872,40.036785225103351],[-75.241249837522531,40.036768725506285],[-75.241119609915145,40.036715591273328],[-75.240968603735425,40.036644667016191],[-75.240731718872738,40.036504841670691],[-75.240519021973299,40.036372382811898],[-75.240399908268827,40.036291276896563],[-75.240201664015871,40.036153243418198],[-75.240114769516794,40.036076841618275],[-75.240108112157344,40.03607296243127],[-75.240073492133064,40.036052787730711],[-75.239993062472195,40.036005918361518],[-75.23993239709003,40.035965340907509],[-75.239810751196146,40.035892711405296],[-75.239632940966402,40.035784748988569],[-75.239502010174064,40.035702417952486],[-75.239402001479874,40.035629259025249],[-75.239309841073776,40.035569454880132],[-75.239238526879618,40.035516698011797],[-75.239153141362337,40.035446702946466],[-75.239132651387749,40.035429905618109],[-75.239129030295899,40.0354269369763],[-75.23903491619977,40.035363432762146],[-75.238920932761744,40.035281729208144],[-75.238873318365648,40.035240953561903],[-75.238627356416856,40.035105302233923],[-75.238230698882731,40.034852979444956],[-75.238152982885978,40.034793255947065],[-75.238088010676435,40.034749169420188],[-75.238020756015715,40.034706740316793],[-75.237894867307674,40.034628897355439],[-75.237847136125964,40.034598841417704],[-75.237786220807891,40.034565083225566],[-75.237647400999322,40.034476716458549],[-75.237573429133946,40.034435846628547],[-75.237512577224052,40.034400383191752],[-75.237460599373804,40.034365113847521],[-75.237398160699954,40.034312549932295],[-75.237337182698695,40.03428049750115],[-75.237219979002674,40.034207962304137],[-75.237114121433891,40.034128849299769],[-75.236944834466826,40.033990176654079],[-75.236890337578672,40.033942298386407],[-75.236822528543115,40.033892154728434],[-75.236779459901413,40.033849246771553],[-75.236746410848767,40.033816237414186],[-75.236739840371726,40.033809674964694],[-75.236637634933359,40.033708728359912],[-75.236634721000428,40.03370584989208],[-75.236632371679448,40.033704056862305],[-75.236529621049868,40.033625624850998],[-75.236510077137481,40.033605341966947],[-75.236444472248309,40.033537255278247],[-75.236425370931229,40.033522682647721],[-75.236397567625772,40.033501471162168],[-75.236379652450125,40.033478766891307],[-75.236373966351024,40.033471588574059],[-75.23637197318287,40.033469072627803],[-75.236278338549837,40.033376720420911],[-75.236218121042995,40.033324204435111],[-75.236166838295091,40.03327017749244],[-75.236121579674105,40.033233348090732],[-75.236065736759045,40.033182634249997],[-75.235921720376041,40.033054900668596],[-75.235808426939641,40.032961987984663],[-75.235742191947168,40.032893512257395],[-75.235609337595022,40.03279105310051],[-75.235446368760179,40.032633524376884],[-75.235286893963732,40.032502333162597],[-75.235246857227182,40.032471882334825],[-75.235212188585663,40.032445515204621],[-75.235173060175697,40.032408772778993],[-75.235171736719238,40.032407258963062],[-75.235130463093398,40.032360055867002],[-75.234955739026077,40.032212652045949],[-75.234953934207496,40.032211128587335],[-75.234859096713649,40.03212071656754],[-75.234823970290208,40.032087228646226],[-75.234778712810737,40.032044083641104],[-75.234734667275873,40.032001888677073],[-75.234655892942826,40.031926425259037],[-75.234517329428371,40.031771501899328],[-75.234392967152147,40.031652729140298],[-75.23435233640781,40.03161088091322],[-75.234298397071171,40.031568740257576],[-75.234179351032694,40.031515951749547],[-75.234112918299218,40.031501108643575],[-75.234058265597369,40.031481632059645],[-75.233950686705128,40.031426303229523],[-75.233854853091358,40.031376418633144],[-75.233767640305629,40.031333549656878],[-75.233639481441216,40.031257357621598],[-75.233477985807724,40.031182141469692],[-75.233393369826786,40.031129089300642],[-75.233348114137883,40.03109225880268],[-75.233279280323913,40.031032725539063],[-75.233212664689617,40.03097324174108],[-75.233127222337615,40.030882625029122],[-75.232998870634489,40.030751816958841],[-75.232907912916531,40.030630361601915],[-75.232829443006636,40.030531365045022],[-75.232772269798318,40.030456727772716],[-75.232699443721046,40.030385160350086],[-75.23244486323668,40.030168762705109],[-75.232364057255381,40.030108033884318],[-75.232187375386417,40.029911323493067],[-75.232138895530284,40.029870010532086],[-75.232068450301981,40.029794833234071],[-75.232005840953391,40.029749177584343],[-75.231967822462693,40.029714702702286],[-75.231922858260361,40.029674926335616],[-75.231886503683526,40.029643749506896],[-75.231860427286179,40.02962446860785],[-75.231743479235902,40.029526901677528],[-75.231570634194526,40.02939532620335],[-75.231346880189705,40.029239805499607],[-75.231262911056632,40.029168105350685],[-75.231192772436899,40.02913284106031],[-75.231058755573187,40.029037987647143],[-75.230898752299368,40.028945294085482],[-75.23088477166533,40.028937195621893],[-75.230839447471766,40.02889849660707],[-75.230785220303588,40.028852195202518],[-75.230737353116865,40.028818448092309],[-75.230463878064299,40.028631111857514],[-75.23018866877625,40.028442448463245],[-75.229406683871247,40.027903761602396],[-75.229396083982309,40.027900610632599],[-75.229369027444847,40.027883710578791],[-75.229233708566056,40.027775954723971],[-75.229142378541511,40.02771018569662],[-75.228856466198224,40.027521284004202],[-75.228734672568478,40.027434163516709],[-75.228587963388989,40.027320578730865],[-75.228545305893277,40.027290892298964],[-75.228350314028233,40.02715479169737],[-75.228268927108772,40.027109922616873],[-75.228160427862562,40.027049611511202],[-75.227976902135794,40.026941482063876],[-75.227847895648182,40.026880291421705],[-75.227659270732801,40.026789212527973],[-75.227489995138185,40.026706196966067],[-75.227489710709435,40.026706060975179],[-75.227378627837325,40.026652957982684],[-75.22732064346647,40.026625239150974],[-75.226975939295627,40.026456583003558],[-75.226850943599317,40.026407666189463],[-75.226704566447665,40.026333304731835],[-75.22661568154922,40.026297968010425],[-75.226474353552973,40.026255986372824],[-75.226303041049377,40.026179788930513],[-75.226022851122323,40.02607759947292],[-75.225575760014053,40.025876650354604],[-75.225515749730832,40.02583978688245],[-75.225004134204738,40.025614439822576],[-75.224867195144668,40.025550662035783],[-75.224606106828318,40.025439189793779],[-75.224464288408157,40.025386466660521],[-75.224395402623074,40.025365728949616],[-75.22430680625726,40.025346702072603],[-75.224272408109996,40.025335131777958],[-75.224038513325041,40.02521292894879],[-75.224024641634983,40.025201724471643],[-75.224009759537239,40.025193673782439],[-75.223989568304276,40.025184303480685],[-75.223964146038298,40.02517151505738],[-75.223947546375555,40.025161623684816],[-75.223916875568747,40.025145887967966],[-75.223882854158063,40.025124199533899],[-75.223772988179391,40.025076769852745],[-75.22371970945305,40.025044617034347],[-75.223597923641137,40.024957577516126],[-75.223502011856368,40.024871192696594],[-75.223414276544958,40.024805444824722],[-75.223276701510954,40.024684661200872],[-75.223207502136106,40.024635353339143],[-75.223143118308641,40.024575912459476],[-75.22309128240272,40.024537226414452],[-75.223038327169803,40.024488502931192],[-75.222856627313575,40.02434092162963],[-75.222816013970913,40.024312256437049],[-75.222759292375443,40.024272222042697],[-75.222686101351115,40.02421087967906],[-75.22264883216603,40.024179716574238],[-75.222606447345171,40.024144275558527],[-75.222481357921112,40.024045951867883],[-75.222310529598005,40.023911511209029],[-75.222185112109713,40.023834638113705],[-75.222138972620556,40.023805086979664],[-75.222063697449556,40.023756874506738],[-75.221942283067492,40.023679110771241],[-75.221691298018854,40.023526393734564],[-75.22169082245658,40.023526103954985],[-75.221579386229706,40.023485511222511],[-75.221394965753959,40.023414481221124],[-75.221250356720148,40.023363513436934],[-75.221143135814856,40.02332190036006],[-75.22107102270148,40.023291299271222],[-75.220999631652489,40.023267615681867],[-75.220825927215188,40.023208006625708],[-75.220555158165411,40.023103878191343],[-75.220451401149276,40.023060912665485],[-75.220361543693684,40.023029920252775],[-75.220293036310295,40.023005287913776],[-75.220196156270262,40.022940946992925],[-75.220005656377324,40.022823318988266],[-75.219822443024427,40.022601878692633],[-75.219718709016888,40.022469642064991],[-75.219633430765839,40.022315873595453],[-75.219392491424827,40.022325561393707],[-75.219386664077817,40.022325796078867],[-75.219301244849817,40.022294900608834],[-75.219282149550381,40.022317531836158],[-75.21926873105231,40.02233343607265],[-75.219336891672484,40.022428259097985],[-75.219580475125269,40.022664562594819],[-75.219941469555792,40.022925096175108],[-75.22005191475624,40.023066179566591],[-75.220080992005904,40.023112484556442],[-75.220174174505644,40.023200005185451],[-75.220412663807721,40.02329472253669],[-75.220585148953177,40.023343742963689],[-75.220835521616593,40.023415815085031],[-75.22114425758356,40.023530130365515],[-75.221336519375072,40.023612868906504],[-75.221482299717238,40.023681644451656],[-75.22182069843825,40.02389350607654],[-75.222002533492642,40.024008857979958],[-75.222173104486444,40.024167349174618],[-75.222367959386588,40.024299997895731],[-75.222679866953655,40.024557184997825],[-75.222839415941024,40.024691100231131],[-75.222968735322354,40.02479773907352],[-75.223009755672081,40.024831283951237],[-75.223046287472116,40.02486152249557],[-75.223106980490812,40.024911280284961],[-75.223164025917058,40.024958218749639],[-75.223228385525132,40.025011425976352],[-75.223291294011702,40.02506363446691],[-75.223489140527008,40.025161126117638],[-75.22361376188789,40.025213773995198],[-75.223808173428537,40.025315853069984],[-75.224006083066428,40.025426015906163],[-75.224240886303889,40.025548169388792],[-75.224288054917835,40.025566969944784],[-75.224474606923934,40.025639564659841],[-75.224606794537763,40.025691217332678],[-75.224747453102808,40.025739444923573],[-75.224925223407737,40.025812538648815],[-75.225031650010351,40.025854371155354],[-75.225184176863507,40.025916141633125],[-75.22528962825362,40.025950865213673],[-75.225359528169619,40.025981414892108],[-75.225409910846537,40.025999588259488],[-75.225406235149123,40.026029152945576],[-75.225368482479382,40.026082452180098],[-75.225655599735788,40.026197828440075],[-75.225701188955597,40.026133982213523],[-75.225874962957562,40.026204068253179],[-75.225913917685801,40.02622615462014],[-75.226189126036758,40.026329161079865],[-75.226513999848436,40.026450378029992],[-75.226773389161337,40.026561015570387],[-75.226966366742118,40.026648172242425],[-75.227075560861437,40.026696649879632],[-75.22720871008174,40.026757599950329],[-75.227271894495345,40.026789706489723],[-75.227407960112203,40.026891678760428],[-75.227483929321934,40.026936104210364],[-75.227807198447778,40.027083766910877],[-75.227884094409617,40.027124239047247],[-75.227987571862826,40.027187410718525],[-75.228091322705566,40.027266949477379],[-75.228368916610066,40.027479728883975],[-75.228600865678231,40.02765752621017],[-75.228813000479661,40.027820121641611],[-75.229235941655702,40.028148910409044],[-75.229630052661051,40.028447401361255],[-75.229728033728961,40.028499043258186],[-75.229811794310947,40.028538450142911],[-75.229848369037086,40.028563625559784],[-75.229881169743436,40.028570181074478],[-75.229946685296269,40.028589171887631],[-75.22999890809028,40.028617623358009],[-75.230046378326918,40.028654503847406],[-75.230089539197735,40.028687876791757],[-75.230162677261816,40.028750919495657],[-75.230272574569995,40.028840366826252],[-75.230323849247398,40.028894397311255],[-75.230389128547301,40.028929960986957],[-75.230459350347815,40.028951981178714],[-75.23054947346688,40.028976144399991],[-75.230601190423286,40.029018237263422],[-75.230662669505762,40.029096383125072],[-75.230707732498658,40.029138330872435],[-75.230755479751537,40.029172251953973],[-75.230818830491884,40.029221958333032],[-75.23092360262271,40.029303487263341],[-75.231144289600508,40.029458509063446],[-75.231256281972847,40.029551415215053],[-75.231436915560195,40.029708970958382],[-75.231554804755973,40.029822485722775],[-75.231660016412235,40.029918655729809],[-75.231773596789083,40.030028661901937],[-75.231995177562482,40.03021954042346],[-75.232139243765957,40.030345574747365],[-75.232284262240356,40.030505762124236],[-75.232359135035949,40.03059510174721],[-75.232477330245516,40.030747212688645],[-75.232612214209382,40.03094130892655],[-75.232721170717554,40.031056333085054],[-75.23281732379121,40.03115742375244],[-75.232994287937657,40.031294417742849],[-75.233183361177453,40.031464100875915],[-75.233237299772114,40.031506241155014],[-75.233352023525512,40.031585552209016],[-75.233464528227259,40.031664815420946],[-75.233515543267302,40.031606201821489],[-75.233545392713708,40.031579550322846],[-75.233566242074843,40.031556114586223],[-75.233589039686564,40.031544083066748],[-75.233597601459692,40.031548863023602],[-75.233614857104271,40.031564280488318],[-75.233625358007899,40.031573661958866],[-75.233664166833677,40.03160833556489],[-75.233742530610158,40.031662746186697],[-75.233883636524709,40.031769589724952],[-75.233987970809068,40.031844509915992],[-75.234080730307696,40.031910374643147],[-75.23421711819536,40.032009256828523],[-75.23433764205727,40.032094927877502],[-75.234521639604537,40.032228123488387],[-75.234594835730832,40.032315900337522],[-75.234643517987749,40.032380110867109],[-75.234706245717277,40.032457092418753],[-75.234733700043648,40.032487473312734],[-75.234887201265067,40.032693260207353],[-75.234961040519721,40.03285808763065],[-75.235093267605137,40.033004337419698],[-75.235199634368641,40.033129541234423],[-75.235306759718796,40.033234282871618],[-75.235455275983597,40.033360410177465],[-75.235537613804411,40.033415118233442],[-75.235613613160581,40.033461153257129],[-75.235697790385458,40.0335261403483],[-75.235755916998869,40.03357519787761],[-75.235807577519438,40.033618993486542],[-75.235848651359561,40.033648905480312],[-75.235878697521898,40.03367686868485],[-75.235975365524041,40.033764315034453],[-75.236038307923053,40.033803238035738],[-75.236070067094744,40.033844891430697],[-75.236115513234253,40.033876605504709],[-75.236201468676441,40.033953577392026],[-75.236319498383594,40.034063676121207],[-75.236418385702905,40.034151170643185],[-75.236481012924017,40.034198619795035],[-75.236554794424237,40.03424460562514],[-75.236602082678559,40.03428659959242],[-75.236638848364294,40.034313003147815],[-75.236701981124028,40.034346809587845],[-75.236755658651646,40.034371367630726],[-75.236781625114546,40.034393734443157],[-75.236937658007307,40.034517507712188],[-75.237077558659138,40.03463661745193],[-75.237233176766395,40.034750950527872],[-75.237372501667195,40.034825676100589],[-75.237458964790164,40.034889005349967],[-75.237504351526795,40.034922423123206],[-75.237556266701318,40.034959397546039],[-75.237608371337402,40.034991255747144],[-75.237664219235114,40.035041968884954],[-75.237718415939113,40.035077286655735],[-75.237765958006818,40.035112458844658],[-75.237859085506145,40.035235664846233],[-75.237921714768135,40.035283112310047],[-75.237990999970108,40.035330706209031],[-75.238068652122436,40.035392135789166],[-75.238157586162899,40.035448691700076],[-75.238225157188452,40.035482595223911],[-75.238312189937375,40.035530577032617],[-75.238377290455205,40.03557125235708],[-75.238444798642362,40.035606859950974],[-75.238503560076126,40.035638864187924],[-75.238553447428615,40.035670673454867],[-75.238622795396935,40.035716561846613],[-75.238687834352959,40.035758942120161],[-75.238748813115535,40.035790994706829],[-75.238818478014693,40.035828356606316],[-75.238892893827426,40.035857289032123],[-75.239021256573778,40.035928358989963],[-75.239233263251492,40.035989446152648],[-75.239454835929564,40.036108429826236],[-75.239630366777362,40.03626763345828],[-75.239770464973532,40.036381624607934],[-75.239841338972496,40.036446317747036],[-75.239894719153156,40.036503802620146],[-75.240017764636164,40.036598647713269],[-75.24012863360052,40.036662508174196],[-75.240212566844136,40.036734313249838],[-75.240303093242801,40.036807968799813],[-75.240423983440138,40.036901059860448],[-75.240511208753574,40.036943923797708],[-75.240595142749783,40.037015728592891],[-75.24070829545505,40.037077931882145],[-75.240786268499889,40.037130833241513],[-75.240891178868935,40.037175789698843],[-75.241019798361862,40.037240037015572],[-75.241142771846114,40.037276855410134],[-75.241271378649571,40.037281370927673],[-75.241410890243628,40.037291243898714],[-75.241501658647877,40.037298346606008],[-75.24163280015037,40.037294383784698],[-75.241701131094402,40.037307822244856],[-75.241844638213109,40.037329729084782],[-75.241986557344831,40.037334534492523],[-75.24207954186484,40.037341684229133],[-75.242218675572289,40.037361788629134],[-75.242460375670362,40.037430209632241],[-75.242559009549339,40.037464787744938],[-75.242648203216191,40.037514519792381],[-75.242755522716692,40.037554407665461],[-75.242829690085884,40.037590158846839],[-75.242938409161113,40.037652263095843],[-75.243071532294522,40.037714899875553],[-75.243198565306429,40.037762043488328],[-75.243306263455182,40.037791699333425],[-75.243411995297478,40.037814486258725],[-75.243530092421835,40.037863141867717],[-75.243657379099503,40.037903464589178],[-75.243880264267631,40.038000482976464],[-75.244068345841711,40.038077970377131],[-75.244218336010888,40.038164866239185],[-75.244318183927703,40.038226775603555],[-75.244426653561717,40.038295698853169],[-75.244555608156702,40.038411147282169],[-75.244678348828458,40.038514513789451],[-75.244809774436774,40.03862318900547],[-75.244943166981258,40.03873873466344],[-75.245028131466782,40.038842983377208],[-75.245089824908021,40.038916005271304],[-75.245155011037525,40.039014703131748],[-75.245201489722092,40.039078860790241],[-75.245254435929382,40.039148279787831],[-75.245316192825754,40.039219596456121],[-75.245368949290068,40.039294130684482],[-75.245425451478511,40.039387519591692],[-75.245473456783898,40.039470482545568],[-75.245514744132464,40.039555005474945],[-75.245556596769504,40.039624182434117],[-75.245599032833965,40.039737743157275],[-75.245653506129557,40.039825967372678],[-75.245668863075068,40.039891152756432],[-75.245693928737381,40.039994094966389],[-75.245809781749628,40.040269077436832],[-75.245957933401002,40.040489788163349],[-75.245983961977231,40.040528563856675],[-75.246049953383391,40.04064049171177],[-75.246070427452068,40.040675217083859],[-75.246157025823791,40.040818342154203],[-75.246284166849279,40.040983533124027],[-75.246446718558062,40.041184810923241],[-75.246613974848444,40.041379812893119],[-75.246889380081257,40.04170618405314],[-75.247314974668626,40.042137124166423],[-75.247427151286203,40.04223845533847],[-75.247465238379547,40.042279605288961]]]},"properties":{"OBJECTID_1":153,"OBJECTID":96,"ASSET_NAME":"Manayunk Canal","SITE_NAME":"Manayunk Canal","CHILD_OF":"Manayunk Canal","ADDRESS":"4500 MAIN ST","TYPE":"Land","USE_":"Park- Linear\\Parkway","ACREAGE":33.739106999999997,"ZIPCODE":"19127","ALLIAS":" ","GLOBALID":"2b8c1758-43e8-4348-81dd-7c35f37198b1","Shape_Length":24202.927330990566,"Shape_Area":1469669.6140141301}},{"type":"Feature","id":154,"geometry":{"type":"Polygon","coordinates":[[[-75.281055593566307,39.980097466515012],[-75.28103092319607,39.980850143274694],[-75.281374503424885,39.981165851162281],[-75.28154527538463,39.981055715909193],[-75.282149137339331,39.980648645901965],[-75.282165939747387,39.980630383917116],[-75.281816607934644,39.980324898890785],[-75.281907705089139,39.98026064217013],[-75.282161809201696,39.980077804976098],[-75.282282921761222,39.980001777875465],[-75.282378944673837,39.979950041341731],[-75.282509830193689,39.979901124755607],[-75.282655490810242,39.97988977135816],[-75.282851088795582,39.979910530133267],[-75.28315784472781,39.979981271395005],[-75.283459223971064,39.980051896266517],[-75.283678774272076,39.979783473169483],[-75.283655201801707,39.979691919718462],[-75.283497920839423,39.979578869392441],[-75.283526119231979,39.979320819889018],[-75.283608732065488,39.97911980877943],[-75.283216804951806,39.9786540811672],[-75.283216117599991,39.978376786631721],[-75.283234693300855,39.978087490624837],[-75.283233013222855,39.977911568504737],[-75.283212654443474,39.977805599829573],[-75.283084835723002,39.977844237976598],[-75.283145783983343,39.977350996637433],[-75.283062801057582,39.977191950094415],[-75.282890367634394,39.97675577025349],[-75.28302474513886,39.976758659047015],[-75.28283608128153,39.976473185163677],[-75.282548537658911,39.976022114401829],[-75.282337776013534,39.975752718207907],[-75.282053117669491,39.975444486707168],[-75.281931787591802,39.975526716494088],[-75.281096756486093,39.974747269567644],[-75.281091782201386,39.974749641150552],[-75.280410727983252,39.975074422694938],[-75.280312185903583,39.975121414545804],[-75.280237329719057,39.975157111408976],[-75.279116411063171,39.975730995506034],[-75.2799354940543,39.976652891573025],[-75.280570508811337,39.97782947642677],[-75.281048983174031,39.978725411477633],[-75.281082269361804,39.978771650600891],[-75.281231481513885,39.978884530790317],[-75.281892010063871,39.979360181426593],[-75.281055593566307,39.980097466515012]]]},"properties":{"OBJECTID_1":154,"OBJECTID":97,"ASSET_NAME":"Carroll Park Cobbs Creek","SITE_NAME":"Carroll Park Cobbs Creek","CHILD_OF":"Cobbs Creek Park","ADDRESS":"7800 CITY AVE","TYPE":"Land","USE_":"Park- Regional/Watershed","ACREAGE":31.372517999999999,"ZIPCODE":"19151","ALLIAS":" ","GLOBALID":"9bf0a301-d906-4269-a564-badb1ac952a5","Shape_Length":6307.5729982341545,"Shape_Area":1366581.3820286137}},{"type":"Feature","id":155,"geometry":{"type":"Polygon","coordinates":[[[-74.991575084693451,40.041035990962776],[-74.991501314894236,40.041070695431756],[-74.99143698777371,40.041114811216396],[-74.991297520470724,40.041183384798771],[-74.991215532361167,40.041244412822827],[-74.991187193544022,40.041260296486051],[-74.991139363634659,40.041316137474645],[-74.991109866193199,40.041338516118039],[-74.991051410465076,40.041370069476194],[-74.99102432533482,40.041399029770808],[-74.990981419951694,40.041465544991965],[-74.990940468025656,40.041506014910944],[-74.990903995837655,40.041524191886424],[-74.990750484912766,40.04158659217903],[-74.990713606998611,40.041614715245252],[-74.990622930545896,40.041703278924643],[-74.990614756897386,40.041752201561508],[-74.990604307324162,40.041814740519527],[-74.990592134132882,40.04188835544123],[-74.990541898312784,40.04192157837317],[-74.990477499285589,40.041964169121307],[-74.990465569583023,40.041994808055655],[-74.990918104459141,40.042383760815078],[-74.990986135021458,40.042456281911882],[-74.991039634374502,40.042512914123208],[-74.991046786899815,40.042531483918324],[-74.991056501289009,40.042549355647537],[-74.991063195524049,40.042558696513851],[-74.991083121741525,40.042582177575952],[-74.991121036991927,40.04261510949501],[-74.991149201428854,40.042639571444383],[-74.993178995600033,40.044438562542837],[-74.994003201167743,40.045160636371534],[-74.994029716559993,40.045141176064831],[-74.993389100031308,40.043883847020389],[-74.993798083935644,40.042601326520796],[-74.994327539016027,40.041868510044964],[-74.996344130905598,40.040995395985775],[-74.996307907342882,40.040964794189804],[-74.995761486124863,40.040490463301317],[-74.99574252621494,40.040474402193496],[-74.99502785947179,40.039869009734737],[-74.994858176226288,40.039740035612319],[-74.994551540658406,40.039947019216413],[-74.994337217117874,40.040091688729959],[-74.994174583409631,40.039946904098876],[-74.993918290609045,40.039718736220792],[-74.993707451083722,40.039531031508034],[-74.993630776888665,40.039458113555007],[-74.993572582735609,40.039407888183995],[-74.993533145013629,40.039313753400947],[-74.993466993832996,40.039160436984126],[-74.993465936911704,40.039003118693877],[-74.993465125304283,40.038882212092247],[-74.993479460645631,40.038806764703232],[-74.993496350218109,40.038717873423941],[-74.99350926279925,40.038649917596636],[-74.993512823368221,40.038631180663685],[-74.993494798989161,40.038652775567037],[-74.993440652918537,40.03871765132115],[-74.993363766651257,40.038862400589721],[-74.99327741026103,40.039024981700649],[-74.993198237247171,40.039174031745439],[-74.99311774634252,40.039301985869088],[-74.993001840301147,40.039513773029704],[-74.992973003588943,40.039566464553445],[-74.992955940009182,40.039634629760364],[-74.992846063680503,40.039854456671023],[-74.992762811026807,40.039924724652181],[-74.992666797119242,40.040111151842218],[-74.9925658674712,40.040198676970945],[-74.992403757729235,40.040274946701835],[-74.992181481302623,40.040446843566485],[-74.992144280164197,40.040460970235948],[-74.992102580234189,40.040519876435589],[-74.991986947635851,40.040639489175263],[-74.991975822924744,40.040693378890673],[-74.991978485291384,40.040803730742255],[-74.992008249573672,40.040884607980246],[-74.992040587345258,40.040924178106522],[-74.992003986826148,40.040945527696472],[-74.991891112682978,40.041019203508093],[-74.991868167123883,40.041034273422525],[-74.991775772951286,40.04102166993399],[-74.991737404594218,40.041020577358587],[-74.991625526626166,40.04102578671538],[-74.991575084693451,40.041035990962776]]]},"properties":{"OBJECTID_1":155,"OBJECTID":98,"ASSET_NAME":"Fish Hatchery","SITE_NAME":"Fish Hatchery","CHILD_OF":"Fish Hatchery","ADDRESS":"9201 N DELAWARE AVE","TYPE":"Land","USE_":"Park- Community","ACREAGE":31.297899000000001,"ZIPCODE":"19136","ALLIAS":"Pleasant Hill Park","GLOBALID":"19b33c33-9124-4f85-a304-bf806f3a0bdd","Shape_Length":6497.3024709925667,"Shape_Area":1363331.0925480125}},{"type":"Feature","id":156,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.020856386082286,40.058484501575691],[-75.020907173816582,40.058501083627633],[-75.021367171417168,40.058577906389552],[-75.022595951800014,40.058791906863597],[-75.022669416324902,40.058804701370256],[-75.022681483821444,40.058806802559715],[-75.023436730862997,40.05893455534801],[-75.023527847302461,40.058950326303915],[-75.023528357314774,40.058950415897769],[-75.023530473657289,40.058950772479349],[-75.023531576606246,40.058950959942273],[-75.024643239865526,40.059143298869621],[-75.024626526597871,40.058650188766769],[-75.024618917789539,40.058457013787397],[-75.024657231003161,40.058472043976451],[-75.024647866044035,40.058301535754886],[-75.024630880232365,40.05783637532619],[-75.024610735733475,40.057555505033505],[-75.024587833243118,40.057413864467193],[-75.02455330498141,40.057250233550441],[-75.024516641933602,40.057116802231327],[-75.024484175840925,40.057021077841675],[-75.02433298520981,40.056698010736042],[-75.023556684119612,40.056696216994233],[-75.023471426899221,40.056696019235666],[-75.022112094935565,40.056692863663017],[-75.022412344412203,40.057011755320559],[-75.021696222875292,40.057403345726442],[-75.021675300779279,40.057414786084848],[-75.021318141266505,40.05701801314612],[-75.021925986092285,40.056694946586809],[-75.019423514934417,40.056696714639251],[-75.019233102047053,40.056696504942394],[-75.019266710546418,40.057417967996912],[-75.019789022146782,40.05776098207717],[-75.019833394980637,40.057790702780245],[-75.019930867546904,40.057855413646649],[-75.020227592065567,40.058053512686882],[-75.020473827096311,40.05821839865235],[-75.020550400827616,40.058269566946201],[-75.020610191419109,40.058309443598212],[-75.020856386082286,40.058484501575691]]],[[[-75.01934492005644,40.056196187721554],[-75.019262946025734,40.056272880041348],[-75.021709378368257,40.056273576732579],[-75.021727394961985,40.056273581985685],[-75.021042585712209,40.055546777056698],[-75.020541305527388,40.055013891720989],[-75.020498721785785,40.054968622759333],[-75.01934492005644,40.056196187721554]]],[[[-75.02276926936301,40.055818786591402],[-75.022767951124479,40.056275857776463],[-75.023211643822791,40.056280207300738],[-75.023304336638091,40.056281116065222],[-75.024061606821675,40.05628853770309],[-75.023987481776146,40.056174672181534],[-75.023933288493666,40.056112632558062],[-75.023914893763418,40.056091574505629],[-75.023888191311613,40.056061003297145],[-75.023601532432139,40.055746792872895],[-75.023295326416218,40.055567497883622],[-75.023185922321105,40.055478068208991],[-75.023103479878159,40.055399363006977],[-75.023071218523143,40.055376823221003],[-75.023047731374263,40.055360413436922],[-75.022975570354447,40.055301047371231],[-75.022978740070002,40.055288205962498],[-75.02298320951725,40.055270100795987],[-75.022976667521434,40.055266693595875],[-75.022906910902719,40.055230359700545],[-75.022848655655523,40.055200015986514],[-75.022772290629675,40.05516023898118],[-75.02276926936301,40.055818786591402]]]]},"properties":{"OBJECTID_1":156,"OBJECTID":99,"ASSET_NAME":"Holme Crispin Park","SITE_NAME":"Holme Crispin Park","CHILD_OF":"Holme Crispin Park","ADDRESS":"3065 HOLME AVE","TYPE":"Land","USE_":"Park- Regional/Watershed","ACREAGE":27.819804999999999,"ZIPCODE":"19136","ALLIAS":" ","GLOBALID":"b3f6a473-b014-4565-95fb-a54ea0c2ac3b","Shape_Length":8206.818482527573,"Shape_Area":1211826.0210736741}},{"type":"Feature","id":157,"geometry":{"type":"Polygon","coordinates":[[[-75.181123994348923,39.967471671939997],[-75.181591185358698,39.967492098593084],[-75.183258304224552,39.967564973197661],[-75.183278009951138,39.967565833881764],[-75.183299798915854,39.967485091560562],[-75.183374830218582,39.967388547157825],[-75.183449941916265,39.967337103703834],[-75.183476509295375,39.967318817286198],[-75.183478715193218,39.967300785143124],[-75.183481005303037,39.96728207371946],[-75.183449200760592,39.967174477199627],[-75.183290222290196,39.966636634175082],[-75.183210626545701,39.966367348868161],[-75.183133593484996,39.96635788407351],[-75.183083669159117,39.966356767187214],[-75.183046976530449,39.966383237922791],[-75.18292394066097,39.9664514588206],[-75.182852685242366,39.966471706898091],[-75.182817022947262,39.966470908992214],[-75.182747144370694,39.966431111998972],[-75.182715466337683,39.96634852923475],[-75.182838129131682,39.965723533066289],[-75.182857625394874,39.965396475195448],[-75.18286319074538,39.965249200617592],[-75.182844886923462,39.965166918013772],[-75.18276225314996,39.96511048676377],[-75.182513605363752,39.964913841057907],[-75.18246725099084,39.964841872562765],[-75.182451462653745,39.964729049635757],[-75.182450390389661,39.964721388670135],[-75.182464364584234,39.964702392712681],[-75.182509646921289,39.964640840707304],[-75.182546957736008,39.964597993698192],[-75.182542328677442,39.96454508365229],[-75.182542049030729,39.964541886914176],[-75.182460918084615,39.964547618277692],[-75.182401493433545,39.964551816171166],[-75.182393265007235,39.964552627649667],[-75.182355129252457,39.96455639100683],[-75.182024047551195,39.964504084841984],[-75.181843620733261,39.964464194306586],[-75.181826353215371,39.964460375849974],[-75.181639007995088,39.964400062779276],[-75.181537576602352,39.964364663799117],[-75.181461451384649,39.964338097128632],[-75.181404303390963,39.964324233336846],[-75.181300049826149,39.964298941579045],[-75.181181934274733,39.964272765424298],[-75.181121645633098,39.964259405117311],[-75.180894378145709,39.96422625625727],[-75.180750257968484,39.96420350596447],[-75.18070104580049,39.964195737367113],[-75.180493993121686,39.964165019001229],[-75.180493140774786,39.964164892692409],[-75.18049135640355,39.964164765333095],[-75.180362392437758,39.964155559200705],[-75.180340394936934,39.964153988926718],[-75.180319924465735,39.96415647046053],[-75.180212500978172,39.964169491610825],[-75.18018409026412,39.964172935959219],[-75.180125086081276,39.964190321188092],[-75.180089229720849,39.964206354368265],[-75.180083104279817,39.964209302231325],[-75.179977802915019,39.964259978033745],[-75.179888094932508,39.964317830008646],[-75.179742556013593,39.96443350607877],[-75.179043415565985,39.964989179327894],[-75.179020904157227,39.965025253293021],[-75.179017861346182,39.965030128964457],[-75.179002574963533,39.965054623732676],[-75.178990732677804,39.965096497811089],[-75.178984176160625,39.965141246528276],[-75.179023514285234,39.965258108998242],[-75.179096811847671,39.965441206231525],[-75.179316306663182,39.966065314125807],[-75.179407130070828,39.96612430554066],[-75.179419969594832,39.966157575642299],[-75.179513771830557,39.966400644682714],[-75.179595880659789,39.966518085768804],[-75.1798547582558,39.96682159994662],[-75.180177870448972,39.967031162041728],[-75.180564611438982,39.967233478534773],[-75.181123994348923,39.967471671939997]]]},"properties":{"OBJECTID_1":157,"OBJECTID":100,"ASSET_NAME":"Philadelphia Museum of Art","SITE_NAME":"Philadelphia Museum of Art","CHILD_OF":"East Fairmount Park","ADDRESS":"2600 BENJ FRANKLIN PKY","TYPE":"Land","USE_":"Museum","ACREAGE":24.937259999999998,"ZIPCODE":"19130","ALLIAS":" ","GLOBALID":"97ad4157-0f50-4d06-a660-312d8dd0f606","Shape_Length":4237.5175322357245,"Shape_Area":1086262.7095156205}},{"type":"Feature","id":158,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.048808612050919,40.018301341342045],[-75.045550037047263,40.019927925593407],[-75.045510490406727,40.019951259469366],[-75.045562110237213,40.020006025625939],[-75.046054446600436,40.020563176928803],[-75.046092100116809,40.020607405038355],[-75.046107606666723,40.020615281340326],[-75.046121162768301,40.020617987435422],[-75.046140739234161,40.020618398849976],[-75.046159534043184,40.020613601802062],[-75.049335360870671,40.018971417185199],[-75.049362067892972,40.0189576060028],[-75.049386082187411,40.018944227060395],[-75.049392868341144,40.01893366507317],[-75.049397537786888,40.018922136032998],[-75.049389769752906,40.018899319858448],[-75.049370962858077,40.018878400266338],[-75.048931601528338,40.018390843513359],[-75.048843330147591,40.018283554988834],[-75.048808612050919,40.018301341342045]]],[[[-75.043539828324938,40.020948438476083],[-75.041446708893005,40.022017438874649],[-75.041073347038306,40.022220277968586],[-75.040696485029855,40.022435934588032],[-75.040662861682264,40.022459334536002],[-75.041107030481797,40.023048935237114],[-75.041129688697367,40.023079245023922],[-75.04115525175574,40.023089982189909],[-75.041172610544336,40.023084368143103],[-75.041188576603076,40.023079204204066],[-75.041209005322557,40.023069555573088],[-75.042598046210543,40.022397514424945],[-75.04259808897163,40.022397353243797],[-75.044062761941305,40.021680435280949],[-75.044069666132145,40.021677053240666],[-75.044117679840753,40.021653534600254],[-75.044171175923111,40.021627402326494],[-75.044182409760239,40.021605284019294],[-75.044182445311918,40.021592662026293],[-75.044158990238188,40.021565739156586],[-75.04388599582272,40.021252486166766],[-75.043884633744781,40.021250963727802],[-75.043600327901501,40.020923596058168],[-75.043539828324938,40.020948438476083]]],[[[-75.039454218114244,40.023109252605089],[-75.036339731492575,40.025043762991231],[-75.036307991950025,40.025070894257411],[-75.036472690077304,40.025281868157279],[-75.036489114981961,40.025296265857655],[-75.036507463551288,40.025299016936955],[-75.036525050686777,40.025297595262145],[-75.036564537651032,40.025279606177513],[-75.03660688990432,40.025258107599356],[-75.037600819240737,40.024743445138206],[-75.037600753066357,40.024743312021414],[-75.038317575674895,40.024371735025504],[-75.03865163660133,40.024202163356243],[-75.038771096290773,40.024142433674342],[-75.039032023241205,40.024026877863079],[-75.039032177130352,40.024026810312868],[-75.039299267173973,40.023909719850266],[-75.039299262865342,40.023909681003296],[-75.039805291087518,40.023680947503756],[-75.039805394367178,40.023680415616994],[-75.039877644926563,40.023646767997164],[-75.039891283627583,40.023638902913753],[-75.03990166769924,40.023622905606118],[-75.039899129264782,40.023611571725368],[-75.03988979779335,40.023596980606428],[-75.039849970923711,40.023545453754558],[-75.039520352576091,40.02310243296931],[-75.039505040639014,40.023082497071435],[-75.039454218114244,40.023109252605089]]],[[[-75.04484879651055,40.020301636558607],[-75.044294161252466,40.020575108605037],[-75.043693321410515,40.020873739454274],[-75.043666954807065,40.020886223829038],[-75.04370203282717,40.020928495339085],[-75.044214764147526,40.021512364084913],[-75.044239282063984,40.021540495969077],[-75.044266909658887,40.02156676566289],[-75.044285480821884,40.021573233994744],[-75.044316629599152,40.021567973254292],[-75.044334744935341,40.021560327579898],[-75.044357868729278,40.02154769816066],[-75.045914792913848,40.020739490278302],[-75.045962371341432,40.0207162444771],[-75.045977933916987,40.020706034417998],[-75.04599344636793,40.020692434323799],[-75.045997482363106,40.020671582632822],[-75.045993955331099,40.020659418285071],[-75.045985831436326,40.020647941315985],[-75.045967700704466,40.020628772501787],[-75.04581040643491,40.020448256874083],[-75.04521866540378,40.02074662863582],[-75.04484879651055,40.020301636558607]]],[[[-75.040004103000427,40.023565374243923],[-75.040022072737571,40.023572526482546],[-75.040037896395901,40.02357319455578],[-75.040067055492528,40.023560353380645],[-75.040828798832123,40.023224901169144],[-75.040995064858592,40.023152014375505],[-75.041019929226593,40.023141114335054],[-75.04103936365658,40.023131771161246],[-75.041043766683956,40.023126079462621],[-75.041044902496623,40.023120526039449],[-75.041044202252834,40.023105857506472],[-75.041032270851431,40.02308968687651],[-75.041023478241641,40.023077770274526],[-75.040729542407647,40.022679075151864],[-75.04072566746477,40.022674062178766],[-75.040584152634466,40.022490929904961],[-75.040552683349773,40.02251112964931],[-75.039656768747619,40.023033538892001],[-75.039618937227701,40.023055060545929],[-75.039828316578109,40.02332972352179],[-75.039946023267959,40.02348777810866],[-75.039946081792806,40.023487750656173],[-75.040004103000427,40.023565374243923]]]]},"properties":{"OBJECTID_1":158,"OBJECTID":101,"ASSET_NAME":"Disston Park","SITE_NAME":"Disston Park","CHILD_OF":"Disston Park","ADDRESS":"6501-6951 KEYSTONE ST","TYPE":"Land","USE_":"Park- Neighborhood","ACREAGE":23.500046999999999,"ZIPCODE":"19135","ALLIAS":" ","GLOBALID":"683e2223-ace3-4a0b-8d6d-3f078ff1698b","Shape_Length":10910.222996883906,"Shape_Area":1023658.066825224}},{"type":"Feature","id":159,"geometry":{"type":"Polygon","coordinates":[[[-74.993075260861161,40.129759978333688],[-74.993029545405946,40.130092145612721],[-74.992989122948259,40.130184476179764],[-74.992963920897495,40.130242039192893],[-74.992955584029104,40.130261081519592],[-74.992852417389301,40.130318329870121],[-74.992763712976625,40.130367553075089],[-74.992621550759125,40.130446439768562],[-74.992694616958048,40.130629285095068],[-74.992730702738029,40.130684491445209],[-74.992795667038934,40.130783877136651],[-74.992911570929294,40.130947150962228],[-74.993008428763346,40.131072891215332],[-74.993090370096397,40.131169521847333],[-74.993140810456751,40.131248918731622],[-74.993164110425766,40.131335817857355],[-74.993219410499293,40.131427691048941],[-74.993311410061139,40.131540954701826],[-74.993487359193495,40.131701547379485],[-74.993596054721706,40.131778220548306],[-74.993773940391748,40.13191319693351],[-74.993843145212495,40.13184711624239],[-74.995993550110541,40.129793693246775],[-74.994328190033073,40.129198511613616],[-74.996086473403182,40.127183085695862],[-74.996089799069722,40.127160087355186],[-74.995626487835366,40.126994352949673],[-74.995191513583251,40.126842623894873],[-74.995068209732366,40.126799399133915],[-74.995029431482848,40.126784210913847],[-74.995025263553273,40.126781200642988],[-74.994994717496539,40.126735516756888],[-74.994979741036104,40.126702478295051],[-74.994966407151381,40.126669025945674],[-74.994962626482589,40.126642024276634],[-74.994980791234113,40.126604056183204],[-74.995208516916534,40.126395431650678],[-74.995169685943878,40.126363382449938],[-74.994666052381163,40.126089560798718],[-74.994877718759511,40.125869410549058],[-74.994891825750045,40.125855054893002],[-74.994759475464022,40.125781850965751],[-74.994743621102756,40.125797812784519],[-74.994719787411256,40.125787006621714],[-74.994502911628885,40.126009288030595],[-74.993916194918711,40.125682582999957],[-74.992762524087382,40.125045576236552],[-74.991405376025895,40.126122767282446],[-74.991379849708139,40.126143027202367],[-74.992181980496568,40.12597173089064],[-74.992403246815016,40.125919447045135],[-74.992562031528436,40.125893898580273],[-74.992581512737686,40.125890764128023],[-74.992732298211536,40.125877987218914],[-74.992925642246874,40.125874384112677],[-74.993111732677093,40.125895236430402],[-74.993245640467507,40.12592815349393],[-74.993537116245378,40.125999802023109],[-74.993814956105069,40.126046725853854],[-74.994207860483201,40.12610177479975],[-74.994327950920422,40.126158338537586],[-74.994403366071936,40.126273858633425],[-74.994492268343436,40.126503185124612],[-74.99449107304217,40.126618582476759],[-74.994533109966127,40.126866187686439],[-74.994503101711047,40.127010781106144],[-74.994422431817142,40.127188698364606],[-74.994293177343906,40.127437699464359],[-74.994200203415446,40.12750087612929],[-74.993901308502927,40.127703982715417],[-74.993897202164277,40.1277099349388],[-74.993654176497586,40.128062220590508],[-74.993651845058196,40.128308891642888],[-74.993700131532009,40.12838256362906],[-74.993704801241989,40.128389688506267],[-74.993763063906172,40.128478581503217],[-74.993756125583218,40.128505848047347],[-74.993727220919098,40.128619439691988],[-74.993527651388362,40.128731894762467],[-74.993432827617838,40.128820083251156],[-74.993384249360446,40.128958815965198],[-74.993389632493859,40.129030905586966],[-74.993408569060009,40.129284507362314],[-74.993456422669311,40.12949344005218],[-74.993459523394989,40.129536107557165],[-74.99346712068477,40.129640659625018],[-74.993359014399402,40.129700106638317],[-74.993153167629615,40.129691897272565],[-74.993075260861161,40.129759978333688]]]},"properties":{"OBJECTID_1":159,"OBJECTID":102,"ASSET_NAME":"Poquessing Creek Park 1","SITE_NAME":"Poquessing Creek Park","CHILD_OF":"Poquessing Creek Park","ADDRESS":"1217 STEVENS RD","TYPE":"Land","USE_":"Park- Watershed\\Conservation","ACREAGE":23.591906999999999,"ZIPCODE":"19116","ALLIAS":" ","GLOBALID":"232d9ef1-12fb-465b-83d9-fc72a3f17fcb","Shape_Length":7826.7417292824657,"Shape_Area":1027659.4429139064}},{"type":"Feature","id":160,"geometry":{"type":"Polygon","coordinates":[[[-74.97116210582692,40.102315442113138],[-74.970860490967638,40.10238263648678],[-74.970725998814274,40.10240885201695],[-74.970429499759689,40.102459689270482],[-74.970252078460533,40.102484580679864],[-74.969931613185196,40.10252262226102],[-74.969373114606427,40.102582658023159],[-74.968427509164215,40.102686758321234],[-74.968423823229685,40.102687164729247],[-74.966938283787272,40.102847874067436],[-74.966767323061433,40.102867737190564],[-74.966737779749025,40.102885005555905],[-74.966731048925112,40.102913046158726],[-74.966738692823853,40.102948280212885],[-74.966746480641845,40.102984181840569],[-74.967042763425525,40.104208512298356],[-74.967167389787235,40.104730022822004],[-74.967268827268498,40.105139954440297],[-74.967427385021992,40.105118986497118],[-74.971736629006358,40.104336698922474],[-74.971399908390623,40.102395048826565],[-74.97138325839272,40.102299041019791],[-74.971373071278762,40.102261499492208],[-74.97116210582692,40.102315442113138]]]},"properties":{"OBJECTID_1":160,"OBJECTID":103,"ASSET_NAME":"Junod Playground","SITE_NAME":"Junod Playground","CHILD_OF":"Junod Playground","ADDRESS":"3102 MECHANICSVILLE RD","TYPE":"Land","USE_":"Recreation Site","ACREAGE":23.515986000000002,"ZIPCODE":"19154","ALLIAS":" ","GLOBALID":"975b91ca-274a-4339-b1f8-a0477f34a5c0","Shape_Length":4201.3684480972524,"Shape_Area":1024352.0371926827}},{"type":"Feature","id":161,"geometry":{"type":"MultiPolygon","coordinates":[[[[-74.992429172680247,40.100016854127922],[-74.994558490202408,40.098581483945878],[-74.994543204920618,40.098569655144296],[-74.994547967171869,40.098556902106409],[-74.991386794211408,40.096017930081885],[-74.991272391092451,40.09592440327561],[-74.991253562429662,40.095912834979096],[-74.991234281887557,40.095912372268529],[-74.991209729613601,40.095922899471823],[-74.990519754123625,40.096421387226201],[-74.989555330864093,40.097118931110408],[-74.988924093748622,40.097572504647395],[-74.988656850236652,40.097760617454071],[-74.988572267522756,40.097823429952058],[-74.988467272706202,40.097913542704944],[-74.988369809144686,40.097996425930937],[-74.988276940334586,40.098084977234834],[-74.988086003827036,40.098271217680725],[-74.987825017452337,40.098518766405654],[-74.987576232436709,40.098762902594522],[-74.987433649162369,40.098887313149326],[-74.987128450224517,40.099094891708098],[-74.987044090746082,40.09915214984111],[-74.987009291890615,40.099177251550174],[-74.987008009592316,40.099208715681492],[-74.987016895425228,40.09922745606054],[-74.987049431375397,40.099257881299728],[-74.987380891266994,40.099530782994748],[-74.987698268187955,40.099794082323037],[-74.987945454675554,40.100003818196022],[-74.988279270627444,40.100292652292573],[-74.988346288257333,40.100350639192115],[-74.988562010175897,40.100545107924006],[-74.988779134534525,40.100740838956334],[-74.989275253215681,40.101177021259105],[-74.989878889597421,40.101710270108484],[-74.989909694917259,40.101723978722305],[-74.989923679392987,40.101705675943684],[-74.991576798323592,40.100591411949878],[-74.99187383251622,40.100391192120433],[-74.992095967874235,40.100241458112819],[-74.992429172680247,40.100016854127922]]],[[[-74.988978498562432,40.094183513488836],[-74.988868603303231,40.09426414941025],[-74.988758801066908,40.094345029853592],[-74.988638543544369,40.094433200959308],[-74.988370490265538,40.094628890292952],[-74.987951177499085,40.094946901059458],[-74.987901514838271,40.09498089708115],[-74.987848124662619,40.095018578980586],[-74.987793842367651,40.095056241221798],[-74.987739574022001,40.095093559566834],[-74.987687123403475,40.0951301484533],[-74.987632840966413,40.095167809718042],[-74.987576725569824,40.095206542430169],[-74.987492091797449,40.095265016936004],[-74.98740375480115,40.095326577741311],[-74.987349470914126,40.095364237943471],[-74.986331738925202,40.096116653769649],[-74.986292860841971,40.096155422752567],[-74.986353250661978,40.09621939689476],[-74.986881408029134,40.096774001532431],[-74.986925759067788,40.096904529112749],[-74.98701391909357,40.097195481158053],[-74.987004974125654,40.097381892219943],[-74.98696458418415,40.097459823263961],[-74.986919880689712,40.097523540825179],[-74.987844138481719,40.0982726366436],[-74.987866358918154,40.098251239511264],[-74.98795471260884,40.098165533731105],[-74.988133666101092,40.097995507719688],[-74.988243536042972,40.097890287978096],[-74.988424655409148,40.097743444828389],[-74.988539161341194,40.097659025553767],[-74.988842133881406,40.097439756360338],[-74.988976679503722,40.0973420983902],[-74.989204886228066,40.097175783966641],[-74.989512904757873,40.096952757004871],[-74.989736702344715,40.096792252999315],[-74.989769751545168,40.096768658334781],[-74.989834059324636,40.096722134221601],[-74.989898059143698,40.09667553510036],[-74.989993281249085,40.096606202025683],[-74.990182713106392,40.096468957557498],[-74.990381714203835,40.096324923220799],[-74.990403252669395,40.096309204889295],[-74.990459572844145,40.096268103229718],[-74.990504642465794,40.096235212295177],[-74.990592011707449,40.096171614743632],[-74.990711171748188,40.096086291447314],[-74.990711616468971,40.096085973233478],[-74.99082490291282,40.096004854674483],[-74.991051088987859,40.095842328626091],[-74.991083032783251,40.095819003524703],[-74.991090737614883,40.095790317430421],[-74.991080511571681,40.095772174155748],[-74.991034510752129,40.095733853439164],[-74.991010125905618,40.095713539371737],[-74.990988324714522,40.095695212884728],[-74.990987996883192,40.095694936499143],[-74.989169016308054,40.094163466897037],[-74.989165382709317,40.094160413319827],[-74.989085222166068,40.09409319863682],[-74.988978498562432,40.094183513488836]]]]},"properties":{"OBJECTID_1":161,"OBJECTID":104,"ASSET_NAME":"Palmer Playground","SITE_NAME":"Palmer Playground","CHILD_OF":"Palmer Playground","ADDRESS":"11701 THORNTON RD","TYPE":"Land","USE_":"Recreation Site","ACREAGE":74.158547999999996,"ZIPCODE":"19154","ALLIAS":" ","GLOBALID":"18a68c93-521a-4e80-bd14-636d2db1b82b","Shape_Length":10141.899441821302,"Shape_Area":3230333.3476443244}},{"type":"Feature","id":162,"geometry":{"type":"Polygon","coordinates":[[[-75.178345440594569,39.998672232278331],[-75.17832232534046,39.998686702763173],[-75.178310546948666,39.998695822929641],[-75.178301267623965,39.998706515483427],[-75.178294834143045,39.998718378233654],[-75.178290495507639,39.998735062373875],[-75.178288686164365,39.998743272401065],[-75.177982768164526,40.00013176461124],[-75.177943722696625,40.00031494390992],[-75.177682689899513,40.001521734981473],[-75.177670337122862,40.001576770385853],[-75.177726614428721,40.001584892600832],[-75.178892331207152,40.001731518784325],[-75.17887368702597,40.001810680323871],[-75.178832112687942,40.00198719973168],[-75.178924598422171,40.001999342609381],[-75.179924203962599,40.002130575027159],[-75.179972860793143,40.002136963168105],[-75.180322021937542,40.000544168881063],[-75.180768675986727,39.998578966062219],[-75.181011560061037,39.997470334635395],[-75.181021371737771,39.997434934561362],[-75.180952625327805,39.997426666379901],[-75.180355742863412,39.997349157249566],[-75.180331574931316,39.997345776252978],[-75.180314608760511,39.99734340341832],[-75.180293668173874,39.997344669993382],[-75.18027657991118,39.997354067028269],[-75.18026343452965,39.997363041453589],[-75.178368060066362,39.998657334415192],[-75.178367867644255,39.998657125574901],[-75.178345440594569,39.998672232278331]]]},"properties":{"OBJECTID_1":162,"OBJECTID":105,"ASSET_NAME":"29th & Chalmers Park","SITE_NAME":"29th & Chalmers Park","CHILD_OF":"29th & Chalmers Park","ADDRESS":"3001 W LEHIGH AVE","TYPE":"Land","USE_":"Park- Community","ACREAGE":22.938545000000001,"ZIPCODE":"19132","ALLIAS":" ","GLOBALID":"f6778629-e6ce-440a-89c3-f0450e230115","Shape_Length":4518.0523777225644,"Shape_Area":999198.87650652765}},{"type":"Feature","id":163,"geometry":{"type":"Polygon","coordinates":[[[-75.187162709181948,39.988765676323951],[-75.18712107770277,39.988797560585041],[-75.187109340946506,39.988841069535994],[-75.187096967984999,39.988886941142077],[-75.18705261524336,39.989094374903864],[-75.186583057248697,39.991248031088247],[-75.186573728468389,39.991290817105529],[-75.186542782671381,39.991430543767478],[-75.186522822156277,39.991522018040847],[-75.186517932612119,39.991544425060745],[-75.186506414948667,39.991599050104227],[-75.18648828825755,39.991685014211249],[-75.186489715349694,39.991687457184327],[-75.186524002429024,39.991746167742619],[-75.186626481255701,39.991776316506431],[-75.186688707436574,39.991790441922461],[-75.186812423143365,39.991820521468114],[-75.18694817046989,39.991864040492125],[-75.18701487065006,39.991887873991722],[-75.187133830618563,39.991934655315937],[-75.187133915972865,39.991934690559077],[-75.187253001607544,39.991983112596316],[-75.187338854672632,39.99201855324673],[-75.187485291759344,39.992072722339735],[-75.187562396593123,39.992092588192648],[-75.187705596776183,39.992121005982945],[-75.18783587493715,39.99212813263329],[-75.187917224182442,39.992124272116691],[-75.188069313176825,39.992115805039433],[-75.188157235198062,39.992105889413466],[-75.188259433047207,39.992094363272741],[-75.188504682852994,39.992066217208219],[-75.188623323657623,39.992046337725981],[-75.188691977095274,39.992034833917479],[-75.188769626608391,39.992021071952806],[-75.188872561378176,39.992002827577188],[-75.188972748008879,39.991981320510945],[-75.189003374041363,39.991972046790536],[-75.189089562793527,39.991935211099168],[-75.189141035352179,39.991903692530286],[-75.189228081839303,39.991846623007795],[-75.189262547538164,39.99179650297156],[-75.189269362114729,39.991772880993594],[-75.189286740896662,39.991712621828391],[-75.189312830904541,39.991599472289593],[-75.189334678328791,39.991484263900261],[-75.189360758947174,39.991368003862945],[-75.189374583839864,39.991309972886967],[-75.18941038141638,39.991210044148708],[-75.189431223763549,39.991160750919555],[-75.189478712825363,39.991063743657548],[-75.189537172888336,39.990952697428483],[-75.189586200937924,39.990862616271734],[-75.189643175571874,39.990765761979645],[-75.189681925086845,39.990704650484567],[-75.189722362547855,39.990644190215775],[-75.189763238398015,39.990580799722593],[-75.189826880551564,39.990488251324471],[-75.189895488114928,39.990394519797853],[-75.189942724135165,39.990333804742733],[-75.190020567895843,39.990240441334414],[-75.190119297371652,39.990105928819759],[-75.190355179894766,39.98988298654178],[-75.190450404437087,39.989792982892517],[-75.190539166190277,39.989715723976175],[-75.190577811507083,39.989681799605435],[-75.190651854975755,39.989611961977545],[-75.190730921717446,39.989542854403012],[-75.190763543536704,39.989507814467053],[-75.190772033239014,39.989470090246371],[-75.190755449800974,39.989420897558986],[-75.190701377235001,39.98938101880524],[-75.190622849928232,39.989355784818478],[-75.190498862937034,39.989322725432316],[-75.190127347787836,39.989222179656643],[-75.18993838848634,39.989176433191524],[-75.189727427542834,39.989126839378798],[-75.189506572211954,39.989077561445832],[-75.189506482737883,39.989077542330698],[-75.189324720468562,39.989040509565079],[-75.189128167376211,39.98900537829882],[-75.188955501186896,39.988976915554673],[-75.18862303527456,39.988926670865858],[-75.188405519157044,39.988897405524959],[-75.188405235911006,39.988897368569162],[-75.188061246873147,39.988853210867362],[-75.187853517860333,39.988826771348286],[-75.187853450250515,39.98882676263095],[-75.187672107481404,39.988803300367124],[-75.187549584286728,39.988788473504144],[-75.187546989825393,39.988788160596023],[-75.187371485291607,39.988769323328242],[-75.187270887777601,39.988761290959999],[-75.18720565421539,39.988757151207245],[-75.187162709181948,39.988765676323951]]]},"properties":{"OBJECTID_1":163,"OBJECTID":106,"ASSET_NAME":"Mander Playground","SITE_NAME":"Mander Playground","CHILD_OF":"East Fairmount Park","ADDRESS":"2102 N 33RD ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":22.296336,"ZIPCODE":"19132","ALLIAS":" ","GLOBALID":"2bc1a182-1bae-440e-a24c-9a36c6a19f26","Shape_Length":3960.0188836103944,"Shape_Area":971224.4843446759}},{"type":"Feature","id":164,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.221982929671597,40.035277103892845],[-75.221948934432007,40.035289613819977],[-75.221911189659011,40.03530350352554],[-75.221893563743109,40.035311284905347],[-75.221144685017379,40.035641891063008],[-75.221144213073714,40.035642099614364],[-75.220376263915952,40.035981200013801],[-75.21981676967593,40.036222389219077],[-75.219804918031457,40.036227699911862],[-75.219125321464418,40.036532259791549],[-75.219068246547508,40.036560475596296],[-75.219034041471829,40.036577385041539],[-75.219003306136642,40.036614625370312],[-75.21899629517776,40.036643671322935],[-75.219000975646054,40.036672994726636],[-75.219016911971138,40.036699880284715],[-75.219042631157279,40.036721834007786],[-75.219098003584094,40.036746280970881],[-75.219169509972446,40.036775155917319],[-75.21925189007365,40.036808132982237],[-75.219328175836267,40.036838508778786],[-75.219514260309182,40.036908180510892],[-75.219827624686388,40.037003129364173],[-75.219829206984045,40.037003573272592],[-75.219940649536127,40.037034818599082],[-75.220308438930488,40.037140028076465],[-75.220308495420966,40.037140619474059],[-75.220613288892338,40.037225527663423],[-75.220697022280731,40.037251350713404],[-75.22076394307372,40.037273495924516],[-75.221122955672797,40.037399770304695],[-75.221349691299167,40.037480513462747],[-75.221385078870711,40.037492768516444],[-75.221440692171555,40.037468099051722],[-75.223050807280814,40.036767982787161],[-75.223104906770672,40.036744459543783],[-75.223646274835886,40.036509096107793],[-75.223691624155805,40.036498595952601],[-75.223621378423871,40.036409556899166],[-75.223576679586628,40.036351578467368],[-75.223506052691235,40.036270865171609],[-75.223471264244665,40.036235220554147],[-75.223428112544653,40.036194473415527],[-75.223340154994176,40.036120073186154],[-75.223256605465338,40.03605853517881],[-75.223185779982458,40.036014150898424],[-75.223137098149252,40.035987575396561],[-75.223125347862592,40.035981483837332],[-75.223044013308979,40.035940207359786],[-75.222951502929959,40.035894697125336],[-75.222831457582757,40.035847392560676],[-75.222746866954949,40.035816412895599],[-75.222676470485681,40.035787970056909],[-75.222540304401122,40.035713863492553],[-75.222508491067899,40.035693373030192],[-75.222435233783358,40.035644531581696],[-75.222335993344473,40.035573854744506],[-75.222249804476007,40.035507377183215],[-75.22217203588653,40.035440191983099],[-75.222141136775633,40.035411401726563],[-75.222080293323614,40.035350407599459],[-75.222042408145768,40.035309255044041],[-75.222017416136822,40.035281047966315],[-75.222000915681278,40.035275231056012],[-75.221982929671597,40.035277103892845]]],[[[-75.222184707933621,40.035181333289053],[-75.222101998486806,40.035244946067998],[-75.22213420314776,40.035291047097218],[-75.222236016458027,40.035399784805115],[-75.222408746038639,40.035543683031143],[-75.222510538940369,40.035611635496238],[-75.222797492329462,40.035754687682896],[-75.222922482924403,40.035800383791944],[-75.223154416180066,40.035906560337764],[-75.223294431389476,40.035989169739402],[-75.223536256319562,40.036179763932374],[-75.22364899396679,40.036304251257029],[-75.223740005052932,40.036359489327666],[-75.224162941542815,40.036172641194376],[-75.225189291511512,40.035731220944243],[-75.225384747912443,40.035647155725613],[-75.225293590885869,40.035562969451284],[-75.225179061000915,40.035415153624776],[-75.225048251464642,40.035322255912256],[-75.225007826959768,40.035258764208976],[-75.225048831154083,40.035214399577598],[-75.224305070124444,40.034242110996189],[-75.222184707933621,40.035181333289053]]]]},"properties":{"OBJECTID_1":164,"OBJECTID":107,"ASSET_NAME":"Gorgas Park","SITE_NAME":"Gorgas Park","CHILD_OF":"Gorgas Park","ADDRESS":"6300 RIDGE AVE","TYPE":"Land","USE_":"Park- Community","ACREAGE":21.074024999999999,"ZIPCODE":"19128","ALLIAS":" ","GLOBALID":"30508ccf-71e4-4d99-81f0-909a00187511","Shape_Length":5608.9383007573269,"Shape_Area":917980.88475758256}},{"type":"Feature","id":165,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.169982031332026,39.914101705708198],[-75.169934116987534,39.914127812009653],[-75.169883885879528,39.914155181638058],[-75.169858181067852,39.914179582929464],[-75.169834162601205,39.91429014755964],[-75.169758838381284,39.914636894117258],[-75.169758824230357,39.914636958671942],[-75.169736520858791,39.914739937491156],[-75.169664770859896,39.91507122372564],[-75.169591857896393,39.915407636665094],[-75.1695171588797,39.915752242857458],[-75.169517120445363,39.915752423096599],[-75.169463134426763,39.91599778903597],[-75.169365290897133,39.916453905650165],[-75.169376486846929,39.916475414414201],[-75.169394106679945,39.916483269607035],[-75.169777616522225,39.916532561932001],[-75.17007310108329,39.916570539552424],[-75.170348560107101,39.916605937645713],[-75.170516178892171,39.916627485871523],[-75.171218318040189,39.91671063665531],[-75.171235676043153,39.916698687660485],[-75.171371351661989,39.916087696323068],[-75.17139542313258,39.915979294142879],[-75.171454323081534,39.915714043535722],[-75.171490521628613,39.915551026031451],[-75.171550751331168,39.91527253784669],[-75.171581682421021,39.915129522432636],[-75.171619357583822,39.914955321369803],[-75.171649736438653,39.914814857813582],[-75.171668908824245,39.914726206499047],[-75.171747237512704,39.914364032611033],[-75.171750420438087,39.914327340065512],[-75.171730184206467,39.914314836619042],[-75.171342685281033,39.914263290306685],[-75.171060071663618,39.914227255925653],[-75.170914824508188,39.914208735365541],[-75.170536614049837,39.914159736987166],[-75.170324015854789,39.91413219399297],[-75.170222546001952,39.914119047292793],[-75.17010432343551,39.914103731408431],[-75.170023045830092,39.914093201337849],[-75.169982031332026,39.914101705708198]]],[[[-75.172008517969914,39.914357637931673],[-75.172000195514883,39.914368274690517],[-75.171994532758688,39.91439402811767],[-75.17196636254593,39.914523450813839],[-75.171870464820685,39.914964025338286],[-75.171866770930322,39.914980993085827],[-75.171494534907694,39.916691067263152],[-75.171493985637227,39.916708757156862],[-75.171505307386326,39.916725456203686],[-75.171525671862867,39.916735892025457],[-75.171979871243337,39.916797101277893],[-75.172102365647035,39.916811415527185],[-75.172162922618938,39.91681849221051],[-75.17218737675563,39.916820813416493],[-75.172217519617689,39.916820275651915],[-75.172237714405355,39.916816489512023],[-75.172256830088941,39.916810210326425],[-75.172302940806233,39.91679191843312],[-75.172459559696378,39.916727376797304],[-75.172552135131838,39.916689226719491],[-75.172939368896934,39.916534457291384],[-75.172964100238303,39.916524833503765],[-75.172982329280885,39.916517739576904],[-75.173010040379467,39.916506956472595],[-75.173029877902906,39.916490582197945],[-75.173038697395285,39.916469243468043],[-75.173045371610883,39.916438933771218],[-75.173050920587357,39.91641373727073],[-75.173057630094306,39.916383267986021],[-75.173057651214165,39.916383173854136],[-75.173137388559979,39.916019376544547],[-75.173197747262648,39.915740496794427],[-75.173197841007322,39.915740061008151],[-75.17328711214769,39.915325691300346],[-75.173364992990955,39.914966448236051],[-75.173365018470278,39.914966331676744],[-75.173432540857618,39.914660809450879],[-75.173451515428539,39.914575400702837],[-75.173451964472861,39.914557531959915],[-75.173441560480086,39.914541560127759],[-75.173432950027731,39.914535473087419],[-75.173405565587913,39.914528274857325],[-75.173284976832264,39.914513117242109],[-75.173175933310205,39.914499411025346],[-75.173015492822316,39.91447946865523],[-75.173014978065453,39.914479404826302],[-75.172734131726571,39.914444364904263],[-75.172734038575157,39.914444352899125],[-75.172424041926149,39.9144030571222],[-75.172337929482154,39.914391585671737],[-75.17209148929733,39.914359557622362],[-75.172031092701033,39.914351888886884],[-75.172008517969914,39.914357637931673]]]]},"properties":{"OBJECTID_1":165,"OBJECTID":108,"ASSET_NAME":"Marconi Plaza","SITE_NAME":"Marconi Plaza","CHILD_OF":"Marconi Plaza","ADDRESS":"2700 S BROAD ST","TYPE":"Land","USE_":"Park- Square\\Plaza","ACREAGE":18.838097000000001,"ZIPCODE":"19148","ALLIAS":" ","GLOBALID":"b948e332-ce82-4001-b815-01e7652a6c34","Shape_Length":5272.098012978011,"Shape_Area":820584.35884010198}},{"type":"Feature","id":166,"geometry":{"type":"Polygon","coordinates":[[[-75.213047733533585,39.877226165644039],[-75.213753508282878,39.87681318459169],[-75.215041288700888,39.876304820762201],[-75.215711221330224,39.876181994105394],[-75.215623173288137,39.87591052268963],[-75.215629152607448,39.875640085717777],[-75.215643580222661,39.875238118061532],[-75.215649620486943,39.875075991937727],[-75.215650411138,39.875054770095467],[-75.215657778427143,39.874857024261871],[-75.215663578032633,39.874618900472484],[-75.21567311999442,39.874459957554073],[-75.21569205280386,39.873741595342203],[-75.215715405073055,39.873310224456525],[-75.215746722987973,39.872469567426251],[-75.215766104353719,39.872144673874104],[-75.215779501475907,39.871589682433552],[-75.215798882434555,39.871264788876353],[-75.215805973563647,39.870918208477015],[-75.215442984854377,39.871129367264729],[-75.214969894403723,39.871437156979042],[-75.214466703320767,39.87185230536884],[-75.213979931587758,39.872217333707027],[-75.21350707634565,39.872599497098818],[-75.212601272430319,39.873269346228099],[-75.212070004416375,39.873655819228951],[-75.211575730351854,39.874026279603783],[-75.211153319447035,39.874334770756008],[-75.21117996978316,39.874452605252976],[-75.211175293869232,39.874771743480949],[-75.211191569254467,39.874965882053452],[-75.211195658661808,39.875147201445614],[-75.211270443515829,39.875307911661544],[-75.211417325066989,39.875623555501328],[-75.211159378153383,39.875934202804189],[-75.211331387448752,39.87602951071122],[-75.211018560651098,39.87641064555406],[-75.211262549991744,39.876515029449926],[-75.211451428594827,39.876593101669911],[-75.211720157295929,39.876713368608165],[-75.211931971142434,39.876807280431215],[-75.212017241440265,39.876849599814861],[-75.212061867915622,39.876865923301303],[-75.212177001433133,39.876883805625702],[-75.212464340358707,39.876941752373583],[-75.212568161998092,39.876971931172946],[-75.212659688311561,39.876992080657097],[-75.212738662884774,39.877002364567574],[-75.212814284647123,39.877019203768207],[-75.212884001427028,39.877075689665425],[-75.213047733533585,39.877226165644039]]]},"properties":{"OBJECTID_1":166,"OBJECTID":109,"ASSET_NAME":"Fort Mifflin","SITE_NAME":"Fort Mifflin","CHILD_OF":"Fort Mifflin","ADDRESS":"4800 FORT MIFFLIN RD","TYPE":"Land","USE_":"Historic House","ACREAGE":43.079743999999998,"ZIPCODE":"19153","ALLIAS":" ","GLOBALID":"d9e86d83-eb65-405a-9beb-8d70605ba7f9","Shape_Length":6069.7815523803183,"Shape_Area":1876545.7418342738}},{"type":"Feature","id":167,"geometry":{"type":"Polygon","coordinates":[[[-75.230914354656264,39.916321203922365],[-75.230944410078678,39.916346454293127],[-75.230979654867582,39.916320769037611],[-75.230984355548756,39.916317031359739],[-75.230997407937068,39.916327925569838],[-75.231035012484625,39.916299658525936],[-75.231694531139325,39.915840338587579],[-75.23175900488495,39.915794666754998],[-75.231860579803069,39.915724378185878],[-75.231929236936921,39.915676195159804],[-75.23211469154883,39.91554447418654],[-75.232172784813343,39.915504064393943],[-75.232460693455735,39.915305997121131],[-75.232643929861666,39.915178447801544],[-75.233035299385136,39.915492958369441],[-75.233066413324039,39.915521928203496],[-75.233610248902991,39.91515298694565],[-75.23360565177893,39.915148337816355],[-75.233826963885875,39.914990859598042],[-75.233891640190095,39.914944837869768],[-75.233929038642358,39.914919398131033],[-75.233962119606971,39.914896896390061],[-75.234053444451604,39.914834420616266],[-75.234065927054971,39.914826285530118],[-75.234057038931283,39.914818041885063],[-75.23401926139924,39.91478676370162],[-75.234004879903551,39.914774408087908],[-75.233980022480935,39.914753051377723],[-75.233983442199161,39.914750595521994],[-75.233942664312139,39.91471664038108],[-75.233905716637238,39.91468586330334],[-75.233879345523974,39.914663897614439],[-75.233864054977687,39.914651161633515],[-75.233861969925556,39.914652647570342],[-75.233822078865657,39.914619646179716],[-75.23378376083464,39.914585969311133],[-75.233744784762607,39.914553697057229],[-75.233709117537927,39.914523640880624],[-75.233686702939778,39.914503465763808],[-75.233670912119067,39.914490338555154],[-75.233674330669004,39.914487914217915],[-75.233636713360752,39.914456236671327],[-75.233633034555723,39.914458895861593],[-75.233590874769916,39.914423845279721],[-75.233465663739892,39.914319333051175],[-75.233453858699747,39.914309480122157],[-75.23345102802547,39.91430711774516],[-75.233468658129794,39.91429473488342],[-75.23348527965311,39.914283047075308],[-75.233493501482855,39.914277266540694],[-75.233623230889876,39.914184910959904],[-75.233659096190621,39.914159378200615],[-75.233611921302767,39.914121367699337],[-75.232819960042391,39.913468742065348],[-75.232819625093384,39.913468466214304],[-75.232771160810699,39.913427826759118],[-75.23275819377983,39.913418774454989],[-75.232751136436633,39.913415889483915],[-75.232737723630791,39.913412177511674],[-75.23272194047108,39.91341092637547],[-75.232709341886448,39.913412431932038],[-75.232700137693797,39.913415167093881],[-75.232694288807423,39.913418196669483],[-75.23269161346407,39.913421689659984],[-75.231115759377261,39.914552041859224],[-75.231120436211711,39.914555197188058],[-75.231105641702399,39.914565688634092],[-75.231101246351486,39.914562452092056],[-75.231069751635374,39.914536877300144],[-75.230207559245528,39.913844765369639],[-75.23013506251651,39.913786566824406],[-75.229996759962688,39.913887339148516],[-75.229937683216974,39.913837490364728],[-75.229929069173508,39.913828750554259],[-75.229930270423765,39.913833085530804],[-75.229929965832923,39.913839882272093],[-75.229928702224413,39.913844110812448],[-75.229924225131228,39.913850026566529],[-75.229920406726421,39.913852755552547],[-75.229900439734635,39.913867025462373],[-75.22972797431909,39.913990279688711],[-75.229724684752995,39.913992630161317],[-75.22971907030319,39.913993528476013],[-75.229713389900624,39.913992923376874],[-75.229707987581861,39.913997631269154],[-75.229764314501693,39.91405026237512],[-75.229768544001331,39.914054214321354],[-75.229747286707891,39.914069737062839],[-75.228966977488781,39.914639538959783],[-75.228920402035754,39.914673550149509],[-75.22886868051954,39.914711317951166],[-75.228839485432289,39.91473263690294],[-75.228737402056524,39.914807186889369],[-75.228789163133627,39.91485417512893],[-75.228821159123513,39.914883220518213],[-75.228839427856087,39.91489980416997],[-75.228852709165679,39.914911860553595],[-75.22886359862845,39.914921746093583],[-75.228900691918298,39.914955418447533],[-75.228991289303949,39.915023255506377],[-75.229113548702799,39.91511479834098],[-75.229143170522192,39.915137510574795],[-75.229151807911393,39.915143445247359],[-75.229167626450931,39.91515984522816],[-75.229172530565791,39.915156964441181],[-75.229184871707844,39.915151273873249],[-75.229206254772237,39.915142753846581],[-75.229226387369508,39.915136622800567],[-75.229243605337274,39.915132542313387],[-75.229267932186772,39.915128884812731],[-75.229290626664849,39.915127281734406],[-75.229312270891228,39.915127622440757],[-75.229325161247218,39.915128641052426],[-75.229345495118736,39.91513115588473],[-75.229367411362148,39.915135584082755],[-75.229384737230689,39.915140553770641],[-75.22941524136688,39.915152504885967],[-75.229430598693611,39.915160264928893],[-75.229451559832199,39.915173444231542],[-75.229470582538852,39.915187528766083],[-75.230914354656264,39.916321203922365]]]},"properties":{"OBJECTID_1":167,"OBJECTID":110,"ASSET_NAME":"James Finnegan Playground","SITE_NAME":"James Finnegan Playground","CHILD_OF":"James Finnegan Playground","ADDRESS":"6801 GROVERS AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":17.614293,"ZIPCODE":"19142","ALLIAS":"Paschall Playground","GLOBALID":"8d13b595-98fe-4748-95a2-511f9db36826","Shape_Length":4390.3334264569021,"Shape_Area":767275.67410393374}},{"type":"Feature","id":168,"geometry":{"type":"Polygon","coordinates":[[[-75.099722165447048,40.046035299352987],[-75.099707735602593,40.04604481923149],[-75.099688671201406,40.046058724732404],[-75.099685494720433,40.046068222220654],[-75.099587203174096,40.046134412213718],[-75.099559107131427,40.046142874305403],[-75.099537428367427,40.046157557422305],[-75.099341624293245,40.046290174014054],[-75.099153473521923,40.046414969327209],[-75.099083412351604,40.046461195619194],[-75.0990491233797,40.046483735687524],[-75.099043059213201,40.046501394758025],[-75.09905123792403,40.046524196738069],[-75.099065636946946,40.046536956081162],[-75.099094500333678,40.046552040499932],[-75.099399341548946,40.046701066030003],[-75.100175590233675,40.047088603728632],[-75.100188589516748,40.047095094584705],[-75.100279098685903,40.047139702992489],[-75.10146384818195,40.047731965950142],[-75.101479907018003,40.047740005789407],[-75.101615651132093,40.047807967388053],[-75.102025352373531,40.048011988285083],[-75.10243961386584,40.0482245851708],[-75.102464179775396,40.048236596256366],[-75.102483179225999,40.048243855850536],[-75.102513800840711,40.048245677054865],[-75.102533133994001,40.048240989434333],[-75.102548226037115,40.04823171692798],[-75.102610258664484,40.048167352249884],[-75.102842979528006,40.047924664661465],[-75.102920493480653,40.047845539056567],[-75.103207991275283,40.047552847873767],[-75.103883751113813,40.046863003361238],[-75.103953681336947,40.046791168369552],[-75.103969821573443,40.04677337264318],[-75.103971564640489,40.046759190004096],[-75.103966101271254,40.046744069184854],[-75.103954984298142,40.04673337645827],[-75.103946117888782,40.046728166090965],[-75.103942599892434,40.046726413641053],[-75.103604587535756,40.046558014587781],[-75.103451380113626,40.046481458100118],[-75.102471168164541,40.0459943949174],[-75.102471211491334,40.045994366181915],[-75.102330310138569,40.045922239217127],[-75.102122403765733,40.045815428498145],[-75.101937458707013,40.045721120526196],[-75.101811904659087,40.045649598078533],[-75.101576173115035,40.045500391902003],[-75.101417336230696,40.045383159927226],[-75.101232277004172,40.04524266839956],[-75.101167012089462,40.045187785365876],[-75.10114442595625,40.045168789764411],[-75.101127963831118,40.045153318754465],[-75.101111019036907,40.045143244611324],[-75.101091057563693,40.045140232576486],[-75.101060766771965,40.045150574423552],[-75.100306400764595,40.0456521891861],[-75.100108912168068,40.045781726276211],[-75.100074482735096,40.045804308446897],[-75.09978010579286,40.045998044860035],[-75.099722165447048,40.046035299352987]]]},"properties":{"OBJECTID_1":168,"OBJECTID":111,"ASSET_NAME":"Lawncrest Recreation Center","SITE_NAME":"Lawncrest Recreation Center","CHILD_OF":"Lawncrest Recreation Center","ADDRESS":"6000 RISING SUN AVE","TYPE":"Land","USE_":"Recreation Center","ACREAGE":17.377078999999998,"ZIPCODE":"19111","ALLIAS":" ","GLOBALID":"0b16530a-faaa-44bf-bef3-e9e84efcd917","Shape_Length":3609.8056029422492,"Shape_Area":756942.62436221552}},{"type":"Feature","id":169,"geometry":{"type":"Polygon","coordinates":[[[-75.203980335463456,40.072044061245279],[-75.203814842532168,40.072208539396506],[-75.203972173528555,40.072303519988829],[-75.204126837400509,40.072396017577475],[-75.204266405975574,40.072480908577319],[-75.204378021337931,40.072548705406724],[-75.204378219704509,40.072548826029866],[-75.204949521907579,40.071994938764561],[-75.20523793692864,40.072169773216963],[-75.205648678526941,40.072420126956509],[-75.205867469105357,40.072207948738836],[-75.206097630276275,40.071980368764073],[-75.206352759915958,40.071728418462683],[-75.206667604971173,40.071416241949095],[-75.206860980608198,40.071222589873848],[-75.206946296946057,40.071134800486483],[-75.206997193209091,40.071084210289307],[-75.20739679296203,40.07132008355557],[-75.207508111412963,40.071211864064388],[-75.207099752843959,40.07096853710518],[-75.206733249477082,40.07074964023721],[-75.206438144367198,40.070574510027264],[-75.205988644847579,40.070305072745512],[-75.205850337445682,40.070223391325975],[-75.20569936771814,40.070132341892126],[-75.205811089414993,40.070023930223137],[-75.205452391147858,40.069809671719987],[-75.205054988922868,40.069570900930763],[-75.204812249326807,40.069424952549738],[-75.204353362401889,40.069524195556433],[-75.204194793148687,40.069678431752223],[-75.203682484341769,40.070183961779236],[-75.203242507024925,40.070615602329688],[-75.2030060139152,40.070843642749267],[-75.20408052399489,40.071476104209118],[-75.204231775414058,40.071564890561561],[-75.204376860413504,40.07164990457207],[-75.204298230732618,40.07172753912247],[-75.204204781035301,40.071821811156909],[-75.204153992058835,40.07187218991448],[-75.203980335463456,40.072044061245279]]]},"properties":{"OBJECTID_1":169,"OBJECTID":112,"ASSET_NAME":"Pastorius Park","SITE_NAME":"Pastorius Park","CHILD_OF":"Pastorius Park","ADDRESS":"200 W HARTWELL LN","TYPE":"Land","USE_":"Park- Community","ACREAGE":16.042209,"ZIPCODE":"19118","ALLIAS":" ","GLOBALID":"c0febed2-27b9-4ab2-b68a-979ca5ea8517","Shape_Length":4045.4192340419236,"Shape_Area":698795.72516548063}},{"type":"Feature","id":170,"geometry":{"type":"Polygon","coordinates":[[[-75.049237451672496,40.027423383291229],[-75.049217832438856,40.027433216380601],[-75.048718617158571,40.027692220408369],[-75.047573413784647,40.028281756542356],[-75.047561252177601,40.028287848888674],[-75.047550948370088,40.028296383547534],[-75.047545451479891,40.028314215728031],[-75.047545270254588,40.02832415365129],[-75.047548315430902,40.028330745310399],[-75.047562926075486,40.028347923451399],[-75.048125491047102,40.028984468057345],[-75.048125330344803,40.028984530053158],[-75.048610240363615,40.029543947894169],[-75.04861011810199,40.029544074769426],[-75.048967868786903,40.029952643793472],[-75.049347584500282,40.03038672684184],[-75.049347250184184,40.030388058840757],[-75.049384603560114,40.03043047561485],[-75.049798352257156,40.03090030903671],[-75.049861217413593,40.030971695004084],[-75.049908716638029,40.030949023152473],[-75.050537185799953,40.030655661832704],[-75.050632430733529,40.030615619732473],[-75.050863510917026,40.030508368446753],[-75.051093362385558,40.030403523372819],[-75.051589341173582,40.030174946775382],[-75.051615583787196,40.030160651020481],[-75.051656602058088,40.030141051949578],[-75.051428555713485,40.029881034637683],[-75.051427228101872,40.029879521216138],[-75.050685556553702,40.029032001342223],[-75.050685932443756,40.029031921874598],[-75.050121764952706,40.028387034219755],[-75.04951850587068,40.027696525912539],[-75.049355869749192,40.027509669340944],[-75.049320235969361,40.027468438187761],[-75.049302235721498,40.0274477475621],[-75.049286479417916,40.027429634446406],[-75.049274433443173,40.027418396193482],[-75.049254196189551,40.027416662396355],[-75.049237451672496,40.027423383291229]]]},"properties":{"OBJECTID_1":170,"OBJECTID":113,"ASSET_NAME":"Vogt Recreation Center","SITE_NAME":"Vogt Recreation Center","CHILD_OF":"Vogt Recreation Center","ADDRESS":"4131 UNRUH AVE","TYPE":"Land","USE_":"Recreation Center","ACREAGE":15.946933,"ZIPCODE":"19135","ALLIAS":" ","GLOBALID":"e57bf9d7-1b98-4c4a-81cf-3b6d32210013","Shape_Length":3535.6762019519015,"Shape_Area":694645.63135097316}},{"type":"Feature","id":171,"geometry":{"type":"Polygon","coordinates":[[[-75.053345197569072,40.017017783227246],[-75.053285203343464,40.017048701137625],[-75.053273989561276,40.017054480201935],[-75.052645248227194,40.017377960099843],[-75.052392817843,40.017508065711347],[-75.052225513828844,40.017594295766408],[-75.05167954473508,40.017876716343302],[-75.051661799179641,40.017885896400031],[-75.051627323117614,40.017904074920331],[-75.05157666707639,40.017930786370393],[-75.051568510145174,40.017951963061535],[-75.051573682306042,40.01796256291432],[-75.051578269356526,40.017971962334272],[-75.051613629084599,40.018011770900166],[-75.053596557777624,40.020276789266731],[-75.053695328661419,40.020389020305203],[-75.053724745862851,40.020422447956712],[-75.053754110582986,40.020433919418117],[-75.053786180372526,40.020428156058095],[-75.053896969962736,40.020369914111463],[-75.05545340695393,40.019566028048864],[-75.055505817194984,40.019538957798865],[-75.055556718403849,40.019507506360931],[-75.055567794800751,40.019464244752015],[-75.055542978258231,40.019428511632505],[-75.055496993262381,40.019375768260311],[-75.0554576246534,40.019330888597572],[-75.053476837151237,40.017072731052409],[-75.053450375722775,40.017042168665668],[-75.053433493313804,40.017022670851965],[-75.053412009633178,40.017002003538884],[-75.053387810142922,40.016998842892001],[-75.053345197569072,40.017017783227246]]]},"properties":{"OBJECTID_1":171,"OBJECTID":114,"ASSET_NAME":"American Legion","SITE_NAME":"American Legion","CHILD_OF":"American Legion","ADDRESS":"6201 TORRESDALE AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":15.764649,"ZIPCODE":"19135","ALLIAS":" ","GLOBALID":"36e0b72b-95ab-406e-9b2b-8265224426b3","Shape_Length":3423.9569681385133,"Shape_Area":686705.26444777159}},{"type":"Feature","id":172,"geometry":{"type":"Polygon","coordinates":[[[-75.000024472197452,40.0504283279639],[-75.000028166726722,40.05045974280339],[-75.000082146715826,40.050509656412025],[-75.000157091362183,40.050574691598591],[-75.000390735574143,40.05078089617718],[-75.000636361345087,40.05099842593436],[-75.00106237704685,40.051375830611683],[-75.001819784530554,40.052049447129399],[-75.002342247125526,40.052509873863329],[-75.002591342300519,40.052732373073688],[-75.002801356532387,40.052919678726845],[-75.002868047692218,40.052875240006635],[-75.003244882451455,40.052577455734458],[-75.003800500287028,40.052138842476708],[-75.00435833141114,40.051693337804977],[-75.00368347439786,40.051118934025936],[-75.003545471619233,40.050998502003488],[-75.003369371814856,40.050846921063105],[-75.003108701619837,40.050622768009667],[-75.003072536951137,40.050591669875359],[-75.003045040163784,40.050568024446314],[-75.00290105522663,40.050447417909837],[-75.002830199054927,40.050453787989383],[-75.00275352604119,40.050456164168544],[-75.002696031889272,40.050456417418644],[-75.002629327253501,40.050450574529933],[-75.002570399734324,40.050443429946888],[-75.002502030734178,40.050431000952436],[-75.002429103472707,40.050415291150998],[-75.002393760077709,40.050406251546512],[-75.002308221905693,40.050387781938937],[-75.002239961714224,40.050364736355299],[-75.002124370337128,40.050325711742062],[-75.002029104690578,40.050286647003674],[-75.001940008657883,40.050243620021547],[-75.001847397781759,40.050195320558586],[-75.001755968373956,40.050140174166849],[-75.001687342116853,40.050093410698771],[-75.001640201701562,40.05005918231987],[-75.001519994057929,40.049961081924415],[-75.001446737661098,40.049897366642774],[-75.001405816598606,40.049860845985414],[-75.001277303763629,40.049749027941608],[-75.001223542293133,40.049703119950181],[-75.001219542234836,40.049670522862108],[-75.001178847845253,40.04965842366893],[-75.001153296684038,40.049664482835269],[-75.001126570270728,40.049682590832461],[-75.000981129329816,40.049781131620335],[-75.000505210562096,40.050099484299317],[-75.000255618405603,40.050265414295488],[-75.000097700575949,40.050369484352615],[-75.000068880674874,40.050388344851044],[-75.000024472197452,40.0504283279639]]]},"properties":{"OBJECTID_1":172,"OBJECTID":115,"ASSET_NAME":"Jacobs Playground","SITE_NAME":"Jacobs Playground","CHILD_OF":"Jacobs Playground","ADDRESS":"9050 TORRESDALE AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":14.806549,"ZIPCODE":"19136","ALLIAS":" ","GLOBALID":"7c9a7b20-d182-4b7c-91fa-8d351b9cdb45","Shape_Length":3451.8370508911921,"Shape_Area":644970.7896836797}},{"type":"Feature","id":173,"geometry":{"type":"Polygon","coordinates":[[[-75.078862190672936,40.072665207936687],[-75.078920926794638,40.072700143179958],[-75.078963449312724,40.072725434356506],[-75.079188242505182,40.072850398940382],[-75.079334249263411,40.072932047398311],[-75.079495135309671,40.0730218246037],[-75.079640302912594,40.073102343976274],[-75.079801249471188,40.073192302347259],[-75.079912319737318,40.073254101121847],[-75.079953462455407,40.073275997181376],[-75.079985002189204,40.073292968492346],[-75.081217511852586,40.07397186353478],[-75.081272911198454,40.074000209130922],[-75.082419153225075,40.074641721574409],[-75.082466291689386,40.074670279379703],[-75.082490528696724,40.074667580214062],[-75.082593431483261,40.074664476012067],[-75.082624193238829,40.074654976762552],[-75.082655479881481,40.074632101177322],[-75.082666446356058,40.074603261225064],[-75.082681531042908,40.074515126797252],[-75.082919025755174,40.072980745762287],[-75.08153921770861,40.072224601345141],[-75.080455496388538,40.071615329686935],[-75.080418959487645,40.071655670054106],[-75.080225845159291,40.071877254102588],[-75.079860625866544,40.071682540181449],[-75.079829920723228,40.071665332314439],[-75.079819275936373,40.071659348962022],[-75.07981310473123,40.071656125818294],[-75.078862190672936,40.072665207936687]]]},"properties":{"OBJECTID_1":173,"OBJECTID":116,"ASSET_NAME":"Fox Chase Playground","SITE_NAME":"Fox Chase Playground","CHILD_OF":"Fox Chase Playground","ADDRESS":"601 BORBECK AVE","TYPE":"Land","USE_":"Recreation Center","ACREAGE":14.633584000000001,"ZIPCODE":"19111","ALLIAS":" ","GLOBALID":"3eb7c2f5-eb2a-4f25-9765-e40ca6c60dde","Shape_Length":3468.486613095477,"Shape_Area":637436.27643612365}},{"type":"Feature","id":174,"geometry":{"type":"Polygon","coordinates":[[[-74.999396728173679,40.0578581322075],[-74.999366148531493,40.057867443345557],[-74.9993521838189,40.057871635051775],[-74.999307159395613,40.057885148911993],[-74.99581879809412,40.058794571647248],[-74.99578183823391,40.05880368295081],[-74.995769893781841,40.05880763792554],[-74.99576059097032,40.058813507014129],[-74.995754784789042,40.058820420461245],[-74.995751868004021,40.058827911375666],[-74.995751643165036,40.058835730835504],[-74.995754584147562,40.058845002115198],[-74.995758166723647,40.058858255264383],[-74.995761105949484,40.058869129496649],[-74.995764320836244,40.058877171080844],[-74.996046519519552,40.059583246049584],[-74.996078913917657,40.059664303824469],[-74.99611726389216,40.059733153440945],[-74.996142650916639,40.05977590115117],[-74.996165633313311,40.059810549213985],[-74.996193838592205,40.059849332195661],[-74.996221787205172,40.059884819229566],[-74.996260455729328,40.059929189085153],[-74.996294032423819,40.059964146007054],[-74.996308692534356,40.059978717980741],[-74.996329308414403,40.059998725551644],[-74.996355749504403,40.060022012041976],[-74.996381464337858,40.060043806076514],[-74.996412715999256,40.060068674780517],[-74.99645066060225,40.060096072779686],[-74.996481603424058,40.060117544255988],[-74.996509379404287,40.060136027586339],[-74.99655985023756,40.060167678717853],[-74.996594165891409,40.060188047894677],[-74.996624170561375,40.060204119292827],[-74.996656966182883,40.060220653133719],[-74.996684441172121,40.06023329300978],[-74.996708400245168,40.060243714902633],[-74.996732154833865,40.060253396621192],[-74.996760703066414,40.06026501966533],[-74.996785200753578,40.060275230984523],[-74.996807411807794,40.060284487340027],[-74.99683455948194,40.06029580287985],[-74.99686853498244,40.060309965395781],[-74.996882014923997,40.06031432517802],[-74.996915920069384,40.060319733050967],[-74.996966017321782,40.060258771724001],[-74.997172417850066,40.060150101998715],[-74.998511904075855,40.059444845480861],[-74.998632946778059,40.059381112310646],[-74.998709542642729,40.059360711901498],[-74.99881216567853,40.059341490646261],[-74.998885527421578,40.059333317609898],[-74.998996596057694,40.059330860883307],[-74.999178613929118,40.05932408458284],[-74.99998548713117,40.059287370541327],[-75.000180417458097,40.059278522919243],[-75.000430445037424,40.059262807396543],[-75.000454974027065,40.05925879719122],[-75.000541990065969,40.059244569441724],[-75.000536485402506,40.059229935992285],[-75.000532668183666,40.059219786970516],[-75.000538700425466,40.059207110994627],[-75.00054234187705,40.059193908350608],[-75.000543079388095,40.059175972307344],[-75.000540108466495,40.059159669450459],[-75.000532269966627,40.059141165947395],[-75.000513164889867,40.059116842269823],[-74.999476982075862,40.057901844014047],[-74.999455486535453,40.057876542024914],[-74.999444363759238,40.057866517212453],[-74.999430230648159,40.057859563239639],[-74.999416133552899,40.057857042461286],[-74.999396728173679,40.0578581322075]]]},"properties":{"OBJECTID_1":174,"OBJECTID":117,"ASSET_NAME":"Torresdale Playground","SITE_NAME":"Torresdale Playground","CHILD_OF":"Torresdale Playground","ADDRESS":"9550 FRANKFORD AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":14.094023999999999,"ZIPCODE":"19114","ALLIAS":" ","GLOBALID":"b4252d4e-5310-4e8f-bdac-dc519c416271","Shape_Length":3483.7466736471838,"Shape_Area":613933.3799779925}},{"type":"Feature","id":175,"geometry":{"type":"Polygon","coordinates":[[[-75.092564566263476,40.066637728705643],[-75.090507171468772,40.068525768669353],[-75.09282350300056,40.069628220050781],[-75.09434892785103,40.067704888899002],[-75.094342867506086,40.067701252826666],[-75.094290164476689,40.067669636610823],[-75.094152238518404,40.06758689475857],[-75.0926790754189,40.06670311952427],[-75.092566746142552,40.066635729266032],[-75.092565286417553,40.066637067782629],[-75.092564566263476,40.066637728705643]]]},"properties":{"OBJECTID_1":175,"OBJECTID":118,"ASSET_NAME":"Burholme Driving Range","SITE_NAME":"Burholme Driving Range","CHILD_OF":"Burholme Driving Range","ADDRESS":"401 W COTTMAN AVE","TYPE":"Land","USE_":"Golf","ACREAGE":13.700820999999999,"ZIPCODE":"19111","ALLIAS":" ","GLOBALID":"06f0cc83-e818-4d88-8162-2f1854cd75d0","Shape_Length":3113.870391614043,"Shape_Area":596805.41606810712}},{"type":"Feature","id":176,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.178938643142146,39.966437406250378],[-75.178938891280595,39.966437409107591],[-75.178949340290657,39.966437645950741],[-75.178959252534696,39.966435079429552],[-75.178962216484763,39.966433062704823],[-75.17896657946622,39.966430094324821],[-75.17901430508941,39.966395033148352],[-75.179049495329139,39.966367647010863],[-75.179049524294498,39.966367624233563],[-75.179074064646045,39.966348526635535],[-75.179089173841234,39.966336672686737],[-75.179111767584814,39.966318947855221],[-75.179125236312217,39.96630767974424],[-75.179136646817128,39.966298135102519],[-75.179145074566719,39.966287638833791],[-75.179147557767649,39.966281678414944],[-75.179149981595813,39.96627586353069],[-75.17915134368279,39.966263449270556],[-75.179150866262518,39.966260810321067],[-75.179149129928845,39.966251212579067],[-75.179145133538853,39.966244370850532],[-75.17914242491787,39.966239733920112],[-75.17908685207756,39.966174131235505],[-75.179075792666467,39.966161094463651],[-75.179061072393878,39.966142592114402],[-75.17901362189626,39.966083013550239],[-75.17896690635331,39.966023788411775],[-75.178948914774608,39.966000977085635],[-75.178884054562275,39.965922927733352],[-75.178832858550663,39.965859912489037],[-75.178799651373879,39.96581903815995],[-75.17873954742295,39.96574465339998],[-75.178725497171257,39.965727263451456],[-75.178668402638891,39.965656253707557],[-75.178643568809065,39.965627578374331],[-75.178610267821455,39.965589126506813],[-75.178550094378551,39.965514608532793],[-75.1785429358101,39.965505743417566],[-75.178479916370449,39.965426233082127],[-75.178422819591589,39.965359038941045],[-75.178389369629869,39.965319672740975],[-75.178348860241741,39.965270093006346],[-75.178292155294145,39.965200690184929],[-75.178233003675302,39.965129665631281],[-75.178192299184488,39.965080791460728],[-75.178104505788738,39.964972232874942],[-75.178061355330399,39.964917483284893],[-75.178054275162907,39.964908499157978],[-75.177982601482313,39.964821929713601],[-75.17795369768298,39.964784078072363],[-75.177929842189471,39.964754320761259],[-75.17789813243769,39.964719882309033],[-75.177876331980229,39.964699619972961],[-75.177862793374473,39.964687036567156],[-75.177825605270414,39.964655864889288],[-75.177785487397244,39.964631406735862],[-75.177742582502376,39.964609891863553],[-75.177697773404716,39.964591507649921],[-75.177697734137695,39.96459149325441],[-75.177664297273367,39.964580159421757],[-75.177653347738428,39.964577099173113],[-75.177630746533708,39.964570781827376],[-75.177595326207552,39.964563341831131],[-75.17757339657571,39.964560162440449],[-75.177501272871737,39.964549728062316],[-75.177403660582286,39.964537085898712],[-75.177332571210158,39.964527879259094],[-75.177171873397995,39.964507937826241],[-75.177171826770575,39.964507932275637],[-75.17701395171126,39.964488312507484],[-75.177013750060382,39.964488288163125],[-75.176844191169749,39.96446780967419],[-75.176844103764694,39.964467798703858],[-75.176726890010769,39.964452934155155],[-75.176726798413867,39.964452941110942],[-75.176711676998835,39.964454050797592],[-75.176698105874948,39.964459025458133],[-75.176687086304966,39.96446727486093],[-75.176680439764965,39.964477854151184],[-75.176676095246975,39.964487723715671],[-75.176675558422744,39.964488943360237],[-75.176675116644063,39.964500606073834],[-75.176677784573414,39.96450668197398],[-75.176677879276369,39.964506902143093],[-75.176680045011565,39.964511830602596],[-75.176683121608804,39.96451574242522],[-75.176687707535919,39.964521571216189],[-75.17669444924627,39.964527490704789],[-75.176699795968489,39.964532184162998],[-75.176711909489811,39.964542196695518],[-75.176724938194582,39.964551542279466],[-75.176734336395569,39.964555555334819],[-75.176737741490001,39.964557008451074],[-75.176740743240387,39.964558290338857],[-75.176757475060612,39.964564158168436],[-75.176775130545977,39.964569011447161],[-75.176811381253913,39.964577897525892],[-75.176846725809469,39.964587057902101],[-75.176858377085537,39.964590170006623],[-75.176870575498342,39.964593428631332],[-75.176882057849895,39.964596518023768],[-75.176942134377626,39.964612282418017],[-75.176988841434479,39.964622225557257],[-75.176989047015468,39.964622269812082],[-75.177004092954533,39.964625472444851],[-75.177046738677191,39.964632739477388],[-75.177066152046862,39.964636040041455],[-75.177066214883254,39.964636050460712],[-75.177182320411234,39.964654957875823],[-75.177251352528032,39.96466487622736],[-75.177252404152654,39.964665027752012],[-75.177299461324409,39.964671788127717],[-75.177370292333109,39.964680740311977],[-75.177416678626074,39.964686602604118],[-75.177511819150737,39.964695382554027],[-75.177511882157674,39.964695388471803],[-75.177607066932396,39.96470129960921],[-75.177703318017933,39.964704315292451],[-75.177866728344156,39.964771666786241],[-75.177817793142893,39.964773681852563],[-75.177817575156652,39.964773686876804],[-75.177768789052891,39.964774269050828],[-75.177768478776684,39.964774268401911],[-75.177750114678233,39.964773963021159],[-75.177719436094407,39.964773462649511],[-75.177610117917339,39.96477113792352],[-75.177609776188717,39.964771132964984],[-75.177500242935778,39.964765458753298],[-75.177434759461562,39.964760002646393],[-75.177391728288029,39.964756417666102],[-75.17732773764439,39.964749790315977],[-75.177278121742901,39.964744085329556],[-75.177263842417844,39.964742437051207],[-75.177263773629321,39.964742429201685],[-75.177199837301799,39.964734306415465],[-75.177181190255041,39.964731918665308],[-75.177173738207685,39.964732138997213],[-75.177161539511033,39.964732504272511],[-75.177142664155625,39.964736113943346],[-75.177129015195916,39.964741257201389],[-75.177125465746329,39.964742594900592],[-75.177118351527156,39.964746725991738],[-75.177109956238155,39.964751600523137],[-75.177097038351548,39.964762854621647],[-75.177096261961154,39.964764247296408],[-75.177095123802729,39.964766287795953],[-75.177087418190609,39.964776480251579],[-75.177086671148288,39.964777469029713],[-75.177079823771066,39.964793321070317],[-75.177078091458668,39.964805236861046],[-75.177077410705238,39.964809916772879],[-75.177077623717494,39.964813011122338],[-75.177078563691722,39.964826591541978],[-75.177081190097738,39.964833146740254],[-75.17708426997919,39.964840837472416],[-75.177092691358609,39.964854072082041],[-75.177099021148322,39.964860790516539],[-75.177103842526378,39.964865907363276],[-75.177172230328708,39.964921041247443],[-75.177262899635878,39.965001081341072],[-75.177354624563904,39.965076473276788],[-75.177445462628953,39.965151758752562],[-75.177532774752024,39.965225848743529],[-75.17757090812708,39.965258408541168],[-75.177604514610152,39.965287103303126],[-75.177710379313893,39.965375398192862],[-75.177724742974192,39.965387378412053],[-75.177734567065414,39.965395487021389],[-75.177829434671168,39.965473787197432],[-75.177967014980823,39.965591505393917],[-75.177967448206388,39.965591877312427],[-75.177984140492597,39.965606159525187],[-75.178153642824569,39.965748346450852],[-75.178260066255007,39.965836210026104],[-75.178403841756278,39.965950914782347],[-75.178488939076473,39.966036455780277],[-75.178665571037442,39.966202529846804],[-75.178706058500708,39.966239932679969],[-75.178767302901974,39.966296510170515],[-75.178845190642178,39.966363508671925],[-75.178888283495297,39.966400576978536],[-75.178901143999198,39.966411289871687],[-75.178928939032119,39.966434442515904],[-75.178929499306875,39.966434613648687],[-75.178938643142146,39.966437406250378]]],[[[-75.173892393750293,39.959611158550892],[-75.173892378287462,39.959611226680714],[-75.173889771838802,39.959622346132555],[-75.173877647324886,39.959683307686475],[-75.173870404992741,39.959716609619534],[-75.173870388086982,39.959716684925063],[-75.173865760604485,39.959737966581194],[-75.173862634223582,39.95975060067525],[-75.173862624566695,39.959750639202021],[-75.173854168586146,39.959784822104481],[-75.173842567027791,39.959831928795602],[-75.173842527025428,39.9598320882778],[-75.173841497585556,39.959836201716726],[-75.173834588372117,39.959877669808471],[-75.173832612007075,39.959886036394167],[-75.17383140150676,39.959891157605902],[-75.173832668994265,39.959904789573756],[-75.173838423437502,39.959917705975769],[-75.173843195850722,39.959923079563957],[-75.173848691517591,39.959929264987402],[-75.173885192296652,39.959954887695453],[-75.173953696616181,39.96000706015279],[-75.173976356929956,39.960023010528758],[-75.174053633627821,39.960077403568654],[-75.174293162625744,39.960254982209676],[-75.174503119466266,39.960411729985495],[-75.174588309071467,39.960474079630131],[-75.174588788724336,39.960474430079422],[-75.174729700151133,39.960577559701292],[-75.174815273335284,39.960640766532627],[-75.174815545497822,39.960640969062482],[-75.174910225036044,39.960710902654867],[-75.174975216458975,39.960760465574054],[-75.174975251735788,39.960760492495211],[-75.174975440647529,39.960760636392287],[-75.175031625332835,39.960803481882159],[-75.175038317464498,39.960805197139607],[-75.175045763128665,39.960807111313436],[-75.175059741847349,39.96080758542756],[-75.175060020143263,39.960807595277629],[-75.175073437781677,39.960804986143579],[-75.175073502432355,39.960804979485438],[-75.175074879204388,39.960804335525914],[-75.175085310626812,39.960799452787548],[-75.175095422542469,39.960791476906373],[-75.17510204366657,39.96078171976432],[-75.175103844773787,39.960772845560022],[-75.175104236510577,39.960770912667911],[-75.17511061834476,39.960742414481565],[-75.175110732690044,39.960741899866129],[-75.175128939953751,39.960660584773166],[-75.175182654865807,39.960419305951163],[-75.175182702966566,39.960419087183432],[-75.175202175657574,39.960329989596296],[-75.175229114499473,39.960206733656818],[-75.175270011498796,39.96002223372686],[-75.175270381570058,39.960012468739571],[-75.17527083857226,39.96000040992103],[-75.175267198649891,39.959978744457501],[-75.175263481017538,39.959969077847404],[-75.175259075963709,39.959957622615605],[-75.175248242373613,39.959937467990521],[-75.175233787023188,39.959918649377443],[-75.175220268076757,39.959905152439696],[-75.175216594740775,39.95990148486834],[-75.175212778035984,39.959898696171457],[-75.175195757978571,39.959886255933462],[-75.175173051729828,39.959873303345461],[-75.174866623119172,39.959789829718098],[-75.174492172692197,39.959688479366427],[-75.174429536285629,39.959671401898277],[-75.174308494704022,39.959638398739948],[-75.174238980921928,39.959620112578556],[-75.174213974107531,39.959613524262963],[-75.174138556790126,39.959593604407971],[-75.174054970727084,39.959571515257259],[-75.174054818191934,39.959571492911095],[-75.173906800574144,39.959549694119573],[-75.173892393750293,39.959611158550892]]],[[[-75.177077871579172,39.963483494843125],[-75.177077680232671,39.963483507671391],[-75.177075612888601,39.963485411102589],[-75.177074906724314,39.963486062917262],[-75.177066007550678,39.963500876026757],[-75.177025387847337,39.963568498850663],[-75.17699653631216,39.963617375103581],[-75.176976762340587,39.96365087100579],[-75.176937265993985,39.963716591728122],[-75.176927245996907,39.963733264611108],[-75.176908238867455,39.963763948520054],[-75.176889233357613,39.963794589213904],[-75.176870231468442,39.963825102943368],[-75.176853341428142,39.963849570482537],[-75.176839079061452,39.963870232506416],[-75.176818927878941,39.963894763856999],[-75.176803533370375,39.963913504754998],[-75.176792104130811,39.963925585995732],[-75.176764497075865,39.963954767836775],[-75.176749215429012,39.963968488112499],[-75.176721083788195,39.963993743277562],[-75.176688045378896,39.964020032671947],[-75.176675084776718,39.964030345106153],[-75.176624698081696,39.964065003232101],[-75.176571727834414,39.964097199487284],[-75.176516175639748,39.96412689155644],[-75.176510337431978,39.96412960960933],[-75.176458046309179,39.964153952500752],[-75.17642679675447,39.964166862261251],[-75.176399127783753,39.964178291774481],[-75.176337638713917,39.964199826169533],[-75.176332814319892,39.964202982321872],[-75.176331234191963,39.964204016379831],[-75.176328340404368,39.964209744981652],[-75.176328889066838,39.964214827289027],[-75.176329000075754,39.964215853329897],[-75.176333262213461,39.964221140572477],[-75.176342961646142,39.964229347425878],[-75.176365250293543,39.964248205526346],[-75.176373822086063,39.964255795117261],[-75.1763963290649,39.964275721303991],[-75.176410782713532,39.964288683117999],[-75.176410871002091,39.964288763486508],[-75.176427394799589,39.964303581868144],[-75.176430518283439,39.964305699030966],[-75.176433484271143,39.96430770814348],[-75.176439003950165,39.964309504232396],[-75.176441416762401,39.964310289975288],[-75.176443200570958,39.964310493971155],[-75.176444818929369,39.964310676235662],[-75.17644941265344,39.964311198245525],[-75.176561304211589,39.964325289575868],[-75.176561540755543,39.964325320109772],[-75.176698938748274,39.964342878349001],[-75.17669901689591,39.964342886408801],[-75.176730126454942,39.964346749392504],[-75.176732726577853,39.964347072605506],[-75.176875666702912,39.964364785563525],[-75.177083452548686,39.964391243506547],[-75.17729569558756,39.964417844261639],[-75.177295812105001,39.964417859488464],[-75.177486418733452,39.964441798788364],[-75.177486621452033,39.964441825858891],[-75.177596695181364,39.964456776424683],[-75.177634821454205,39.964463166140455],[-75.177649952186044,39.964466015590695],[-75.177650016124119,39.964466027836316],[-75.177670259041733,39.964469839750848],[-75.177686172901915,39.964473715887856],[-75.177694996994688,39.964476316719747],[-75.177701059010531,39.964476160698375],[-75.177701248883025,39.964476155945079],[-75.177701304259983,39.964475899496968],[-75.177702191280076,39.964471770220435],[-75.177702331920557,39.964471117436382],[-75.17767504923107,39.964438918974444],[-75.177644253861899,39.96440257367977],[-75.177610728149673,39.964361644978958],[-75.177587967030689,39.964333855610086],[-75.177564822587797,39.964305923390995],[-75.177530798531222,39.964264860953705],[-75.177487416053125,39.9642078515907],[-75.177461101981592,39.964173270888992],[-75.177393234053909,39.964080520729297],[-75.177328090246803,39.963986679212205],[-75.177276897252582,39.963901119934924],[-75.177249590837519,39.963850327531034],[-75.177230218278865,39.963814294115437],[-75.177187155242223,39.963726262712051],[-75.177162742299984,39.963673430401847],[-75.17715087026464,39.963647737598677],[-75.177117287418639,39.963568544147115],[-75.177086405127355,39.963488723771185],[-75.177085641939811,39.963485316145515],[-75.177082185940165,39.963483198751561],[-75.177082153898084,39.963483179111741],[-75.177077871579172,39.963483494843125]]],[[[-75.182427540437487,39.964428865919466],[-75.182427721779575,39.964428869977581],[-75.18248108406506,39.964428645923242],[-75.182481127387163,39.96442864599171],[-75.182532003066811,39.964427046287874],[-75.182533273537118,39.964427015250763],[-75.18253334387019,39.964427013220551],[-75.182536467126241,39.964426941651602],[-75.182608910125978,39.964422465558741],[-75.182609288074403,39.964422441579494],[-75.182658542717604,39.964419459435902],[-75.182660886420479,39.964419318161532],[-75.182709846483405,39.96441635373175],[-75.182709966226454,39.964416345598949],[-75.182796568607159,39.964408914642085],[-75.182796796699932,39.964408890012301],[-75.18287830003581,39.964400766454155],[-75.182903307145963,39.964397776883992],[-75.182921324216224,39.964395642749807],[-75.182891720328314,39.96435257701085],[-75.182855978934413,39.964306678115058],[-75.182782335081541,39.964285921706711],[-75.18268382740861,39.964258168473052],[-75.182561075890717,39.964224427839198],[-75.182445438915067,39.96419137337287],[-75.182323582821667,39.964157585842671],[-75.182323515611387,39.964157567219367],[-75.182305927211956,39.964152636111955],[-75.182277664769131,39.964144818950906],[-75.182199081843962,39.96412308215001],[-75.182146089974907,39.964108680132995],[-75.182061301801596,39.964085935782855],[-75.182049638078027,39.964082715809873],[-75.181968573310954,39.964060379990507],[-75.181867024140999,39.964032318296084],[-75.18179464522639,39.964012683381519],[-75.181794604652808,39.964012672562234],[-75.181721255567652,39.963993953837168],[-75.181647872522021,39.963976134414509],[-75.181579739643794,39.963961049010152],[-75.181511536591373,39.963947603636626],[-75.181442498929883,39.963935669455097],[-75.181442401165398,39.963935653751292],[-75.181382966035187,39.963926731243845],[-75.181323493798956,39.963918325956072],[-75.181323309765432,39.963918300211695],[-75.181263121946415,39.963910363616094],[-75.18118316307843,39.963901278840602],[-75.181141631057798,39.96389834511519],[-75.181103074565584,39.963895623059351],[-75.181103040854154,39.96389564753283],[-75.181061888898526,39.963926478687519],[-75.181061752712353,39.963926581056676],[-75.181147585477547,39.963969096114752],[-75.181196602951729,39.963994180309342],[-75.181204428992075,39.963997196416059],[-75.181210673931588,39.963999602277703],[-75.181288188503544,39.964026139862867],[-75.181410646959364,39.964067544729424],[-75.181415931557893,39.964069336214756],[-75.181484611902391,39.964093573830894],[-75.181535387698347,39.964115608571305],[-75.181535749444549,39.964115765336274],[-75.181555716459116,39.964124430442347],[-75.181565082756663,39.964129045159559],[-75.181565113800602,39.964129060270693],[-75.181586375382665,39.964139534749698],[-75.181612818779044,39.964152413790572],[-75.181612975134527,39.964152490272546],[-75.181652960512821,39.964171963306882],[-75.181683736078583,39.964188350535508],[-75.181683780821515,39.964188374963378],[-75.181712436354772,39.964203633513925],[-75.181753702494873,39.964223362235806],[-75.181769403159066,39.964230868611423],[-75.181815871783144,39.964252549122442],[-75.181869466946821,39.964274936942978],[-75.181875103953573,39.964276947131097],[-75.181875650463695,39.964277141367944],[-75.18191963911184,39.964292719639026],[-75.181963656548803,39.964308466125203],[-75.181981508157122,39.964314767307023],[-75.182008557286935,39.964324326069217],[-75.182029551151089,39.964331292240253],[-75.182030475083394,39.964331600341964],[-75.182064076894065,39.964342767190701],[-75.182126651759546,39.964363306064463],[-75.182192759100545,39.964384781723695],[-75.182242156425758,39.964399833989063],[-75.182251838637853,39.964402381590546],[-75.182251914003956,39.964402401297477],[-75.182252068211966,39.964402441690034],[-75.182281912597759,39.964410292456023],[-75.182299438938429,39.964414140963292],[-75.182299678144446,39.964414194070152],[-75.18232173356779,39.964419036833654],[-75.182325086740278,39.964419666897463],[-75.182355399954858,39.964425368412066],[-75.18236164369533,39.964425422543165],[-75.182383874537919,39.964427421123844],[-75.182384049030418,39.964427420523648],[-75.182427540437487,39.964428865919466]]],[[[-75.178288459962985,39.964998299441092],[-75.178308679702226,39.965023452999581],[-75.178330957667299,39.965050749342332],[-75.178466433125635,39.965216741055485],[-75.178634473890327,39.965421114818646],[-75.178707357605262,39.965511206866566],[-75.178752103718907,39.965566515439257],[-75.178779619153019,39.965599612642372],[-75.178779642700135,39.965599640200409],[-75.178825497719856,39.965654796993455],[-75.178921003653628,39.965771809008324],[-75.179011410641081,39.965882099559458],[-75.179088062113777,39.965978354896841],[-75.179202375433121,39.966117409654068],[-75.179204735484547,39.966119004164391],[-75.179204772003956,39.966119029309951],[-75.179205863860531,39.966119758365281],[-75.179210327761908,39.966119475451848],[-75.179211874403222,39.966118336086588],[-75.179214000496842,39.966116768208366],[-75.179213462169088,39.966114222500799],[-75.179213243611983,39.966113190450073],[-75.17917033041563,39.965997485052654],[-75.179154151806202,39.965953190103065],[-75.179135565788101,39.96590230256443],[-75.179121498197702,39.965865131458749],[-75.179106364096555,39.965825138811262],[-75.179079239915723,39.965747630560415],[-75.179070129078227,39.965721598000023],[-75.179037033037801,39.965629455936615],[-75.179011230285852,39.965559269166974],[-75.179002246491464,39.965534831535166],[-75.178979718044332,39.965469960214982],[-75.178973545186878,39.965452622472633],[-75.178945037178565,39.965372547725472],[-75.178907863617496,39.965270273366166],[-75.17889033326351,39.965223772135673],[-75.178883537676441,39.965205749178651],[-75.178879216324916,39.965190819879155],[-75.178869333904004,39.965156683424063],[-75.178866326127903,39.965144111775338],[-75.178862400768836,39.965127692064399],[-75.178860817770428,39.965098389911944],[-75.178862834361183,39.965069085529635],[-75.178869281969725,39.965040179578104],[-75.178874204983643,39.965028383021242],[-75.178879094408316,39.965016669505708],[-75.17888595276419,39.965001970908325],[-75.17888977441774,39.96499378074995],[-75.178895967293684,39.964984166067637],[-75.178903995259034,39.964971699356767],[-75.178904610885311,39.964969850759935],[-75.178905000792867,39.964968675567199],[-75.178903330908028,39.964965677421077],[-75.178899890318419,39.964964170415492],[-75.178899820075415,39.964964139108005],[-75.178897813658281,39.964964525731553],[-75.17889622481303,39.964964831611113],[-75.178868311316236,39.964970411371546],[-75.178830593083291,39.96497795005552],[-75.178764223969623,39.964986975758848],[-75.178724681036314,39.964989882859605],[-75.178698011058344,39.964991843149036],[-75.17869785662397,39.964991839688075],[-75.178638280886076,39.964990513560693],[-75.178638202498959,39.964990511803961],[-75.178610159132489,39.964988477740853],[-75.178609362720962,39.964988420247721],[-75.178578661031679,39.964986207666897],[-75.178520045497791,39.964978972534432],[-75.178492607407335,39.964974126433248],[-75.178492224706559,39.964974059290235],[-75.178462433496534,39.964968798235944],[-75.178424904487571,39.964959860611607],[-75.178404954554367,39.964955109338128],[-75.178349402098021,39.964937980276595],[-75.178327409705915,39.964929618805613],[-75.178295723338252,39.964917568448868],[-75.178287373956252,39.964913746621249],[-75.178243985377136,39.964893957353681],[-75.178195025622955,39.964867327946152],[-75.178193871778063,39.964866659660963],[-75.178192407453011,39.964865810520962],[-75.17819213796561,39.964865845926987],[-75.178189519683755,39.964866187287818],[-75.178187923988787,39.964866395694678],[-75.178186646786259,39.964868088900957],[-75.178186045175181,39.964868886327025],[-75.178186824690144,39.964871864526707],[-75.178288459962985,39.964998299441092]]],[[[-75.175245915298333,39.961081805503952],[-75.175234970581613,39.961084567465974],[-75.175234201170881,39.961084756530894],[-75.175224171467946,39.961090500657647],[-75.175216735531379,39.96109840055248],[-75.175199203914886,39.961155152978172],[-75.175196395954544,39.961164240653247],[-75.175196347096232,39.961165529807943],[-75.175195939306604,39.961176289568414],[-75.17519994731957,39.961187842209895],[-75.175209403138311,39.961197704272955],[-75.175271119310281,39.961243893993903],[-75.175271213852426,39.961243963691579],[-75.175279679209524,39.961250301281844],[-75.175392197426376,39.961331974024375],[-75.17539303839294,39.961332584861914],[-75.175472448547936,39.961390226061916],[-75.175517278355358,39.961424091080019],[-75.175704041335948,39.961565176326395],[-75.175905355075258,39.9617151185046],[-75.176109444818735,39.961862461894654],[-75.176311630958836,39.962012757166569],[-75.176506960186956,39.962156092906454],[-75.176706523717371,39.962304789685703],[-75.176765547072876,39.962348768342977],[-75.176831526311787,39.962396069131657],[-75.176831625502658,39.962396139833245],[-75.17691495496365,39.962455878038661],[-75.176954533063338,39.962485827814838],[-75.176955138647841,39.962486285595318],[-75.176964402421376,39.962493284283049],[-75.176964438835725,39.9624933121301],[-75.177000965117301,39.962517153057775],[-75.177019694197767,39.962527932021295],[-75.177019722866021,39.962527947981393],[-75.177038512628215,39.962538763442041],[-75.177065377988811,39.962551283612086],[-75.177065456213299,39.962551320505838],[-75.177079720198989,39.962557968195512],[-75.17709828511947,39.962566527873847],[-75.177098332301824,39.962566549655186],[-75.177128827719031,39.962580609954458],[-75.177181650539595,39.962599294864198],[-75.177202317589291,39.96260478506111],[-75.177236421925372,39.962613832833291],[-75.177250110547888,39.962616844626851],[-75.177250191828335,39.962616862667709],[-75.177271816337353,39.962621620174161],[-75.177287679537017,39.962624317617141],[-75.177287845914549,39.962624345675238],[-75.177308163871345,39.962627799845109],[-75.177331660786066,39.962630791894291],[-75.177331872858531,39.962630819174954],[-75.177332218959933,39.962630862976177],[-75.177344567777197,39.962632429224577],[-75.177350869847686,39.962631031606499],[-75.177353701776923,39.962626932428044],[-75.177353350070078,39.962625923516605],[-75.177352091349093,39.962622305657575],[-75.17734934786975,39.962620513295008],[-75.177347737912953,39.962619460852487],[-75.177333405509131,39.962609084173181],[-75.177321685282308,39.962600596923465],[-75.177296519386445,39.962581538430868],[-75.17727138735674,39.962562266250757],[-75.177209784515725,39.962516171208094],[-75.177148171973386,39.962470334503529],[-75.177135477126271,39.962460963108775],[-75.177086546592335,39.962424838959933],[-75.177017091477637,39.962374396027833],[-75.176958031564979,39.962331501503705],[-75.176733224170889,39.962165672971672],[-75.176530996296179,39.962016227193359],[-75.176318322276146,39.961859896330374],[-75.176154176855832,39.961737903827043],[-75.176153960475176,39.961737743097551],[-75.176130012094276,39.961719943332596],[-75.175926888895859,39.961570648436314],[-75.175836383042906,39.96150388453605],[-75.175715108184676,39.961414422930709],[-75.175515463762707,39.961267521825256],[-75.175270784048564,39.961085071148354],[-75.175258401948767,39.961081919940945],[-75.175245915298333,39.961081805503952]]],[[[-75.175144306642594,39.961479238146062],[-75.175134324631912,39.961483691283455],[-75.175133179501486,39.96148471075913],[-75.175126937798993,39.961490263280808],[-75.175124378606426,39.96149392973377],[-75.175121275905994,39.961498374177644],[-75.175115915100776,39.961522112701132],[-75.175113990305292,39.961532365383533],[-75.175111444115316,39.961545914443299],[-75.175107859743193,39.961569864027389],[-75.175108322210122,39.96158120284823],[-75.175111416423704,39.961589463404422],[-75.175112374452723,39.961592021258149],[-75.175115557219044,39.961595504826391],[-75.17512094014873,39.961601396625561],[-75.175200489646429,39.961659812406197],[-75.175265907640451,39.961707850281854],[-75.17541086465917,39.961814561199354],[-75.175555815617244,39.961921443880847],[-75.175687311856919,39.962018416971951],[-75.175687368783002,39.962018459695834],[-75.175732013476562,39.962051383410554],[-75.175908211975582,39.96218132356951],[-75.1759798650249,39.962234424939858],[-75.176083519711014,39.962311242557917],[-75.176194452088808,39.962391668813005],[-75.176231145135361,39.962418269933117],[-75.176291721458014,39.962463037824037],[-75.176376957712904,39.962526027709913],[-75.176429371155621,39.962565063979383],[-75.176429505522421,39.962565164302788],[-75.176522739822261,39.962634601826132],[-75.176614775827446,39.962701676065663],[-75.176616268245411,39.962702863737348],[-75.176619106527014,39.962705120463774],[-75.176628659438435,39.962712028354474],[-75.176665481967589,39.962738836761893],[-75.176665619844826,39.962738937163728],[-75.176706805535403,39.962768921278467],[-75.17679882844584,39.962836381602905],[-75.176836343603483,39.962864413744782],[-75.176849152723079,39.962873984155401],[-75.176865416723402,39.962885917016436],[-75.176865515812807,39.962885990418755],[-75.176900372478087,39.962911564419748],[-75.176924773106137,39.96292977510258],[-75.176924830033755,39.962929817825874],[-75.176950699673739,39.962949123742035],[-75.176953244154561,39.962949987212077],[-75.176955893870826,39.96295088547857],[-75.176955985203534,39.962950916359226],[-75.176958099771923,39.96295057904878],[-75.176960472291995,39.96295020157158],[-75.176964154662727,39.962947237829162],[-75.176964921961826,39.962944291605609],[-75.176965198826579,39.962943226510411],[-75.176964703174974,39.96294088627662],[-75.176963685398519,39.962936070063357],[-75.176904986336197,39.962813273685995],[-75.176886532356292,39.96278150367111],[-75.176884884657085,39.962778665469138],[-75.176882665575533,39.962775672092668],[-75.17688264550587,39.96277564551319],[-75.176860266430396,39.962745457942979],[-75.176856848265913,39.962741477194044],[-75.176855283009075,39.962739522932139],[-75.176851737687315,39.962735096933898],[-75.176832905133793,39.962714034165138],[-75.176819962260154,39.9627020604538],[-75.176819906843676,39.962702008754199],[-75.17680101013282,39.962684526067044],[-75.17678469589579,39.962671324343674],[-75.176767248948124,39.962657207012519],[-75.176691793075321,39.962599557247508],[-75.176615445708748,39.96254266410736],[-75.176538160594362,39.962486604940985],[-75.176422769817833,39.962400126030772],[-75.17630645863548,39.962314398519204],[-75.176248815652812,39.962272594995106],[-75.17618922864996,39.962229380091848],[-75.176027812905176,39.962109556129136],[-75.175935573798341,39.962041574014926],[-75.17586549927978,39.961989927123419],[-75.17579968791442,39.961941251872283],[-75.175704069606908,39.961870531248863],[-75.175530585654897,39.961739622703718],[-75.175355264245624,39.961610130486477],[-75.175178106913918,39.961482014077689],[-75.175167537780524,39.961478386367538],[-75.175167428912019,39.961478385726309],[-75.17515597472665,39.961477442093546],[-75.17515260751064,39.961477960292434],[-75.175144306642594,39.961479238146062]]],[[[-75.179356571551551,39.9665613232645],[-75.179343322442037,39.966564992682542],[-75.179301912625775,39.966596601361402],[-75.179260946528487,39.966628551540147],[-75.179220431272284,39.966660840675729],[-75.17921438834108,39.966672586026654],[-75.17921341884562,39.966683352122296],[-75.179213253372893,39.96668518738047],[-75.179217136689729,39.966697462378242],[-75.17922567581401,39.966708252305544],[-75.179295010400892,39.966771136738451],[-75.179484736482223,39.966941979951088],[-75.179663649139172,39.967105156254469],[-75.179705580024006,39.967140122271772],[-75.179761902611673,39.967192042433766],[-75.179847132336334,39.967267948091546],[-75.179902931869904,39.967316675891226],[-75.179921228540849,39.967332585827911],[-75.17994608063762,39.967348428154772],[-75.17996555269653,39.967357165326668],[-75.17997396054038,39.967360937875924],[-75.180004118600237,39.967369780141112],[-75.180035746191521,39.967374724198322],[-75.180141727681502,39.967379959540992],[-75.180251505484435,39.967383524637448],[-75.180326140042055,39.967386240413305],[-75.180382811878573,39.967387679885142],[-75.180397230023232,39.967386107951157],[-75.180410495373991,39.967381485502479],[-75.180421542218738,39.967374186920559],[-75.180429481942426,39.967364795983599],[-75.180434450744144,39.967352962545753],[-75.180434446889294,39.967340526695907],[-75.180429472788106,39.967328694041626],[-75.180420007219411,39.967318614183164],[-75.180406972350553,39.967311261942477],[-75.180382380274807,39.967299656691743],[-75.18029278530831,39.967261495274862],[-75.180225212873765,39.967227923914763],[-75.180123325905001,39.967170610866305],[-75.180023993590325,39.967111704289564],[-75.179903718975964,39.967033468551527],[-75.179814159956862,39.96696664185859],[-75.179738500574274,39.966908916727768],[-75.1796675066023,39.966847784812501],[-75.179599544359505,39.966784643033719],[-75.179534711021958,39.966719584576104],[-75.179473098152926,39.966652696191488],[-75.179414793395708,39.966584075355847],[-75.179407347247178,39.966574882195751],[-75.179396964769865,39.966567564029809],[-75.179384413673347,39.966562658842058],[-75.179370610149633,39.966560525037856],[-75.179356571551551,39.9665613232645]]],[[[-75.179733397922661,39.963428070676237],[-75.179733437814335,39.963428099501236],[-75.179859284235079,39.963499337886326],[-75.179934119608973,39.963568254057051],[-75.179980781845686,39.963631991700268],[-75.180000326974707,39.963681390492468],[-75.180010403090549,39.963721651756131],[-75.180017445245909,39.963747770352697],[-75.180017907150486,39.963754936535693],[-75.180018007480598,39.96375649392958],[-75.180026479054419,39.963791998849139],[-75.18002939534054,39.963810150183853],[-75.180032256645021,39.96382795970446],[-75.180037037617282,39.963866679659652],[-75.180037349275224,39.963905613057761],[-75.180033197146273,39.963944396914989],[-75.180032477057097,39.963947646052681],[-75.180032458646522,39.963947730335448],[-75.180024616859868,39.963982739200233],[-75.180024193538898,39.963993929296109],[-75.180028247138736,39.96400470519383],[-75.180035918655932,39.964014188086587],[-75.180040218310438,39.964017221693908],[-75.180046347349119,39.964021545080065],[-75.180056664075735,39.964027064203385],[-75.180062089325673,39.964029965344935],[-75.180079744048967,39.96403499559549],[-75.180098426942678,39.964036278138096],[-75.180117266373188,39.964033732180305],[-75.180155946744222,39.964019003840306],[-75.180188784345262,39.964006498966462],[-75.180261185219436,39.963979542272227],[-75.180333575161328,39.963952842077127],[-75.180368871132671,39.963939731770559],[-75.180404136667818,39.963927301936742],[-75.180431445274294,39.963918443902394],[-75.180440269940917,39.963915581700959],[-75.180458713776048,39.963910336407366],[-75.180528661206353,39.963890441694758],[-75.180578879838095,39.963878837731976],[-75.180619572850986,39.963869434240664],[-75.180712109951372,39.963852444685841],[-75.180661204893752,39.963806687542544],[-75.180635280801951,39.963793181988237],[-75.180608704521632,39.963779335656369],[-75.180581561983715,39.963765600976643],[-75.180581522920875,39.963765581180617],[-75.180534302455143,39.963741414543655],[-75.180498438284118,39.963722587524167],[-75.180392476357284,39.963669404577402],[-75.180327387076815,39.963636988943932],[-75.180276001813851,39.963611398124122],[-75.18015239228761,39.96355331823402],[-75.180100757896597,39.963526516198868],[-75.180064011086756,39.96350744131226],[-75.179990586357661,39.96347177443235],[-75.179974644486649,39.963464029940852],[-75.179958611536392,39.963456897897011],[-75.179958378922478,39.963456794476173],[-75.179882509436823,39.963423045978111],[-75.179820147992061,39.963397338817799],[-75.179820040755232,39.963397294969027],[-75.179789385239346,39.963384657220331],[-75.179788569396223,39.963384401978047],[-75.179585613465292,39.963320714648347],[-75.179733397922661,39.963428070676237]]],[[[-75.172196913395638,39.959310536914316],[-75.172184035306245,39.959312878516755],[-75.172176289941035,39.959316246371841],[-75.172170429114075,39.959318795200986],[-75.172158510736793,39.959327195160803],[-75.172150413468486,39.959336226992512],[-75.17214919578899,39.959337584490932],[-75.172147633072868,39.959341431848294],[-75.172146242104603,39.959344856885011],[-75.172145954183179,39.959352445065527],[-75.172147453975555,39.959359945471064],[-75.172151380791163,39.959374022853332],[-75.172154412965526,39.959388164828709],[-75.172156548755893,39.959402417309867],[-75.172159798896587,39.959410814810063],[-75.172163408600468,39.959416247041972],[-75.172164863986069,39.959418437672838],[-75.172172651452073,39.95942479180799],[-75.172182336677508,39.959431830105871],[-75.172182386784996,39.959431867272293],[-75.172210854504272,39.959452555384381],[-75.172321912730908,39.959535380616863],[-75.172391974313783,39.959586523131975],[-75.172471235913576,39.959644381222013],[-75.172567836488142,39.959714596058738],[-75.172568035886528,39.959714741096583],[-75.172639677170409,39.959766813648045],[-75.172748605812359,39.959845184643243],[-75.172761281631765,39.959854288519814],[-75.172767947256858,39.959859137044809],[-75.172768238956436,39.959859349028804],[-75.172817708087123,39.959895211502506],[-75.172920959977333,39.959972152839747],[-75.172963661293664,39.960004259167995],[-75.172963904918561,39.960004442140153],[-75.172964132609167,39.960004613041122],[-75.173016381740638,39.960043897750658],[-75.173036434948571,39.960058195862956],[-75.173036686865373,39.960058376318116],[-75.173103252387691,39.960105838494229],[-75.173200467651171,39.96017732258818],[-75.173277709998331,39.960234369776103],[-75.173324895391517,39.960268902188652],[-75.173324922717313,39.960268922624671],[-75.173356708912038,39.960292185279414],[-75.173392558025753,39.960319709063889],[-75.173392751407548,39.960319858470193],[-75.17344600573135,39.960360745926131],[-75.173516229580983,39.960414631343198],[-75.173523943168604,39.960415406445833],[-75.173524021311337,39.960415414507807],[-75.173524255807877,39.960415436893157],[-75.173527786986895,39.960415781091356],[-75.173527841834542,39.960415785927125],[-75.173539403028414,39.960415322944243],[-75.173551078899621,39.960413225393268],[-75.173561064168226,39.960407758827159],[-75.173561101048946,39.960407743437145],[-75.173568523225583,39.960400271319415],[-75.173569992568531,39.960395951517924],[-75.173571535754519,39.960391413527262],[-75.17357507358156,39.960375249496579],[-75.173575852719836,39.96037168546318],[-75.173580169648559,39.96035195829915],[-75.173581640140227,39.960345261648641],[-75.173584482195722,39.960332315731939],[-75.173585784927866,39.960321274229074],[-75.173582636582083,39.960310433708656],[-75.173578132846103,39.960303995738904],[-75.173575866021537,39.960300754343223],[-75.173571514772107,39.960297520198985],[-75.173565452041913,39.960293011429037],[-75.173553968929198,39.96028440746246],[-75.173514267703084,39.960254658214573],[-75.173440521453216,39.96019949173396],[-75.17340929778004,39.960176957140298],[-75.173371915340766,39.960149977374172],[-75.173327157804763,39.96011715827342],[-75.17328944956536,39.960089508916496],[-75.173242188210494,39.960054760338586],[-75.173193970095269,39.96001930728255],[-75.173146623095761,39.959983855750565],[-75.173097670918864,39.959947199528727],[-75.173016599759009,39.959887790245247],[-75.172987426021791,39.959866411624738],[-75.172948413666234,39.959836849736796],[-75.172948283921187,39.959836751314924],[-75.17286861017611,39.959776376788454],[-75.172821581180926,39.959742057624553],[-75.172756615970698,39.959694647439967],[-75.172578638913592,39.959564877540075],[-75.172445897933528,39.959465646303258],[-75.172339288181803,39.95938608099614],[-75.172267167299481,39.959332254003876],[-75.17224706456264,39.959321246040922],[-75.172232570309021,39.959316469363166],[-75.172232528672382,39.959316455813443],[-75.172224154427852,39.959313686248194],[-75.172200206390443,39.959309936045081],[-75.172196913395638,39.959310536914316]]],[[[-75.172195397650313,39.958936734176078],[-75.172191118565166,39.958938082354351],[-75.17218881941146,39.958940818432481],[-75.172186446719039,39.958943641157596],[-75.172185080436876,39.958948205631387],[-75.172184404754574,39.958950461005472],[-75.172186050592799,39.958953711003446],[-75.172187723628014,39.958957015673349],[-75.172233613679694,39.958993835069528],[-75.172234670413644,39.958994651705744],[-75.172266548236138,39.959019300701762],[-75.172322909333602,39.959062352480181],[-75.172409076549101,39.959129638122299],[-75.172461329173629,39.959170440494226],[-75.172463285106019,39.959171967507224],[-75.172583833380912,39.959263330170913],[-75.172640242139209,39.959305105216814],[-75.172817296730585,39.959435627382895],[-75.172906363109533,39.959500496362104],[-75.172906625177035,39.959500686956787],[-75.173085574214241,39.959631019679293],[-75.173179673521474,39.959700147045645],[-75.173293029930647,39.959783420267364],[-75.173433929072829,39.959887804592896],[-75.173434198922664,39.95988800617323],[-75.173460516968973,39.959907504099959],[-75.173616062686094,39.960017114129762],[-75.173626726808223,39.960018630344429],[-75.173637472576715,39.960017252532886],[-75.173641451337829,39.960015611934296],[-75.173647442633026,39.960013142545947],[-75.173654822927944,39.960006742590835],[-75.173658692695824,39.959998805962101],[-75.173661135889986,39.959985817749626],[-75.173663161279777,39.959975047461249],[-75.17366763540943,39.95995120438954],[-75.173672106795635,39.959927402702718],[-75.173673030975678,39.959919890078993],[-75.173673396597337,39.959916917735434],[-75.173670444267771,39.959909615395382],[-75.17366931820132,39.959906828500877],[-75.173668349239392,39.959905765169744],[-75.173661609049859,39.959898373263947],[-75.173602576883752,39.959855166687852],[-75.17357435314716,39.959834729489366],[-75.173574170850486,39.95983459655055],[-75.17350271773951,39.959782852290132],[-75.173401163115017,39.959708137264201],[-75.173302227239617,39.959634983849995],[-75.173248687412155,39.959595652257811],[-75.173186782016074,39.959550173439034],[-75.173130731690549,39.959508750912242],[-75.173130649680033,39.959508690504315],[-75.173068751005744,39.959462945970017],[-75.173026770186752,39.959430095401672],[-75.172963907631271,39.959380904402408],[-75.172918597866897,39.959348185348318],[-75.172903988905432,39.959337634283436],[-75.172883279760541,39.95932251590132],[-75.172867919713568,39.959311301031697],[-75.172851900013612,39.959299604616589],[-75.17284005577477,39.959290866318476],[-75.172839837138341,39.959290703729685],[-75.172768580527091,39.959238129962031],[-75.172720808986341,39.959203889573722],[-75.172713307730604,39.959198508694129],[-75.172713121927757,39.959198375675136],[-75.172674775033613,39.959170883845083],[-75.172616790488064,39.959127563313416],[-75.172600161522766,39.959115139570471],[-75.172591043534538,39.959108457337557],[-75.172569779649592,39.959092873222886],[-75.172537509236378,39.959073353077564],[-75.172537451290211,39.959073337359506],[-75.172502460458333,39.959056516794142],[-75.172470798944843,39.959044433765634],[-75.172469672666054,39.959043968766785],[-75.172466408039909,39.959042618683917],[-75.172420316911911,39.959023779111838],[-75.172398274442088,39.95901476929167],[-75.17237943032049,39.959007066616998],[-75.172324915325731,39.958983280385688],[-75.172324809338861,39.958983234755671],[-75.172305707038632,39.958974900062749],[-75.172209055649404,39.958935652596644],[-75.172200148313436,39.958935238916162],[-75.172195397650313,39.958936734176078]]],[[[-75.173141409775468,39.959405618309404],[-75.173184267442721,39.959436713531666],[-75.173244737267538,39.959480586941076],[-75.17346365631559,39.959636549606543],[-75.173661276620493,39.95978950169664],[-75.173671523241495,39.959791250905184],[-75.173671608163744,39.959791265426389],[-75.173675451381357,39.959791932883746],[-75.173677848754593,39.959791669562286],[-75.173677931054883,39.959791660598299],[-75.173689792865986,39.959790399747931],[-75.173696951948472,39.959787177204198],[-75.173701592906014,39.959785086550824],[-75.173710830808389,39.959776755086409],[-75.173724505415763,39.959722007507956],[-75.173733357113036,39.95968004603683],[-75.173733369997336,39.959679984156168],[-75.173748435169145,39.959608572915521],[-75.17376159975403,39.959545443462247],[-75.173765882991447,39.959524903723207],[-75.173767798499199,39.959516690746511],[-75.173769079215404,39.959511199894393],[-75.173769022370081,39.959511186003731],[-75.173720723395718,39.959492349650326],[-75.173619231169098,39.959463079751295],[-75.173519401585608,39.959437022272503],[-75.173418583103469,39.959413516692948],[-75.173342328462923,39.959400991042571],[-75.173266117122964,39.959387602240959],[-75.173189364054608,39.959375932969678],[-75.173238858249519,39.959118072462871],[-75.172917185319022,39.959078573796226],[-75.172657183296621,39.959046647847757],[-75.173082335179714,39.959359660600157],[-75.173080707673961,39.959359414107901],[-75.173080781700108,39.959359468930423],[-75.173141409775468,39.959405618309404]]],[[[-75.173731645519666,39.960427786939697],[-75.173729719853668,39.960428269890365],[-75.173720837387549,39.960430468029131],[-75.173712607869675,39.96043573346445],[-75.173706981169744,39.960442944970978],[-75.173697107450309,39.960468040839586],[-75.173690524764538,39.960500461969445],[-75.173688657870954,39.960515913881594],[-75.173687924046362,39.960521988256843],[-75.173687514348998,39.960532792124205],[-75.173692480955651,39.960542987799734],[-75.173701086513631,39.960551334317024],[-75.173735790098007,39.960577301441852],[-75.173769735594888,39.960602573069394],[-75.173813884140912,39.960635440480502],[-75.173885068322022,39.960687544293748],[-75.174082947379588,39.960833807742659],[-75.174189901733754,39.960913012354418],[-75.174190069167352,39.960913135948296],[-75.174330283317261,39.961016969406899],[-75.174426049899822,39.961090103874582],[-75.17444994434976,39.961108351504514],[-75.174490045652064,39.961137207474195],[-75.174490496983367,39.961137532960635],[-75.174631465536237,39.961238971852843],[-75.174819751414461,39.961379482790235],[-75.174878659431727,39.961423115688419],[-75.174878960094233,39.961423338680028],[-75.174902197425155,39.961440548810934],[-75.174905208187283,39.961441495775922],[-75.174914541029906,39.961444438923792],[-75.174919573288534,39.961444630259209],[-75.174919825849287,39.961444639531877],[-75.17492702091198,39.96144491905487],[-75.174939617615237,39.961441946419917],[-75.174949662563918,39.961435863877497],[-75.174954525550461,39.96142961637397],[-75.174956226592613,39.961427429950476],[-75.174958339298257,39.961418861877874],[-75.174974151680217,39.961354712319576],[-75.174973715238167,39.961342687509372],[-75.174972278478236,39.961339322413636],[-75.174968798744985,39.961331163124022],[-75.174964422703511,39.961325366897853],[-75.174961152635063,39.961321036214869],[-75.174955784871202,39.961317494590872],[-75.174948966353824,39.961312995965514],[-75.17489686671631,39.961275180587421],[-75.174855578522468,39.961244701529687],[-75.174685960127931,39.961119486305023],[-75.174525415118609,39.961000366224823],[-75.174334496723986,39.960858765807558],[-75.174263888238471,39.960806843699338],[-75.174175650867554,39.960741957514138],[-75.174101660524784,39.960687457257954],[-75.174033304155174,39.960637105574406],[-75.173930867589874,39.960562071221069],[-75.173905319688316,39.960543373684843],[-75.173905159104748,39.960543254749375],[-75.173839716708216,39.960495358763126],[-75.173790857756288,39.96045915815742],[-75.173752934332683,39.960431059929775],[-75.173746479982483,39.960429189554787],[-75.173746437140792,39.960429176879607],[-75.17374234423923,39.960427991141835],[-75.173731645519666,39.960427786939697]]],[[[-75.173820051510518,39.960031519470384],[-75.173809914618175,39.960034255283837],[-75.173804422727486,39.960038005423108],[-75.173799773850106,39.96004286742162],[-75.173798190533446,39.960047290986026],[-75.17379777798773,39.960048444030221],[-75.173792533823985,39.960066472691963],[-75.173790596571493,39.960073128229062],[-75.173784301710313,39.960097961180125],[-75.173779784412702,39.960123005238771],[-75.173780359291698,39.960131342614588],[-75.173780737303773,39.960132057497717],[-75.173784522207001,39.960139203733121],[-75.173787953351862,39.960142988451238],[-75.173790516824297,39.960145817532414],[-75.173808340511158,39.960160959247503],[-75.173808370006185,39.960160984237206],[-75.173831141671172,39.960180328557826],[-75.173864286374723,39.960205501088573],[-75.173880572500366,39.960217870085977],[-75.173927454961756,39.960252092701467],[-75.174008149979386,39.960312220886969],[-75.174064634132122,39.960356190853695],[-75.174064814919959,39.960356332767944],[-75.174079212012415,39.960367541164004],[-75.174125947024393,39.960401736055772],[-75.174126188553004,39.960401912671145],[-75.174126450593263,39.960402104163293],[-75.174348332560925,39.960564450357332],[-75.174556627314828,39.960718370256963],[-75.174770150540525,39.960875575980417],[-75.174916892085747,39.960982248347818],[-75.174994071787125,39.961041009351071],[-75.175006351502233,39.961044698897602],[-75.17500642214884,39.961044719404512],[-75.175012674463957,39.961044817383645],[-75.175012833602864,39.961044820054362],[-75.175018905755252,39.961044913989554],[-75.175024906719003,39.961043395314697],[-75.175024938647155,39.961043387021157],[-75.175031518929217,39.961041720967629],[-75.175041573534969,39.961035381846536],[-75.175048145268818,39.961026774192597],[-75.175063511587453,39.960950910449313],[-75.175062186954477,39.960938779208206],[-75.175060773817009,39.960936428283766],[-75.175055471761667,39.960927600991667],[-75.175045109083712,39.960918528572329],[-75.174914800563101,39.960825577327427],[-75.174714311602159,39.960677539437],[-75.174552106090829,39.960555207826722],[-75.174511062824067,39.960525294559844],[-75.174510890745466,39.960525169961151],[-75.174370647453713,39.960422958776675],[-75.174187623960819,39.960284968170399],[-75.174153777157727,39.960260737750893],[-75.174071227014636,39.960201639322534],[-75.174020536192359,39.960165149002584],[-75.17402048264195,39.960165109957678],[-75.173995667763407,39.960147247918592],[-75.173921043470131,39.960091762901364],[-75.173847350260345,39.960035224731286],[-75.173847270119595,39.960035207614546],[-75.173846349894831,39.960034896824958],[-75.173835013356154,39.960031166157265],[-75.173822534718425,39.960030845408802],[-75.173820051510518,39.960031519470384]]],[[[-75.181174086845147,39.963834555748932],[-75.181174174522425,39.963834559514005],[-75.18123631925215,39.963840504585662],[-75.181266937311605,39.963843647139889],[-75.181267469169654,39.963843702295918],[-75.181299423931009,39.963846981988524],[-75.181361374302384,39.963854011062544],[-75.181361615662794,39.963854038090318],[-75.181365453355184,39.963853249124973],[-75.18136970764391,39.963852373978838],[-75.181375283667592,39.963849058750434],[-75.181377009782665,39.963848032398303],[-75.181380814092364,39.963841808684684],[-75.181380652737602,39.963840037287802],[-75.181380183571278,39.963834886513716],[-75.181378225832518,39.963831292699481],[-75.181376847336637,39.96382876153146],[-75.181369868246634,39.963824528209649],[-75.18131370787691,39.963806388648017],[-75.181313371271401,39.963806279297721],[-75.181284364478927,39.963796910798997],[-75.181138978626208,39.963748384432421],[-75.181067578402377,39.963725330897944],[-75.180964495199959,39.963690668366006],[-75.180936181286242,39.963681248616567],[-75.180935924556437,39.963681163578975],[-75.180871973379837,39.963659888624015],[-75.18082539621642,39.963644347480859],[-75.180825339570546,39.963644328192139],[-75.180786505237762,39.963631370619233],[-75.180715147905104,39.963607158218345],[-75.180701743563432,39.963602689068097],[-75.180701588630797,39.963602636943989],[-75.180628796973437,39.963578362635126],[-75.180563744726953,39.963556948418024],[-75.180563484522352,39.963556862400758],[-75.180511587761941,39.963539779298465],[-75.180488409318755,39.963532008868341],[-75.180488336464222,39.96353198471148],[-75.180465772007963,39.963524419942615],[-75.180369696041581,39.963495117136652],[-75.180369631308523,39.963495094963598],[-75.180233946335477,39.963449455284881],[-75.180098259629688,39.963404020833508],[-75.179962564931714,39.963358802281427],[-75.179957218132742,39.963358471676109],[-75.179953294692993,39.963360815622025],[-75.179952674990489,39.963361194581822],[-75.179951602845804,39.963365547681661],[-75.179955044852292,39.963369151343656],[-75.180054020497352,39.963417747049476],[-75.180124024699978,39.963452986780936],[-75.180152959908341,39.963467551914071],[-75.180225432146187,39.963505618373581],[-75.180225738695015,39.96350577931257],[-75.180226104956489,39.963505971322391],[-75.180250070663774,39.963518559129177],[-75.18037191801254,39.963575987660256],[-75.180468237206568,39.963624372130376],[-75.180501663828622,39.963642631895567],[-75.180518939848213,39.963652069457581],[-75.180532683847048,39.963658610453834],[-75.180532727555516,39.963658631254937],[-75.180568898608826,39.963675845117677],[-75.180607391275686,39.963696102318387],[-75.180650336519236,39.963716588962022],[-75.180675620347785,39.963730149553598],[-75.18067574775931,39.963730217279618],[-75.180683560493861,39.963734419757508],[-75.180691856276894,39.963738636656018],[-75.180692056168724,39.96373873844157],[-75.180714205762769,39.963750030369084],[-75.180722290146846,39.963754356959903],[-75.180741316667138,39.963764540079694],[-75.18074699247137,39.963767380124516],[-75.180748322085662,39.96376804511187],[-75.180751770934648,39.963769859492501],[-75.180767568469008,39.963778173683743],[-75.180779560604662,39.963783822161979],[-75.180779603143279,39.963783842936806],[-75.180783347793209,39.963785607176519],[-75.18090640726858,39.963834663031143],[-75.180988488790774,39.963831489513503],[-75.180988615280299,39.96383148874169],[-75.181081415077202,39.963831329363821],[-75.181174086845147,39.963834555748932]]],[[[-75.180592517527387,39.964055866680695],[-75.180592891534289,39.964055884967429],[-75.180608661702067,39.964057276994446],[-75.18060904097986,39.964057310716392],[-75.180648916342264,39.96406082923211],[-75.180705784087451,39.96406695374948],[-75.180777652621899,39.964076701938673],[-75.180777694535536,39.964076708283308],[-75.180849538278039,39.964087979482578],[-75.18092043480776,39.96410076655274],[-75.181015984748456,39.964122302087837],[-75.181058067508786,39.964133465412658],[-75.181109624153336,39.964147141122517],[-75.181202245667308,39.964175304547744],[-75.181239035946135,39.964187208876673],[-75.181239099578278,39.964187229222574],[-75.181268355767045,39.964196695215826],[-75.181296808670524,39.964207091081519],[-75.181296947293816,39.964207141037619],[-75.181319402393314,39.964215345608686],[-75.181369677965023,39.964231844220059],[-75.181369769335461,39.964231874196948],[-75.181407534156349,39.964244267011999],[-75.181484177020664,39.964270270464084],[-75.181559061281121,39.964295590272805],[-75.181585467537928,39.964304249951731],[-75.181585752043318,39.964304343718645],[-75.181635736696876,39.96432073568586],[-75.181684167914511,39.964337892054729],[-75.181684281139894,39.964337932431739],[-75.181691206539256,39.964340397647526],[-75.181696694181696,39.964336819131333],[-75.181626773086691,39.964298221486395],[-75.181622407566564,39.96429596764299],[-75.181512126447686,39.964239012056439],[-75.181506769658512,39.964237178414358],[-75.181505960465287,39.964236901709256],[-75.181363298824721,39.964163462400087],[-75.18133988859789,39.964151935148038],[-75.181266070328988,39.964115585447232],[-75.181171544891939,39.964066954413838],[-75.181125120842154,39.964044072682988],[-75.181086579211467,39.964025101212158],[-75.180974562539575,39.963967152959441],[-75.180931673791861,39.963945165721661],[-75.180930899910166,39.96394497720113],[-75.180779600584202,39.963908035626815],[-75.180732960049156,39.963914755227449],[-75.180687137571226,39.963923126662692],[-75.180642142884352,39.963933233044727],[-75.180627015675299,39.963936606454915],[-75.180586352940622,39.963945672748437],[-75.180558092932586,39.963953370634279],[-75.180558039672349,39.963953385659785],[-75.180530457592738,39.963960898696307],[-75.180494388296538,39.963973094325617],[-75.180477132918313,39.963978928472457],[-75.180441749835495,39.963992763076853],[-75.180441621472909,39.963992813361791],[-75.180440938030898,39.963993081874392],[-75.180440907101683,39.963993094696889],[-75.180405550653504,39.964007834502794],[-75.180381060258668,39.964018399995446],[-75.18037017534958,39.964023134305165],[-75.180362832571845,39.964028548018447],[-75.180358990905631,39.964035756570816],[-75.180358694108506,39.964043603142507],[-75.1803595945387,39.964045584811551],[-75.180361989309588,39.964050841788719],[-75.180366805253897,39.964054280688579],[-75.180369807221282,39.964056424753579],[-75.180373143764868,39.964057555465331],[-75.180378617958311,39.964059410712018],[-75.180379009025415,39.964059411361283],[-75.180389214421481,39.964059361509776],[-75.180389327178602,39.964059352321939],[-75.180437686932393,39.964054640972741],[-75.180486665632571,39.964052232935664],[-75.180486851857651,39.964052231700187],[-75.180535930088951,39.964052114441024],[-75.180592517527387,39.964055866680695]]],[[[-75.168339599428606,39.956044901804859],[-75.16832728325808,39.956048027779396],[-75.168322516836085,39.956051019108699],[-75.168315643989175,39.956055709203042],[-75.168310426116577,39.95606161506899],[-75.168306812689963,39.956067077701],[-75.168303225111842,39.956073369848916],[-75.168302321007971,39.95607919979696],[-75.168300865669437,39.956084623596148],[-75.168302167809813,39.956092074564914],[-75.168312801451378,39.956104757791032],[-75.169053313605133,39.956650485285891],[-75.169137683770359,39.95671085384911],[-75.169164196796913,39.956713288370629],[-75.169178594782508,39.956707634035837],[-75.169188177023599,39.956703310284986],[-75.169192818934022,39.956696168745168],[-75.169197961605875,39.956687772543908],[-75.169208778589123,39.956652699688142],[-75.168759091116343,39.956322287864431],[-75.168388259437421,39.956048188099295],[-75.168375267565821,39.956046757755026],[-75.168360117572121,39.956045367143261],[-75.168349307231722,39.956044729226143],[-75.168339599428606,39.956044901804859]]],[[[-75.167880502260743,39.955775424726276],[-75.167889012341263,39.955795553044304],[-75.168108631641488,39.955956925811968],[-75.168277804422829,39.955974194235495],[-75.167901586884668,39.955687845733813],[-75.167880502260743,39.955775424726276]]],[[[-75.179219415821279,39.966393840835956],[-75.179205007534378,39.966397415788663],[-75.179192286044454,39.966403728866744],[-75.179054708563086,39.966513438564313],[-75.179048449215003,39.96652520879104],[-75.17904720844102,39.966534447898887],[-75.179046750173072,39.966537862377614],[-75.179049753545542,39.966550367245489],[-75.179057215186958,39.966561717800197],[-75.179068527120521,39.966570992197781],[-75.17908277875199,39.966577436610002],[-75.179098608191154,39.966580495230488],[-75.179098809303866,39.966580533975147],[-75.179115327404176,39.966580031005705],[-75.179130989658489,39.966575966077961],[-75.179277917610392,39.96646303202931],[-75.179284746663853,39.966452636885535],[-75.179287851480368,39.966441234762932],[-75.1792870280957,39.966429604972653],[-75.179282330010082,39.96641853079155],[-75.179274075297826,39.966408766284694],[-75.179262823116034,39.966400976311952],[-75.17924933703631,39.966395684349202],[-75.179234534417645,39.966393248829014],[-75.179219415821279,39.966393840835956]]]]},"properties":{"OBJECTID_1":176,"OBJECTID":119,"ASSET_NAME":"Benjamin Franklin Parkway medians","SITE_NAME":"Benjamin Franklin Parkway","CHILD_OF":"Benjamin Franklin Parkway","ADDRESS":"BENJ FRANKLIN PKY","TYPE":"Land","USE_":"Park- Linear\\Parkway","ACREAGE":13.872301,"ZIPCODE":"19130","ALLIAS":" ","GLOBALID":"e76183ea-555b-495e-9929-033cac62f2aa","Shape_Length":20678.634613508788,"Shape_Area":604275.07411607471}},{"type":"Feature","id":177,"geometry":{"type":"Polygon","coordinates":[[[-75.158099589310325,40.059591233985657],[-75.156561027978569,40.061174931444661],[-75.156529696278696,40.061212579560809],[-75.156513843606547,40.06123162780645],[-75.156507379081077,40.061258799774649],[-75.15652219333073,40.061284611269755],[-75.156534976007677,40.061304948289191],[-75.156552430314036,40.06133271060137],[-75.156572338754856,40.061364372936083],[-75.156648075830802,40.061484832609388],[-75.156691078531509,40.061553228875596],[-75.156758283307184,40.061660117615155],[-75.156825889222333,40.061766886518043],[-75.156887352654778,40.061862286496371],[-75.156952872635486,40.061958109558347],[-75.157021008455644,40.06204774847636],[-75.157088041543588,40.062124825739858],[-75.157153042917869,40.062200146085232],[-75.157189808896803,40.062241923271799],[-75.157257988009349,40.062311177545034],[-75.157338570277886,40.062391660778509],[-75.157397765600209,40.062445065221389],[-75.15749207703908,40.06252393355166],[-75.157572890001632,40.062586795257054],[-75.157630772042182,40.062632596910149],[-75.157684074902917,40.062567625357545],[-75.157735941721796,40.062513778651912],[-75.157781554840014,40.062465975405154],[-75.157836417757821,40.062409884246307],[-75.157878269398566,40.062365658730748],[-75.157929466217823,40.062313288008852],[-75.157976004625823,40.062264646897049],[-75.158025298764514,40.062214008212706],[-75.158075531458792,40.062162189627749],[-75.158122977636836,40.062113140055153],[-75.158164802698366,40.062069600416606],[-75.158207585030823,40.062025680504327],[-75.158245733038868,40.061986119670458],[-75.158285783551506,40.061944825837926],[-75.158328517585147,40.061900876863007],[-75.15837789861483,40.061849238970758],[-75.158439269069305,40.061786597983108],[-75.158507205314535,40.061715782379061],[-75.15854720076382,40.061674632283477],[-75.158585348410838,40.061635070435912],[-75.158627198119547,40.06159215920438],[-75.158671866907312,40.061545621882111],[-75.158706295943034,40.06150983788055],[-75.158753741208997,40.061460788045771],[-75.158796506373875,40.061417297326848],[-75.158836480455946,40.061375346554982],[-75.158876541220195,40.061333795973482],[-75.158915582456501,40.061294253274738],[-75.158956479798164,40.061251551114907],[-75.158976956958625,40.061230129041739],[-75.158998315935278,40.061208982738492],[-75.159044831022726,40.061162170660076],[-75.15908479099231,40.061121962953152],[-75.159124700395367,40.061081727062529],[-75.159167514465551,40.061038263447642],[-75.159211175093816,40.060994708081687],[-75.159252968131895,40.060951939523136],[-75.159319869111528,40.060884790685726],[-75.15937846239531,40.060825891598398],[-75.159421155687795,40.060782972088326],[-75.159461170875801,40.060742534845005],[-75.159502057966549,40.060701403643137],[-75.159542972339949,40.060659587370857],[-75.159585712428026,40.060616695889458],[-75.159608894613285,40.060593333544212],[-75.159627472462333,40.060576099707156],[-75.159672841583074,40.060533326933964],[-75.159681180888398,40.060525533753754],[-75.159715680934482,40.060489090628799],[-75.159759378121478,40.060444589828222],[-75.159796602122682,40.060405779855252],[-75.159837490887043,40.060363334901183],[-75.159879395854176,40.060320193832233],[-75.159921218614869,40.060276655350698],[-75.159962170622492,40.060233809027707],[-75.160018991065826,40.060174876881348],[-75.159969096365529,40.060146083810395],[-75.159245877923283,40.059738432864705],[-75.158415978015867,40.059264142968097],[-75.158099589310325,40.059591233985657]]]},"properties":{"OBJECTID_1":177,"OBJECTID":120,"ASSET_NAME":"Simons Youth Center & Teen Center","SITE_NAME":"Simons Youth Center & Teen Center","CHILD_OF":"Simons Youth Center & Teen Center","ADDRESS":"1601-35 E WALNUT LA","TYPE":"Land","USE_":"Recreation Center","ACREAGE":13.108853999999999,"ZIPCODE":"19138","ALLIAS":" ","GLOBALID":"4f887d29-8569-4082-8b89-96749d7140e6","Shape_Length":3173.6662897220308,"Shape_Area":571019.52036607277}},{"type":"Feature","id":178,"geometry":{"type":"Polygon","coordinates":[[[-75.117896633693476,40.042182027879271],[-75.118050877946743,40.041454224913885],[-75.11808175144607,40.041310690377436],[-75.118094065428423,40.041253439196019],[-75.118088220346408,40.041235275697986],[-75.118078220829076,40.041225480362726],[-75.118050919033891,40.041220109970972],[-75.118017603572397,40.04121606504571],[-75.117632390192384,40.041168725925758],[-75.117180706690718,40.041113067292606],[-75.117018415442203,40.041096385975919],[-75.116925024619604,40.041089211130405],[-75.116843300504755,40.041085719456767],[-75.116708217521506,40.041084581550074],[-75.116580851321288,40.041087501132189],[-75.116528416835493,40.041089596748172],[-75.11641932766905,40.041099042356414],[-75.116343487967654,40.041105167667034],[-75.116172593896962,40.041125292239506],[-75.116009836788706,40.041152538368955],[-75.115894183277533,40.041178425394108],[-75.115762520924392,40.041213250089193],[-75.115780854777171,40.041272940209303],[-75.115803361529601,40.04139128747579],[-75.115806633830744,40.041402630783317],[-75.115844008204078,40.041596672918409],[-75.115879303901636,40.041777649305168],[-75.115944562904588,40.042112274994089],[-75.115971130035632,40.042248467384347],[-75.115981016973095,40.042299150799764],[-75.116007130468631,40.042433050469469],[-75.116004619283515,40.042463645874584],[-75.115996929079571,40.042557171987539],[-75.115994177762389,40.042590601026731],[-75.115916331522328,40.042931882505769],[-75.115903201279835,40.042989449061459],[-75.115889298471913,40.043050397480187],[-75.115825529244262,40.043329964108551],[-75.115801484048433,40.043449326974951],[-75.115790829510274,40.043513780090741],[-75.115734033951995,40.043838091296458],[-75.115778157127238,40.043852434777087],[-75.115851673773079,40.043873797333084],[-75.115872296978992,40.04387978995976],[-75.115926966066084,40.043894719409543],[-75.115999046005143,40.043913109769015],[-75.116184976213489,40.043962276749284],[-75.11630855211115,40.043982304466979],[-75.11644491290113,40.044004403795185],[-75.11658475247134,40.044027067465223],[-75.116716388308419,40.044043865520024],[-75.1172214858167,40.044108571609165],[-75.117335899743296,40.044123389314244],[-75.117422720710053,40.04413463267376],[-75.117644652195423,40.044152958404759],[-75.117916116131497,40.042770548190738],[-75.117780927942846,40.042757319219028],[-75.117785878782769,40.042727910489383],[-75.117790381722514,40.042701163043581],[-75.117896633693476,40.042182027879271]]]},"properties":{"OBJECTID_1":178,"OBJECTID":121,"ASSET_NAME":"Olney Recreation Center","SITE_NAME":"Olney Recreation Center","CHILD_OF":"Olney Recreation Center","ADDRESS":"100 E GODFREY AVE","TYPE":"Land","USE_":"Recreation Center","ACREAGE":13.621136,"ZIPCODE":"19120","ALLIAS":" ","GLOBALID":"aabc619c-54e4-4493-a01c-8281249d0ab4","Shape_Length":3287.7614356597578,"Shape_Area":593334.29334361583}},{"type":"Feature","id":179,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.149865899705176,40.031295440706081],[-75.149844908683349,40.031383819434367],[-75.149816827728998,40.031517348072917],[-75.149786722848376,40.031663775820071],[-75.149761769301648,40.031775603037246],[-75.14973823368247,40.031890404179308],[-75.149729729275791,40.031932578435644],[-75.149707724150446,40.03202740800441],[-75.149695416230117,40.032088914899752],[-75.149677190800205,40.032164999649304],[-75.149654577338765,40.032275702199371],[-75.149585646293275,40.032596311562173],[-75.149533870388566,40.032848755311321],[-75.149459189485881,40.033199539292433],[-75.149409043333165,40.033437325185886],[-75.149364288880932,40.033649473923134],[-75.149457915525801,40.033613339352627],[-75.14953681321137,40.033586587803725],[-75.149637610089243,40.033555459314556],[-75.14969023111648,40.033540990089335],[-75.149738686877498,40.033528861991968],[-75.149779878392977,40.03351726590126],[-75.149824662049085,40.033506446706419],[-75.149927321617668,40.033485801142547],[-75.150004795313066,40.033472589986665],[-75.150051188466136,40.033467027642182],[-75.150115290054259,40.033460126277149],[-75.150190701194788,40.033453480882656],[-75.150290551843725,40.033447039944157],[-75.150407260039074,40.03343784944073],[-75.150473477694348,40.03343482329938],[-75.150518780192598,40.033434108789606],[-75.150532909805534,40.033431644442416],[-75.150543952622655,40.033427021668921],[-75.150553252633884,40.033420619582827],[-75.150558015240321,40.033414463494985],[-75.150560730706587,40.033402691879161],[-75.15056570800138,40.033367306206188],[-75.15056682679942,40.033338097083998],[-75.150571338722571,40.03330304867125],[-75.15057651499707,40.033274280075652],[-75.150586973701564,40.033237626388718],[-75.150597911101983,40.033200287047912],[-75.150613625554556,40.033156444150514],[-75.150648952542312,40.0330852018594],[-75.15069288677013,40.033007891379192],[-75.150738410571876,40.032936358148049],[-75.150829443044202,40.032817306137694],[-75.150917122962682,40.032726716147209],[-75.150992854720002,40.032640728421619],[-75.151077774153009,40.03255129312511],[-75.151141942442521,40.032483488386873],[-75.151201017077341,40.032418700297114],[-75.15123691290114,40.03237983799616],[-75.151303556482318,40.032306520891169],[-75.151348367687447,40.03225950694501],[-75.151549042785931,40.032043748404242],[-75.151678376964398,40.031905724624316],[-75.151780450629516,40.031793882081594],[-75.152090451576612,40.031456833841098],[-75.151321852041065,40.031354042271126],[-75.150789461737446,40.03128883001343],[-75.150391899025223,40.031237978581913],[-75.150018529864283,40.031189370086715],[-75.149889661325659,40.031174760107568],[-75.149865899705176,40.031295440706081]]],[[[-75.150451591825117,40.03361890607362],[-75.150390572583959,40.033618409754943],[-75.150329383918248,40.033622336272764],[-75.150264676162791,40.033627953603187],[-75.150201084545017,40.033634481863572],[-75.150135022242054,40.033645379964163],[-75.150056268446477,40.033656876427827],[-75.149968532959235,40.033673591840078],[-75.149888400308583,40.033691032530932],[-75.149809993863045,40.033708512247124],[-75.149720188857657,40.033730381299591],[-75.149653052603242,40.033746787968077],[-75.149581378081763,40.033766765298623],[-75.149464000412294,40.033799587056627],[-75.14937456343992,40.033825946745658],[-75.149463547048128,40.033976230525056],[-75.149508512197684,40.034051259212575],[-75.149542115195061,40.034106021700381],[-75.149573484743698,40.034158963107011],[-75.149593856290196,40.034198376283449],[-75.149605327709125,40.034229621140597],[-75.149622348499776,40.034266301342207],[-75.149636764083397,40.034310892067118],[-75.149652194218092,40.034359045862068],[-75.149658723023705,40.034399031316958],[-75.149663155091076,40.034433656894045],[-75.149667383784333,40.034473590272306],[-75.149663759560212,40.034508033450983],[-75.149659865342471,40.034549553424355],[-75.1496525197539,40.034590995256828],[-75.149641043794816,40.034650048591431],[-75.149625505193811,40.034724945360068],[-75.149603467085569,40.034819170490962],[-75.149586032711255,40.03491349985179],[-75.149576147291597,40.034961081382619],[-75.149561929270391,40.035031581339375],[-75.149538469758809,40.035132856285195],[-75.149493140038999,40.035354033769345],[-75.149443511236825,40.035597245621808],[-75.149426211983609,40.035688037921524],[-75.14949951704159,40.035698550188776],[-75.149548862006142,40.035703208424657],[-75.149583383258658,40.035703990017005],[-75.149609883149751,40.0357037042901],[-75.149643287022542,40.035703575766078],[-75.149678079405561,40.035697281462234],[-75.149703597475593,40.035692547682146],[-75.149743195900299,40.035681049760562],[-75.149780526846385,40.035668615691876],[-75.149815624220139,40.035654360544648],[-75.149847235082191,40.035640912159025],[-75.14987207751139,40.035623768635716],[-75.149895668163666,40.035609252972115],[-75.149920578310457,40.035590341371474],[-75.149938769088166,40.035578447059208],[-75.150023502922565,40.035489093834983],[-75.150336304411965,40.035155344255188],[-75.150437129712756,40.035048737354892],[-75.150495919286897,40.034987213814524],[-75.150551222337057,40.034926496137373],[-75.150604325595936,40.034863073348646],[-75.150635937793155,40.034819524467736],[-75.150682712903091,40.034740908718675],[-75.15071432557815,40.034667261311952],[-75.150739948394957,40.034599674644227],[-75.150759543936644,40.034539034474214],[-75.150768955928484,40.034473737136715],[-75.150772070851417,40.034422462199984],[-75.150772648529866,40.034377326146192],[-75.150764189859899,40.03429745947043],[-75.150739457445937,40.034161454168213],[-75.150719763432932,40.034074251212502],[-75.150696382741557,40.033963063502334],[-75.150681900551916,40.033890143398736],[-75.150671096937927,40.033836922616665],[-75.15066736760329,40.03381854934365],[-75.15065745348268,40.033776717740551],[-75.150645035520739,40.033710040651009],[-75.150637252158191,40.03367268307133],[-75.150626389499905,40.03365561701299],[-75.150613022309855,40.033643805773217],[-75.150593901365554,40.033631864309257],[-75.150576980044406,40.033622628827892],[-75.150559753802995,40.033621354148522],[-75.150518397584577,40.033618646725891],[-75.150451591825117,40.03361890607362]]]]},"properties":{"OBJECTID_1":179,"OBJECTID":122,"ASSET_NAME":"Wakefield Park","SITE_NAME":"Wakefield Park","CHILD_OF":"Wakefield Park","ADDRESS":"5300 N 16TH ST","TYPE":"Land","USE_":"Park- Neighborhood","ACREAGE":12.856294,"ZIPCODE":"19141","ALLIAS":" ","GLOBALID":"2438f551-52b9-4be8-b433-eca15520b021","Shape_Length":4724.9721441773363,"Shape_Area":560018.12157318555}},{"type":"Feature","id":180,"geometry":{"type":"Polygon","coordinates":[[[-75.033937008712059,40.028671543896131],[-75.033899792089755,40.028688880308238],[-75.033840178550918,40.028720896788663],[-75.033558438795367,40.028866626417923],[-75.033558434903995,40.028866665071213],[-75.032285365317904,40.029523152353541],[-75.032285618986919,40.029523579149206],[-75.03194788016981,40.029699216637638],[-75.031931144155877,40.029707919387349],[-75.031515655683961,40.029923952419807],[-75.031506504171062,40.029928710516074],[-75.031302796054177,40.030034553166423],[-75.031285701629528,40.030047604844228],[-75.031280501103311,40.03006632549819],[-75.031282871109113,40.030075806641825],[-75.031292433249135,40.030086664559889],[-75.031349824168473,40.030151830498923],[-75.03135448216058,40.030157128141042],[-75.031749165471766,40.030606674825123],[-75.03221327012686,40.031139511979234],[-75.032214760969651,40.031141242144045],[-75.032440232250181,40.031402810624847],[-75.032449616600871,40.031413697569107],[-75.032454091275795,40.031418747539682],[-75.032467146424338,40.031426307246683],[-75.032479033693363,40.031429954869964],[-75.032494221208566,40.031430952189687],[-75.032506884064745,40.031428227881776],[-75.032522231691971,40.03142095279825],[-75.032547087292841,40.03140798275976],[-75.032553566318043,40.03140460302965],[-75.033250859585721,40.031041483147071],[-75.033730007488884,40.030794366465543],[-75.033739145486848,40.030789652025312],[-75.034135097082441,40.030585274476721],[-75.034249154246922,40.030526401741291],[-75.034288750150679,40.030505957857166],[-75.034536745804587,40.030378185697955],[-75.034955176557432,40.030163576561506],[-75.035027305859245,40.03012648598817],[-75.035053421963255,40.030104953678098],[-75.035050830022342,40.030074900819621],[-75.035024057488585,40.030039475499862],[-75.034977444964085,40.029979423874387],[-75.03437818550735,40.029216396102854],[-75.034269562364344,40.02906667989707],[-75.034252071493526,40.029042998351137],[-75.034104402412112,40.028843050214782],[-75.03402517570261,40.028735773896955],[-75.03397689795807,40.028681410440505],[-75.033954865203441,40.028670092921388],[-75.033937008712059,40.028671543896131]]]},"properties":{"OBJECTID_1":180,"OBJECTID":123,"ASSET_NAME":"Russo Park Playground","SITE_NAME":"Russo Park Playground","CHILD_OF":"Russo Park Playground","ADDRESS":"7301 TORRESDALE AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":12.480555000000001,"ZIPCODE":"19136","ALLIAS":"Tacony Park","GLOBALID":"8aa58a73-42ad-4a3e-9b10-799b50e3a56c","Shape_Length":2986.309061290558,"Shape_Area":543650.84372946993}},{"type":"Feature","id":181,"geometry":{"type":"Polygon","coordinates":[[[-75.069260808239008,40.036966192696518],[-75.069173797856649,40.037050852092833],[-75.068272484715052,40.037922069369166],[-75.068232022035275,40.037960958850753],[-75.068212707069875,40.037983170011501],[-75.068200625391555,40.037997063131719],[-75.068198596207921,40.038014059888688],[-75.068206707595806,40.038028046056887],[-75.06821051914136,40.038034617158118],[-75.068241780101133,40.038053767090794],[-75.068744077139471,40.03833581137436],[-75.068819554305577,40.038377759821309],[-75.071151568622113,40.039676155179677],[-75.071192136070763,40.039697904579846],[-75.071225119416496,40.039697814228482],[-75.071246866771361,40.039681590864419],[-75.071288989298182,40.039637161598748],[-75.072193208135999,40.03867839674168],[-75.072225624472949,40.03864382443134],[-75.072260937336026,40.038606165092119],[-75.072284768538722,40.038574519233755],[-75.07226807249009,40.03854387930879],[-75.072223687089036,40.038518957902603],[-75.072173547853552,40.038490809055112],[-75.069673011297098,40.037097319349492],[-75.069371283049634,40.036928685530697],[-75.06930950821193,40.036922465511928],[-75.069260808239008,40.036966192696518]]]},"properties":{"OBJECTID_1":181,"OBJECTID":124,"ASSET_NAME":"Max Myers Playground","SITE_NAME":"Max Myers Playground","CHILD_OF":"Max Myers Playground","ADDRESS":"1601 HELLERMAN ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":12.366744000000001,"ZIPCODE":"19149","ALLIAS":" ","GLOBALID":"9eae29f4-d67a-4cfc-8e7f-0ce531c9d382","Shape_Length":3092.1719802409275,"Shape_Area":538693.06347823841}},{"type":"Feature","id":182,"geometry":{"type":"Polygon","coordinates":[[[-74.972198500047526,40.081428060011483],[-74.971766720627684,40.081721660063046],[-74.971871153185688,40.081850120980619],[-74.971951017474836,40.081943166927758],[-74.972511600902521,40.082857579960546],[-74.973925718301004,40.081048890679384],[-74.973578863801691,40.08079064580582],[-74.973901946754779,40.080482642127443],[-74.974327362530659,40.080743458342269],[-74.97437875097124,40.080829027956355],[-74.975022278232686,40.081288694898099],[-74.975672109071681,40.080700033668712],[-74.974457781235856,40.079952740337681],[-74.974421093158341,40.079930892678732],[-74.974842606828972,40.079499122803661],[-74.974927477232626,40.07941218693724],[-74.975371110173995,40.079036966233836],[-74.975334171539217,40.078995588412447],[-74.97528365822437,40.078952824977144],[-74.975215959264233,40.078903470643148],[-74.975141844911576,40.078857995460247],[-74.975075418613187,40.078821202957627],[-74.974999099870843,40.078785888088412],[-74.974907497158569,40.078752778462118],[-74.974826163059802,40.078730816078988],[-74.974696653488181,40.078706662134479],[-74.974605765502332,40.078699746531683],[-74.974540555190231,40.078698772710048],[-74.974444676136812,40.07870461094442],[-74.974377252964459,40.078714054932512],[-74.97429710988466,40.078728512488773],[-74.974166149101109,40.078761654436491],[-74.974053324090718,40.078798029424213],[-74.973868401156807,40.078873334362001],[-74.973820890628915,40.078898535801173],[-74.973800325095681,40.078920526137452],[-74.973793010952249,40.078946355265174],[-74.973799486413142,40.078972761695567],[-74.974048343549597,40.079303126139195],[-74.97407881816811,40.079366602005905],[-74.974101765536915,40.079439250969592],[-74.974110513489919,40.079509411507537],[-74.974104889980339,40.079581285667871],[-74.974085840679209,40.079653605957787],[-74.974056457213123,40.079716323514752],[-74.974014626211158,40.079777451869418],[-74.973955831334919,40.07983808484628],[-74.973889415089033,40.079888406559206],[-74.973803524479848,40.079936002426884],[-74.972948683772913,40.080246092139461],[-74.972962906622612,40.080271300878437],[-74.972972416694319,40.08027916905683],[-74.973037541237872,40.080364545908864],[-74.972198500047526,40.081428060011483]]]},"properties":{"OBJECTID_1":182,"OBJECTID":125,"ASSET_NAME":"Chalfont Playground","SITE_NAME":"Chalfont Playground","CHILD_OF":"Chalfont Playground","ADDRESS":"4336 DEERPATH LA","TYPE":"Land","USE_":"Recreation Site","ACREAGE":12.360673,"ZIPCODE":"19154","ALLIAS":" ","GLOBALID":"65152318-6b25-49b0-b0bc-1363dc3a474b","Shape_Length":4945.3632595835052,"Shape_Area":538428.80795560114}},{"type":"Feature","id":183,"geometry":{"type":"Polygon","coordinates":[[[-75.201550090624835,40.011229309373114],[-75.201229370848225,40.011258390753916],[-75.201105480561282,40.011298243549938],[-75.201031524331725,40.011345479383792],[-75.20096139400043,40.011442420220362],[-75.200946237006491,40.011509964479892],[-75.200943363526534,40.011522768828456],[-75.200946885201759,40.011577146037993],[-75.200968168123012,40.011631150811496],[-75.201008026684377,40.011692866107467],[-75.201197034217742,40.011936858004603],[-75.201332765119261,40.012117039957097],[-75.201439710797672,40.01225478792071],[-75.201595121110472,40.012455300517395],[-75.201689239179245,40.012579038516087],[-75.201790600230026,40.01271660630853],[-75.201956978576163,40.012947323768316],[-75.202102056327391,40.013110638114725],[-75.20218313585309,40.013182946252087],[-75.202304150300179,40.013280837860606],[-75.202312118901204,40.013290627484082],[-75.202378172363666,40.013336261216864],[-75.202615105493678,40.013498474736039],[-75.202734334308531,40.013567538278494],[-75.202785128755139,40.013595670023541],[-75.202847275967457,40.01362856582157],[-75.202851370855342,40.013630733475878],[-75.202958673391606,40.013684222348729],[-75.203048244537555,40.013725878656111],[-75.203129898627253,40.01376130453535],[-75.203212849821654,40.013795359866897],[-75.20358399252531,40.013932790873305],[-75.204296105490656,40.014170836487615],[-75.204588377211707,40.014268535481541],[-75.204581980666745,40.014245027964833],[-75.204575873708009,40.014220172659641],[-75.204571177156893,40.014204047806324],[-75.204560769677911,40.014173725382143],[-75.204353433064654,40.013594427483596],[-75.204352498743475,40.0135918136816],[-75.204274019364377,40.013364821985462],[-75.204273457964035,40.013363200346511],[-75.204272943285062,40.013361707685881],[-75.204256862732095,40.013315157616489],[-75.204212793065921,40.013188058967003],[-75.204170685634111,40.013067476611873],[-75.204140393254832,40.012987139135092],[-75.204131030084909,40.012962912579709],[-75.204119461753805,40.012933184256049],[-75.204105929197226,40.012898403700262],[-75.20408591714191,40.012862457732247],[-75.204054878660116,40.012806706481413],[-75.204020733587896,40.012755337291871],[-75.204020114657496,40.012754406346261],[-75.203977185351818,40.012695183831404],[-75.203879462092971,40.012579603029131],[-75.203779719244352,40.012491603015022],[-75.203652903639437,40.012373413555224],[-75.203238714567803,40.01199946939073],[-75.20323416924613,40.011959960474606],[-75.203025742406609,40.011789481282136],[-75.202827710877443,40.011628159450446],[-75.202633006912606,40.011474111905059],[-75.202472104657247,40.011352266249105],[-75.202353134236006,40.011290665678686],[-75.202170083138824,40.011236831443355],[-75.202000583694698,40.011222421046611],[-75.201550090624835,40.011229309373114]]]},"properties":{"OBJECTID_1":183,"OBJECTID":126,"ASSET_NAME":"Gustine Recreation Center","SITE_NAME":"Gustine Recreation Center","CHILD_OF":"Gustine Recreation Center","ADDRESS":"4868 RIDGE AVE","TYPE":"Land","USE_":"Recreation Center","ACREAGE":12.123668,"ZIPCODE":"19129","ALLIAS":" ","GLOBALID":"09fff5f1-87d0-4cee-903d-1f7eac7ff59e","Shape_Length":3233.1854043663143,"Shape_Area":528104.78910987626}},{"type":"Feature","id":184,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.16740635635017,39.958326748746245],[-75.167381552192751,39.95832631561391],[-75.167381391719559,39.958326317407554],[-75.167356443302523,39.958327091987549],[-75.167331450060772,39.958329076518297],[-75.167324717947835,39.958333259752941],[-75.167258334987608,39.958629917772818],[-75.167258973121932,39.958636415848559],[-75.167264787678619,39.95864774637456],[-75.167269642058656,39.958652611219243],[-75.167274490991204,39.958657249786121],[-75.167287643536568,39.958664044905433],[-75.167302810418349,39.958667531789047],[-75.167380778167569,39.958680191063159],[-75.167552457187881,39.958703593275168],[-75.167552623859763,39.958703613245248],[-75.167778265594123,39.95873069497118],[-75.167947032211586,39.958752946212307],[-75.168083596551796,39.958770837794177],[-75.168083754966673,39.958770859379669],[-75.168255171143088,39.958793486949205],[-75.168361247933419,39.958806232987151],[-75.168427226693169,39.958814142809253],[-75.168539021502042,39.958830475446042],[-75.168539063411288,39.958830481795133],[-75.168644755007776,39.958842706223493],[-75.168680689731005,39.95884701430041],[-75.168694642678872,39.958848710396992],[-75.168708750934243,39.958846873500853],[-75.168721257979641,39.958841664116491],[-75.168726252128977,39.958837521887851],[-75.168730721591615,39.958833630049263],[-75.168736454545652,39.958823632525657],[-75.168738934653717,39.958813949251343],[-75.168793284320003,39.958569868837579],[-75.168797542957066,39.95854859707314],[-75.168801132145575,39.958530245754787],[-75.16880067474591,39.958527245894764],[-75.168799542450429,39.958520899796518],[-75.168794355139354,39.958512345078304],[-75.168788324400381,39.958507222272395],[-75.168786018265806,39.958505362048655],[-75.168775495802336,39.958500526519863],[-75.168763618994348,39.958498332929921],[-75.168720643429793,39.958492565392348],[-75.1686760996689,39.958486624698679],[-75.168546580862809,39.958471009731817],[-75.168495555787729,39.958464872673105],[-75.168465597413913,39.958461022477266],[-75.168417680709823,39.958454891355707],[-75.168297785580066,39.958440436023231],[-75.168235652666155,39.95843165218222],[-75.168169858526355,39.958422375951237],[-75.168075560050383,39.958410240787188],[-75.168010066763614,39.95840219931862],[-75.167902716396327,39.95838906296877],[-75.167776607642395,39.958373780663592],[-75.167635492856022,39.958356450318348],[-75.167635410173872,39.958356438546069],[-75.167623348140253,39.95835486867535],[-75.167500951468796,39.958338959620249],[-75.167437264361425,39.958330717007158],[-75.16740635635017,39.958326748746245]],[[-75.167397046773218,39.958344835202972],[-75.16756489544963,39.958371771470894],[-75.16770333321972,39.958394628845191],[-75.16791282813989,39.958432953769304],[-75.168095417614595,39.958467851718645],[-75.168207818257855,39.958488560143479],[-75.168330144199189,39.958507851057433],[-75.168481201195618,39.958529522796539],[-75.168580994126771,39.958543243600019],[-75.168740416004908,39.958564354467171],[-75.168688309866724,39.958806267940247],[-75.168164650329956,39.958744660129611],[-75.168032563981285,39.958729093129868],[-75.167331192212615,39.95863822725741],[-75.167397046773218,39.958344835202972]]],[[[-75.165947445708611,39.958120743963079],[-75.165883611541076,39.958119855766263],[-75.165883242940581,39.95811985016676],[-75.165825554791553,39.958119200386371],[-75.165825276199811,39.958119198616174],[-75.16579796372892,39.958119085264542],[-75.165793722017824,39.958119387066937],[-75.16578688525432,39.958119916937839],[-75.165778413834531,39.958121620952888],[-75.165772722387288,39.958122821749342],[-75.165768684620062,39.958124903146853],[-75.165765210850253,39.958126808936157],[-75.16576509638891,39.958126863121841],[-75.165762179467649,39.958128257963942],[-75.165760785712976,39.958128978016376],[-75.165758366669223,39.958131381498355],[-75.165752305424959,39.958137717865931],[-75.16574744717002,39.958148164737196],[-75.165740315849575,39.958174384053883],[-75.165687839981771,39.958452676516394],[-75.165688387873502,39.958454740472384],[-75.165689291194056,39.95845740260048],[-75.165694145698737,39.958465923841594],[-75.16569692291155,39.958470603208774],[-75.165699515254033,39.958473186251588],[-75.165708872423664,39.958482087333103],[-75.165717406430417,39.958487696479196],[-75.165723091172211,39.958491259206809],[-75.165730423549988,39.958494014796123],[-75.165740399228255,39.958497644445757],[-75.165799887792588,39.958505206867358],[-75.16584810271506,39.958510819610304],[-75.165894042539307,39.958516159437821],[-75.165894416825566,39.958516200304928],[-75.166080492388687,39.95853675202796],[-75.16608061718506,39.958536764749894],[-75.166244902929051,39.958554405307638],[-75.166244999717819,39.958554415596581],[-75.166268494119251,39.95855705669883],[-75.166416904566262,39.958573709668926],[-75.166503144766708,39.958582348093508],[-75.166570223772979,39.958589025050102],[-75.166680029222107,39.958601368269129],[-75.166736679337262,39.958607712084579],[-75.16692394184868,39.95862526534556],[-75.167061952363483,39.958641568887536],[-75.16708885387547,39.958643689154812],[-75.167088902044426,39.958643684833191],[-75.167103248114955,39.95864181384384],[-75.167116135357702,39.958636523090583],[-75.167126176454843,39.958628363396784],[-75.167128578082767,39.958624384518913],[-75.167132083959203,39.958618153634276],[-75.167132771980135,39.958616378805509],[-75.167132954286146,39.95861561794738],[-75.167190613666946,39.958307723446524],[-75.167181411221904,39.958298967432462],[-75.167173476753476,39.958295017149922],[-75.167168547835331,39.958292637426077],[-75.167164122342854,39.958291706156082],[-75.167154052322317,39.958289663899222],[-75.167028494452481,39.958268677121332],[-75.167028335108881,39.958268649206353],[-75.166856342576537,39.958240899829335],[-75.166803230728107,39.95823206964203],[-75.166719933348517,39.958218255586807],[-75.166607321926662,39.958199971879125],[-75.166464537827963,39.958177445974151],[-75.166440967566587,39.958172769607629],[-75.166423567065692,39.958169370161386],[-75.16640127679976,39.958166072333903],[-75.166374117782425,39.958162108028738],[-75.166343563860465,39.95815782218579],[-75.166312591072995,39.958153528703455],[-75.166272886981019,39.958147921314215],[-75.166256974842497,39.958145686137236],[-75.166242483987517,39.958144038894304],[-75.166212321659515,39.958140632216868],[-75.166154829119009,39.958133915060003],[-75.166104770530268,39.95812949891252],[-75.166050468896771,39.958125573738286],[-75.166029400295855,39.958124049522873],[-75.166029164331761,39.958124035198033],[-75.165947445708611,39.958120743963079]],[[-75.166415366765591,39.958181556442838],[-75.166497652857856,39.958200532394699],[-75.166580605696453,39.958217740189838],[-75.166664134404769,39.958233167869466],[-75.166748192628091,39.95824680267544],[-75.166860153761817,39.958263469593994],[-75.166972725693668,39.958277499365401],[-75.167085795313142,39.958288879530322],[-75.167016645797844,39.958602352977024],[-75.16658367561979,39.958547794728311],[-75.166245588373656,39.958501745539685],[-75.166168606474713,39.958491744061355],[-75.166091182007619,39.958484051778775],[-75.166013424347611,39.958478686471892],[-75.165935459795236,39.958475651886125],[-75.165873437852582,39.958473837719119],[-75.165811387769836,39.958473532987945],[-75.165749341059964,39.958474740204544],[-75.165818437753771,39.958175088692506],[-75.165936717744643,39.958178483621715],[-75.166263240271817,39.958187857843043],[-75.166407692792816,39.95819200210034],[-75.166415366765591,39.958181556442838]]],[[[-75.147383807103367,39.957655520427892],[-75.147379984845486,39.957673967734451],[-75.14737516246457,39.957697800284919],[-75.147376913145067,39.957706320418197],[-75.147380742636415,39.957714428190314],[-75.14738316110919,39.957717527608544],[-75.147386620516386,39.957721817464524],[-75.147390977384731,39.957724532871616],[-75.147396248589232,39.957726669841534],[-75.147401547692766,39.957728078517498],[-75.147815249700216,39.957781704018188],[-75.148228797776838,39.957833891897415],[-75.148229005177825,39.957833918225482],[-75.148643067815755,39.957884699861175],[-75.148643109825969,39.957884703516825],[-75.148652933029368,39.957885563279397],[-75.148661492487506,39.95788628085721],[-75.148666640254874,39.957885985814997],[-75.148679376124591,39.957885234818448],[-75.148691780881592,39.957882734638261],[-75.148697183519857,39.957881623642201],[-75.148713650118452,39.957875540293614],[-75.148713685902493,39.957875523084596],[-75.148720105001345,39.957870065181261],[-75.148724809851885,39.957863693516614],[-75.148727753227149,39.957856724179358],[-75.148735844395461,39.957831814194435],[-75.148711528131813,39.957830109533127],[-75.148630992205739,39.957821634764485],[-75.148585035913541,39.957817132769499],[-75.148511851096927,39.957809988726147],[-75.148413317904712,39.957800422719323],[-75.148413186162955,39.957800408018556],[-75.148297816072159,39.957784367392641],[-75.148297677552861,39.957784346230873],[-75.147982499906007,39.957737264013836],[-75.147768396484693,39.957706346629379],[-75.147657265587966,39.957690324020668],[-75.147572432744695,39.957679562450764],[-75.147434125466091,39.957662047347988],[-75.147383807103367,39.957655520427892]]],[[[-75.16427165822769,39.957997396935184],[-75.164263812395035,39.957998629290792],[-75.164257807284201,39.95799964183859],[-75.164245100705827,39.95800532017833],[-75.164241097749468,39.958008670038105],[-75.164235620027227,39.958013576051684],[-75.164231006928816,39.958024189671384],[-75.1641882850369,39.958232282465026],[-75.164191851038893,39.958244443672655],[-75.164192613830195,39.95824525916624],[-75.164199226973068,39.958252266760681],[-75.164209804965154,39.958257849109742],[-75.164221996279849,39.958260757562044],[-75.164222050885201,39.958260768703994],[-75.164236558397675,39.958263454549332],[-75.16428792878618,39.958272965693105],[-75.164307933022556,39.958276645798634],[-75.164366546443546,39.958287413084811],[-75.164410895207197,39.95829554324159],[-75.164561699884175,39.958320482479543],[-75.16461183253152,39.958328277077456],[-75.164693584283626,39.958340949588617],[-75.164811589421532,39.958359636937701],[-75.164946577757306,39.958380968392561],[-75.165089113387253,39.958403439231475],[-75.165203526921516,39.958421440666839],[-75.165394113277955,39.958453842594722],[-75.165441060049872,39.958461119049225],[-75.165441121743186,39.958461128548215],[-75.165506744459549,39.958471271970247],[-75.165521070222653,39.958470089097531],[-75.165534287707331,39.958465661023908],[-75.165545186033413,39.958458393860738],[-75.165552766831652,39.958448955296717],[-75.165555221610475,39.958441580815496],[-75.165556193855721,39.958438183360535],[-75.165556580514362,39.958437191041746],[-75.165556947455187,39.958435609014096],[-75.165560918062084,39.958418457513339],[-75.165563670029997,39.958405825088434],[-75.165563686841935,39.958405752484794],[-75.1656149516554,39.958173253071145],[-75.16561723469998,39.958163436570125],[-75.165617631271232,39.95815999821518],[-75.165617769789478,39.958156356724508],[-75.165616665340679,39.958147439714658],[-75.165616335887805,39.958145296884396],[-75.165610308235458,39.958135175136256],[-75.165606499553434,39.958131972722903],[-75.165600152530743,39.958126953443298],[-75.165587870566654,39.958121440960923],[-75.165574650376726,39.958118277915574],[-75.165574608536687,39.958118269764888],[-75.165561044388639,39.958115899973059],[-75.165555291189023,39.958115245977076],[-75.165547100399479,39.958114343349614],[-75.165512582407857,39.958113681071652],[-75.16548291719586,39.958113119997748],[-75.165427661128945,39.958113233006017],[-75.165427590870422,39.958113233225262],[-75.165384031925726,39.958112379843264],[-75.165383906719242,39.958112377923527],[-75.165335126212796,39.958111545643341],[-75.165334869020612,39.95811153534391],[-75.165285895094229,39.958109016487484],[-75.165237878000951,39.958104798226323],[-75.165237718144724,39.958104783812523],[-75.165179228894317,39.958098632071746],[-75.16514873907937,39.958095771859711],[-75.165121443262692,39.958093220571463],[-75.16512104066345,39.958093185370949],[-75.165062538328726,39.958088455079434],[-75.164919120506482,39.958072539932509],[-75.164918815106375,39.958072504218407],[-75.164803363556786,39.958058537272166],[-75.16475591925709,39.958052436877253],[-75.164670643681731,39.958041516759863],[-75.16450500763635,39.958021310722032],[-75.16450481295962,39.958021288314377],[-75.164410054481422,39.958010470545702],[-75.164409957693721,39.958010460255181],[-75.16432389297465,39.958001050216751],[-75.164323775061547,39.958001041252103],[-75.16427165822769,39.957997396935184]],[[-75.164306679554997,39.958021134257407],[-75.16553472533073,39.958172528817968],[-75.165492839769698,39.958379422674973],[-75.164728369692227,39.958278925402389],[-75.164692329555066,39.95827610848648],[-75.164253666540006,39.958250199653541],[-75.164306679554997,39.958021134257407]]],[[[-75.150586749914424,39.957677985992177],[-75.150415229392934,39.957716242986599],[-75.150299964009619,39.957739379539255],[-75.150142353807638,39.957766898523559],[-75.14998199902935,39.957791113219336],[-75.149868422488865,39.957805632411343],[-75.149792304094532,39.957813951798009],[-75.149704745944547,39.957822135284601],[-75.149593772030897,39.957832005362242],[-75.149549477012684,39.957835091967858],[-75.149505370952198,39.957838166621336],[-75.149457847507264,39.957841478249527],[-75.149382996319488,39.95784452448288],[-75.14939564577449,39.957848569386144],[-75.149429115857004,39.957855866805872],[-75.149469875509197,39.95786065792641],[-75.149657599167853,39.957867855784095],[-75.149879236796366,39.95787274318262],[-75.15015036365574,39.957874901616854],[-75.150218157528812,39.957874106087779],[-75.150273309178374,39.957872379807043],[-75.150318859541613,39.957866349801819],[-75.15035823905032,39.957857671504961],[-75.150403909118353,39.957843218732521],[-75.150440846379396,39.957825111747191],[-75.150469682769497,39.957803603646965],[-75.150503079585505,39.957774933942517],[-75.150533775393882,39.957744516317128],[-75.15056162554383,39.957712520491341],[-75.150586749914424,39.957677985992177]]],[[[-75.145785599938606,39.957455748292553],[-75.145776733613715,39.957499570975365],[-75.145778217121276,39.957507236309866],[-75.14577934190028,39.957509720732261],[-75.145781681416821,39.95751451141463],[-75.145783849599368,39.957517051959101],[-75.145787503225876,39.957521006589246],[-75.145790450364871,39.957523599054724],[-75.145791031850337,39.957524068171686],[-75.145795632246461,39.957526415244914],[-75.145800794936662,39.95752792992306],[-75.146213669813221,39.957580532432459],[-75.146626647775577,39.957632598772015],[-75.146851143383046,39.957660599632014],[-75.147039899438198,39.957684106682237],[-75.147049753010961,39.957682705707271],[-75.147052676779609,39.957682272878294],[-75.147060435621441,39.957680049496389],[-75.147065179995195,39.957678670454484],[-75.14706748632814,39.95767760641629],[-75.147076213000275,39.957673408327679],[-75.147079941918932,39.957670326741038],[-75.147084072906097,39.957666560489812],[-75.147089225335932,39.957658503320737],[-75.147089572267106,39.957657271385983],[-75.147091395269101,39.957649722538982],[-75.147097946014469,39.957618460641868],[-75.147045566893397,39.957611693096631],[-75.145913392384671,39.957472071642989],[-75.145908222340807,39.957471115436768],[-75.145908076735012,39.957471095913277],[-75.145785599938606,39.957455748292553]]],[[[-75.162591486348589,39.957807768324109],[-75.162578866326129,39.957808803689964],[-75.162567115618899,39.957812622080475],[-75.162563688220331,39.957814753173665],[-75.16255718159897,39.957818880851626],[-75.162554276663698,39.95782177337437],[-75.162505379601768,39.958033366492657],[-75.162505393767375,39.9580335479166],[-75.162510226650355,39.958043363576365],[-75.162518752774631,39.958051569521508],[-75.16253012342527,39.958057362724453],[-75.162635130698817,39.958071391953929],[-75.162848307275311,39.958096420127603],[-75.162898505044595,39.958102311299513],[-75.162898678732631,39.958102331434546],[-75.16312246393143,39.958129771577596],[-75.163366696631471,39.958159092303717],[-75.163468941905364,39.95817116094765],[-75.163590819960021,39.958185502078045],[-75.163782282002899,39.958208613546773],[-75.163885370757086,39.958221042316083],[-75.163958272515842,39.958227823236633],[-75.163958445137467,39.958227840643033],[-75.163976038817069,39.958229853649968],[-75.1639885478141,39.958229367949862],[-75.164001088835619,39.958226195237145],[-75.164019271329153,39.958206124973792],[-75.164066144979259,39.957995554312149],[-75.164066277823835,39.957992064064399],[-75.164064924431173,39.957987878068927],[-75.164062645676239,39.957982195349828],[-75.164057343730633,39.957976638205054],[-75.164054480176887,39.957973861598489],[-75.164050808146115,39.957971808305189],[-75.164043605888551,39.957968005854177],[-75.164030717448597,39.957965296109798],[-75.164030640616716,39.957965284466752],[-75.163855656499564,39.957946936405961],[-75.162984848423775,39.9578543540539],[-75.162893363299062,39.95784269430343],[-75.162766237749651,39.957826523042989],[-75.162700943702234,39.957818258657454],[-75.162647453710548,39.957811508359015],[-75.162605834524541,39.957808608205454],[-75.162605632452937,39.957808595538914],[-75.162591486348589,39.957807768324109]],[[-75.162659657459059,39.957837698644916],[-75.163070910642716,39.957886176046777],[-75.163595137821119,39.957942442883528],[-75.163918340555654,39.957978036132772],[-75.163996648144334,39.957988160927414],[-75.163946089058115,39.958221571259614],[-75.163888932285175,39.958215571434977],[-75.163807963787065,39.958206875068477],[-75.16369516559358,39.958192962315813],[-75.163653069362454,39.958186254908782],[-75.163549881582753,39.95816560371852],[-75.163318056947389,39.958135524276024],[-75.163004083859747,39.958097705626578],[-75.162610506835804,39.958050116820189],[-75.162659657459059,39.957837698644916]]],[[[-75.149014612546708,39.957398204731774],[-75.149009524680508,39.957399107534187],[-75.14900414449346,39.9574043736623],[-75.149003312756264,39.957409706871793],[-75.148993152132149,39.957485404675595],[-75.148945062951526,39.957843579521892],[-75.148934305535761,39.957923760789456],[-75.148929954202998,39.957956955773291],[-75.148938172377385,39.957972215284926],[-75.148969028781394,39.957986250885078],[-75.148998032663613,39.957990781950805],[-75.149058572822128,39.957997951662627],[-75.149124476921486,39.958005755627909],[-75.149202474796027,39.958014993336469],[-75.149275685756976,39.9580236638553],[-75.149325248732168,39.958029533987627],[-75.149432653695442,39.958042253854359],[-75.149456474699576,39.958043960649555],[-75.149516038207963,39.958048231018793],[-75.149582774215588,39.958051249331],[-75.149642489092898,39.958051748687872],[-75.149679809348527,39.9580513286555],[-75.149747457231669,39.958049457876264],[-75.149852127673356,39.95804656284475],[-75.149926801027277,39.958044497086469],[-75.150015128682426,39.958043013736614],[-75.150109322784957,39.958044300553603],[-75.150174635313945,39.95804715921809],[-75.150229651854616,39.958050619773978],[-75.15026857637919,39.958054171564072],[-75.150354289544737,39.958061990313929],[-75.150382892969532,39.958064597283069],[-75.1504052647104,39.958064278883526],[-75.150427945921393,39.958057188210937],[-75.150438857268256,39.958048000864856],[-75.150447447721859,39.958032058233961],[-75.150472188792875,39.957985666646501],[-75.150502871260144,39.957928120788758],[-75.150508123246141,39.957914544274971],[-75.150505764755991,39.957910056911004],[-75.150500985118214,39.957906912170152],[-75.150494852319753,39.957905809116014],[-75.150488769727048,39.957907004802408],[-75.150473894710345,39.95791341819875],[-75.150454341127414,39.957921848386121],[-75.150428024742808,39.95793104437081],[-75.150381225468578,39.95794459126904],[-75.15035424363279,39.957950064457194],[-75.150324129095623,39.957954882789728],[-75.150304195821647,39.95795756844911],[-75.150264878589368,39.957960272569316],[-75.150240556904976,39.957960145798708],[-75.150125663355666,39.957959539700262],[-75.150006217927512,39.957958587952696],[-75.149848639447711,39.95795595279494],[-75.149634008982432,39.957950424063355],[-75.149561680179431,39.957948409788848],[-75.149502697632471,39.957945542885966],[-75.149458073470754,39.957940830867166],[-75.149412574254484,39.957933683357169],[-75.149372419780349,39.95792528563252],[-75.149329616890455,39.957914134704389],[-75.149293045515776,39.957900467912658],[-75.149251943304051,39.95788021735067],[-75.149207443130663,39.957851897683028],[-75.149146356716571,39.957812388822141],[-75.149099815973869,39.957733571063947],[-75.149035468092109,39.957492139604021],[-75.149022875374982,39.957406852655588],[-75.149014612546708,39.957398204731774]]],[[[-75.144215765692962,39.957258788531291],[-75.144214834810541,39.957263796896484],[-75.144210046894059,39.957290671073366],[-75.144210990769636,39.957293688413074],[-75.144213665103393,39.957300858226972],[-75.144220050754825,39.957310262179092],[-75.14422876824932,39.957318487397451],[-75.144239454749027,39.95732519496476],[-75.144247760548325,39.957331058260067],[-75.144257451629883,39.957335542918649],[-75.144267992524192,39.957338415126216],[-75.14426808889354,39.957338436236562],[-75.144279544396682,39.957339624481804],[-75.144439868792873,39.957360564586281],[-75.144627868832004,39.957385061309637],[-75.144976848917423,39.95742867747559],[-75.145326205727144,39.957470479255882],[-75.145326400395987,39.9574705016961],[-75.145415216507189,39.957480971538104],[-75.145504025985332,39.957491615057506],[-75.145592830314854,39.95750239354399],[-75.14560684543585,39.95750354785897],[-75.145620978469182,39.957502878476753],[-75.145634839968736,39.957500373853286],[-75.145634917901276,39.957500356700997],[-75.145648116315911,39.957496060207006],[-75.145659355120912,39.957488333184259],[-75.145659383990207,39.957488313116116],[-75.14566860804365,39.957479174405591],[-75.145669716321763,39.957477538079516],[-75.145675303872849,39.957468854726336],[-75.145679648805654,39.957450986975559],[-75.145681540370575,39.957442722490065],[-75.145568005803995,39.957428492169313],[-75.145567763414391,39.957428462338946],[-75.145016293765096,39.957357021011575],[-75.144834468887808,39.957334380700964],[-75.144326776366086,39.957271223904257],[-75.144215765692962,39.957258788531291]]],[[[-75.143351693886402,39.95719233185514],[-75.143271411196068,39.957199444943235],[-75.143187170026067,39.957209454018447],[-75.143103710645164,39.957221973027224],[-75.143103627070545,39.957221984643489],[-75.143090074170914,39.957224409476353],[-75.143019659130317,39.957237015801368],[-75.142936516036727,39.957254563279413],[-75.142915106429498,39.957259775716572],[-75.14335297635067,39.957313871157389],[-75.144065072588006,39.957400159084045],[-75.144073855957714,39.957398852088396],[-75.144081136995709,39.957395107037868],[-75.144085811034017,39.957389549378888],[-75.144088667825997,39.957385032569618],[-75.144088829364634,39.957384270369538],[-75.144089641498212,39.957380190965367],[-75.144089188577581,39.957376370251929],[-75.144089034515588,39.957375289129175],[-75.144088272844698,39.957373901372215],[-75.144086491438813,39.957370741566891],[-75.144082207149779,39.957367023039048],[-75.144076630771963,39.957364512265563],[-75.143788344198512,39.957297690455782],[-75.143634529574243,39.957260950122958],[-75.14350045960866,39.957228980388564],[-75.143445435677862,39.957215389818302],[-75.143351693886402,39.95719233185514]]],[[[-75.16035476664733,39.957536769636064],[-75.160315563634896,39.957717512795845],[-75.160320465397874,39.957740348918279],[-75.160329269077351,39.957749466821276],[-75.160339758293858,39.957755156555301],[-75.16035302971946,39.957758073587406],[-75.160365828251315,39.957759881602698],[-75.160412029982041,39.957766345018143],[-75.160578111970423,39.957787987074646],[-75.160623776151169,39.957793932799959],[-75.160705598489898,39.957804013043436],[-75.160864558958352,39.95782358379212],[-75.161147080379195,39.957858843423956],[-75.161293278321139,39.957876434364074],[-75.1614505291396,39.957895312478051],[-75.161591190688952,39.957913140324912],[-75.161678961040309,39.957924237064098],[-75.161867649315994,39.957948208216685],[-75.161924432904499,39.957955419715056],[-75.161924661368076,39.957955446493429],[-75.162161765102553,39.95798451798381],[-75.162161910885573,39.957984532985485],[-75.162217439994976,39.957988808457131],[-75.162217808182987,39.957988824871336],[-75.16222787561837,39.957989147465291],[-75.16225082088765,39.957980007022094],[-75.162265989139215,39.957968999945798],[-75.162303733724571,39.95780772495749],[-75.162300137020623,39.957791430023924],[-75.162286455446036,39.957781173290662],[-75.162286401694544,39.957781109007044],[-75.162276791464151,39.95777539242836],[-75.162266436952024,39.957772033241326],[-75.16226346778511,39.957771109400682],[-75.162241121813125,39.957767622089484],[-75.162233778497693,39.957766634722589],[-75.16221831943102,39.957764590304784],[-75.162196104299042,39.957762063717411],[-75.162147304697257,39.95775552980902],[-75.162065335346554,39.957744572392862],[-75.161962231449678,39.957732198387049],[-75.161926918728113,39.957727476934927],[-75.161877389133352,39.957720897609995],[-75.161815538675114,39.957713524921679],[-75.161794784759223,39.957711060053732],[-75.161647880853096,39.957692091481171],[-75.161549427661555,39.957679655340065],[-75.161516005971805,39.957675453965955],[-75.161479334274517,39.957670908946525],[-75.161397631509146,39.95766082654562],[-75.161251106868377,39.957643248178883],[-75.161102200443324,39.957624143612193],[-75.160961951116974,39.957605963144175],[-75.160933949331806,39.957602558775427],[-75.16077608211792,39.957583377697681],[-75.160603467253651,39.957561984012706],[-75.160527697253656,39.957552609742848],[-75.160416312120688,39.957539541944463],[-75.16035476664733,39.957536769636064]],[[-75.160435044831203,39.957547297268817],[-75.160472798262035,39.957551780544101],[-75.160522534756552,39.957557686684744],[-75.160875654858302,39.957600808887953],[-75.161150839052567,39.957635635339777],[-75.161476328198788,39.957676270652016],[-75.161729958041931,39.957708082913122],[-75.16208156577467,39.957751786249126],[-75.162181814426532,39.957765226517779],[-75.162198984098481,39.957767915910971],[-75.162152379345983,39.957977118853066],[-75.162118665421588,39.9579717938051],[-75.161847451977565,39.957937370146645],[-75.161558637609716,39.957902055868068],[-75.161239140800092,39.957863265263448],[-75.160894603816814,39.95781946393312],[-75.160676782663046,39.95779087636771],[-75.160487469955598,39.957769024555461],[-75.160387225010325,39.957756630766674],[-75.160435044831203,39.957547297268817]]],[[[-75.158804359651754,39.957259134765778],[-75.158791039426632,39.957261338738078],[-75.158782101843542,39.957264856271358],[-75.158778497145207,39.957266353437156],[-75.158775683706125,39.957268500989706],[-75.158769151987258,39.957273803719119],[-75.158765406437951,39.957278441356259],[-75.158762071562521,39.957283086467122],[-75.158760630092516,39.957288924043588],[-75.15871271634883,39.957509522071049],[-75.158712334467197,39.957537830651845],[-75.158712687063584,39.957538255787526],[-75.158712793423973,39.957538383431491],[-75.15871949251094,39.957546406042106],[-75.158730346211968,39.957552235708356],[-75.158743274165928,39.957554454991019],[-75.158805673560408,39.957563694238338],[-75.158987799198911,39.957587712960894],[-75.159055089261756,39.95759612186292],[-75.159142754625407,39.957607035282777],[-75.159256901230847,39.957621342510095],[-75.159304558731407,39.957627298639935],[-75.159555711574356,39.957658611090757],[-75.159671508600439,39.95767262719739],[-75.159714447488938,39.957677821574244],[-75.159714614087292,39.957677843356137],[-75.159937343923175,39.957707657244619],[-75.159937413803789,39.957707666931448],[-75.160079456949788,39.95772615134522],[-75.160125646734514,39.957731667637525],[-75.160141291683331,39.957733564263066],[-75.160156771247983,39.957731752167035],[-75.160163929531606,39.957729023296558],[-75.160170882243477,39.957726373579732],[-75.160182208994897,39.957717954273775],[-75.160190676574075,39.95770864418953],[-75.160198983300745,39.957680547853244],[-75.160240947873163,39.957455500041156],[-75.16023808264265,39.957450038263993],[-75.1602367344925,39.957448639184626],[-75.16023095044261,39.957442961047796],[-75.16022996288099,39.957441992685688],[-75.160218974046813,39.957436050189031],[-75.160206196182642,39.957432810904933],[-75.160137260083189,39.957423170768521],[-75.160116619540801,39.95742028467464],[-75.160062124236632,39.957413414054315],[-75.159952724533426,39.95739965539012],[-75.159872006614179,39.95738988875776],[-75.159759677615185,39.957376343989111],[-75.159668867557045,39.957365278940387],[-75.159577959060528,39.957354247637134],[-75.159327554927856,39.957323103488051],[-75.159135772413109,39.957298822153135],[-75.159135633754119,39.957298804605408],[-75.158926205248832,39.957272973804287],[-75.158926018799136,39.957272950671829],[-75.15890305315078,39.95727018574032],[-75.158817858204117,39.957259929804799],[-75.158817803360051,39.957259924961981],[-75.158804359651754,39.957259134765778]],[[-75.158835419062896,39.957296409523508],[-75.159025182437134,39.957317880536259],[-75.159246935589493,39.957341091802149],[-75.15952627784111,39.957369565703353],[-75.159862627215574,39.957405180814618],[-75.160078991590453,39.957427347054313],[-75.160172362118175,39.957437405474401],[-75.160169839710605,39.957447983247199],[-75.160170617578643,39.957448063878516],[-75.160127070964037,39.957724467318059],[-75.160104760490725,39.957721710213917],[-75.160048039895841,39.95771469835347],[-75.159786956359113,39.957681340918157],[-75.159471480997041,39.957640980970915],[-75.159196067480366,39.95760395762197],[-75.158875353327872,39.957560434972869],[-75.158780424704744,39.957547513810198],[-75.158835419062896,39.957296409523508]]],[[[-75.147578506318325,39.95691122598258],[-75.147572874390505,39.956912302890629],[-75.147565674437459,39.956913784827861],[-75.14755537757523,39.956917836505745],[-75.147553125648955,39.956918764831947],[-75.147542939721262,39.956925911331979],[-75.147540947957253,39.956928239440373],[-75.147535429135218,39.956934769193126],[-75.147534224809817,39.956937263832955],[-75.147530821260361,39.95694478223708],[-75.147507252459761,39.957056412173891],[-75.147478149768489,39.957195655425679],[-75.147445339608311,39.957353464816272],[-75.147499374741486,39.957363578301532],[-75.147621141027059,39.957375654381423],[-75.147621327576644,39.957375674831496],[-75.147768879206609,39.957396582718296],[-75.147984483140348,39.957425408647111],[-75.148271004389613,39.957453412421899],[-75.148271233052938,39.957453433826025],[-75.148489133129772,39.957472908711345],[-75.148594910816939,39.957481500045496],[-75.148595167762934,39.957481516684162],[-75.148755835757001,39.957487159169013],[-75.148756177240031,39.957487169614907],[-75.148826165183493,39.957488966446377],[-75.148826680887183,39.957486597640766],[-75.148826758574444,39.9574845685],[-75.148844633858261,39.95739052513013],[-75.14885895328996,39.957296145245529],[-75.148870603421031,39.957201575992137],[-75.148879584262488,39.9571068173708],[-75.148879407982946,39.957103409315252],[-75.148878722833089,39.957096901020826],[-75.148874764642088,39.957087441554798],[-75.148868099618511,39.957078927156722],[-75.148866830433803,39.957078009973067],[-75.148860337862914,39.957073554080772],[-75.14885155853851,39.957069835634243],[-75.148841813925301,39.957068027090443],[-75.14884172426359,39.95706801424523],[-75.148820463315687,39.957066605932908],[-75.148817034457906,39.957067694109647],[-75.148815253318134,39.957068711523654],[-75.148814101898864,39.957069458493024],[-75.148804483713761,39.957103858554937],[-75.148803092695232,39.957110160294576],[-75.148800206786348,39.957114528786164],[-75.148794749856833,39.957117059465354],[-75.148788375453648,39.95711697890512],[-75.148788340428254,39.957116976308903],[-75.148788194133047,39.957116974793877],[-75.148700004219208,39.957105808153166],[-75.148363361357013,39.957063248073482],[-75.148358446453244,39.957062936587931],[-75.148358286534105,39.957062923951099],[-75.148353909386174,39.957060921729791],[-75.148351120798281,39.957057641843996],[-75.148350475796036,39.957053755527269],[-75.148355870407613,39.957027168884061],[-75.148357465057771,39.957018852577654],[-75.148356775568601,39.957013559658499],[-75.148355162452873,39.957011442617947],[-75.148353153751046,39.957009107569377],[-75.148347060463124,39.957006608710486],[-75.148206759068458,39.956990047621737],[-75.148199792431683,39.956989228274757],[-75.148196453289387,39.956989991396931],[-75.148192815802346,39.956990871192772],[-75.148190822335792,39.956992327084492],[-75.148187985885031,39.956994669384571],[-75.148185238244821,39.956999614948053],[-75.148185118080747,39.956999848290508],[-75.148180770455994,39.957029116685682],[-75.148178819906263,39.957034007343772],[-75.148173913148241,39.957037457800105],[-75.148173863602523,39.957037467488689],[-75.148167570559522,39.957038533937371],[-75.148167410709419,39.957038519499839],[-75.147617941995591,39.956970036433496],[-75.147612531015852,39.956969532557309],[-75.147611302857143,39.956968675757416],[-75.147608255359756,39.956966715382478],[-75.147607881746737,39.956964639963431],[-75.147607296427978,39.956962620110438],[-75.147610585894355,39.956945150034173],[-75.147614367642646,39.956923600486192],[-75.147612750751506,39.956919228992561],[-75.147608416925593,39.956915913134075],[-75.147603129830898,39.956914375892602],[-75.147578506318325,39.95691122598258]]],[[[-75.142334917926917,39.956756098408817],[-75.142325098657167,39.956803096044204],[-75.142319309452702,39.956831513377544],[-75.14229478382137,39.95694805198918],[-75.142254088962531,39.957142621098498],[-75.142255229775273,39.957152493413467],[-75.142259342085325,39.957161940413499],[-75.142263124049805,39.957167456848602],[-75.142265423289828,39.957170575294732],[-75.142274126676426,39.957175348526242],[-75.142278591334119,39.957177262870196],[-75.142283654390866,39.957179357505254],[-75.142293311369215,39.957182530569007],[-75.142293346256153,39.957182536768123],[-75.142646548529825,39.957226516446966],[-75.142660507553657,39.957221838426904],[-75.142683807361891,39.95721389834965],[-75.14274423024996,39.957195931111848],[-75.142757768340076,39.957191878735223],[-75.142779064490398,39.95718562577045],[-75.142828195859067,39.957171136615017],[-75.142856184987735,39.957163923877602],[-75.142900032525517,39.957152542979337],[-75.142945073523819,39.957142341594562],[-75.142972286441818,39.957136133851343],[-75.143031617004326,39.95712466054507],[-75.143002880693373,39.957116622747108],[-75.142981198424849,39.957110604053135],[-75.142931686781836,39.95709451561801],[-75.142883359905952,39.957076416872049],[-75.142856895943808,39.95706512121874],[-75.142836169039171,39.957056358066851],[-75.142790619536157,39.957034381323425],[-75.142762226950097,39.957020103580362],[-75.142717658600503,39.956997822934689],[-75.142676594295438,39.956975396652723],[-75.14264630559515,39.956958968292916],[-75.142577398262631,39.956917923840699],[-75.142510360543497,39.956874690004582],[-75.142442874302546,39.956831155803165],[-75.142417065518558,39.956814599444819],[-75.142339577618131,39.956759428186714],[-75.142336814356483,39.956757356995844],[-75.142334917926917,39.956756098408817]]],[[[-75.151323719095373,39.95693168865931],[-75.151312286132068,39.956970928622958],[-75.151310123543368,39.956987735930028],[-75.15131537233944,39.957013050966715],[-75.15131980643929,39.957022137286415],[-75.151327214710065,39.9570325325829],[-75.151343316644116,39.957046195483684],[-75.151367628402923,39.957061664382174],[-75.151380142974403,39.957066326815301],[-75.151405685832614,39.957074771303148],[-75.151443837888863,39.957081945331858],[-75.151698233883494,39.957128160443546],[-75.151790284308419,39.957096529031148],[-75.15183381546673,39.957084621304219],[-75.152011787269544,39.956987142805438],[-75.151943386214271,39.956985960497512],[-75.15190829568725,39.956985312681269],[-75.151842506266803,39.956982734310181],[-75.151809198306353,39.956981428543159],[-75.151740289598735,39.956977294586885],[-75.151691102972308,39.95697399831306],[-75.151652999874173,39.956971025131288],[-75.151608273331817,39.956967534303438],[-75.151558371292978,39.956962341338773],[-75.151522687323819,39.956958628206245],[-75.151483819335709,39.956953980666185],[-75.151443787305908,39.956948758024737],[-75.151397068993077,39.956942518035852],[-75.151360681520501,39.956937148158701],[-75.151323719095373,39.95693168865931]]],[[[-75.157267846340588,39.957057726924042],[-75.157254393620377,39.957059567316293],[-75.157241725865717,39.957064216803815],[-75.157231644008988,39.957071240350643],[-75.157224164334266,39.957080211242555],[-75.157221892801189,39.957089879195429],[-75.157170037209397,39.957329822579403],[-75.157172364785609,39.957338781755944],[-75.15717912622145,39.957348632235451],[-75.157188636080733,39.957356782437692],[-75.15720083825164,39.957362708502892],[-75.157200892752073,39.957362722348918],[-75.15725680868313,39.95737034185062],[-75.157271259115518,39.957372149704725],[-75.157286355530346,39.957373996483511],[-75.157358452177789,39.9573828159578],[-75.157422870383911,39.9573906581561],[-75.157527379743385,39.95740470698405],[-75.157627460763223,39.957418119543675],[-75.157809010187734,39.957441693744805],[-75.15794423577313,39.957457630073549],[-75.158002529665666,39.957464854228611],[-75.158098528301508,39.957476728904098],[-75.158183942707296,39.957487804848675],[-75.158259529436407,39.95749758559711],[-75.158400357990743,39.957514095767408],[-75.158400441908796,39.957514105772312],[-75.158485727440819,39.957523620717872],[-75.158538232424462,39.957529474930588],[-75.158553816424956,39.957527871743153],[-75.158563010708079,39.957524562754273],[-75.158567841094296,39.957522732873983],[-75.158571208592193,39.957520517650899],[-75.158572690982027,39.957519470814724],[-75.158573199825895,39.957519114693184],[-75.158635867844865,39.957276438952874],[-75.158638256779369,39.957267156561166],[-75.158635109807236,39.957256100260565],[-75.158628354727838,39.957246077920445],[-75.158627026037706,39.957244906317513],[-75.158618464261878,39.957237680473959],[-75.158612855474317,39.95723487054854],[-75.158605714703,39.957231491714062],[-75.158521988020311,39.957220592057475],[-75.158495589813711,39.957217175556636],[-75.158483653640829,39.957215630985495],[-75.158260304237203,39.9571887636775],[-75.158091549361586,39.957168554420377],[-75.157361959780616,39.957069680362743],[-75.157281191050487,39.957058716892405],[-75.157267846340588,39.957057726924042]],[[-75.157294300561446,39.957099496842865],[-75.157560267157834,39.957137966521671],[-75.15774016457479,39.957162440577669],[-75.158028301115706,39.95720094247843],[-75.15830712100319,39.957236669779391],[-75.158544346102317,39.957267218435696],[-75.158556870547315,39.957268534815675],[-75.158505782291385,39.95750987639213],[-75.158287072462628,39.957479955892218],[-75.157957360297488,39.957435699379587],[-75.15762490906944,39.95738944102353],[-75.157339700710409,39.957352366638318],[-75.157243969697745,39.957339499941504],[-75.157294300561446,39.957099496842865]]],[[[-75.145994303143539,39.956680224747267],[-75.145987920834187,39.956680168178593],[-75.145982338324146,39.956680138774082],[-75.145976536497486,39.956681493767405],[-75.145971301309785,39.956682788639618],[-75.145962262551862,39.956685844270957],[-75.145954690601044,39.95669006668237],[-75.145954070324564,39.956690426527047],[-75.145947885059826,39.956696348206364],[-75.145944141561259,39.956702528941861],[-75.145943752834185,39.956703231925772],[-75.145943298977627,39.956704870494441],[-75.145941808115239,39.956710685188938],[-75.145923732479943,39.956794215024843],[-75.145885217824627,39.956973446113544],[-75.145866647672293,39.957062237500224],[-75.145989681671551,39.957087772941961],[-75.146516286730574,39.95718303511655],[-75.147113438669393,39.957291023086903],[-75.147162773083721,39.957300304757851],[-75.147193475070196,39.957150964963326],[-75.147245844134005,39.956901808675561],[-75.147246134859728,39.956894219657102],[-75.147243741512014,39.956886828337012],[-75.147239540791901,39.956880038440666],[-75.147233528096535,39.956874153507684],[-75.147225671506135,39.956869456635552],[-75.147224578527315,39.95686907503373],[-75.147216549492086,39.956866312346598],[-75.147206726535799,39.956864930771246],[-75.146862396330093,39.956822231475172],[-75.146518118708542,39.956779270131982],[-75.146518069783781,39.95677926361558],[-75.146471851467879,39.956773462743016],[-75.146173566095726,39.956736040208085],[-75.146141631796311,39.956731065272521],[-75.146109786472863,39.956724502043343],[-75.146102512448493,39.956722600671483],[-75.146078599062207,39.956716383256492],[-75.146052417725187,39.956707723946721],[-75.146027913995709,39.956696533895069],[-75.146027880899524,39.956696511519326],[-75.1460051970992,39.956682957042297],[-75.146000537588151,39.956681756536803],[-75.145994303143539,39.956680224747267]]],[[[-75.155675191742432,39.956848824318939],[-75.155664889833929,39.956848821111166],[-75.155659300459988,39.956848818152153],[-75.155644139914841,39.956852487547827],[-75.155632996392001,39.956858457984396],[-75.155631152533843,39.956859465073229],[-75.155626007100011,39.956869728455253],[-75.155563020941472,39.957134535441568],[-75.155562568472334,39.957136879572651],[-75.155561560430897,39.957143010738093],[-75.155561468494355,39.957143977254781],[-75.155562304832088,39.957145807217366],[-75.1555647171445,39.957150702047464],[-75.155568361625598,39.957153837120387],[-75.155570888729258,39.957155909850613],[-75.155574055687026,39.957156955472612],[-75.155579577811011,39.95715872020925],[-75.155649261116579,39.957170142395469],[-75.155656713657251,39.957171362417292],[-75.155656825443728,39.957171378460551],[-75.155758165111934,39.957184467029101],[-75.155794203526426,39.957188748186709],[-75.155828086726217,39.957192746333028],[-75.155846380802174,39.957195170181024],[-75.155857505470607,39.957196624596385],[-75.155963395371614,39.957210470913985],[-75.156085193868876,39.957225529196073],[-75.156201000977788,39.957239798647954],[-75.15635815505857,39.957259700671003],[-75.156512643210704,39.957279327766749],[-75.156557605929606,39.957285045726756],[-75.15660505156761,39.957291050458124],[-75.156776370194351,39.957312586688595],[-75.156782529620784,39.957313361135924],[-75.156782564612215,39.95731336462989],[-75.156913132456225,39.957328588712706],[-75.156933289983698,39.957330966205497],[-75.156947209946836,39.957332591818066],[-75.156989523124466,39.957337390148304],[-75.156989800785041,39.957337416246531],[-75.157002877711633,39.957338122679751],[-75.157006888081938,39.957337501518069],[-75.157016020236853,39.957336005899855],[-75.157027746348277,39.957331212614157],[-75.157037308173727,39.957324103446652],[-75.157037345467131,39.957324046624372],[-75.15704398748808,39.957312912385959],[-75.157096912461128,39.95707327613863],[-75.157097914773487,39.957068733329677],[-75.157096555768277,39.957057588545993],[-75.15709370987517,39.957051627055755],[-75.157091390619712,39.957047205596325],[-75.157088145766892,39.957043997612757],[-75.157082122000261,39.957038380567873],[-75.157073202976875,39.957033188239144],[-75.157070679067388,39.957031767051753],[-75.156962629192847,39.95701586276018],[-75.156962539529673,39.957015849921333],[-75.156950590616432,39.957014088656607],[-75.156839803869161,39.956997773692699],[-75.156687245126847,39.956978562760327],[-75.1566168805833,39.956968916128815],[-75.156489471397549,39.956951478114618],[-75.156316396821339,39.956928334861622],[-75.156147688572048,39.956906933525907],[-75.156051817356612,39.956894295108164],[-75.155997534068504,39.956888269785502],[-75.155926378099096,39.956880405067665],[-75.155920561445924,39.956879761763652],[-75.155911446851903,39.956878805116546],[-75.155772937744104,39.956861298214726],[-75.155694811489198,39.95685120699148],[-75.155675274661291,39.956848829798112],[-75.155675191742432,39.956848824318939]],[[-75.155869642616892,39.956898832860666],[-75.156329498942526,39.956965796315551],[-75.156558870903552,39.95699735551122],[-75.156633130208476,39.957009041828456],[-75.156867722668139,39.9570426069482],[-75.15693027461306,39.957051113646429],[-75.157019407165294,39.957062979112216],[-75.156969892231757,39.957302960909068],[-75.156845997303776,39.957286009998811],[-75.156480569714134,39.957242734022991],[-75.156164618611612,39.957204534605516],[-75.156162217867077,39.957204242456584],[-75.156063790705332,39.957193372635359],[-75.155960863541111,39.957181505364687],[-75.155812492454672,39.957166867829685],[-75.155869642616892,39.956898832860666]]],[[[-75.15150906239522,39.95663382694768],[-75.151470115480009,39.956633421418033],[-75.151452925421523,39.956637128989982],[-75.151436801162518,39.956643031259453],[-75.151422216580443,39.956650952449614],[-75.151410873024773,39.956659419186124],[-75.151409106010306,39.956661507371734],[-75.151402411676756,39.956669609085282],[-75.151399080091736,39.956676175944459],[-75.151396755035194,39.956681007711545],[-75.151357834503031,39.95681460072759],[-75.151357754604746,39.956814853005575],[-75.151372158339598,39.956816956986756],[-75.151428602023699,39.956824588604718],[-75.151428658002246,39.956824594377807],[-75.151553078715637,39.956835736195657],[-75.151553412419545,39.956835766279525],[-75.151656207538281,39.956845239629416],[-75.151656540106899,39.956845268786303],[-75.151759885098087,39.956853284031297],[-75.151760282143897,39.956853311044021],[-75.151863524800277,39.956859808361017],[-75.151955926862584,39.956863274129347],[-75.151956177201285,39.956863279798597],[-75.152048550310596,39.95686456346602],[-75.152048913295047,39.956864562675825],[-75.152140839751922,39.956863687220533],[-75.152141181748647,39.956863684152715],[-75.152251536540817,39.956861899611368],[-75.152251801364741,39.956861893894732],[-75.152277354001882,39.956860988521179],[-75.152278333158591,39.956857059718622],[-75.152281736021109,39.95684207351345],[-75.152279982846068,39.956831980230199],[-75.152279452860597,39.956829428253066],[-75.152274511962432,39.956817180530095],[-75.152272333941838,39.956813636153804],[-75.152267072865115,39.95680556732102],[-75.152257049601928,39.956795918386661],[-75.15225587898766,39.956794810655076],[-75.152241793526713,39.956786035629385],[-75.152225716263686,39.956779594193144],[-75.152214287623138,39.956776263822924],[-75.152206423006021,39.956774861248064],[-75.152202254104537,39.956774146944255],[-75.152189797543059,39.956773264793853],[-75.151905030207942,39.956700907305894],[-75.151823787488226,39.956680294618067],[-75.151751529170525,39.956661899133948],[-75.151746443913638,39.956661082967614],[-75.151626511955072,39.956641901398669],[-75.15150906239522,39.95663382694768]]],[[[-75.144416816366586,39.956444063135848],[-75.144405017338443,39.956446218903139],[-75.144401104198678,39.956447935675754],[-75.144394817720311,39.956450845559267],[-75.144386594629594,39.956455894635063],[-75.144384537717301,39.956457904051163],[-75.144380335219523,39.956462250643547],[-75.144376388065382,39.95646958632156],[-75.144375769987477,39.956472788934555],[-75.144375062745581,39.956477431158675],[-75.144347455758862,39.956604072687988],[-75.144317884862744,39.956740644828997],[-75.144433554008074,39.956766985989589],[-75.144433622508515,39.956767001060719],[-75.144577666368392,39.956795149738632],[-75.144680610104501,39.956815260297766],[-75.144745722292214,39.956828409014733],[-75.14492703966512,39.956864982198447],[-75.14517301102191,39.956916128486732],[-75.145254360353164,39.956933553317334],[-75.145418796032942,39.956968693624098],[-75.145542132659727,39.956994664409649],[-75.145651988782106,39.957017725982148],[-75.145706680882427,39.957029075221953],[-75.145771532958634,39.957042452609684],[-75.14579678635323,39.956927329197867],[-75.145812448471446,39.956852949434769],[-75.145853665724019,39.95665608724179],[-75.145851427686537,39.956644831325868],[-75.145846484574591,39.956633954605159],[-75.145843376388896,39.95662850855102],[-75.145840292080692,39.956623691952366],[-75.145834704341951,39.956620897184443],[-75.145830116818715,39.956618735113196],[-75.14582415086474,39.956617102187231],[-75.145819272204889,39.956615815607535],[-75.145807528943735,39.956615050769315],[-75.145803558216031,39.956614452456613],[-75.145800853602665,39.956614086515913],[-75.145794549933683,39.956615430108037],[-75.14578996492132,39.956618853529413],[-75.145787106701377,39.956623594699984],[-75.145784629722399,39.956636778093483],[-75.145781558473928,39.956653430448085],[-75.145779958022857,39.956658255132645],[-75.145775879413932,39.956662120737718],[-75.145775228287022,39.956662369055394],[-75.145770378749035,39.956664324111991],[-75.145770072123099,39.956664320755564],[-75.145768245573478,39.956664353175896],[-75.145763606842593,39.956664443396335],[-75.145763405295156,39.956664417196592],[-75.145763237772016,39.9566644197009],[-75.145341476791941,39.956611806502814],[-75.145341240254368,39.95661177680477],[-75.145190234967359,39.956591961355834],[-75.145187505167428,39.956589351282652],[-75.145184523132258,39.956586785038574],[-75.145185233747881,39.956584252180889],[-75.145185422873951,39.956583136504122],[-75.145187170647034,39.95656952299457],[-75.145190822776939,39.956538822484902],[-75.145177473165532,39.956537416522572],[-75.14505042060982,39.956524045541279],[-75.145045917844968,39.956543675691378],[-75.145041170045147,39.956566062812485],[-75.14503827320604,39.956567992799322],[-75.145035270280431,39.956570307816833],[-75.145027137022169,39.956572831609442],[-75.145019090492355,39.956573459817292],[-75.145019021715783,39.956573451948415],[-75.145018783349101,39.956573469962407],[-75.144456916903465,39.956506189387653],[-75.144456695474418,39.956506132099186],[-75.144449455267221,39.956504266528889],[-75.144443774982435,39.956500100936324],[-75.144440909501753,39.956494465732959],[-75.144447620567917,39.956458350188889],[-75.144446143359986,39.956454341326278],[-75.144445582286167,39.956453157253613],[-75.144441288139859,39.956448811402531],[-75.144438572789227,39.956447260340653],[-75.144435743438464,39.956445812109152],[-75.144430496390427,39.956444851382081],[-75.144428959995906,39.956444584023302],[-75.144416816366586,39.956444063135848]]],[[[-75.153406223990714,39.956575907196871],[-75.153333991980602,39.956575043557606],[-75.153125178135952,39.956579552427101],[-75.153110083172606,39.956579880189707],[-75.153106552913457,39.956580162487185],[-75.152876459367363,39.956598548763886],[-75.152572587398581,39.956623349034203],[-75.152490925107927,39.956631225692284],[-75.152487125780524,39.956632145207131],[-75.152469422712073,39.956646700411177],[-75.152467755516682,39.956690308085648],[-75.152473515932769,39.956699158587291],[-75.152481788201996,39.956707599233262],[-75.15248497805915,39.956709851025693],[-75.152521564291334,39.956729712552402],[-75.152568561679445,39.956722617897043],[-75.15261466998939,39.956710725883987],[-75.152794874244748,39.956685909979477],[-75.152902831784516,39.956671176047337],[-75.153137262231695,39.956633584428879],[-75.153220195296285,39.956629676237824],[-75.153230336841574,39.956628574989374],[-75.153305608509186,39.956622480439165],[-75.153381116842894,39.956618433808934],[-75.153456761143133,39.956616435522051],[-75.153520884843672,39.956617004743705],[-75.153584964923098,39.956618899243601],[-75.153648959306508,39.956622117168457],[-75.153712818900303,39.956626656506373],[-75.153776495952542,39.956632510770717],[-75.153839942436278,39.956639680676808],[-75.154269260141959,39.956696446610202],[-75.154557131914203,39.95673139500088],[-75.154844652768674,39.956768058374941],[-75.155131788699052,39.956806438668401],[-75.155418766910771,39.956846565349679],[-75.155419090900168,39.956845010309493],[-75.155403494682957,39.956971594096359],[-75.155398666113015,39.95699072796333],[-75.155374628732673,39.957085933854231],[-75.155369200000322,39.95710744635322],[-75.155363553916601,39.957106720381162],[-75.155102858330579,39.957073187061162],[-75.154776007287367,39.957034768775252],[-75.154428901753192,39.957012798031521],[-75.154123721763568,39.957014346356239],[-75.153940445519126,39.957024317213339],[-75.153738020206177,39.957045139695779],[-75.15357192736731,39.957072405579069],[-75.153099756639705,39.957166444784377],[-75.152999256024231,39.957186460110862],[-75.152976735518962,39.957189943628443],[-75.152735951424916,39.957227195599359],[-75.152565745049984,39.957263391535825],[-75.15255990661862,39.95726552271082],[-75.15255532575577,39.957269029383511],[-75.152552527059143,39.957273511665228],[-75.152551835743509,39.957278456129615],[-75.152554402166956,39.957282438179405],[-75.152558815535031,39.957285303333805],[-75.152564350499176,39.957286577451775],[-75.152570085694791,39.957286044151118],[-75.152770299010413,39.957264065372044],[-75.152847770893189,39.957251675031337],[-75.15291826574402,39.957237999517666],[-75.15297660654214,39.957224866952082],[-75.152987019618308,39.957222484312055],[-75.153000351313636,39.957219434310112],[-75.15325331479923,39.957168257393462],[-75.15339539164809,39.957139470786551],[-75.153489850204025,39.957119037249583],[-75.153562422752714,39.957105520998091],[-75.153585836072921,39.957101130423702],[-75.153631111093091,39.957093888226666],[-75.153682047642405,39.957085710936397],[-75.153778893497019,39.957072841193579],[-75.153876532707542,39.957062556328765],[-75.153876575061517,39.957062550980091],[-75.153969277313706,39.957054154579559],[-75.154062239673948,39.957047683162571],[-75.154155393991346,39.957043143295472],[-75.154155631978909,39.957043135165144],[-75.154248517424691,39.957040514618107],[-75.154342010814744,39.957039847646577],[-75.154342220348497,39.957039848783332],[-75.154434958138253,39.957041092822429],[-75.154435333682031,39.957041100417989],[-75.154528513903443,39.957044278969292],[-75.154528584023353,39.9570442823577],[-75.154668207796448,39.957054128477523],[-75.154806906966286,39.957066663777496],[-75.154886337509367,39.957075440785403],[-75.154944952704383,39.957081900701816],[-75.155014669313218,39.957090975073029],[-75.155083104097585,39.957099860026361],[-75.155092850531815,39.957101624828574],[-75.155154727096459,39.957109203588267],[-75.155226018146323,39.957117919695669],[-75.15531109741822,39.957128061268435],[-75.155313374636677,39.957128307392637],[-75.155313992609109,39.957128374529489],[-75.155418037442558,39.957134700263218],[-75.155418473469709,39.957134595694988],[-75.155425607793859,39.957130658308344],[-75.155429418115531,39.957117217478526],[-75.155436192108397,39.957093313461371],[-75.155462774887368,39.956999545487413],[-75.155468171866488,39.956980488445524],[-75.155494608368357,39.956854032679637],[-75.155494576299262,39.956850672053122],[-75.155489885892848,39.95683988259001],[-75.155481069492765,39.956830749594197],[-75.155477689415434,39.956828908054412],[-75.15546030051037,39.956824490837981],[-75.155378739275434,39.95681093207736],[-75.155287299798857,39.956799245609687],[-75.155129228502204,39.956779850240935],[-75.155129075876445,39.956779830570355],[-75.15475344629391,39.95673258983161],[-75.154441112282029,39.956693174455573],[-75.154440994578835,39.956693160079283],[-75.154352620836889,39.956682233303347],[-75.153985583561067,39.956636864834302],[-75.153871589874157,39.956623525258749],[-75.153622035173228,39.956594360995432],[-75.153569338591396,39.956587880269268],[-75.153550537995017,39.956585573434644],[-75.153550385163683,39.956585559163464],[-75.153478577735811,39.956579406326284],[-75.153478355817299,39.956579392293335],[-75.153451083103988,39.956578068620665],[-75.153406223990714,39.956575907196871]]],[[[-75.142489295881973,39.956194422486675],[-75.14247967793807,39.956194750799185],[-75.142470465084642,39.956197245368145],[-75.142468691513329,39.956198246638905],[-75.14246303120936,39.956201709462462],[-75.142458948441529,39.956206045192936],[-75.142457625872026,39.956207619854176],[-75.142453989861991,39.956214103867431],[-75.14245179597836,39.956220962147256],[-75.14244760208247,39.956239419793071],[-75.142523348433755,39.95627131491721],[-75.142550038127013,39.956282515772934],[-75.142577299174732,39.956292832189021],[-75.142734959819563,39.956347353002336],[-75.142860225271278,39.956390588208244],[-75.142914598593734,39.956406193396063],[-75.142982598494669,39.956425627616476],[-75.143047750010609,39.956442982380601],[-75.143105578327393,39.95645831729216],[-75.143173900654077,39.956474965551855],[-75.143229988515671,39.956488578640744],[-75.143449258781061,39.956540377087073],[-75.143623566235789,39.956581223423264],[-75.143788178211182,39.956619722816924],[-75.143973758532923,39.956662160922058],[-75.144112495301528,39.956693834274056],[-75.144213997687416,39.956716992214183],[-75.144225701986016,39.956719658389595],[-75.144281978456988,39.956438713779768],[-75.14428048011267,39.956431257121643],[-75.144279993337832,39.956430486503066],[-75.1442758372838,39.956424524644163],[-75.144271983733432,39.956421604300743],[-75.144268452947145,39.956419182345691],[-75.144259664502385,39.956415679578534],[-75.144249900425095,39.956414383780725],[-75.143583936001292,39.956332099330353],[-75.142918009846085,39.95624882522764],[-75.142917801282209,39.956248798863385],[-75.142899226609828,39.956246442247235],[-75.142489295881973,39.956194422486675]]],[[[-75.149322905306803,39.956293358019941],[-75.149340697932473,39.956317802418582],[-75.149342488671991,39.956319806338861],[-75.149361228833172,39.956340999704899],[-75.149384483880283,39.95636276845191],[-75.149408055226175,39.956379363491919],[-75.149418365038031,39.95638662246494],[-75.149431766865774,39.956395199443129],[-75.149453198285613,39.956408911351502],[-75.149489875076966,39.956429653516139],[-75.149528401992583,39.956448677011288],[-75.149567887471648,39.956465966130892],[-75.149597399727654,39.956477051798217],[-75.149609224759828,39.95648149246604],[-75.149651525671985,39.956495152087655],[-75.149682485270489,39.956503754887891],[-75.149693898783156,39.956506925690505],[-75.149846101686862,39.956539555929979],[-75.149999294584475,39.956569633282882],[-75.150153471990123,39.956597147710141],[-75.150595421051776,39.956682009310043],[-75.150704143504143,39.956708502954768],[-75.150704213106877,39.956708519849151],[-75.150812788965268,39.956737011234729],[-75.15091148282005,39.956765145282496],[-75.150919577622389,39.956767446974332],[-75.150919680736351,39.956767475440039],[-75.150982249569324,39.956785005904358],[-75.151009301595707,39.956791518646874],[-75.151046783226789,39.956800542736786],[-75.15107559484197,39.956806600665388],[-75.151080422359442,39.956807604742004],[-75.151080469770463,39.956807620232389],[-75.151138864772548,39.956818935421651],[-75.151151044020054,39.956780419680634],[-75.151172538117564,39.956708299644745],[-75.151197610326506,39.956612239449925],[-75.15120176742289,39.956597222603271],[-75.151206237828575,39.95658622780207],[-75.151207676626029,39.956582680640025],[-75.151210052707228,39.956579239406274],[-75.151217121906498,39.956568990052965],[-75.151223702727833,39.956561499373592],[-75.151229247822883,39.956555190797324],[-75.151238162528003,39.956545698659212],[-75.151242268462937,39.95654132440955],[-75.151251128240958,39.956531094892327],[-75.151254402530114,39.956527311794233],[-75.151261256630491,39.956518675798975],[-75.151264706130974,39.956514321818439],[-75.151216110869299,39.956519265948565],[-75.151156208979614,39.956516926863621],[-75.151033849723774,39.95651695170001],[-75.151027290783588,39.956516952679245],[-75.15092012640892,39.956515506972067],[-75.15039669138109,39.956451586969798],[-75.149962152590845,39.956399501363869],[-75.149626750136392,39.956358501172737],[-75.149395587463346,39.956328703864287],[-75.149346564993763,39.956308928812966],[-75.149322905306803,39.956293358019941]]],[[[-75.148009040354523,39.955656888026787],[-75.148006214188143,39.955662081387175],[-75.147995145636699,39.955685555139148],[-75.147965315642423,39.955738115415755],[-75.147955646304453,39.955780203571813],[-75.147945687994095,39.955812197334261],[-75.147941945939948,39.955824735771508],[-75.147935710937915,39.955840125261041],[-75.147924502458437,39.955868535234345],[-75.147903830572886,39.95591146045988],[-75.147880502010139,39.955949496847524],[-75.147862329796013,39.955975209783062],[-75.147854566109316,39.95598646134178],[-75.14782938796894,39.956017457531622],[-75.147825583728064,39.956022172785751],[-75.147794168939654,39.956056585638969],[-75.147756198779859,39.956112946443618],[-75.147723859342079,39.956161319459341],[-75.147721667849908,39.956167762511072],[-75.147720933499158,39.956170184018156],[-75.147719999729873,39.956179279374822],[-75.147720583768916,39.956185489850427],[-75.14772103875238,39.956188375331401],[-75.147722131747145,39.956190957224123],[-75.147724687773604,39.956196088857226],[-75.147730663316267,39.95620294332263],[-75.147738490368795,39.956208593673196],[-75.147742718249987,39.956210303305809],[-75.147747132671213,39.956211697306948],[-75.147751705798584,39.956212768738034],[-75.147932523119749,39.956233473256027],[-75.147967889239737,39.956237829044476],[-75.148113017983107,39.956255691097709],[-75.148293196490883,39.956279416095533],[-75.148314298198898,39.956282591407472],[-75.148334600538703,39.956287899325638],[-75.148334676952388,39.956287921782071],[-75.148353939055696,39.95629529287195],[-75.148371725906756,39.956304591125793],[-75.14838021373879,39.956310445630713],[-75.148387961551961,39.956315629211389],[-75.148401793573115,39.956327185835846],[-75.148408678469821,39.956335030385212],[-75.148413163641692,39.956339866965848],[-75.148418090018779,39.956346818337963],[-75.148423088287103,39.956353543381738],[-75.148430562422902,39.956368045424703],[-75.148432701256951,39.956374778606374],[-75.148435574988056,39.956383111548213],[-75.148438588798427,39.956398885599178],[-75.148438852183929,39.956406378159777],[-75.148439476141078,39.956414850198307],[-75.148437879011496,39.956425433419355],[-75.148437251101385,39.956430701869209],[-75.148343100066953,39.956891417000946],[-75.148341875179028,39.956898821749625],[-75.148342713160631,39.956904609093172],[-75.148343041069339,39.956906227555912],[-75.148346340684071,39.95691325376535],[-75.148347653195302,39.956914843198597],[-75.148351644413751,39.956919463146079],[-75.148359516489833,39.956926662427186],[-75.148369724135179,39.956931849531685],[-75.148381419682337,39.956934596172175],[-75.148684412482908,39.956972171019501],[-75.148839186944627,39.956991350075668],[-75.148851885490657,39.956991569518628],[-75.148864448111766,39.956989498184953],[-75.148870738489364,39.956987399968526],[-75.148876653771779,39.956985282434857],[-75.148886913856416,39.956979100692649],[-75.148892686912887,39.95697158461752],[-75.148893798610246,39.956969489719874],[-75.148896669509384,39.956963494542336],[-75.148899670315856,39.956955023600379],[-75.14890550143862,39.956915041437583],[-75.148939296699027,39.95668134209437],[-75.148941163959819,39.956668441258557],[-75.148942191321595,39.956659985940789],[-75.148888036405268,39.95662970735485],[-75.14881343206612,39.956574290604678],[-75.148712773986816,39.956500304060704],[-75.148610499192714,39.956398644632934],[-75.148560936381884,39.956335988189544],[-75.148532653147825,39.956302289252378],[-75.148481824001522,39.956237238874017],[-75.148470661529345,39.956221857591778],[-75.14845307063193,39.956199614315565],[-75.148436955551801,39.956175398830155],[-75.148433738246538,39.956170963123959],[-75.148388436367583,39.95610353590672],[-75.148379022594426,39.956088351949987],[-75.148337493931209,39.956025949678704],[-75.148203759895267,39.955837240523088],[-75.148143713057266,39.95575117183192],[-75.148101309456749,39.955704534619329],[-75.148094981211557,39.955699247159373],[-75.148061711840839,39.955679280104754],[-75.148009040354523,39.955656888026787]]]]},"properties":{"OBJECTID_1":184,"OBJECTID":127,"ASSET_NAME":"Vine Street Park","SITE_NAME":"Vine Street Park","CHILD_OF":"Vine Street Park","ADDRESS":"VINE STREET EXP","TYPE":"Land","USE_":"Park- Linear\\Parkway","ACREAGE":12.054313,"ZIPCODE":"19107","ALLIAS":" ","GLOBALID":"8333ac84-1b2b-4718-8a54-04ec09e763e8","Shape_Length":33477.312273821095,"Shape_Area":525083.79874475731}},{"type":"Feature","id":185,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.208580377661335,39.945539501087694],[-75.20857081475873,39.94554291935367],[-75.20856056046577,39.945552085120809],[-75.208546416108334,39.945564729068082],[-75.20848000695851,39.945624093433423],[-75.20846781365637,39.945634993009605],[-75.208461819907725,39.945640351823407],[-75.208451849906226,39.945654654196723],[-75.208451578520311,39.945661910274893],[-75.2084575237769,39.945671118718984],[-75.208465233468345,39.945675999091897],[-75.208472704127871,39.945680729106357],[-75.20854713198797,39.945727846450566],[-75.208571880678932,39.94574566343185],[-75.208580182779116,39.945754924087865],[-75.208587476449722,39.945762133339699],[-75.208594588409269,39.945769161968272],[-75.208603371396876,39.945782904959131],[-75.208605067695672,39.945791635427327],[-75.208608000711692,39.945806736363174],[-75.208612389661695,39.945829326264295],[-75.209085481765072,39.948273068405953],[-75.209090206649677,39.948297201933002],[-75.209094883446966,39.948321087519595],[-75.209104318557948,39.948338502981755],[-75.209121358331615,39.948347994977567],[-75.20914128389947,39.948350814989219],[-75.209164708682195,39.948350031005084],[-75.209200232006296,39.948348843750999],[-75.210420944960177,39.948308245755669],[-75.210486916788739,39.94830621401838],[-75.210516517688532,39.948303461746569],[-75.210537142680465,39.948299564702879],[-75.210557775903055,39.948294413641278],[-75.210579717846699,39.948286538983552],[-75.210598348642989,39.948276736755837],[-75.210612034264784,39.948268259447822],[-75.210635472123883,39.948252307065054],[-75.211193118226788,39.947861330074254],[-75.211234460155666,39.947832359706233],[-75.211257192161781,39.947816429422801],[-75.211269902421449,39.947806167190343],[-75.211274557781508,39.947794831989597],[-75.211273719497271,39.94778527812165],[-75.211267138978258,39.947776326077673],[-75.211260721954062,39.947770987970848],[-75.211249182252672,39.947761387368438],[-75.211218875181814,39.947736174178765],[-75.208693182072338,39.945609292727369],[-75.208640270696819,39.945564596558945],[-75.208617094836285,39.945545760264359],[-75.208609397849486,39.945541354111057],[-75.208591419811015,39.945538534790742],[-75.208580377661335,39.945539501087694]]],[[[-75.210086617778785,39.948439440338944],[-75.20987784282795,39.948446632274852],[-75.20920595409892,39.948468253462629],[-75.209185336393546,39.948468821222889],[-75.209159018654532,39.948472084665703],[-75.20914967518118,39.948476699876423],[-75.209141967055686,39.948482850580099],[-75.209136317629273,39.948490203773098],[-75.209132271934237,39.948506888143733],[-75.209134108920836,39.948516775001565],[-75.209136396018366,39.948529088321294],[-75.209145917010275,39.948580336565733],[-75.209311270712021,39.949447731746524],[-75.209314022049085,39.949462659243586],[-75.209322986914188,39.94947409061367],[-75.209339012603735,39.949479309174741],[-75.209356974044098,39.949479720504776],[-75.209368218920432,39.949477982845202],[-75.209387038474901,39.949475074958009],[-75.210566744401632,39.949283298325895],[-75.21081222169316,39.949247392543057],[-75.211029172781082,39.949219327886603],[-75.211206938342642,39.949199463264669],[-75.211197586378347,39.949150477783796],[-75.210975348935108,39.948963117541162],[-75.210515553985189,39.94857589387788],[-75.210400197304068,39.948478709437808],[-75.210399827791804,39.94842939655635],[-75.210086617778785,39.948439440338944]]]]},"properties":{"OBJECTID_1":185,"OBJECTID":128,"ASSET_NAME":"Clarence H Clark Park","SITE_NAME":"Clarence H Clark Park","CHILD_OF":"Clarence H Clark Park","ADDRESS":"4301 CHESTER AVE","TYPE":"Land","USE_":"Park- Neighborhood","ACREAGE":12.034015999999999,"ZIPCODE":"19104","ALLIAS":" ","GLOBALID":"c84a95c7-f34a-4359-bb84-42c1694d4409","Shape_Length":4489.7015231586938,"Shape_Area":524199.6878821397}},{"type":"Feature","id":186,"geometry":{"type":"Polygon","coordinates":[[[-75.033096944136233,40.098968291802478],[-75.033032109974229,40.099046639518136],[-75.032863405585417,40.099260225470999],[-75.032537486105483,40.099672855903577],[-75.032177070056775,40.10018891980647],[-75.031963910445725,40.100427698506664],[-75.03182272241213,40.100644388096285],[-75.031669278125918,40.100903676879526],[-75.031820050605944,40.101515643459287],[-75.032961032038358,40.10221285977758],[-75.033802380752064,40.1013885345304],[-75.034070234620756,40.10112891663767],[-75.034205371139748,40.100998198504747],[-75.0342137378572,40.100990536287028],[-75.034190066609355,40.10093447327661],[-75.034172489666076,40.100849767460737],[-75.034163375667418,40.100790234186142],[-75.034137746271213,40.100645508366348],[-75.034126167208541,40.100582253180022],[-75.034118905214115,40.100542041631293],[-75.034104997890012,40.100408529673608],[-75.034028468726149,40.099999042181373],[-75.034008598093948,40.099935372131519],[-75.033982315975479,40.099877247947511],[-75.033952272020741,40.099823755485609],[-75.033595811179694,40.099304466230926],[-75.033593485337903,40.099294663704086],[-75.033578610833089,40.099241958467758],[-75.033577812594061,40.099194908348551],[-75.03359301560269,40.099162601780719],[-75.033557159191247,40.099115006193692],[-75.033129669808019,40.098923128729659],[-75.033096944136233,40.098968291802478]]]},"properties":{"OBJECTID_1":186,"OBJECTID":129,"ASSET_NAME":"Lackman Playground","SITE_NAME":"Lackman Playground","CHILD_OF":"Lackman Playground","ADDRESS":"800 BARTLETT ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":11.720888,"ZIPCODE":"19115","ALLIAS":" ","GLOBALID":"5f642ac5-d41b-46cd-beef-5adbff7d5397","Shape_Length":2889.7926825720201,"Shape_Area":510559.934846994}},{"type":"Feature","id":187,"geometry":{"type":"Polygon","coordinates":[[[-75.077334254687372,40.012959289338575],[-75.077255214983481,40.012976865970174],[-75.073939185264479,40.013718069227458],[-75.073889580982268,40.013729114091305],[-75.073860057694262,40.013735687468248],[-75.073831953006561,40.013741946100438],[-75.073818310508628,40.013749526656326],[-75.073807872609692,40.01377355384907],[-75.073823629844924,40.013815356469536],[-75.07433960928185,40.015181303555146],[-75.074345092786672,40.01519583179833],[-75.074353768635916,40.015214992806463],[-75.074368209430062,40.015225428205113],[-75.074377568079541,40.015228128661683],[-75.074397367033825,40.015227582669311],[-75.074421569461805,40.015222140302967],[-75.07458465383904,40.015185465656586],[-75.074862244267948,40.015124865331487],[-75.074853014688372,40.015089718687868],[-75.076651343464818,40.014692891852938],[-75.077221219467972,40.013816993257066],[-75.077468563323038,40.013436817645797],[-75.077499700880892,40.013396490069319],[-75.077474529777348,40.013290683252244],[-75.077413825778379,40.013027865492894],[-75.077408766905307,40.013005962354136],[-75.077401487429341,40.012974445672661],[-75.07739250079571,40.012963402363475],[-75.077370560345813,40.012953861404625],[-75.077334254687372,40.012959289338575]]]},"properties":{"OBJECTID_1":187,"OBJECTID":130,"ASSET_NAME":"Gambrell Playground","SITE_NAME":"Gambrell Playground","CHILD_OF":"Gambrell Playground","ADDRESS":"1900 WAKELING ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":11.544798999999999,"ZIPCODE":"19124","ALLIAS":"White Hall Commons","GLOBALID":"3a2008a2-02db-48cf-a12a-040701ca1f4a","Shape_Length":2976.0078419681163,"Shape_Area":502889.38350046839}},{"type":"Feature","id":188,"geometry":{"type":"Polygon","coordinates":[[[-75.235424999530011,39.906590386975139],[-75.235441363819916,39.906604353669692],[-75.236686437077367,39.907654487640372],[-75.23670875282761,39.907673279709087],[-75.236720473456785,39.907683150289948],[-75.236731777194336,39.907688347273179],[-75.236744362545465,39.907691314455462],[-75.236749693673303,39.907691543953121],[-75.236757508185178,39.907691879249825],[-75.236770446615608,39.907690010414569],[-75.236777961327618,39.907687378464225],[-75.236789436041917,39.907681556403396],[-75.236806957689666,39.907669512178515],[-75.237565430218282,39.907134150078392],[-75.237742949160165,39.907009062858847],[-75.237719090871224,39.906988131561455],[-75.237606134539618,39.906897476555557],[-75.237555792437306,39.906853028159631],[-75.237550041167026,39.906847991687009],[-75.237854681926763,39.906636624112657],[-75.237860967384123,39.906637683567297],[-75.237862561423682,39.906636558916503],[-75.23885431146185,39.905939626160659],[-75.238750932409033,39.905619790399079],[-75.237936593256492,39.904931975354785],[-75.23790683231671,39.904903445479519],[-75.237774752252449,39.904961843103884],[-75.237256471228832,39.905221352190985],[-75.237200614885381,39.905251508644945],[-75.237137332327578,39.905285675702942],[-75.237065016297663,39.90532625351311],[-75.236995103856131,39.905365482920629],[-75.236751922055248,39.905508965713921],[-75.236684873758961,39.90555074267953],[-75.236606106385224,39.90560128795002],[-75.236522213192629,39.905655861762035],[-75.236417086662513,39.905725103081807],[-75.236028947600488,39.906004153967011],[-75.235871541670235,39.9061275199562],[-75.235818129656678,39.906170094647386],[-75.235741960469696,39.906232250713863],[-75.235678063141876,39.906285433465115],[-75.235594143548511,39.906357160125353],[-75.235439207118205,39.906496020097357],[-75.235412879412181,39.906520120000884],[-75.235400332175132,39.906533243498359],[-75.235396569876244,39.906541147405825],[-75.235395088342415,39.906550237498301],[-75.235397498446858,39.906563079108516],[-75.235406898918626,39.906574937894803],[-75.235424999530011,39.906590386975139]]]},"properties":{"OBJECTID_1":188,"OBJECTID":131,"ASSET_NAME":"Eastwick Park","SITE_NAME":"Eastwick Park","CHILD_OF":"Eastwick Park","ADDRESS":"7401 LINDBERGH BLV","TYPE":"Land","USE_":"Park- Neighborhood","ACREAGE":11.308937,"ZIPCODE":"19153","ALLIAS":"Suffolk Park","GLOBALID":"7bea9029-6c28-4670-842c-d0f6cb2ddf91","Shape_Length":2918.1021701893665,"Shape_Area":492615.21075644012}},{"type":"Feature","id":189,"geometry":{"type":"Polygon","coordinates":[[[-75.075069335202471,40.010274942938516],[-75.075049462266435,40.010280704324629],[-75.07500694143863,40.010291310046398],[-75.072722499399319,40.010758789722175],[-75.072704155551747,40.010762434676174],[-75.072687459544099,40.010776054756491],[-75.072683014652767,40.010788155733138],[-75.07268868837096,40.01080892553022],[-75.072695126684394,40.010825639540961],[-75.073289063294851,40.012395931490559],[-75.073302474789855,40.01242992603914],[-75.073329089724453,40.012464350040084],[-75.073354032895892,40.012464200793588],[-75.073432909743318,40.012446904165614],[-75.073502476910633,40.012431648474589],[-75.074976199113522,40.01210298816904],[-75.07516889765688,40.012060722577701],[-75.075347531790996,40.01199749426285],[-75.07606295773617,40.011694841674533],[-75.076098588573331,40.011679816759226],[-75.076129251632608,40.011664567112931],[-75.076136406379405,40.01164142738785],[-75.076117670878602,40.011613662454479],[-75.07609588210552,40.011585083950621],[-75.076077569802536,40.011561063684873],[-75.075139517015913,40.010327587866854],[-75.075122493166859,40.010305203107656],[-75.075108094086445,40.010286268318595],[-75.075102492485115,40.010280958619276],[-75.075078114427384,40.010273834663678],[-75.075069335202471,40.010274942938516]]]},"properties":{"OBJECTID_1":189,"OBJECTID":132,"ASSET_NAME":"Carmella Playground","SITE_NAME":"Carmella Playground","CHILD_OF":"Carmella Playground","ADDRESS":"2100 WAKELING ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":11.220984,"ZIPCODE":"19124","ALLIAS":" ","GLOBALID":"dc4b47cb-efde-49af-95cc-9c40d0b6f020","Shape_Length":2768.8127651294017,"Shape_Area":488784.18503387604}},{"type":"Feature","id":190,"geometry":{"type":"Polygon","coordinates":[[[-75.04945501644508,40.060069127830225],[-75.049416521407522,40.060107762809743],[-75.049400221156276,40.060124123850926],[-75.048492195712782,40.061085176673771],[-75.048462895485727,40.061116186628418],[-75.048444962866924,40.061136305279739],[-75.048424588859021,40.061159159773773],[-75.048424033001126,40.06117152710933],[-75.048423723629426,40.061178411954472],[-75.048423300485581,40.061187829674779],[-75.048429072572233,40.061198865377705],[-75.048448999189233,40.061213068594427],[-75.048482180687799,40.06123079840652],[-75.048536396695667,40.061261002216234],[-75.048566586489542,40.061277826389492],[-75.051326464685687,40.062815777802037],[-75.051355502764011,40.062831961445752],[-75.051404241505026,40.062859123910542],[-75.051479860420315,40.062901267744934],[-75.051513156486607,40.062919576904441],[-75.051563435791039,40.062923462681233],[-75.051596526246527,40.062890428912674],[-75.051600366144129,40.062857339825541],[-75.051603557581629,40.062823601171942],[-75.051607011867546,40.062787087158036],[-75.051675235898713,40.062065802504264],[-75.051745544509643,40.061329780582192],[-75.051745980102737,40.061325227006733],[-75.051739386231944,40.061305680713716],[-75.051717170822684,40.061289449237485],[-75.051105436810019,40.060945947590952],[-75.051090911922856,40.060937792516754],[-75.049591780342269,40.060095966909365],[-75.049537852038114,40.060070743231577],[-75.049495221994619,40.060058632229826],[-75.04945501644508,40.060069127830225]]]},"properties":{"OBJECTID_1":190,"OBJECTID":133,"ASSET_NAME":"Pelbano Playground","SITE_NAME":"Pelbano Playground","CHILD_OF":"Pelbano Playground","ADDRESS":"8101 BUSTLETON AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":11.162773,"ZIPCODE":"19152","ALLIAS":" ","GLOBALID":"b70fbd51-aca1-4e8a-9061-13ec38dc2c7d","Shape_Length":2968.5633608012499,"Shape_Area":486248.63787920837}},{"type":"Feature","id":191,"geometry":{"type":"Polygon","coordinates":[[[-75.102142892197278,40.015138957920001],[-75.103305366889018,40.015264969103612],[-75.103577503403883,40.014970008280166],[-75.105067525542452,40.015296125727829],[-75.107091871889679,40.015461384033181],[-75.107101442194278,40.015347976937825],[-75.107225377624573,40.014746823496473],[-75.106110184449449,40.014554811960075],[-75.101946938641987,40.014019515709045],[-75.101939759966342,40.014049617678076],[-75.101814718496144,40.014573926926396],[-75.102142892197278,40.015138957920001]]]},"properties":{"OBJECTID_1":191,"OBJECTID":134,"ASSET_NAME":"Ferko Playground","SITE_NAME":"Ferko Playground","CHILD_OF":"Tacony Creek Park","ADDRESS":"1101 E CAYUGA ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":10.879239999999999,"ZIPCODE":"19124","ALLIAS":"Juniata Park","GLOBALID":"7c1f22ab-0e24-41c5-be8a-e93aadceab0f","Shape_Length":3660.9969268340924,"Shape_Area":473897.84220690618}},{"type":"Feature","id":192,"geometry":{"type":"Polygon","coordinates":[[[-75.23176576049859,40.035627797507516],[-75.232007195442293,40.03586193510877],[-75.232188328269913,40.036037589422691],[-75.232324537767397,40.036125444338623],[-75.232565381628419,40.03631684168468],[-75.232606078395506,40.036280677572435],[-75.23264550608782,40.036245639805671],[-75.232717942777256,40.036172779142262],[-75.232766767986107,40.036109825470689],[-75.232807739954538,40.036049676555763],[-75.232860766959448,40.035977879775324],[-75.232890733300422,40.035901111374152],[-75.232914616893112,40.035831653676659],[-75.232938776310462,40.035754758007393],[-75.232958508370331,40.035640541645968],[-75.232976719421089,40.03551512412983],[-75.232990246416023,40.035524656653422],[-75.233103196080762,40.035604255080521],[-75.233227627912299,40.035696318862684],[-75.233239154514195,40.035678564170233],[-75.233320075636115,40.035553916132791],[-75.233334304906307,40.035528455885682],[-75.233407213897792,40.035397996520977],[-75.233403556984769,40.035395020601428],[-75.233371487896946,40.0353689234299],[-75.233036184942648,40.035060808128662],[-75.232418014641226,40.034493371029171],[-75.232334289783097,40.034417472262568],[-75.232286617487958,40.034376387078751],[-75.232253214653483,40.034340863868294],[-75.232242044043616,40.034328706951712],[-75.231923895286371,40.034028409120104],[-75.231753137957455,40.033863090886086],[-75.231020398916684,40.033193153028265],[-75.229629568017387,40.033983831899967],[-75.229781326144391,40.034139244523473],[-75.22987478387283,40.034230632444718],[-75.230423858325963,40.034728076213518],[-75.230550819897246,40.034647479623501],[-75.230683919218308,40.034558084166612],[-75.231139740426485,40.035011044681298],[-75.231455569027119,40.035321716473476],[-75.23176576049859,40.035627797507516]]]},"properties":{"OBJECTID_1":192,"OBJECTID":135,"ASSET_NAME":"Germany Hill","SITE_NAME":"Germany Hill","CHILD_OF":"Germany Hill","ADDRESS":"4849 SMICK ST","TYPE":"Land","USE_":"Park- Watershed\\Conservation","ACREAGE":10.82687,"ZIPCODE":"19128","ALLIAS":" ","GLOBALID":"8736a851-84dd-4e7c-9b3a-8edaf5ca15b4","Shape_Length":3344.197302277244,"Shape_Area":471616.5419211897}},{"type":"Feature","id":193,"geometry":{"type":"Polygon","coordinates":[[[-75.07689995538189,40.054479565736791],[-75.076872970548337,40.054505607744822],[-75.076811381866037,40.054570750739074],[-75.076508329613034,40.054891141297801],[-75.076207279893993,40.055208904338045],[-75.076186853695518,40.055230573814185],[-75.075205360644077,40.05627180601801],[-75.075182562477465,40.056295924097135],[-75.075171549003855,40.05631592757539],[-75.075182462759827,40.056342527187184],[-75.075194593160774,40.056352484975669],[-75.07523302215381,40.056374570328593],[-75.075248628341541,40.056383539497197],[-75.076059229401992,40.05684939908376],[-75.076072444003174,40.056856993350671],[-75.076687698154586,40.057210576893063],[-75.076704799913685,40.057220405105511],[-75.076715491634033,40.057223496663411],[-75.076717872972068,40.057224185503728],[-75.076725301061401,40.05722633342068],[-75.076742232855381,40.0572254776474],[-75.07675846462547,40.05722006884816],[-75.076764255470778,40.057214785635715],[-75.076778528743759,40.057201766133488],[-75.076816445419951,40.057161412270951],[-75.076930317542676,40.05704022100187],[-75.077520651927216,40.056413568435005],[-75.07752062132532,40.05641354159301],[-75.078483524590482,40.055390590737275],[-75.078500101578697,40.055372410290801],[-75.078503149723076,40.055354020675203],[-75.078490402632141,40.055331756022099],[-75.078470871822034,40.055320879540922],[-75.078142584612763,40.055138066036839],[-75.078118793654667,40.055124817995463],[-75.076978800720937,40.054490173669024],[-75.076932897621731,40.054471741701114],[-75.07689995538189,40.054479565736791]]]},"properties":{"OBJECTID_1":193,"OBJECTID":136,"ASSET_NAME":"Jardel Recreation Center","SITE_NAME":"Jardel Recreation Center","CHILD_OF":"Jardel Recreation Center","ADDRESS":"1400 COTTMAN AVE","TYPE":"Land","USE_":"Recreation Center","ACREAGE":10.778877,"ZIPCODE":"19111","ALLIAS":" ","GLOBALID":"1bec30c8-745c-432b-8556-0435cc8c94d5","Shape_Length":2778.092783922044,"Shape_Area":469526.02714032703}},{"type":"Feature","id":194,"geometry":{"type":"Polygon","coordinates":[[[-75.27878021338789,39.972697184405192],[-75.278713365802545,39.972615256392025],[-75.278590206685891,39.972464314796234],[-75.278451891595395,39.97239083569572],[-75.278258636487962,39.972331320355963],[-75.278074930236642,39.972303633988602],[-75.277766165954262,39.972328606812773],[-75.277528157378669,39.972370936338514],[-75.277319600937005,39.972437629217744],[-75.277203227011583,39.972545828049661],[-75.27711371845345,39.972749477469158],[-75.277106240204915,39.972954896399038],[-75.277180791600117,39.973162123567192],[-75.277307320242798,39.97333880472997],[-75.277403848080027,39.973530673193814],[-75.277530089661397,39.973715243212823],[-75.27762891895037,39.973843912925624],[-75.277766725717925,39.974005002633447],[-75.277976754573402,39.974167691228004],[-75.278146315030426,39.97428994555456],[-75.278247159007933,39.974363304392121],[-75.278376280909796,39.974468853453367],[-75.278454574565998,39.974573350903007],[-75.278523351157546,39.974669703864102],[-75.278582000846214,39.974750048957354],[-75.278660583376862,39.974846656258961],[-75.278728785254486,39.974958789135052],[-75.278787146879097,39.97504706556775],[-75.278855637346624,39.975151309261015],[-75.278893201525662,39.975247033093858],[-75.278900769904183,39.975578671250496],[-75.279211030817777,39.975421802696893],[-75.279916383758675,39.975053423677565],[-75.280192033661407,39.974911711717553],[-75.280262566573498,39.97487545063116],[-75.28029924894787,39.974856592368049],[-75.280291053242848,39.974703742708655],[-75.280183129626764,39.974620114420667],[-75.280100274931172,39.97455479476865],[-75.279769625015021,39.974294121320277],[-75.279511548131964,39.97420411471375],[-75.279247848382852,39.974112145739731],[-75.279245897073636,39.97406917370018],[-75.279243291331667,39.974011805182215],[-75.279236111983394,39.973853747068503],[-75.279133947899538,39.973710271427429],[-75.278984757510756,39.973500751926245],[-75.278945916877788,39.97330622406087],[-75.278936963011873,39.973261381243098],[-75.278891592856397,39.972933424041273],[-75.278871124161498,39.972891446147891],[-75.278814255806921,39.97276992857347],[-75.27878021338789,39.972697184405192]]]},"properties":{"OBJECTID_1":194,"OBJECTID":137,"ASSET_NAME":"Cobbs Creek Driving Range & Sports Center","SITE_NAME":"Cobbs Creek Driving Range & Sports Center","CHILD_OF":"Cobbs Creek Park","ADDRESS":"7900 CITY AVE","TYPE":"Land","USE_":"Golf","ACREAGE":10.692113000000001,"ZIPCODE":"19151","ALLIAS":" ","GLOBALID":"c9b27d3b-86db-437d-9fac-2f5c3f858266","Shape_Length":3226.9350155316642,"Shape_Area":465746.54595358344}},{"type":"Feature","id":195,"geometry":{"type":"Polygon","coordinates":[[[-75.006838540872707,40.122262591236499],[-75.006386554403974,40.122728869467885],[-75.006165549094064,40.122948017757338],[-75.006164578131205,40.122948981249415],[-75.005690971691038,40.123433247040381],[-75.005685415145265,40.123438928070343],[-75.005667910519662,40.123457141530949],[-75.005657842764478,40.123467616663113],[-75.005655678456463,40.123484310281569],[-75.005664447533306,40.12349967444208],[-75.005682927527857,40.123510535276495],[-75.005824032074685,40.123593581196737],[-75.005825516872065,40.123594451007015],[-75.006328534966912,40.12388924283492],[-75.006802822214041,40.124167305494666],[-75.006832627736145,40.12418490678332],[-75.006870964589368,40.12420754483454],[-75.006884626458884,40.124211015399389],[-75.006898965183566,40.124211915170328],[-75.006913181199266,40.124210191736431],[-75.006926461675491,40.124205946451625],[-75.0069530374154,40.124184185450986],[-75.006991003859355,40.124145563420797],[-75.007069443293091,40.124065199276622],[-75.007309960090595,40.123818947625253],[-75.009149283358369,40.121940669337434],[-75.009079518575163,40.121891581210029],[-75.008259466241753,40.121417248349843],[-75.007880433568403,40.121196132591812],[-75.006838540872707,40.122262591236499]]]},"properties":{"OBJECTID_1":195,"OBJECTID":138,"ASSET_NAME":"Boyle Recreation Center","SITE_NAME":"Boyle Recreation Center","CHILD_OF":"Boyle Recreation Center","ADDRESS":"13024 STEVENS RD","TYPE":"Land","USE_":"Recreation Center","ACREAGE":10.691516,"ZIPCODE":"19116","ALLIAS":" ","GLOBALID":"5dc32c33-90b8-469a-a2f3-5ae90aabc48d","Shape_Length":2967.8428370003271,"Shape_Area":465720.32601465471}},{"type":"Feature","id":196,"geometry":{"type":"Polygon","coordinates":[[[-75.151532308840729,40.023446592246103],[-75.151523695983329,40.023451798060307],[-75.151522699002314,40.023452400807528],[-75.151520789603083,40.023454397507699],[-75.151515460608394,40.023459970459463],[-75.151511119742906,40.023468753574036],[-75.151504787812726,40.023497462710658],[-75.151416138031138,40.023903947885088],[-75.151325506046447,40.024313843558048],[-75.151324387688007,40.024318901797066],[-75.151257181411594,40.024626991649619],[-75.151256968436314,40.024627962633119],[-75.151169186120228,40.025031029007224],[-75.151081039417519,40.025434922328408],[-75.151075655563673,40.025458236880347],[-75.15107882516449,40.025467253023727],[-75.151085252392861,40.02547518147778],[-75.151094384323855,40.025481342073817],[-75.151105442921107,40.025485209930096],[-75.151154698075203,40.025491287418838],[-75.151157733062504,40.025491667854411],[-75.151572819300767,40.025543711301673],[-75.152100012904285,40.02561272371824],[-75.152103477517301,40.025613178721024],[-75.152730401415255,40.025695459235777],[-75.153280969221782,40.025766649992541],[-75.15374281416085,40.025826946451005],[-75.153755349368211,40.025828065087467],[-75.15376231692909,40.025827667580906],[-75.153767933712174,40.0258273476582],[-75.153780114911967,40.025824821780922],[-75.153787696161956,40.025821984675403],[-75.153810990806406,40.025810407933378],[-75.153804066221696,40.025804350622131],[-75.153599213954081,40.0255061983083],[-75.153129845084507,40.025138500162392],[-75.152898922529104,40.024856355490435],[-75.15294655704038,40.024602371662809],[-75.153315641523392,40.024370232675203],[-75.153657008647897,40.024119246411956],[-75.15446981261961,40.023896463855444],[-75.154526368219862,40.023888628325011],[-75.154526820520871,40.023886607654035],[-75.154529651275382,40.023873938452596],[-75.154533392484367,40.023857197406727],[-75.154533303796171,40.023848973616388],[-75.154530330311928,40.023841071161577],[-75.154524695558592,40.02383408075562],[-75.154520736834201,40.023831286426855],[-75.154516814651444,40.023828517251289],[-75.154507271838369,40.023824793905042],[-75.154496778310303,40.023823191689985],[-75.154467157289133,40.02381867034385],[-75.153936804103267,40.023752573158937],[-75.153493258113102,40.023693627971966],[-75.153489052199234,40.023693068848957],[-75.153050611731558,40.023636826900649],[-75.152963449088645,40.023625085981649],[-75.152751644344605,40.023596517879696],[-75.152417029848408,40.023553351018286],[-75.152409683830626,40.023552404568349],[-75.152101680777918,40.02351281209242],[-75.151622006903651,40.023450748290998],[-75.151601991083908,40.023448048249328],[-75.151573230675282,40.023444168225929],[-75.151555711153733,40.023441804877891],[-75.151532308840729,40.023446592246103]]]},"properties":{"OBJECTID_1":196,"OBJECTID":139,"ASSET_NAME":"Stenton Park Playground","SITE_NAME":"Stenton Park Playground","CHILD_OF":"Stenton Park Playground","ADDRESS":"4600 N 16TH ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":10.625662999999999,"ZIPCODE":"19140","ALLIAS":" ","GLOBALID":"0b21b6bf-51e2-4aa7-9aab-c325dc58cbbf","Shape_Length":3452.2216406762354,"Shape_Area":462852.2117669158}},{"type":"Feature","id":197,"geometry":{"type":"Polygon","coordinates":[[[-75.010088725087996,40.055673262982182],[-75.008724157533294,40.056097396141553],[-75.008707086260998,40.056099735241737],[-75.008661077290753,40.056113056199294],[-75.008658407987582,40.056237468703159],[-75.008654433283851,40.056422884337962],[-75.008651669476606,40.056551724201931],[-75.008649163288084,40.05665718407073],[-75.008647492315205,40.056766930392847],[-75.008646570877971,40.056843648181207],[-75.008648136466533,40.056902898771924],[-75.008660664461829,40.056986821584218],[-75.008674511435473,40.057055776802208],[-75.008702449507041,40.05717104938924],[-75.008735300515326,40.057306586916702],[-75.008763930746824,40.057422901404863],[-75.008787679490297,40.057507207256286],[-75.00881886943192,40.057562442201309],[-75.008852163634529,40.057585422501106],[-75.00889237722707,40.057600515096276],[-75.008939861721345,40.057606478594529],[-75.009002329161106,40.05759786264526],[-75.009026620968925,40.057586401313038],[-75.009048968906029,40.057575860438696],[-75.009070959433132,40.057565487641263],[-75.009341932277508,40.057437652447966],[-75.00965570982757,40.057289651891161],[-75.009931119275549,40.057159800085145],[-75.010500755089978,40.056901986755335],[-75.010646654180846,40.056846368666605],[-75.011100105267516,40.056692055009094],[-75.011102645317081,40.056691265863435],[-75.011127890552842,40.056683618494333],[-75.011259419080361,40.056643872542963],[-75.011364009799323,40.056615066545476],[-75.011507792668084,40.056579450044893],[-75.01158553797471,40.05656106716917],[-75.011685447147229,40.05653790346809],[-75.011729722464224,40.056527637831728],[-75.011781329100174,40.05651594212496],[-75.01195391476584,40.056485942158545],[-75.011965460240262,40.056483934929744],[-75.012005626715094,40.056476952042971],[-75.01222742710361,40.05643971765609],[-75.01227420424479,40.056432482226995],[-75.012293533514651,40.056427246334437],[-75.012306432228229,40.056421023721931],[-75.012319448177138,40.056414743530617],[-75.01232815413519,40.0564105439027],[-75.012336699083249,40.056403389465821],[-75.012344501299566,40.056396857082355],[-75.012348254951846,40.056393714426157],[-75.012359100843994,40.056380885877502],[-75.01237005166297,40.056361418114946],[-75.012377322942569,40.056332156454062],[-75.012373653729824,40.056287557557702],[-75.012354928860503,40.056250561666246],[-75.012313871046445,40.056223963450343],[-75.012304599048093,40.056217956797163],[-75.011909925478804,40.055962139221798],[-75.011625272316294,40.055773948763665],[-75.011445875066471,40.055659275576375],[-75.011432440218812,40.05565051779778],[-75.011130304731054,40.055453570900546],[-75.011021957230653,40.055384626543074],[-75.010088725087996,40.055673262982182]]]},"properties":{"OBJECTID_1":197,"OBJECTID":140,"ASSET_NAME":"Holme Playground","SITE_NAME":"Holme Playground","CHILD_OF":"Holme Playground","ADDRESS":"9152 ACADEMY RD","TYPE":"Land","USE_":"Recreation Site","ACREAGE":10.210155,"ZIPCODE":"19114","ALLIAS":" ","GLOBALID":"162e5324-6346-4cf8-b4db-b2662e7b5f0e","Shape_Length":2888.0538078639379,"Shape_Area":444752.55684985156}},{"type":"Feature","id":198,"geometry":{"type":"Polygon","coordinates":[[[-75.255280518516983,39.974314281516612],[-75.255279696517348,39.974314374468292],[-75.255275102037729,39.974314893565492],[-75.255275961093872,39.974319658654501],[-75.255276333707897,39.974321725516312],[-75.25546772330641,39.975383709119761],[-75.25557879818011,39.976000021786966],[-75.255585623795611,39.976000521537898],[-75.255637021129658,39.976101241308371],[-75.256572020485436,39.976072685582672],[-75.256739965217392,39.974339649061065],[-75.256920683202267,39.974285400301866],[-75.256977323519322,39.974268397503849],[-75.256989308060326,39.974264799830721],[-75.257047037796696,39.975017644680946],[-75.257555583880034,39.975116254748656],[-75.257691164013835,39.975557019654467],[-75.258815071062102,39.975428186023912],[-75.258645855350906,39.974869941360005],[-75.258620633988343,39.974639341661991],[-75.258541268856277,39.974015429131569],[-75.258548952140458,39.973967285833091],[-75.258511452501722,39.973956895953208],[-75.258460715442681,39.97395329591604],[-75.258411241221935,39.97396063515032],[-75.257958511799629,39.974011781492308],[-75.257852180137363,39.974023793517119],[-75.255280518516983,39.974314281516612]]]},"properties":{"OBJECTID_1":198,"OBJECTID":141,"ASSET_NAME":"Papa Playground","SITE_NAME":"Papa Playground","CHILD_OF":"Cobbs Creek Park","ADDRESS":"6839 LANSDOWNE AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":10.48245,"ZIPCODE":"19151","ALLIAS":" ","GLOBALID":"f911cb8b-9407-4af4-b9c9-225916a90730","Shape_Length":4003.6751661190306,"Shape_Area":456613.56014665245}},{"type":"Feature","id":199,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.201476451152857,40.076789982087732],[-75.201508831468971,40.07676795344755],[-75.201495495573582,40.076760003719045],[-75.201533721631634,40.076703229649112],[-75.201551446837797,40.076713789596788],[-75.201585698681356,40.076681437319074],[-75.201873157798559,40.076395869689669],[-75.201965402900655,40.076304227907677],[-75.202098270350803,40.076170672893241],[-75.202610148978266,40.075663663466528],[-75.20259434471987,40.075653142654446],[-75.202846219881934,40.075402034765453],[-75.202201816263624,40.07501759319657],[-75.202168286545472,40.075058227429189],[-75.201862734833085,40.075366651154702],[-75.201074794731582,40.074904208542875],[-75.200993542684898,40.074980295269661],[-75.200931645572069,40.075041660006534],[-75.200814270832822,40.075117278758619],[-75.200720048994199,40.075177980431995],[-75.200633120974331,40.075221550007797],[-75.200551484249957,40.075262479836468],[-75.200478731430692,40.07530048472308],[-75.200408980665415,40.075338030882001],[-75.200353216534864,40.075371912982845],[-75.200247615874346,40.075415025668065],[-75.200160612209856,40.075450545474354],[-75.200145091868734,40.075460217557293],[-75.199725349018692,40.07559874923772],[-75.200850807207118,40.076559362605607],[-75.200938868904274,40.076485827247204],[-75.201476451152857,40.076789982087732]]],[[[-75.199911171363738,40.073936891550396],[-75.199899260576203,40.073953320112672],[-75.199880268198356,40.073984786027914],[-75.199862379035963,40.074028708443961],[-75.199853012151735,40.074068966384523],[-75.199853099942629,40.074120470497441],[-75.199851496544852,40.074123250548375],[-75.199868128295279,40.074294783823554],[-75.199871575013262,40.07446641465215],[-75.199866964183727,40.074593600464695],[-75.199839658620562,40.074849403443061],[-75.199831021693669,40.074900968934777],[-75.199826815169345,40.074924133150247],[-75.199819501332669,40.074964215901169],[-75.1998075529998,40.075018725365567],[-75.199799763742718,40.075054264625827],[-75.199785625263729,40.075109627390994],[-75.199776310358459,40.075146095965962],[-75.199763849743277,40.075189399111736],[-75.199756304978635,40.075223675184532],[-75.199761907604909,40.07526244798202],[-75.199784902338664,40.075302812258911],[-75.199807926431973,40.075324554376564],[-75.199835674672954,40.075342306265036],[-75.199893025370471,40.075360968194389],[-75.199943397374909,40.075364415000529],[-75.200006453086147,40.075351470180699],[-75.20036252680427,40.075200623791012],[-75.200422291857578,40.075172406747647],[-75.200443103338571,40.075162002367613],[-75.20056778716831,40.075094854261842],[-75.200767322677407,40.074975873948432],[-75.200868582685942,40.074905116406768],[-75.200966103119242,40.074814396139516],[-75.201033061325589,40.074747805208865],[-75.201121000898937,40.074660349282048],[-75.201131759150854,40.074649648830736],[-75.199945892952428,40.073945714262379],[-75.199939923335037,40.073942468838389],[-75.199916958717196,40.073929980443211],[-75.199911171363738,40.073936891550396]]]]},"properties":{"OBJECTID_1":199,"OBJECTID":142,"ASSET_NAME":"Water Tower Recreation Center","SITE_NAME":"Water Tower Recreation Center","CHILD_OF":"Water Tower Recreation Center","ADDRESS":"209-99 E HARTWELL LA","TYPE":"Land","USE_":"Recreation Center","ACREAGE":9.5549529999999994,"ZIPCODE":"19118","ALLIAS":" ","GLOBALID":"da28d4c1-c740-4e24-9b5f-a5ab050a52bb","Shape_Length":3888.5768730408022,"Shape_Area":416211.99637620809}},{"type":"Feature","id":200,"geometry":{"type":"Polygon","coordinates":[[[-75.025792318533234,40.046149677508069],[-75.025766985987829,40.046158940592697],[-75.025736319132108,40.046170155900093],[-75.025680508897153,40.046190564865356],[-75.024241382166338,40.046711949660882],[-75.024241406177097,40.04671202321623],[-75.02352046602978,40.046971067081046],[-75.023495899620855,40.04698000906609],[-75.02347749904807,40.04699309268144],[-75.023469803941595,40.0470114267547],[-75.023474787717561,40.047030308656666],[-75.023487778158341,40.047057735199218],[-75.02350923631073,40.047103036052924],[-75.023547255801617,40.047183300833005],[-75.024186356936298,40.048556685650773],[-75.024282151767679,40.048761979366745],[-75.024310125231509,40.048821929031647],[-75.024325674185235,40.048852314866998],[-75.024333748172708,40.048868092918077],[-75.024351040573478,40.048878516660679],[-75.024367116032707,40.048881438162951],[-75.024393735021604,40.048877102224132],[-75.024456083147385,40.048848667351436],[-75.025041259205892,40.048581789738883],[-75.025014832261434,40.048537851778576],[-75.024864777411707,40.048288352405066],[-75.024878319458097,40.048280756077759],[-75.025042573084633,40.048203203321229],[-75.025178759665096,40.048143300358241],[-75.025036097355667,40.047914147598703],[-75.025217383172873,40.047856124467039],[-75.025236101445174,40.047850133117898],[-75.025779513893426,40.047676204589827],[-75.025703301060204,40.047555545149699],[-75.025690448661663,40.047535197249047],[-75.026089870383814,40.047412361749956],[-75.026144163866036,40.047413488784528],[-75.026146533776739,40.047401767275957],[-75.026148495467439,40.047392066166928],[-75.0262578006745,40.046852042904789],[-75.026259842610358,40.046832514977432],[-75.026256354680243,40.046812333317469],[-75.026244209339197,40.046789412608653],[-75.026227379871685,40.046762469346099],[-75.026220063937046,40.046750758751507],[-75.026213121407281,40.046739647202251],[-75.02586517395514,40.046182688161878],[-75.025852350079816,40.046162160738142],[-75.025836693771339,40.046152902329545],[-75.025818345066682,40.046147891621871],[-75.025792318533234,40.046149677508069]]]},"properties":{"OBJECTID_1":200,"OBJECTID":143,"ASSET_NAME":"Ramp Playground","SITE_NAME":"Ramp Playground","CHILD_OF":"Ramp Playground","ADDRESS":"3300-40 SOLLY AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":9.484,"ZIPCODE":"19136","ALLIAS":" ","GLOBALID":"fbb67301-af61-46e6-bbe5-a525ac0ad1cb","Shape_Length":2905.5770664438069,"Shape_Area":413121.28687011258}},{"type":"Feature","id":201,"geometry":{"type":"Polygon","coordinates":[[[-75.247685664480485,39.897374444272195],[-75.247630658856011,39.897442218072889],[-75.247685779832224,39.897472272107883],[-75.247898891906203,39.897585729083488],[-75.248123396099501,39.897705252011484],[-75.248169459082945,39.897734949523375],[-75.249182667993225,39.898269192824536],[-75.250434431920098,39.89685571127297],[-75.250452630072644,39.896833360764198],[-75.250195287721397,39.896696239864845],[-75.248685424806936,39.895888122386992],[-75.248658463371413,39.89587369116861],[-75.248523789516497,39.895801890175726],[-75.248513965325074,39.895812341726625],[-75.247321666535854,39.897232122374255],[-75.247424313814676,39.897342040297758],[-75.247526289192805,39.897395811584872],[-75.247590469801267,39.897325354057756],[-75.247685664480485,39.897374444272195]]]},"properties":{"OBJECTID_1":201,"OBJECTID":144,"ASSET_NAME":"Pepper School Playground","SITE_NAME":"Pepper School Playground","CHILD_OF":"Pepper School Playground","ADDRESS":"2801 S 84TH ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":9.4584620000000008,"ZIPCODE":"19153","ALLIAS":" ","GLOBALID":"c9190843-a2e3-4b16-9b04-b6a991ebb8f9","Shape_Length":2618.6207620249943,"Shape_Area":412008.94822958705}},{"type":"Feature","id":202,"geometry":{"type":"Polygon","coordinates":[[[-74.990561967998858,40.078586342162652],[-74.988132335064321,40.080161239252881],[-74.988385373219359,40.080393517264994],[-74.989154360766122,40.08108559746384],[-74.989195050338438,40.081123873643115],[-74.989211778280122,40.08114244547675],[-74.989230404003322,40.081119501223007],[-74.989257854625066,40.081092748396394],[-74.98931876929548,40.08103896997936],[-74.989376462268723,40.080992954321282],[-74.989465834849838,40.080930260341511],[-74.989537075217086,40.080883430161641],[-74.989707431988251,40.080771253698693],[-74.99155938772131,40.079557769728382],[-74.991588531493335,40.079538752117337],[-74.991610229472329,40.079523126711742],[-74.991621990426864,40.07950823505],[-74.991630637783331,40.079476454776547],[-74.991621801913581,40.079449568464717],[-74.991570838333971,40.079401529501489],[-74.990586989349069,40.078563500818511],[-74.990561967998858,40.078586342162652]]]},"properties":{"OBJECTID_1":202,"OBJECTID":145,"ASSET_NAME":"Picariello Playground","SITE_NAME":"Picariello Playground","CHILD_OF":"Picariello Playground","ADDRESS":"3325 RED LION RD","TYPE":"Land","USE_":"Recreation Site","ACREAGE":9.4371930000000006,"ZIPCODE":"19154","ALLIAS":" ","GLOBALID":"f8af5d5c-9641-4ca3-89d3-3d9342664e29","Shape_Length":2725.0114339639199,"Shape_Area":411082.41815544537}},{"type":"Feature","id":203,"geometry":{"type":"Polygon","coordinates":[[[-75.209107384477718,39.962284567140898],[-75.209292535084231,39.962314939728479],[-75.210267820632737,39.962479043605178],[-75.210436062585757,39.962507901165523],[-75.2105071198704,39.962517319897252],[-75.210588534419415,39.962523556627374],[-75.211348081443745,39.962570640810853],[-75.21140105166657,39.962573991472105],[-75.211420206490374,39.962495367624811],[-75.211461526311481,39.962313585548515],[-75.211691005230264,39.961304372521077],[-75.211717078198447,39.961189704815006],[-75.211722658593843,39.961180396579053],[-75.21178011230576,39.961084553992393],[-75.211633748326236,39.961063102980098],[-75.211153471307725,39.960992710737003],[-75.211062946198098,39.960979442253254],[-75.210967427054356,39.961206041678665],[-75.210409141412143,39.961066146497195],[-75.210449964356513,39.960959350525428],[-75.209577741412915,39.960744480566269],[-75.209528655911285,39.960678206989854],[-75.209265639055573,39.960610734242103],[-75.209077761994862,39.96055408192494],[-75.209035714996645,39.96101706834704],[-75.208977995414557,39.961665657636644],[-75.208927935459172,39.962211548094736],[-75.208922759286352,39.962262440157843],[-75.208971936478108,39.962260380307775],[-75.209107384477718,39.962284567140898]]]},"properties":{"OBJECTID_1":203,"OBJECTID":146,"ASSET_NAME":"Lee Cultural Center","SITE_NAME":"Lee Cultural Center","CHILD_OF":"Lee Cultural Center","ADDRESS":"4310 HAVERFORD AVE","TYPE":"Land","USE_":"Recreation Center","ACREAGE":9.4016660000000005,"ZIPCODE":"19104","ALLIAS":" ","GLOBALID":"50a2386a-4ad0-4c9b-9f2a-9b6464128c50","Shape_Length":2799.0488721215484,"Shape_Area":409534.93460829492}},{"type":"Feature","id":204,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.164401480768305,39.99461967065848],[-75.164342822952705,39.994649824539593],[-75.164298277675769,39.994671150984892],[-75.164276564427468,39.994681859689429],[-75.164249504184951,39.994697378298632],[-75.164241727409191,39.994705730327006],[-75.164233329716126,39.994725127435096],[-75.164229208580878,39.994743736983402],[-75.164223323182398,39.994770315016481],[-75.164175117403985,39.994981958907402],[-75.164169949218646,39.99500465259792],[-75.164162125442161,39.995045677098062],[-75.164159102895567,39.995061523649923],[-75.164156611503259,39.995074589018301],[-75.164153322448144,39.995091835150916],[-75.16415492382157,39.995099003666475],[-75.164164978858381,39.995111178549131],[-75.164181634514094,39.995117802297948],[-75.164198694598483,39.99512008144665],[-75.164319360142358,39.995136198611945],[-75.165632118484083,39.995306283568603],[-75.165913193163647,39.995343045035433],[-75.166063053959689,39.995364054160433],[-75.16625665211906,39.994480921092837],[-75.166315472192309,39.994189762937893],[-75.167163071955258,39.994292852478686],[-75.167353429014483,39.993407128454457],[-75.167301674646041,39.993398811713412],[-75.167354380799509,39.993134281118493],[-75.166790105227662,39.993413157358617],[-75.164401480768305,39.99461967065848]]],[[[-75.164075472006758,39.99479372735307],[-75.16355955704644,39.994987237906123],[-75.163546847016562,39.994994392105923],[-75.163538198380465,39.995003763315324],[-75.163536535261784,39.995011165529533],[-75.163538972798165,39.995019723341478],[-75.163548273297891,39.995029498993006],[-75.163556234279781,39.995038181262125],[-75.164022362481163,39.995099701592174],[-75.164034789364067,39.99509998155019],[-75.164044534812703,39.995098075602492],[-75.164059884618993,39.995094169512605],[-75.164067274505385,39.995081582114167],[-75.164122665812968,39.994824551082282],[-75.164123070244912,39.994813930909878],[-75.164115190089746,39.994803125005603],[-75.164100204368268,39.994797472317678],[-75.164085178160946,39.994792882815311],[-75.164075472006758,39.99479372735307]]]]},"properties":{"OBJECTID_1":204,"OBJECTID":147,"ASSET_NAME":"Reyburn Park","SITE_NAME":"Reyburn Park","CHILD_OF":"Reyburn Park","ADDRESS":"1950 W LEHIGH AVE","TYPE":"Land","USE_":"Park- Neighborhood","ACREAGE":7.0737050000000004,"ZIPCODE":"19132","ALLIAS":" ","GLOBALID":"2363e62c-c9f3-4a28-8718-469a2838d9bc","Shape_Length":3294.8764025505552,"Shape_Area":308129.39141769963}},{"type":"Feature","id":205,"geometry":{"type":"Polygon","coordinates":[[[-75.002711575106119,40.049068836159613],[-75.00282797196644,40.049102429859346],[-75.002944215451066,40.049135123212587],[-75.003109037628519,40.049181033399371],[-75.003190607959866,40.049205296015089],[-75.003370382884071,40.049263373593327],[-75.003472946595707,40.049297337803722],[-75.003575697592154,40.049329834961547],[-75.003670633571232,40.049367530844883],[-75.003780412938724,40.049406131144949],[-75.003888946230632,40.049448406720522],[-75.004007851538319,40.049493604479856],[-75.004054612369174,40.049454812366875],[-75.004119074734035,40.049411628080421],[-75.004566823713162,40.049111672216277],[-75.004591313306818,40.049132761184779],[-75.004596701115219,40.049127248394598],[-75.004664833437175,40.04907738003886],[-75.004747083487359,40.049031883988476],[-75.005867586000875,40.048288306325503],[-75.005875760934629,40.048279914485938],[-75.005898118098244,40.048256965069143],[-75.005890677393467,40.048239666237031],[-75.005849905489669,40.048202468651226],[-75.005842998959167,40.048196168329738],[-75.005043248130903,40.047486733016981],[-75.004922986517741,40.04738005046223],[-75.004880747011541,40.047342755261361],[-75.004879445206768,40.047341605932822],[-75.004849656590508,40.047315304778294],[-75.004830897133431,40.047298740061493],[-75.004803180147618,40.047274267099318],[-75.004787536962468,40.047270309730536],[-75.00473940458177,40.047275357857643],[-75.004706893301801,40.047297194855076],[-75.002841146842542,40.048532278097873],[-75.002671459209722,40.048645482547862],[-75.00254703922154,40.048728128596949],[-75.002445497110116,40.048795578331735],[-75.002348279555534,40.048861447332023],[-75.002254653155404,40.048951806559003],[-75.002328856373651,40.048970277252998],[-75.002385989390262,40.048984498372832],[-75.002452878699359,40.049001147804425],[-75.002529486115264,40.049020531879705],[-75.002620504338552,40.049044173876837],[-75.002711575106119,40.049068836159613]]]},"properties":{"OBJECTID_1":205,"OBJECTID":148,"ASSET_NAME":"Trumbette Playground","SITE_NAME":"Trumbette Playground","CHILD_OF":"Trumbette Playground","ADDRESS":"9050 TORRESDALE AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":8.9845869999999994,"ZIPCODE":"19136","ALLIAS":" ","GLOBALID":"b2a3dba2-59f8-4c72-98dd-25696e30eda7","Shape_Length":2651.8691520335806,"Shape_Area":391367.1759003629}},{"type":"Feature","id":206,"geometry":{"type":"Polygon","coordinates":[[[-75.082587042180734,40.039735950230991],[-75.082578543902855,40.039744997533454],[-75.082034434920601,40.040324231239524],[-75.081952391185879,40.040411172479345],[-75.081542025191922,40.040845519435493],[-75.081417582670554,40.040976821012066],[-75.081294433742528,40.041106755007483],[-75.081263658094613,40.041139225240904],[-75.081237500674689,40.041166822724378],[-75.081070197289691,40.041343344206624],[-75.081051131104999,40.041368315902005],[-75.081052638673825,40.041385960842589],[-75.081070924782352,40.041404159634034],[-75.081107683652775,40.04142555924124],[-75.081188287648104,40.041472482231654],[-75.081285432445313,40.041524606424339],[-75.081698987587416,40.041755056080504],[-75.082348340500189,40.042116888228591],[-75.082638059989691,40.042278322938031],[-75.082653750099553,40.042287066948198],[-75.0826729245032,40.042292496752452],[-75.082691143612763,40.042291719640765],[-75.082704373853119,40.042285918721369],[-75.08271759624192,40.042271340600266],[-75.082728814543884,40.042252214351741],[-75.082950350959763,40.041870601104343],[-75.082956706379761,40.041859617240199],[-75.083581948765229,40.040779128974002],[-75.083594343528674,40.04075767644882],[-75.083869082212601,40.040288085741935],[-75.083824446436154,40.040265704061731],[-75.083707439753795,40.040200537058311],[-75.083648182850524,40.040168710910116],[-75.083593609902678,40.040138330605117],[-75.083541949842484,40.040109598316135],[-75.083478566490626,40.040074435247071],[-75.083449744249364,40.040058219611581],[-75.083358105205434,40.040007163940032],[-75.083310602519333,40.03998140778009],[-75.083251142296945,40.039948351285069],[-75.083195931384452,40.039918165011869],[-75.083137925430492,40.039885512547201],[-75.083023715609855,40.039822829042741],[-75.082720320491731,40.039654775625571],[-75.082682772032598,40.039634806155306],[-75.082587042180734,40.039735950230991]]]},"properties":{"OBJECTID_1":206,"OBJECTID":149,"ASSET_NAME":"Tarken Recreation Center","SITE_NAME":"Tarken Recreation Center","CHILD_OF":"Tarken Recreation Center","ADDRESS":"6250 FRONTENAC ST","TYPE":"Land","USE_":"Recreation Center","ACREAGE":8.8883240000000008,"ZIPCODE":"19111","ALLIAS":" ","GLOBALID":"513ac40c-344a-4714-b7e2-2e24ddccce9b","Shape_Length":2563.2239437181324,"Shape_Area":387173.82964698097}},{"type":"Feature","id":207,"geometry":{"type":"Polygon","coordinates":[[[-75.188882899604778,39.980702992945574],[-75.188996002899458,39.980792321951753],[-75.189255678910996,39.980958903266632],[-75.189388718033186,39.981051941048456],[-75.189502328273036,39.981139568020474],[-75.189650065163406,39.981197918406941],[-75.189785180072448,39.981235946788701],[-75.18992729022969,39.981254136772549],[-75.190012220025622,39.981060873748334],[-75.190709623100801,39.981216531466124],[-75.190718125411649,39.981156688690291],[-75.190667347368588,39.981130539814743],[-75.190682093354425,39.981070793932425],[-75.190683789777211,39.981025775041459],[-75.190660190110208,39.980965217268867],[-75.190708118297479,39.980901233302404],[-75.190794714241363,39.980853130514532],[-75.190849638662684,39.98076926408406],[-75.190873399051654,39.98065972765459],[-75.190941133574015,39.98059116484513],[-75.190989059994706,39.980527182535063],[-75.191031686149302,39.980438063727192],[-75.19116607125811,39.980305934149875],[-75.191431133967612,39.980021596727504],[-75.191446981447541,39.979766717866077],[-75.191452631093867,39.979616742176518],[-75.191435651073817,39.979546291311905],[-75.191438099588837,39.979481293113921],[-75.19147921880797,39.979432175962799],[-75.191539250284677,39.979378460008448],[-75.191515275278221,39.979327892532041],[-75.191470362760086,39.979311871437616],[-75.191452630175419,39.97926139986901],[-75.191403925043645,39.979180285553838],[-75.191339396447617,39.979163827963525],[-75.191292412893048,39.979202816725817],[-75.191265046678367,39.979242241963277],[-75.191194276171487,39.979225645120778],[-75.191072026247411,39.979177863449877],[-75.190930860696881,39.979134680261836],[-75.190787812844022,39.979141487912557],[-75.190641234948131,39.979218290783805],[-75.190469689192682,39.979294535715212],[-75.190304195869146,39.979375936715783],[-75.190145508497309,39.979442469487715],[-75.18990854131323,39.979502236292007],[-75.189648303130014,39.979516426697984],[-75.189439643867445,39.979511771272541],[-75.189263131861608,39.979506674095042],[-75.189145487787997,39.979483713204502],[-75.189134949391885,39.979536425826282],[-75.189101266692333,39.979690811701893],[-75.189035326874148,39.979993042384571],[-75.189035300023448,39.979993164322593],[-75.188932809558267,39.980462470596528],[-75.188882899604778,39.980702992945574]]]},"properties":{"OBJECTID_1":207,"OBJECTID":150,"ASSET_NAME":"33rd & Oxford Driving Range","SITE_NAME":"33rd & Oxford Driving Range","CHILD_OF":"East Fairmount Park","ADDRESS":"3300 RESERVOIR DR","TYPE":"Land","USE_":"Golf","ACREAGE":8.8231210000000004,"ZIPCODE":"19121","ALLIAS":" ","GLOBALID":"f95062a7-b37f-4408-ad23-6d9b5f4bd42c","Shape_Length":2626.5922422287213,"Shape_Area":384333.59747323993}},{"type":"Feature","id":208,"geometry":{"type":"Polygon","coordinates":[[[-75.093413911310236,40.028112651463324],[-75.093385366859664,40.028130912005246],[-75.093414446821029,40.028164726612417],[-75.09342354373841,40.028182561312072],[-75.093428505868047,40.028201915920434],[-75.093432101026266,40.028222357092766],[-75.093434648091645,40.028236846104122],[-75.093405265182838,40.028355367156827],[-75.093246438345915,40.028951595539873],[-75.093238046195822,40.028976207819511],[-75.093227594478094,40.029002951157743],[-75.093218264233158,40.029026825410675],[-75.093204984603176,40.029055955045067],[-75.093179323328556,40.029101514257412],[-75.093152267807753,40.029137717288528],[-75.09312924856394,40.029163600418741],[-75.093061841477095,40.029224562039822],[-75.093015497358223,40.02925595867719],[-75.092975972132834,40.029280985954173],[-75.09294132923587,40.029297555522398],[-75.092836242360193,40.029347624814896],[-75.092713250404088,40.029404908795385],[-75.092428764062817,40.029537066559662],[-75.09239667233615,40.029551905547578],[-75.092387298294284,40.029556714602215],[-75.092380114332997,40.029562376259513],[-75.092374796628164,40.02956991651476],[-75.092372261607821,40.029580596401431],[-75.092373719192139,40.02958881064],[-75.092379040604115,40.029597967573501],[-75.092404227703241,40.029631285077322],[-75.093131750200598,40.030550011234489],[-75.093133388700693,40.030552080075203],[-75.09315736620151,40.030580984070355],[-75.093170269422899,40.030594652145552],[-75.093179632746455,40.030599430701038],[-75.093190180850669,40.030602119229698],[-75.093198357101272,40.03060263905715],[-75.093207112141826,40.03060175764714],[-75.09321466813735,40.03059970778677],[-75.09322360098821,40.03059527229788],[-75.093230672309971,40.030589315144773],[-75.093254893615452,40.030565702471662],[-75.095167639300058,40.028597053850369],[-75.095231303524116,40.028533520372797],[-75.095184526864458,40.028498197892063],[-75.094389510174423,40.027660718413287],[-75.094061940607403,40.027843748233359],[-75.094007381818244,40.027785291380503],[-75.093413911310236,40.028112651463324]]]},"properties":{"OBJECTID_1":208,"OBJECTID":151,"ASSET_NAME":"Houseman Playground","SITE_NAME":"Houseman Playground","CHILD_OF":"Houseman Playground","ADDRESS":"5091 SUMMERDALE AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":8.6765939999999997,"ZIPCODE":"19124","ALLIAS":" ","GLOBALID":"87d1c73a-5380-476d-ae68-c8046a6a102e","Shape_Length":2792.8169387933667,"Shape_Area":377950.86475937476}},{"type":"Feature","id":209,"geometry":{"type":"Polygon","coordinates":[[[-75.231331566987308,40.070067807314949],[-75.231835094730158,40.070628101799201],[-75.231835505825899,40.070628558600845],[-75.232116394641167,40.070435293059603],[-75.23258995037483,40.070109458103325],[-75.231919053143159,40.069524947952253],[-75.23171274370209,40.069351527808074],[-75.231645927572302,40.069241095688099],[-75.231628510673701,40.069137195332239],[-75.23163174458638,40.069050092450226],[-75.231693484271233,40.068915236087811],[-75.231949569536653,40.068702913917271],[-75.232069453515408,40.068620763713199],[-75.232080548191576,40.068613160969697],[-75.231342809078015,40.068009990505587],[-75.231342300749404,40.068009594640046],[-75.231242908649406,40.067932263393992],[-75.231242374083735,40.067932637301844],[-75.230722139475546,40.068296819308237],[-75.23039815152552,40.068476844121243],[-75.230230000763385,40.068552128259142],[-75.22992922766133,40.068648539605867],[-75.229830963551294,40.069609934778711],[-75.230107521194682,40.069801243742837],[-75.230396423928738,40.069851165843438],[-75.230812054572411,40.069734965270875],[-75.231331566987308,40.070067807314949]]]},"properties":{"OBJECTID_1":209,"OBJECTID":152,"ASSET_NAME":"Houston Playground","SITE_NAME":"Houston Playground","CHILD_OF":"Wissahickon Valley Park","ADDRESS":"900 GRAKYN LA","TYPE":"Land","USE_":"Recreation Site","ACREAGE":8.5367879999999996,"ZIPCODE":"19128","ALLIAS":" ","GLOBALID":"471232f6-e290-4e83-b76f-0d367f7d2fb5","Shape_Length":2869.5752789368303,"Shape_Area":371861.01742623799}},{"type":"Feature","id":210,"geometry":{"type":"Polygon","coordinates":[[[-75.175597395466056,40.035794253414373],[-75.175390341511061,40.035999507293376],[-75.175321195072158,40.036065402469234],[-75.175302026333767,40.036083665145696],[-75.175216791361009,40.036178606806665],[-75.175259166257902,40.03621643690834],[-75.175415482205551,40.03641696046445],[-75.175824625119944,40.036933036805927],[-75.176037861572127,40.03720414354602],[-75.176119837856632,40.037118167191828],[-75.176926314824854,40.036317312033773],[-75.177281680035549,40.035982921912904],[-75.177469164654511,40.035800825707447],[-75.177544736180465,40.035726352316274],[-75.177615277150352,40.035656811869103],[-75.177683527653244,40.035589557304895],[-75.1777261603429,40.035547536614082],[-75.177818948561637,40.0356014236148],[-75.177858806242142,40.035559599320543],[-75.178181016729368,40.035239954272079],[-75.178213405325721,40.035212131902121],[-75.177743703809199,40.034912532592337],[-75.177520079575316,40.034771719375229],[-75.177285231721996,40.03462252718132],[-75.177168309798859,40.034548040801212],[-75.177067650301183,40.034484381137197],[-75.176998782721043,40.034441354039267],[-75.176967532300949,40.034469141201185],[-75.176870590661281,40.034562478332028],[-75.176460046234467,40.034959013194928],[-75.176361721601751,40.035055059811455],[-75.176284671384494,40.035130337244091],[-75.175597395466056,40.035794253414373]]]},"properties":{"OBJECTID_1":210,"OBJECTID":153,"ASSET_NAME":"Vernon Park","SITE_NAME":"Vernon Park","CHILD_OF":"Vernon Park","ADDRESS":"5710-18 GERMANTOWN AVE","TYPE":"Land","USE_":"Park- Neighborhood","ACREAGE":8.3858090000000001,"ZIPCODE":"19144","ALLIAS":" ","GLOBALID":"0986a028-7b1a-404a-a795-79b51d4900c3","Shape_Length":2664.9703005693682,"Shape_Area":365284.39811166679}},{"type":"Feature","id":211,"geometry":{"type":"Polygon","coordinates":[[[-75.23378985484996,39.967864701201705],[-75.233794807662505,39.967890635962121],[-75.233799999848387,39.96791782204896],[-75.233803696485708,39.967937173615169],[-75.233818756728851,39.967953289320199],[-75.233840977779664,39.967962948739675],[-75.233871584546222,39.967971429734426],[-75.234354882024135,39.968106827193246],[-75.234487219140377,39.968144338446173],[-75.234502663480527,39.968108060561839],[-75.234606405936887,39.967872734151932],[-75.235354891651923,39.967964498395972],[-75.23539520496422,39.967967883037616],[-75.235443235868246,39.967739712456492],[-75.23576318633107,39.966209543408027],[-75.235768567987648,39.966183473899804],[-75.2357672191646,39.966167936409647],[-75.235756526386666,39.966156253154594],[-75.235741184472815,39.966151100251288],[-75.23571583323168,39.966148037264283],[-75.235689948099193,39.966144909413643],[-75.235655797898644,39.966140783238473],[-75.23429918336528,39.965972969504037],[-75.234064170300286,39.965945262795842],[-75.234023574079075,39.965940476713449],[-75.23399562388407,39.965937181560641],[-75.233976230249183,39.96594304254495],[-75.233963645756376,39.965955476940373],[-75.233956687105447,39.965970581815498],[-75.233690482111754,39.967261852261856],[-75.233686652911075,39.967281961410222],[-75.233685836016065,39.967302276273465],[-75.233688041266817,39.967322531273638],[-75.23378985484996,39.967864701201705]]]},"properties":{"OBJECTID_1":211,"OBJECTID":154,"ASSET_NAME":"Shepard Recreation Center","SITE_NAME":"Shepard Recreation Center","CHILD_OF":"Shepard Recreation Center","ADDRESS":"5700 HAVERFORD AVE","TYPE":"Land","USE_":"Recreation Center","ACREAGE":8.2033509999999996,"ZIPCODE":"19139","ALLIAS":"Haddington Recreation Center","GLOBALID":"6d47769e-16e7-4189-9a35-bad8b1704ab2","Shape_Length":2446.9899995031878,"Shape_Area":357336.52824243403}},{"type":"Feature","id":212,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.127501460812979,39.965512987058567],[-75.127438321087183,39.965626109534512],[-75.127449450755904,39.965754397252475],[-75.12748956427285,39.965929680992183],[-75.127414172107549,39.965960452407984],[-75.127284749253135,39.966013276688273],[-75.127288625818423,39.966018508366737],[-75.127695351137774,39.966567349073308],[-75.127992417222558,39.966978237155082],[-75.12817118853836,39.967212980806416],[-75.128542184006747,39.967031419227766],[-75.128669745952209,39.966969640736096],[-75.128959422874814,39.966843781240733],[-75.129097711869264,39.966785546895565],[-75.129098034279664,39.966785415502017],[-75.129338674673136,39.966687222772414],[-75.129610165999949,39.966579756160328],[-75.129698162285209,39.966542308918953],[-75.129722313290102,39.966532462609159],[-75.129767903835344,39.966530302406412],[-75.129810268742204,39.966523424631433],[-75.129844943487768,39.966511725533827],[-75.129920558849037,39.966482409183989],[-75.130053822171362,39.966427618915553],[-75.130039365685704,39.96640334402381],[-75.130022819641624,39.966375560571848],[-75.129645278693175,39.965700652071042],[-75.129387304359156,39.965211947508884],[-75.129338797849059,39.965302739844816],[-75.129201633093388,39.965419180310846],[-75.12907345698612,39.965491624263066],[-75.128867687377465,39.965544206469517],[-75.128747028443442,39.965523360945575],[-75.128590092338399,39.965444716309342],[-75.128452344718553,39.965361051457101],[-75.128343099985287,39.965299843476267],[-75.128247651789266,39.96526473083992],[-75.128122963830222,39.965246807417103],[-75.127958198382288,39.965252087582208],[-75.127782696891487,39.965332493100057],[-75.127602583847448,39.965430881987622],[-75.127501460812979,39.965512987058567]]],[[[-75.129694569352651,39.96660667642184],[-75.129683467992535,39.966604346930161],[-75.129671583577178,39.966606258708708],[-75.129607890824161,39.966632302549655],[-75.129602577568761,39.966635106839711],[-75.129597441849882,39.966639653265133],[-75.129595940651527,39.966643143798052],[-75.129594508584944,39.966649881408927],[-75.12959298531942,39.96665664576981],[-75.129589880011508,39.966661619700218],[-75.129584970661099,39.96666740119683],[-75.129577360242834,39.966673293101607],[-75.12956725973045,39.966678410017721],[-75.12922637433779,39.966817507870481],[-75.128962930125709,39.966924508695165],[-75.12880763901174,39.966987960667467],[-75.128797918992589,39.966992955561643],[-75.128789775951361,39.966997717074044],[-75.128783996282095,39.967004261648562],[-75.128780881759113,39.967010625633215],[-75.128779181834176,39.967018263549996],[-75.128779244746568,39.967024614525918],[-75.128781547494896,39.967030184122038],[-75.128870840289949,39.967194182725095],[-75.128875650994033,39.967200489886942],[-75.128882559899196,39.967205164564646],[-75.12888811091814,39.967208066536614],[-75.128893511531118,39.967210283895938],[-75.128898395981977,39.967211523562639],[-75.128916511367606,39.967213589873559],[-75.128926168653692,39.967213256351336],[-75.128932036941649,39.967212154195892],[-75.12893630284492,39.967210820813904],[-75.128940455515178,39.967208871245624],[-75.12964597736935,39.966687496181414],[-75.129652728928448,39.966681769368357],[-75.129703433982343,39.966636331634085],[-75.129707027834868,39.966630804814955],[-75.129707350150738,39.96662144690179],[-75.129702570447208,39.96661217970896],[-75.129694569352651,39.96660667642184]]]]},"properties":{"OBJECTID_1":212,"OBJECTID":155,"ASSET_NAME":"Penn Treaty Park","SITE_NAME":"Penn Treaty Park","CHILD_OF":"Penn Treaty Park","ADDRESS":"1201-1301 BEACH ST","TYPE":"Land","USE_":"Park- Neighborhood","ACREAGE":8.1585590000000003,"ZIPCODE":"19125","ALLIAS":" ","GLOBALID":"d2095d64-8863-48d8-8d40-470710970dc5","Shape_Length":3157.9461921378074,"Shape_Area":355385.51393423689}},{"type":"Feature","id":213,"geometry":{"type":"Polygon","coordinates":[[[-75.145388288883751,40.019984976896431],[-75.145344883552752,40.019999058308343],[-75.1452962950775,40.020020554665095],[-75.145262642268563,40.020035798832836],[-75.145227983634754,40.020045370775975],[-75.145183391920469,40.020058483650118],[-75.145116737240528,40.020072037579737],[-75.145056164384826,40.020086670105727],[-75.144978351808845,40.02010373710042],[-75.144311405747786,40.020249620785592],[-75.143807423597039,40.020361535861682],[-75.143301137148725,40.020469629285387],[-75.143089942764306,40.020515682182996],[-75.142956487115768,40.020546550560802],[-75.142563750134684,40.020631794594088],[-75.142681938540989,40.020647661075628],[-75.143819060709561,40.020792118587295],[-75.145332493547087,40.020992182126378],[-75.146106273907876,40.021094476416103],[-75.146325487512968,40.021126754299928],[-75.146893516250742,40.021197070611031],[-75.146989933164136,40.021205847211036],[-75.147009223522886,40.021128123705871],[-75.147017170233411,40.020920899851319],[-75.147022491287245,40.02053958806615],[-75.14703502443362,40.019813734725801],[-75.146977182098524,40.019819095578782],[-75.146814590132337,40.019819898584721],[-75.14663925745181,40.019827569310479],[-75.146498395711561,40.019858020641472],[-75.146390123937493,40.019916384616828],[-75.146308857083199,40.01997277309156],[-75.145992757913618,40.019739073416737],[-75.145693331770971,40.019865784320729],[-75.145558016461322,40.019917545996933],[-75.145388288883751,40.019984976896431]]]},"properties":{"OBJECTID_1":213,"OBJECTID":156,"ASSET_NAME":"Wingohocking Park","SITE_NAME":"Wingohocking Park","CHILD_OF":"Wingohocking Park","ADDRESS":"4101 OLD YORK RD","TYPE":"Land","USE_":"Park- Community","ACREAGE":8.0460569999999993,"ZIPCODE":"19140","ALLIAS":" ","GLOBALID":"7aa78c1c-686f-4aa3-a74d-6bd238210c47","Shape_Length":3125.4227597229706,"Shape_Area":350484.93481951929}},{"type":"Feature","id":214,"geometry":{"type":"Polygon","coordinates":[[[-75.210496692365226,40.02845835126314],[-75.210445116418143,40.028479230339421],[-75.210410733205222,40.028493150028112],[-75.210374295944874,40.028507900958424],[-75.210359508986045,40.028522544095182],[-75.210357007104307,40.028540981812363],[-75.210376184298212,40.028575864667012],[-75.210493183998125,40.028771538158445],[-75.210595484157224,40.028937121024811],[-75.210731511758752,40.029125127591783],[-75.211273760307662,40.029861296547665],[-75.211286461209582,40.029879143210238],[-75.211303695243487,40.029903361039814],[-75.211313700093299,40.029909027843587],[-75.211337466349306,40.02991412306617],[-75.211361586499137,40.029910133209086],[-75.211382798665639,40.029900443309948],[-75.211704507868419,40.029754510979494],[-75.21244026078277,40.029426845487151],[-75.212449922835546,40.029422527841895],[-75.213186421949118,40.029093483969064],[-75.213187486327385,40.029093009226933],[-75.213200660584235,40.029087131983935],[-75.213207236997775,40.029079698036121],[-75.21321189544031,40.029068326699573],[-75.213212903018288,40.029062378929503],[-75.213209895917217,40.029049512900514],[-75.213204586523645,40.0290407027749],[-75.213199514246099,40.029034015236668],[-75.213145640597418,40.02896298240303],[-75.213144895597978,40.028961999173475],[-75.213045582636113,40.028830750637376],[-75.21304531236089,40.028830393276941],[-75.212291474732481,40.027831664286253],[-75.212272099389949,40.027805884700157],[-75.212260336141227,40.027790234777534],[-75.212249144571544,40.027775344415517],[-75.212238349341405,40.027760981786599],[-75.212219513091924,40.027751409584774],[-75.21219695515245,40.027750628189921],[-75.212170084570801,40.027760242737735],[-75.212143750465302,40.027770868344078],[-75.210646380728633,40.028396704394666],[-75.210646334761861,40.028396679952237],[-75.210496692365226,40.02845835126314]]]},"properties":{"OBJECTID_1":214,"OBJECTID":157,"ASSET_NAME":"Kendrick Recreation Center","SITE_NAME":"Kendrick Recreation Center","CHILD_OF":"Kendrick Recreation Center","ADDRESS":"5822-24 RIDGE AVE","TYPE":"Land","USE_":"Recreation Center","ACREAGE":8.0340000000000007,"ZIPCODE":"19128","ALLIAS":" ","GLOBALID":"d36ac942-e051-42ae-8129-298402eb35eb","Shape_Length":2339.7635232810017,"Shape_Area":349959.57339486224}},{"type":"Feature","id":215,"geometry":{"type":"Polygon","coordinates":[[[-75.149917288615654,40.040347586521818],[-75.149957307688638,40.040351797333315],[-75.149996889553606,40.04035796515727],[-75.150035875752451,40.040366064782809],[-75.150074106793369,40.04037606737198],[-75.150113537876848,40.040389261486709],[-75.150151777209999,40.040404372109592],[-75.150188672191192,40.040421343528656],[-75.150224068393101,40.040440106475693],[-75.150257817761542,40.040460578311396],[-75.150289787502388,40.040482675841048],[-75.150319835761366,40.040506307555852],[-75.150347844349895,40.04053137617538],[-75.150373695251361,40.040557779918267],[-75.150397280301334,40.040585404611697],[-75.150429159106949,40.040619303379906],[-75.150460608981689,40.040653414081604],[-75.150491620313829,40.040687742806739],[-75.15052218793636,40.040722271418467],[-75.150550100731195,40.04075278266933],[-75.150579596399496,40.040782398982152],[-75.150610626371588,40.040811072403528],[-75.150643145591047,40.040838755059745],[-75.15067709353373,40.040865405034019],[-75.150712422765665,40.040890975299909],[-75.150749065630961,40.040915426482222],[-75.150786972214732,40.040938715102506],[-75.150834052636256,40.040966359583472],[-75.150882754730588,40.040992280149744],[-75.150932971672148,40.04101641942006],[-75.150984588298357,40.041038723428727],[-75.151124707032551,40.041090039669228],[-75.15113324198164,40.041092651108734],[-75.151142275793447,40.041093929515817],[-75.151151463498934,40.041093822034384],[-75.151160446175282,40.041092334059087],[-75.151168874750624,40.041089519862346],[-75.151176430776133,40.04108549117371],[-75.151182812854117,40.041080404258572],[-75.151187783798406,40.041074452875684],[-75.151196007296463,40.041059729788557],[-75.151203787301981,40.041044863316301],[-75.151211118785312,40.041029862355437],[-75.151217997957175,40.041014734028408],[-75.151235586202745,40.040981077084055],[-75.151250744990236,40.04094672905353],[-75.151263430432039,40.04091179526489],[-75.151273605771706,40.040876378504358],[-75.151281235389902,40.040840582484705],[-75.151286299616729,40.040804522992694],[-75.151288784088095,40.040768299716525],[-75.151288680881521,40.040732027807366],[-75.15128598593293,40.04069581349318],[-75.151280713745976,40.040659767927153],[-75.151272878996423,40.040623997760932],[-75.151262500941669,40.040588612452773],[-75.151249616545499,40.040553718257279],[-75.151234258189888,40.040519418622168],[-75.151216475859641,40.040485816492406],[-75.151196325429979,40.040453014044886],[-75.151173862913694,40.040421109855572],[-75.151149158412565,40.040390201918107],[-75.151089110415398,40.040323662742793],[-75.150864134713586,40.040076409186071],[-75.150682439162821,40.039876035143742],[-75.150516426147604,40.039693616193965],[-75.150366502558157,40.039530550089133],[-75.150159283905438,40.039300813557375],[-75.149952627175921,40.039072723784798],[-75.149943901449618,40.039067267021146],[-75.149934331295697,40.039062708378545],[-75.149924079131495,40.039059122713851],[-75.149913310233828,40.039056571433363],[-75.149902209515943,40.039055092961547],[-75.149890957620116,40.039054714813943],[-75.149583963701929,40.039056668861122],[-75.149289401318583,40.039064251111476],[-75.148804131803487,40.03907718817171],[-75.148692301452186,40.039076909909859],[-75.148664064412742,40.039085231042776],[-75.148650648159844,40.039090887434718],[-75.148636160075142,40.039097838641958],[-75.148624184583994,40.039107131736181],[-75.148615307270788,40.039116701330236],[-75.148607118607515,40.039128641783314],[-75.148600228587881,40.039143553474084],[-75.148597189988891,40.039155727698414],[-75.14859509496381,40.039174570108408],[-75.148600285216432,40.039248367566834],[-75.148600266392393,40.039335151465821],[-75.148590880719937,40.039426385094089],[-75.148580623210421,40.039514704903866],[-75.148572300933893,40.039579023956101],[-75.148557895576374,40.03964897626129],[-75.148540323347802,40.039723683597856],[-75.148511043081584,40.039818254520057],[-75.148483312166277,40.039896688141454],[-75.148452243175342,40.03997767532546],[-75.148413639152324,40.040062690585643],[-75.148376575387545,40.040135047168377],[-75.148347363989629,40.040197419006184],[-75.148310754149534,40.040257657237724],[-75.148262358644459,40.04032947510121],[-75.148225619377897,40.040386909109422],[-75.148190491529036,40.040430564286048],[-75.148178997501148,40.040448021565204],[-75.148175530751971,40.04046056631239],[-75.14817768003509,40.040474463656281],[-75.148189671357059,40.040487909973301],[-75.148203341335602,40.040496220662376],[-75.148221598463977,40.040504743375649],[-75.148259664835166,40.04052239970072],[-75.148304096491543,40.040541832834371],[-75.148343808122604,40.040558221720886],[-75.148384447511404,40.04057313050933],[-75.148425963914804,40.040586537325929],[-75.148468261048819,40.040598415661606],[-75.148511245109702,40.040608735459514],[-75.148554814851835,40.04061747730649],[-75.148598876333082,40.040624614746939],[-75.148643327858792,40.040630140071066],[-75.148688070387365,40.040634037520284],[-75.148733002465562,40.04063629308353],[-75.148778023224622,40.04063690808033],[-75.148823030693521,40.040635882003642],[-75.148876586553158,40.040633596147117],[-75.148929918903278,40.040629250881949],[-75.148982906548341,40.040622857880521],[-75.149035402628883,40.040614425531125],[-75.149087288773273,40.040603983590884],[-75.149138421049656,40.040591555832215],[-75.149188678641039,40.040577174660349],[-75.149237933703105,40.040560872321528],[-75.149286063834239,40.040542691997715],[-75.149332940673389,40.040522679439107],[-75.149391358655336,40.040491587945034],[-75.149470231595743,40.040446879312086],[-75.149529342123515,40.040413007569811],[-75.14956471880329,40.040398014527916],[-75.149601270233589,40.040384791541371],[-75.149638850214586,40.040373391162305],[-75.14967729515061,40.040363861044142],[-75.149716458188806,40.040356240209498],[-75.149756173977948,40.04035056095497],[-75.149796279923692,40.040346844827795],[-75.14983661260554,40.040345104346514],[-75.149877003780048,40.04034535552465],[-75.149917288615654,40.040347586521818]]]},"properties":{"OBJECTID_1":215,"OBJECTID":158,"ASSET_NAME":"Kemble Park","SITE_NAME":"Kemble Park","CHILD_OF":"Kemble Park","ADDRESS":"5641 OGONTZ AVE","TYPE":"Land","USE_":"Park- Neighborhood","ACREAGE":8.0183479999999996,"ZIPCODE":"19141","ALLIAS":" ","GLOBALID":"c1f6c9e6-516d-44d2-9bde-58b6c5f27f9a","Shape_Length":2736.3820766491799,"Shape_Area":349277.8614578527}},{"type":"Feature","id":216,"geometry":{"type":"Polygon","coordinates":[[[-75.067839519803343,39.998069438714559],[-75.067833066460011,39.998071108938312],[-75.06782913313296,39.998072127119812],[-75.067818105045816,39.998077855079323],[-75.067783575783778,39.998095791799599],[-75.067772138599793,39.998101732753902],[-75.067766807529637,39.998104502342152],[-75.066233086510906,39.998901205095194],[-75.066166542930191,39.998939713400517],[-75.066200603590417,39.998974527810084],[-75.066267042577536,39.999051568009484],[-75.066727458227533,39.99958544571961],[-75.067388325443019,40.000351741488558],[-75.067401087639425,40.000372233949754],[-75.067522805118784,40.000310681502889],[-75.068900667083611,39.999605924552746],[-75.068914737356735,39.999598431210281],[-75.068925354990512,39.999592776451763],[-75.068936372317268,39.999586909370485],[-75.068959401683145,39.999571880790782],[-75.068964335465168,39.999564309210626],[-75.06896453149372,39.999539346744164],[-75.068949561960721,39.999518076667677],[-75.068934610248888,39.999497987373672],[-75.06891183603571,39.999467390304709],[-75.067899256022969,39.998110473258926],[-75.067871418297386,39.998073167406424],[-75.067855757173049,39.998069837035793],[-75.067850439626824,39.998068705418952],[-75.067839519803343,39.998069438714559]]]},"properties":{"OBJECTID_1":216,"OBJECTID":159,"ASSET_NAME":"Bridesburg Recreation Center","SITE_NAME":"Bridesburg Recreation Center","CHILD_OF":"Bridesburg Recreation Center","ADDRESS":"4625 RICHMOND ST","TYPE":"Land","USE_":"Recreation Center","ACREAGE":7.9688189999999999,"ZIPCODE":"19137","ALLIAS":" ","GLOBALID":"1556a200-d856-4447-8eaa-a5ea7b18d6f8","Shape_Length":2354.2303105613296,"Shape_Area":347120.30840374326}},{"type":"Feature","id":217,"geometry":{"type":"Polygon","coordinates":[[[-75.052947843682674,40.05041739770769],[-75.05446681600759,40.051273293215772],[-75.055510255643512,40.050171403851969],[-75.053374682977747,40.048972699469999],[-75.053346932697053,40.048956435598114],[-75.053328643447827,40.048947650851218],[-75.05330011382847,40.048936039703051],[-75.053283063621578,40.048928677054569],[-75.053258066592505,40.048919337467879],[-75.053228965148449,40.048909104996156],[-75.053203129507963,40.048901336960235],[-75.053180325692381,40.048895430475106],[-75.053166738187656,40.048892127224164],[-75.0531475008857,40.048887697479827],[-75.05312643689328,40.048883622209907],[-75.053096547954894,40.048880135380223],[-75.053068149041835,40.048878274774083],[-75.052947843682674,40.05041739770769]]]},"properties":{"OBJECTID_1":217,"OBJECTID":160,"ASSET_NAME":"Bradford Park","SITE_NAME":"Bradford Park","CHILD_OF":"Bradford Park","ADDRESS":"2400 FAUNCE ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":7.7900200000000002,"ZIPCODE":"19152","ALLIAS":" ","GLOBALID":"c14bcd5f-c040-4f85-94a5-bfe724b01591","Shape_Length":2419.4744312947541,"Shape_Area":339331.93406462687}},{"type":"Feature","id":218,"geometry":{"type":"Polygon","coordinates":[[[-75.248009081687798,39.958431638510298],[-75.248991491937517,39.958533325545538],[-75.249855727246114,39.959311829691245],[-75.250087175231201,39.95936304533577],[-75.250671195888557,39.95910502163035],[-75.250756461221229,39.958930117204225],[-75.250547377229637,39.958387536219426],[-75.250535548040816,39.958356838513673],[-75.250502454570878,39.95827095852561],[-75.250365470420007,39.958171631926504],[-75.249941520828443,39.957804419488596],[-75.249529337275945,39.957447394358091],[-75.249480111001262,39.957368476666559],[-75.249394693857724,39.957394553760572],[-75.249322584200513,39.957414037280337],[-75.249254693521948,39.957429304176955],[-75.24915525535026,39.957446809771319],[-75.249046604768822,39.957460672666791],[-75.248962280770115,39.957467128048656],[-75.248878115887081,39.957471455091074],[-75.248789360557197,39.957472181638998],[-75.248691231934458,39.957468580817981],[-75.248625408194812,39.957462712793266],[-75.248541644064957,39.957454341637117],[-75.248478079525398,39.957448581351102],[-75.248394855431116,39.957451841055203],[-75.248329879681592,39.957463676022293],[-75.248286503914969,39.957474715171195],[-75.248228184520258,39.957496744895849],[-75.248174915717982,39.957525361061272],[-75.248113412353533,39.957567784628793],[-75.248089954578106,39.957590033031074],[-75.247996339244636,39.957679140321069],[-75.247961776494847,39.957712576501201],[-75.247926217001009,39.95774824791885],[-75.247895537749656,39.957784671772842],[-75.247880495728992,39.957817342552332],[-75.247869148413514,39.957848527985817],[-75.247861416754461,39.957885683862436],[-75.247800670556174,39.958178422115779],[-75.247881664188768,39.958264588103773],[-75.248009081687798,39.958431638510298]]]},"properties":{"OBJECTID_1":218,"OBJECTID":161,"ASSET_NAME":"Cobbs Creek Recreation Center & Pool","SITE_NAME":"Cobbs Creek Recreation Center & Pool","CHILD_OF":"Cobbs Creek Park","ADDRESS":"250 S 63RD ST","TYPE":"Land","USE_":"Recreation Center","ACREAGE":7.6750819999999997,"ZIPCODE":"19139","ALLIAS":" ","GLOBALID":"e53dbf74-641e-4e53-a191-cd47ca69ab98","Shape_Length":2419.5582952946247,"Shape_Area":334325.17430387996}},{"type":"Feature","id":219,"geometry":{"type":"Polygon","coordinates":[[[-75.227420997316628,39.934639409434773],[-75.22740348399509,39.934651721091392],[-75.22739264929055,39.934661092825422],[-75.227386356707683,39.934671606020245],[-75.227384973995854,39.934680794623475],[-75.227386742262013,39.934689945315931],[-75.227391536309895,39.934698426446779],[-75.227414468888284,39.934718745621879],[-75.228499884170589,39.935636024702788],[-75.228510568756562,39.935645053352893],[-75.2285186952125,39.935649717186749],[-75.228530165200539,39.935653034555941],[-75.228540428320045,39.935653580049049],[-75.228551545084997,39.935651843159533],[-75.228561340980775,39.935647883298813],[-75.228588187434809,39.935629731856714],[-75.229194941063398,39.935206513640658],[-75.229365734187411,39.935087382201608],[-75.229771455172624,39.934798702574504],[-75.229777428550321,39.93479255838875],[-75.22978196810071,39.934784238319772],[-75.229783758339138,39.934775319038451],[-75.229782692964136,39.934766331599612],[-75.229778828128644,39.934757813330798],[-75.229772401550719,39.934750265905372],[-75.229810487133037,39.934723392637665],[-75.229816995194852,39.934718800004809],[-75.229864770137041,39.934685088429624],[-75.229866552508895,39.934683830158804],[-75.229877448481531,39.934676142608765],[-75.229885077524017,39.934681594601287],[-75.229894164622806,39.93468550729223],[-75.229904191367254,39.934687657555287],[-75.22992478584662,39.934686300888224],[-75.229934195522119,39.934682871225071],[-75.229952623397551,39.934673059734749],[-75.229969186867891,39.934661699905384],[-75.23015249869934,39.934528255276469],[-75.230242006734457,39.934467797156088],[-75.230332712548588,39.934405428139641],[-75.230296453913596,39.934373309243568],[-75.23010545596037,39.934212092292178],[-75.230062840319178,39.934176174688169],[-75.229477080416061,39.933682475091707],[-75.229354996457033,39.93357957658543],[-75.229224354925122,39.933469011561478],[-75.22920278632057,39.933448676780046],[-75.229164841912535,39.9334154293404],[-75.22909505283819,39.9334649413561],[-75.228784927911306,39.933681263409099],[-75.228767534159985,39.93369326794852],[-75.228756435893345,39.933707482280937],[-75.228755354368388,39.933724048583507],[-75.228764169223538,39.933738450209624],[-75.228656019612444,39.933815038778462],[-75.22864714196578,39.933809239394897],[-75.228637965187573,39.933806013893012],[-75.228628031045417,39.933804653023714],[-75.228617970602798,39.933805245443985],[-75.228605993499968,39.933808980753369],[-75.228589239431514,39.933818694577425],[-75.228585904575553,39.933821923417263],[-75.227420997316628,39.934639409434773]]]},"properties":{"OBJECTID_1":219,"OBJECTID":162,"ASSET_NAME":"Myers Recreation Center","SITE_NAME":"Myers Recreation Center","CHILD_OF":"Myers Recreation Center","ADDRESS":"5800 CHESTER AVE","TYPE":"Land","USE_":"Recreation Center","ACREAGE":7.6023230000000002,"ZIPCODE":"19143","ALLIAS":" ","GLOBALID":"e531a2c6-f2c4-4781-ae00-fcaabc9d0cbc","Shape_Length":2355.4584779901174,"Shape_Area":331155.81378465024}},{"type":"Feature","id":220,"geometry":{"type":"Polygon","coordinates":[[[-75.012987703987605,40.114346536848743],[-75.012987579625516,40.114346739329456],[-75.012987040814409,40.114347672613434],[-75.012977982091229,40.114363476871908],[-75.012966577706933,40.114383370155629],[-75.012953852059084,40.1144073561236],[-75.012949637343922,40.114415298630007],[-75.012946998282672,40.114420434006654],[-75.012936228264692,40.114441386712251],[-75.012933142295438,40.114447388178682],[-75.012931542338109,40.114450622731489],[-75.01292927742621,40.114455385866925],[-75.012927025365585,40.114460121375487],[-75.012922258276831,40.114470146590058],[-75.012908617614556,40.114498975577376],[-75.012894095590127,40.114530012797431],[-75.012874956617793,40.114569419957611],[-75.012872950857599,40.114573752248482],[-75.012870583790985,40.11457933020953],[-75.012857225363177,40.114610817719338],[-75.01285357964025,40.114619462174225],[-75.012836415107131,40.114662373682719],[-75.012829274772102,40.114679843696479],[-75.012816170107513,40.114711904908489],[-75.012809087630657,40.114729191581866],[-75.012807872095919,40.114732351485927],[-75.012804452406129,40.114741966351666],[-75.012790432387035,40.114781378216485],[-75.012786527174143,40.114792350229031],[-75.012786365037812,40.114792790590336],[-75.012775376787289,40.114822225139825],[-75.012768452531688,40.114840766244029],[-75.012768213875702,40.114841386797167],[-75.012754920861425,40.114875524059293],[-75.01274574997926,40.114899072015376],[-75.012742419669053,40.114907868144719],[-75.01273010606522,40.114941611530057],[-75.012719221654308,40.114971437803398],[-75.012716982025921,40.114977346780059],[-75.012711998721628,40.114989760046427],[-75.01269402028106,40.115034541677282],[-75.012691260487458,40.115041415917176],[-75.01268146568394,40.115069775976274],[-75.012673209904023,40.11509367910282],[-75.01267189493305,40.115097470081302],[-75.012671661665024,40.115098102476296],[-75.012657535550289,40.115135604265049],[-75.01264709054476,40.115163266743423],[-75.012635811825476,40.11519288719299],[-75.012621362611569,40.115230832715696],[-75.012616817443202,40.115242770739286],[-75.012616378526587,40.115243903731269],[-75.012612738965586,40.115253236733629],[-75.012586910765577,40.115319331590193],[-75.012582977103179,40.115329408170432],[-75.012582474707742,40.115330718060271],[-75.012576348835978,40.115346807464078],[-75.012571963927712,40.115358322200507],[-75.012552717104072,40.115408874619547],[-75.012537532275488,40.1154487588149],[-75.012533712356756,40.115458808366697],[-75.0125183451065,40.115499256783735],[-75.012506595443014,40.115530248231806],[-75.012498028445449,40.115553369029939],[-75.012488497344677,40.115579089851039],[-75.012470157622772,40.115628770005642],[-75.01245594170841,40.115670145981191],[-75.012448124153778,40.115692232184266],[-75.012439816381359,40.115715704254917],[-75.012425143767743,40.115751300790052],[-75.012411812310845,40.115789809931208],[-75.012410224482821,40.115794399054678],[-75.012408063212433,40.115800081023359],[-75.012402545793336,40.115814586430666],[-75.012398697048681,40.115824680345199],[-75.012398488807264,40.115825216021463],[-75.01239610932339,40.11583107030296],[-75.012387849222605,40.115851385301944],[-75.012385700391832,40.115856904475194],[-75.012380112775759,40.115872043455248],[-75.012378661809009,40.115875975362243],[-75.012377487581745,40.115878373050876],[-75.012361398669483,40.115911229986963],[-75.012355367620628,40.115923545309954],[-75.012352365507184,40.115929414501977],[-75.012352346501743,40.115929449190702],[-75.012344965639628,40.115943104686089],[-75.012335009977136,40.115961522235992],[-75.012327898074801,40.115974678641052],[-75.012310459564432,40.116004307391457],[-75.012310417963278,40.116004378485542],[-75.012297192764763,40.11602668464154],[-75.012284502149569,40.116045024457719],[-75.012269194024611,40.116067149464975],[-75.012267537603194,40.116069426644422],[-75.012259797976014,40.116079353130274],[-75.012236576554116,40.116109137029902],[-75.012227578770393,40.116119441737041],[-75.012212241237762,40.116137005789518],[-75.012202231946645,40.116148468598048],[-75.012198141039022,40.116152672841046],[-75.012186391223452,40.116164746572629],[-75.012171778615894,40.116179762571832],[-75.012165313542297,40.116186405311929],[-75.012158985189359,40.116192510672981],[-75.012155380937372,40.116199804511254],[-75.012155197239721,40.11620246366104],[-75.01215484202487,40.11620759663289],[-75.012155526390131,40.116209597955262],[-75.012157424209803,40.116215145894806],[-75.012162873864568,40.116221729016836],[-75.012164852057126,40.116222962808372],[-75.012177008639256,40.116230542700116],[-75.012196047691575,40.116242415098995],[-75.012202288903836,40.11624631209331],[-75.012202867681196,40.116246685395161],[-75.012219587812197,40.116257624047968],[-75.012240943351401,40.116271595188891],[-75.012260476779559,40.116285001231731],[-75.012285926908291,40.116302522699613],[-75.012310175174079,40.116319348765458],[-75.012331732618748,40.116334307748303],[-75.012335379811844,40.116336904924573],[-75.012347958701298,40.116346553765943],[-75.012371544385445,40.116364646246872],[-75.012385377788718,40.116375256643387],[-75.012389280317947,40.116378389718093],[-75.012389304140598,40.11637841010851],[-75.012436377624184,40.116418327596243],[-75.012437922028084,40.116419637556945],[-75.012440183594535,40.116421643086873],[-75.012456075660651,40.116435738213823],[-75.012475357813813,40.116452839776116],[-75.012493034217627,40.11646997609315],[-75.012510866509871,40.116487262990546],[-75.012526323606124,40.116503672477741],[-75.012544385954229,40.116522848054451],[-75.012556536135435,40.116537010870282],[-75.01257341197929,40.11655667990771],[-75.01257882688121,40.116563224336538],[-75.012593709602768,40.116581738524253],[-75.012610716709062,40.116602894720508],[-75.012619523696117,40.116613849474156],[-75.012624474703387,40.116620634252115],[-75.012640352296145,40.116642558286735],[-75.012660653111126,40.116670590452557],[-75.012677845473519,40.11669715738666],[-75.012696326986813,40.116725601270446],[-75.012698033957463,40.116728233342897],[-75.012699240065544,40.116730335384908],[-75.012709178552925,40.116747652393883],[-75.012719867018973,40.116766276666617],[-75.012730611465926,40.116786130410723],[-75.01274204434165,40.116807420606236],[-75.012750761666851,40.116824549055075],[-75.0127582850088,40.116839333366279],[-75.012760347632948,40.11684338856233],[-75.012763225762825,40.116847767727791],[-75.012765249055192,40.116850849747522],[-75.012766717352747,40.11685209752104],[-75.012772544070202,40.116857047862013],[-75.01278171268136,40.116861548832965],[-75.012792103934231,40.116864022695935],[-75.012802981807965,40.116864298751032],[-75.012839839308697,40.116855072547239],[-75.012858694280894,40.116850352899647],[-75.012862034289384,40.116849514226331],[-75.012862409165365,40.116849415022813],[-75.012870740429804,40.116847157955114],[-75.012903430627233,40.116838301986498],[-75.012939190599738,40.116828614416889],[-75.012958728246389,40.116823322612881],[-75.012959436559996,40.116823133130538],[-75.01297886107082,40.116817998117241],[-75.013021241688335,40.116806794847108],[-75.013066330649266,40.116794874808491],[-75.013081502366688,40.116790861288713],[-75.013083671233616,40.116790280369194],[-75.013119930798297,40.116780513628818],[-75.013177839941818,40.116764916912594],[-75.013235643593688,40.116749054548684],[-75.013277983819137,40.116737396092226],[-75.01333359493097,40.116722234781427],[-75.013369579166252,40.116712541605438],[-75.013440233758772,40.116693750186492],[-75.01351003556212,40.116675586290008],[-75.013528758000646,40.116670367799948],[-75.013555487641341,40.116662778154144],[-75.01357990717932,40.116655692183436],[-75.013604676517673,40.116648488383944],[-75.013614489400794,40.116646217864343],[-75.013650512625063,40.116637882520756],[-75.013666647097182,40.116634148636585],[-75.013678076537772,40.116631924689322],[-75.013729388361554,40.116621940172216],[-75.013774718206832,40.116614745325805],[-75.013782281411892,40.116613545778186],[-75.013792770504693,40.116611880624987],[-75.013807131041418,40.116610108458993],[-75.01382406763345,40.116608018243888],[-75.013841123338182,40.116605913740422],[-75.013856675191334,40.116603994209562],[-75.013868163205672,40.116601103954835],[-75.013872595328706,40.116598824319858],[-75.013878210335506,40.116595937586233],[-75.013881522709042,40.116592962723367],[-75.013886068583091,40.116588882781237],[-75.013888267115632,40.116585240764024],[-75.013891153632215,40.116580459061993],[-75.01389280630697,40.116573360219967],[-75.013895319563517,40.116562561394211],[-75.013897490576895,40.116553233959074],[-75.013902188703881,40.11652581578069],[-75.013903338959608,40.116515434150095],[-75.013904888303117,40.1165014460774],[-75.013904892247041,40.116501406524726],[-75.013905415262755,40.116497172292078],[-75.013906577414787,40.116489926619806],[-75.013908438637174,40.11647833016243],[-75.013914416457354,40.116441074066501],[-75.013924362587915,40.116397182405095],[-75.013926333343079,40.116388483646993],[-75.013927278659054,40.116384312624859],[-75.01392849768672,40.116380164334501],[-75.013930524848888,40.11637326632755],[-75.013940508220642,40.116339296178829],[-75.013942701354978,40.116331833554469],[-75.013944533718728,40.116325981543703],[-75.013947115759834,40.116318537183489],[-75.013949517082267,40.116311615641024],[-75.013951789663921,40.116305063171403],[-75.013954853899833,40.116296227340044],[-75.013955927083373,40.116293133419084],[-75.013956649628156,40.116291050249473],[-75.013957349478702,40.116289035020188],[-75.013958446601436,40.116285871386374],[-75.013959883747177,40.11628172738456],[-75.013960465472792,40.116280050844871],[-75.013961882705118,40.116275964036781],[-75.013962718175506,40.116273554668595],[-75.013964426304369,40.116269384676471],[-75.013966153910104,40.116265168292834],[-75.013969278456216,40.116257542212367],[-75.013973749272324,40.116246627773002],[-75.01397618902071,40.116240673076462],[-75.013977537854061,40.116237379372279],[-75.01397856894701,40.116234862927634],[-75.013979971157937,40.116231438939245],[-75.013981335514458,40.116228109562115],[-75.013982373196328,40.11622557525309],[-75.013983404288865,40.116223058808458],[-75.013984102081338,40.116221356196505],[-75.013984781678204,40.11621969730335],[-75.013985305080666,40.116218593348549],[-75.013988182458192,40.116212525619964],[-75.013993511313373,40.116201288293453],[-75.013994953223445,40.116198247297326],[-75.01400030517992,40.116186960962082],[-75.014002888725173,40.116181514277983],[-75.014003935565327,40.116179305467973],[-75.014004612821338,40.116177878991508],[-75.014005238816779,40.116176559422094],[-75.014005885425476,40.11617519438925],[-75.014006562790371,40.11617376521221],[-75.0140071938755,40.11617243585227],[-75.014007703180667,40.116171361296779],[-75.014008153499901,40.116170410584644],[-75.014008647354245,40.116169369901655],[-75.014009237430884,40.116168126067301],[-75.014009705618591,40.116167139738046],[-75.014009939108035,40.116166647009614],[-75.014010428129495,40.116165726052031],[-75.014011124111377,40.116164417158409],[-75.014011815076216,40.116163116254903],[-75.014012516220419,40.116161795770296],[-75.014013326520839,40.116160271541112],[-75.014016904488102,40.116153536579787],[-75.014019951470715,40.116147802672536],[-75.014022585668243,40.116142845565662],[-75.014025936241865,40.116136539502676],[-75.014028146229592,40.116132380549551],[-75.014030410849529,40.116128118373794],[-75.01403271874986,40.116123772528532],[-75.014034618846281,40.11612019639373],[-75.014035312336929,40.116118891044906],[-75.014036126480804,40.116117358797482],[-75.014037217413829,40.116115307820088],[-75.014038173887542,40.116113505939147],[-75.014039313154385,40.116111362401966],[-75.014040660735503,40.116108826455466],[-75.014041105302965,40.116107989139394],[-75.014041573928438,40.116107108244023],[-75.014041910585078,40.116106472900107],[-75.014042275107826,40.116105786859094],[-75.014044325004221,40.116101930455663],[-75.014047798875026,40.116095535418062],[-75.014050697044922,40.116090202543532],[-75.014053507844096,40.116085027978116],[-75.014056627951462,40.116079284997255],[-75.014061434222612,40.116070439251708],[-75.014063261180581,40.116067075827651],[-75.014065814520734,40.116062377201239],[-75.014068461783665,40.116057503301427],[-75.014071351052465,40.116052187334724],[-75.014075562797359,40.116044433940033],[-75.014079372555159,40.116037422461467],[-75.014081980964136,40.116032726046029],[-75.014086447404551,40.116024681362383],[-75.014091075732765,40.116016347687136],[-75.014094241025958,40.116010648130093],[-75.014097396175529,40.11600496725378],[-75.01410084624527,40.115998754562867],[-75.014104431727532,40.115992298204283],[-75.014106792119463,40.115988047316428],[-75.014111217945484,40.115980078255404],[-75.014115079305398,40.115973125671154],[-75.014115385468713,40.11597257700398],[-75.0141174636546,40.115968862738342],[-75.014120560042599,40.115963329137614],[-75.014122893785057,40.115959156908396],[-75.014125701877347,40.115954136357601],[-75.014128327794722,40.115949442159945],[-75.014131424180945,40.115943908558926],[-75.014134175331151,40.115938990274664],[-75.014136211770463,40.115935350704156],[-75.014138373443146,40.115931487047106],[-75.014140503514099,40.115927679404656],[-75.014142700704994,40.115923749914458],[-75.014144747250086,40.11592009256313],[-75.014148005558326,40.115914269070025],[-75.014151153865129,40.115908641191893],[-75.014154546339995,40.115902575803467],[-75.014159417412628,40.115893868556647],[-75.01416302604305,40.115887419955662],[-75.014166131394092,40.115881867644987],[-75.014170354838299,40.115874318164224],[-75.014177890769702,40.115861143809724],[-75.01418500194363,40.115848984750706],[-75.014193997779444,40.115833602400919],[-75.014202648112715,40.115818812834711],[-75.014204958873322,40.115814860815973],[-75.01420663931313,40.115811986781623],[-75.014208010836498,40.115809642426925],[-75.014209957239046,40.115806314280611],[-75.014211872112654,40.115803040348595],[-75.0142143492683,40.115798803950533],[-75.014216456976669,40.115795201215604],[-75.014217358349498,40.115793659328709],[-75.01421770884501,40.11579300088615],[-75.014218110128056,40.115792247238922],[-75.014218647850598,40.115791253552715],[-75.014219383805354,40.115789855503344],[-75.014222203335692,40.115784463987559],[-75.014225426047631,40.11577830084849],[-75.01422682241116,40.115775631803366],[-75.014231816656093,40.115766082293746],[-75.014235965136734,40.11575815078168],[-75.014239966198375,40.11575049869375],[-75.01424491335132,40.11574103997097],[-75.014250030915051,40.115731255515804],[-75.014254698353014,40.115722329870373],[-75.014258339075184,40.115715812648951],[-75.014264169551666,40.115705520739894],[-75.014272654836304,40.115690545228993],[-75.014276697212921,40.115683410428005],[-75.014281794737443,40.115674413017821],[-75.014293130727538,40.11565440715254],[-75.014296212719415,40.115648967816028],[-75.014299178739407,40.115643726655868],[-75.014300074262493,40.115642126060571],[-75.014303061529034,40.115636765565306],[-75.01430606516378,40.115631377526675],[-75.014310931243358,40.115622647629039],[-75.014317348553021,40.115611133430114],[-75.014323687425474,40.115599759731673],[-75.014326012971821,40.115595586402733],[-75.014329012236246,40.11559039378875],[-75.014332666838555,40.11558411387319],[-75.014337361809083,40.115576046685199],[-75.014341373293874,40.115569153531311],[-75.014345422532102,40.115562197300498],[-75.014349459245281,40.115555260594824],[-75.01435291712923,40.115549318399957],[-75.014355848735008,40.115544289969989],[-75.014360914445376,40.115535644112775],[-75.014370665766748,40.115519017344781],[-75.014372999910847,40.115515037946622],[-75.014376000842518,40.115509920158871],[-75.014378167003414,40.115505653832592],[-75.014379891986749,40.115502257342129],[-75.014380313732943,40.115499426346084],[-75.014380553794666,40.115497811057516],[-75.014381109043754,40.115494085785706],[-75.014380323626867,40.115489905122487],[-75.014379579798472,40.115485944405215],[-75.014377962276569,40.11548301443473],[-75.014375399883193,40.115478371604034],[-75.014372655679196,40.115475645499345],[-75.014368848518757,40.115471864199129],[-75.014362597281718,40.115468272542905],[-75.01435845996383,40.115465896243514],[-75.014329544701596,40.115449286664273],[-75.014298612660667,40.115430683715694],[-75.014289964071381,40.115425455467978],[-75.014265379192153,40.115409986913953],[-75.014252941447907,40.115402159973264],[-75.014220827579308,40.115382656662717],[-75.014198739413004,40.115369242433509],[-75.014182828000486,40.115359578482476],[-75.014180543837568,40.115358190573964],[-75.014155540891295,40.115342991375769],[-75.014133391398673,40.115329527017195],[-75.014115801000557,40.115318834650203],[-75.014112739108299,40.115316972301407],[-75.014103945265973,40.115311621643592],[-75.014075083817374,40.115294059960185],[-75.014055558048369,40.115282178094439],[-75.014041574403095,40.115273689915441],[-75.014028259691187,40.115265842083005],[-75.014016977432021,40.115259192356284],[-75.014005745637974,40.115252571761957],[-75.013988383753912,40.11524075488726],[-75.013970908852301,40.115228859631934],[-75.013956251987722,40.115217366620001],[-75.013942217435854,40.115206360567065],[-75.013938465629408,40.115203418550969],[-75.013938341934832,40.115203313788378],[-75.013936203795211,40.115201390517669],[-75.013929118985814,40.115194987530188],[-75.013922172315048,40.115188709471781],[-75.013908191785021,40.115176074689224],[-75.013902307898789,40.115169925539689],[-75.013882729564031,40.115149462534944],[-75.013880627133048,40.115147265290723],[-75.013878626177757,40.11514490917196],[-75.01387600448362,40.115141823745098],[-75.013870873111571,40.115135785308702],[-75.013863430398658,40.115127026548983],[-75.01385681116119,40.115119237096913],[-75.013850668121066,40.115110757052754],[-75.013845964664185,40.115104264753533],[-75.013840467444666,40.115096677705068],[-75.013835623924564,40.115089991949667],[-75.013828377583707,40.115078084163464],[-75.013823729770536,40.115070446142667],[-75.013817174582499,40.115059674814923],[-75.013811667507795,40.115048668923031],[-75.013806108334762,40.115037558169661],[-75.013801542836362,40.115028433561719],[-75.013797321547969,40.115017817786658],[-75.013793856736299,40.115009104121015],[-75.013788816121846,40.114996427956676],[-75.013782940222114,40.114976795584681],[-75.013779475007439,40.114965213846837],[-75.013778441596131,40.114961072329841],[-75.013776626732934,40.114952972799514],[-75.013774441991217,40.114943220940894],[-75.013773020931865,40.114936878830541],[-75.013772155790789,40.114933017040819],[-75.013771670367106,40.11492954633475],[-75.013770508799567,40.114921253305013],[-75.013769144130919,40.114911508345962],[-75.013768027114878,40.114903536251312],[-75.013767804878839,40.114901947807127],[-75.013767696194819,40.114900046695318],[-75.01376729509802,40.114893004406724],[-75.013766902111385,40.114886110084356],[-75.013766442090841,40.114878056309507],[-75.013766024265522,40.114870730691138],[-75.013766359518911,40.114857541798912],[-75.013766577044322,40.114848955403737],[-75.013766798002678,40.114840225822327],[-75.013767017781404,40.114837630603816],[-75.01376827368388,40.114825998118242],[-75.013769307761748,40.114816430080332],[-75.013770180900821,40.114808348559748],[-75.013771841814702,40.114799678473176],[-75.013773927960145,40.11478878929222],[-75.013775930676317,40.114778338742454],[-75.013777535500964,40.114771668567109],[-75.013780904892414,40.11475809233653],[-75.013783549610238,40.114747437205992],[-75.013785092664094,40.114741221495159],[-75.013786544976455,40.114737137326152],[-75.013788342914424,40.114732079230336],[-75.013792956853663,40.114719100280134],[-75.013796175364917,40.114710046464445],[-75.013797736246829,40.114705656717625],[-75.013800475001545,40.114699794740609],[-75.013803266369607,40.114693821383526],[-75.013806611404576,40.114686662796458],[-75.013809434917889,40.114680619921721],[-75.013812159537849,40.114674788244045],[-75.013276043606325,40.114462451108473],[-75.012988722115551,40.11434492296253],[-75.012987703987605,40.114346536848743]]]},"properties":{"OBJECTID_1":220,"OBJECTID":163,"ASSET_NAME":"Somerton Woods","SITE_NAME":"Somerton Woods","CHILD_OF":"Somerton Woods","ADDRESS":"900 WELTON ST","TYPE":"Land","USE_":"Park- Watershed\\Conservation","ACREAGE":7.5913690000000003,"ZIPCODE":"19116","ALLIAS":" ","GLOBALID":"078d10cc-702d-457a-af8e-b37b3b5bccf3","Shape_Length":2401.8564903583092,"Shape_Area":330678.68044304196}},{"type":"Feature","id":221,"geometry":{"type":"Polygon","coordinates":[[[-75.18641621827625,39.92643258410974],[-75.186411035703941,39.926456926183896],[-75.186412141506338,39.926468037841708],[-75.186416591053543,39.926475264309886],[-75.186423379668483,39.926481320398125],[-75.18643201830848,39.926485768094047],[-75.186446878893207,39.926488955615177],[-75.186493647633583,39.926495205386544],[-75.187655425802305,39.926646945098987],[-75.187680460629451,39.926650140855727],[-75.187693488780184,39.926651803303919],[-75.187708537342914,39.926648671569424],[-75.187716483826733,39.926645684781462],[-75.187725875578195,39.926639625405151],[-75.18773309809292,39.926632001157643],[-75.18773772240236,39.926623263771567],[-75.187744991265305,39.92659053570911],[-75.187966165722671,39.925570284596404],[-75.187973757192154,39.925533586672572],[-75.187969478448863,39.925516609746353],[-75.187963185502724,39.92550935566927],[-75.187944447459685,39.92549981698366],[-75.187925196228903,39.925497404631926],[-75.187479153770042,39.925441502512243],[-75.187494853124804,39.925370035607834],[-75.187936357082108,39.925428539304036],[-75.187940260323458,39.925429056295805],[-75.187952617452993,39.925430693816004],[-75.187964347172823,39.925429975591172],[-75.187975528947845,39.925427152976809],[-75.187983782449905,39.925423219764525],[-75.187993805304558,39.925415935581832],[-75.18800339032839,39.925399526996536],[-75.188006831265781,39.925383992971916],[-75.188234264625748,39.924330886347924],[-75.188242309234766,39.924292838911086],[-75.188240809665317,39.924284374657461],[-75.188235941863041,39.924276693817845],[-75.188228196175785,39.924270572304138],[-75.188218347511068,39.924266625698628],[-75.188202313069567,39.924262582342365],[-75.188156244176312,39.924256430864254],[-75.187023555911424,39.92410969110766],[-75.186969528377574,39.92410260891765],[-75.186949666421938,39.924105169835165],[-75.186934576211073,39.92411112699763],[-75.186925597520784,39.924117753261548],[-75.186918807140657,39.924125777251326],[-75.186914561482823,39.924134778052924],[-75.186911995231682,39.924146693319834],[-75.186905265481968,39.924177937706631],[-75.18641621827625,39.92643258410974]]]},"properties":{"OBJECTID_1":221,"OBJECTID":164,"ASSET_NAME":"Smith Playground","SITE_NAME":"Smith Playground","CHILD_OF":"Smith Playground","ADDRESS":"2200 S 24TH ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":7.5428259999999998,"ZIPCODE":"19145","ALLIAS":"Wilson Park","GLOBALID":"9f73f7fb-ccc8-4c8f-9ea5-cac3b6b7674b","Shape_Length":2770.7622605927204,"Shape_Area":328564.07470763125}},{"type":"Feature","id":222,"geometry":{"type":"Polygon","coordinates":[[[-75.171163064195625,39.948607464750239],[-75.171136602569405,39.948612826455886],[-75.171111709795724,39.948621577004005],[-75.171089115675258,39.948633457092697],[-75.171069475955264,39.948648122862231],[-75.171053365243196,39.948665147537497],[-75.171038537984984,39.948687435962789],[-75.171020651477548,39.948722131058176],[-75.171010838400022,39.948752402578457],[-75.170992811242343,39.948875716532804],[-75.170992803378056,39.948875769515894],[-75.170961870105288,39.949029138579114],[-75.170935618459367,39.949158845023135],[-75.170898748625163,39.949312146374169],[-75.170898713881684,39.94931229065638],[-75.170859193676932,39.949479280093882],[-75.170801195248032,39.949735029302367],[-75.170764877798206,39.949909198835634],[-75.170744926349315,39.950004881320673],[-75.170743490677964,39.950022841407687],[-75.170749879199718,39.950043349792473],[-75.170757674451409,39.950059428881673],[-75.170771423663922,39.950078289024546],[-75.170778208302536,39.950084938792784],[-75.170795079582035,39.950099825375574],[-75.17081805718523,39.950114620393492],[-75.170832558802331,39.950122202322362],[-75.170856514109531,39.950125766539472],[-75.171028219825374,39.950151315337934],[-75.171204671946754,39.95017623985639],[-75.171398698070163,39.950203340455026],[-75.171575579654458,39.950226918924734],[-75.171826495735829,39.950257516721784],[-75.17222074988311,39.950305863084594],[-75.172516773445537,39.950344055809417],[-75.172593832040647,39.950352892632132],[-75.172644231150869,39.950343281321729],[-75.17266741408838,39.950334156837911],[-75.172688520962211,39.950322419616128],[-75.172712276627365,39.950302917493666],[-75.172734438087161,39.950278222142792],[-75.172743882585252,39.950257869583631],[-75.172749678664331,39.95023160458998],[-75.172810776315998,39.949967636654371],[-75.172862028723955,39.949735133479329],[-75.172895085666013,39.949585176994624],[-75.172927810593819,39.9494322721334],[-75.172968669613653,39.949236791468323],[-75.172995921792293,39.949106407035231],[-75.17301362590652,39.9490217057661],[-75.173030787796677,39.948934261339552],[-75.173029106109198,39.948913903885391],[-75.173022426562298,39.948892133088179],[-75.173013822930088,39.94887803535164],[-75.173006739718872,39.948869594100692],[-75.172989687430928,39.948853117094075],[-75.172969286031972,39.94883993824191],[-75.172945873588944,39.948828860481349],[-75.172916557347335,39.948820038668671],[-75.172704242016749,39.948793671223143],[-75.172135873765527,39.948723084238907],[-75.171190325525799,39.948605646688208],[-75.171163064195625,39.948607464750239]]]},"properties":{"OBJECTID_1":222,"OBJECTID":165,"ASSET_NAME":"Rittenhouse Square","SITE_NAME":"Rittenhouse Square","CHILD_OF":"Rittenhouse Square","ADDRESS":"1800 WALNUT ST","TYPE":"Land","USE_":"Park- Square\\Plaza","ACREAGE":7.3329310000000003,"ZIPCODE":"19103","ALLIAS":" ","GLOBALID":"b54cdeed-bcd0-44a2-aa72-f07292d1643f","Shape_Length":2188.7865454171947,"Shape_Area":319421.1745732408}},{"type":"Feature","id":223,"geometry":{"type":"Polygon","coordinates":[[[-75.261158935890521,39.972519912056811],[-75.261072655343284,39.972526082003064],[-75.260981146259709,39.972534994607145],[-75.260293334205699,39.972601167867587],[-75.259814666889653,39.972647216658167],[-75.259746963717518,39.972654979860899],[-75.259738649983404,39.972657834871882],[-75.259728181414403,39.972663375817],[-75.259711402074728,39.972676518397058],[-75.258713818751332,39.973488356928193],[-75.258675961350747,39.973519625550672],[-75.258669809697537,39.973533292439463],[-75.258660682207847,39.973553572849312],[-75.258654417271131,39.973580417841319],[-75.258651143041121,39.973609247769758],[-75.258651576932451,39.973639532211131],[-75.258654278146324,39.973666652050539],[-75.258654340376367,39.973667190390827],[-75.258657891929857,39.973694944967619],[-75.258665079446885,39.973732635298326],[-75.258674411083732,39.973771063236128],[-75.258684135690601,39.973805769611317],[-75.258698620595652,39.973839904491236],[-75.258704250320818,39.973848866312281],[-75.258711091516574,39.973859760024951],[-75.258728798084462,39.97388284664256],[-75.258730833469826,39.973884728847075],[-75.258744882504431,39.973897733281952],[-75.258747959850425,39.973900581441839],[-75.258754817490072,39.973904896489593],[-75.258764819477534,39.973911190795832],[-75.258775452215133,39.973917880813552],[-75.258792523487301,39.973924954773686],[-75.25881616305422,39.973934749951759],[-75.258816678777748,39.973934961167053],[-75.258829889095438,39.973940436742168],[-75.258859509784855,39.973952710631536],[-75.258891887472473,39.973966126450172],[-75.258893684027555,39.973966857409565],[-75.258991242130335,39.974006533797137],[-75.259663606882157,39.974279974786022],[-75.25975143060765,39.974315692046481],[-75.259759280430174,39.974318884307735],[-75.259768415679488,39.974322599105548],[-75.259856867627363,39.974358209183229],[-75.25989205556904,39.974311651941733],[-75.2617587757547,39.972758853920112],[-75.26180004393467,39.972724766106616],[-75.261725037538028,39.972670562548387],[-75.261702628967285,39.972654368816627],[-75.261664587153305,39.972631966145656],[-75.261636467850252,39.972617102759891],[-75.261614124738273,39.97260529283438],[-75.261583425553155,39.972593724264108],[-75.261583352824985,39.972593695657359],[-75.261555091622171,39.972582802530219],[-75.261548648231056,39.972580572509834],[-75.261509461788251,39.97256700888218],[-75.261328105557382,39.972526079493143],[-75.261215454037568,39.972519308859624],[-75.261158935890521,39.972519912056811]]]},"properties":{"OBJECTID_1":223,"OBJECTID":166,"ASSET_NAME":"Rose Playground","SITE_NAME":"Rose Playground","CHILD_OF":"Cobbs Creek Park","ADDRESS":"7401 LANSDOWNE AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":7.3183199999999999,"ZIPCODE":"19151","ALLIAS":" ","GLOBALID":"35366f7e-ac47-47db-b0fc-5e556d8df1e0","Shape_Length":2340.3509798445007,"Shape_Area":318784.667578272}},{"type":"Feature","id":224,"geometry":{"type":"Polygon","coordinates":[[[-75.16018763226127,40.026052836522624],[-75.160233409268116,40.02612804318381],[-75.160254046784559,40.026160920824132],[-75.160555605475949,40.026544824782157],[-75.160612247940833,40.02661154993303],[-75.160674728249077,40.026695235850802],[-75.16072431787714,40.026755566890841],[-75.160885048939647,40.026963013974516],[-75.161035461144678,40.02714342567365],[-75.16120153950186,40.027019390281858],[-75.160957536670409,40.026826896435601],[-75.161166256105957,40.026626533316161],[-75.161232793644103,40.026561338273865],[-75.161280726719298,40.026516294000871],[-75.161322011936463,40.026475462573252],[-75.16141709237597,40.026384732725887],[-75.161457590852621,40.026343260016546],[-75.161509001318322,40.026292060811663],[-75.161559436303421,40.026245202315259],[-75.161635932245687,40.026173999189695],[-75.161721958036082,40.026086804238851],[-75.161866261424919,40.026193526386493],[-75.162013874428595,40.026085903811961],[-75.16232224846344,40.025865967270633],[-75.162273637715643,40.025822486353427],[-75.16218978479381,40.025746423445824],[-75.162466688211055,40.025565045431549],[-75.162356242197049,40.025463450552614],[-75.162320430248386,40.025445814437859],[-75.162212461957054,40.025343028236833],[-75.16196231517651,40.025524384230096],[-75.161907389669878,40.025476398118556],[-75.161862020739207,40.025432990975332],[-75.161815721660957,40.025392678560621],[-75.161749263648488,40.025328225888344],[-75.161688573259781,40.025272006902632],[-75.161643037204669,40.025232958616279],[-75.161596119230282,40.025187645937748],[-75.161520153813015,40.025117370007976],[-75.161720580057519,40.024964189976458],[-75.16177401653367,40.024923632282601],[-75.161668527165887,40.024819655296653],[-75.1615618940708,40.024894541842464],[-75.161404372558152,40.025006927569947],[-75.161352432312711,40.024956867652534],[-75.161311080667488,40.024917143180737],[-75.161271428564518,40.024879689721459],[-75.161226613654151,40.024837141751597],[-75.161179156751103,40.024793589939208],[-75.161141109508577,40.024760892130232],[-75.161096362262995,40.024716543599901],[-75.161049853407704,40.024671554358626],[-75.160967532527209,40.024598783103862],[-75.160831023022396,40.02469169598745],[-75.160718884550505,40.024772690867714],[-75.160357009553081,40.024886077097712],[-75.159997516800573,40.025000762047583],[-75.160025050690294,40.025277821026982],[-75.160038686885287,40.025472913791816],[-75.160067632726125,40.025691725981723],[-75.160073663836101,40.025724897747452],[-75.160082697490026,40.025764369554715],[-75.160088157099622,40.025791295202545],[-75.160099454227876,40.025835181674985],[-75.16012416938544,40.025909913388723],[-75.160158319931639,40.025992337214319],[-75.16018763226127,40.026052836522624]]]},"properties":{"OBJECTID_1":224,"OBJECTID":167,"ASSET_NAME":"Loudoun Park","SITE_NAME":"Loudoun Park","CHILD_OF":"Loudoun Park","ADDRESS":"4650 GERMANTOWN AVE","TYPE":"Land","USE_":"Park- Mini","ACREAGE":7.3169139999999997,"ZIPCODE":"19144","ALLIAS":" ","GLOBALID":"a317b038-72ea-4a72-a7f3-4ba7f1a32da0","Shape_Length":2900.5723932493188,"Shape_Area":318723.47539864405}},{"type":"Feature","id":225,"geometry":{"type":"Polygon","coordinates":[[[-75.237872830100528,39.912655579020154],[-75.237862088196735,39.912659945936312],[-75.237853104224101,39.912666134441068],[-75.237845062508342,39.912671774162206],[-75.237833507357564,39.912679879507628],[-75.236665704743032,39.913507844581687],[-75.236639564026305,39.913532268767931],[-75.236622474581878,39.913550620437853],[-75.236601704502533,39.913576021000303],[-75.23657869822037,39.913610068050119],[-75.236556366992758,39.913652471316858],[-75.236545578632857,39.913677551898587],[-75.236536717379792,39.913704751522964],[-75.236530496191747,39.913732382036542],[-75.236527396982865,39.91375674460366],[-75.236526091253026,39.913788328328906],[-75.236529382361852,39.913826122484188],[-75.236533007538469,39.913850608141068],[-75.236537868711224,39.913871759277441],[-75.236544077096141,39.913894986110073],[-75.236554116665431,39.913925100353097],[-75.236569181485507,39.913960661360264],[-75.236580275981012,39.913983351092973],[-75.236596676824277,39.914007049136814],[-75.236610028222472,39.91402442561332],[-75.236623550602218,39.914041196763037],[-75.236634294172248,39.914052744287105],[-75.236648808738281,39.914068345166136],[-75.236661543855519,39.914079098418902],[-75.237523951189146,39.914807317487842],[-75.237559743509621,39.91483739319888],[-75.23756922460457,39.914841602283822],[-75.237579776783264,39.914843835529076],[-75.237586871541652,39.914843912611119],[-75.237601344070242,39.914841949328419],[-75.237610975331393,39.914837947321644],[-75.237624117588155,39.914828445986856],[-75.237648210304116,39.914810780115587],[-75.238724109436959,39.914055014056153],[-75.238757649740222,39.914031012770366],[-75.238783273402561,39.914010751100932],[-75.238808569054072,39.913987395431263],[-75.238823975009524,39.913971400518307],[-75.238833138823992,39.913960503668477],[-75.238859917124188,39.913924755734691],[-75.238875268828068,39.913898698211014],[-75.238888065775228,39.91387183149876],[-75.238897468772691,39.913850625286976],[-75.238909353316743,39.913818841679017],[-75.238915453238874,39.913797636102927],[-75.238922289196736,39.913765752732211],[-75.238925802709858,39.913739399884335],[-75.238927494652359,39.913698216399581],[-75.238926125014657,39.91366424410181],[-75.238919821024027,39.913617639895669],[-75.238912195489533,39.913584704578348],[-75.238900582266865,39.913551014284039],[-75.238884908346961,39.913519179398186],[-75.238873414339793,39.913499336407824],[-75.23885809174719,39.913475951540107],[-75.238841998801092,39.913454163480225],[-75.23883414803187,39.913444940126887],[-75.23882023395204,39.913428594046557],[-75.238803947964016,39.913413648417269],[-75.238780564102228,39.913392188994486],[-75.238764995593186,39.91337790238515],[-75.238749363749747,39.913363556722608],[-75.237984061394528,39.912714720360249],[-75.237960460216883,39.912694785888419],[-75.237934899561552,39.912673196596351],[-75.237925029546346,39.912664859661326],[-75.237915822648944,39.912658588822261],[-75.237903896850554,39.912654718126767],[-75.237890572017548,39.912653340464558],[-75.237872830100528,39.912655579020154]]]},"properties":{"OBJECTID_1":225,"OBJECTID":168,"ASSET_NAME":"Elmwood Park","SITE_NAME":"Elmwood Park","CHILD_OF":"Elmwood Park","ADDRESS":"7101 DICKS AVE","TYPE":"Land","USE_":"Park- Neighborhood","ACREAGE":7.2346130000000004,"ZIPCODE":"19142","ALLIAS":" ","GLOBALID":"16afbff1-e3a3-46a2-b6de-8f13fdd3fe6d","Shape_Length":2140.0750169897165,"Shape_Area":315138.47148622345}},{"type":"Feature","id":226,"geometry":{"type":"Polygon","coordinates":[[[-75.185435479245626,40.009338762689822],[-75.18544379349791,40.009380580425834],[-75.185454388135653,40.009423633023573],[-75.185466638973395,40.009467570463606],[-75.185473679319685,40.009479401194149],[-75.185512675734358,40.009490086930775],[-75.186520338912345,40.009724290158239],[-75.186528396621171,40.009727460514405],[-75.186576585000694,40.009712247094328],[-75.186631329853483,40.009696176314726],[-75.186766456048218,40.009655485216619],[-75.186844518486069,40.009627948793565],[-75.187094973883902,40.009536328269249],[-75.187129469637696,40.009522720906972],[-75.187194763954167,40.009496820187699],[-75.187229806176717,40.009482920453479],[-75.187276832603274,40.009464056053496],[-75.18735970586566,40.009430740384346],[-75.187776717285232,40.009290596314159],[-75.187790601722483,40.009295851802996],[-75.18780974579947,40.009303098763894],[-75.187854171972248,40.009288113511282],[-75.188449112081344,40.009088193960132],[-75.188442741860854,40.009075887324272],[-75.188341594600203,40.008852081698052],[-75.186983141161349,40.008430426157247],[-75.187049414249984,40.008293002537329],[-75.186818505227947,40.008094410996073],[-75.186724871046948,40.008088725505282],[-75.186466217636593,40.008188067520692],[-75.186397559409144,40.008040570150094],[-75.186292200871065,40.008071698117426],[-75.185981099336615,40.008250965875568],[-75.185812322339814,40.008403267457531],[-75.185585507443122,40.008655777447537],[-75.18554927593172,40.008614806600299],[-75.185516469054647,40.008678066168443],[-75.185480275359041,40.008746520078766],[-75.185427830913625,40.008842278264162],[-75.185396076392919,40.008898486586553],[-75.185378290867163,40.008932766432068],[-75.185362440329754,40.008974941792125],[-75.185352816265095,40.009034485331199],[-75.185353070272683,40.009064516228939],[-75.185354963235426,40.009097686812439],[-75.185366071561035,40.009157069970534],[-75.185378207352429,40.009195520411268],[-75.185435479245626,40.009338762689822]]]},"properties":{"OBJECTID_1":226,"OBJECTID":169,"ASSET_NAME":"McDevitt Recreation Center","SITE_NAME":"McDevitt Recreation Center","CHILD_OF":"McDevitt Recreation Center","ADDRESS":"3500 CRAWFORD ST","TYPE":"Land","USE_":"Recreation Center","ACREAGE":7.2186979999999998,"ZIPCODE":"19129","ALLIAS":" ","GLOBALID":"8afb2b05-bb96-4958-9653-75f8c1af1956","Shape_Length":2388.354763695434,"Shape_Area":314445.17228685512}},{"type":"Feature","id":227,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.151555449478693,39.946170737941692],[-75.151535605261344,39.946176084666121],[-75.151514770808149,39.946185560858289],[-75.151501606266564,39.946194855798645],[-75.151490608235946,39.946205690106162],[-75.151482072398792,39.946217770440008],[-75.151476230316305,39.946230765965794],[-75.151367761841172,39.946726290251007],[-75.151281167022091,39.947133371159296],[-75.151280877116022,39.947134737747099],[-75.151253956989677,39.947261579955814],[-75.15119468870067,39.94752792056051],[-75.151178311518166,39.947601832378282],[-75.15117711954673,39.947609246002898],[-75.151175037572912,39.94762211586815],[-75.151177848342371,39.947642501174379],[-75.151185547795649,39.947659795011511],[-75.151194308150636,39.94767086790835],[-75.15121142340621,39.947684515095425],[-75.151218352100614,39.947688904166505],[-75.151232966878581,39.947695356812375],[-75.15124877369675,39.947699842503653],[-75.151284372569947,39.947704551334795],[-75.151642561395704,39.947748175789833],[-75.151642779294065,39.947748202350205],[-75.151927306453999,39.947783050034467],[-75.152631249860775,39.947869262560744],[-75.152750580259905,39.94780978784614],[-75.152750692684606,39.947809725518233],[-75.152994835540298,39.947673977784085],[-75.153107336985272,39.947611435103809],[-75.153193486275967,39.947563545509453],[-75.153209178845273,39.947550682801001],[-75.153217729398662,39.947541399442173],[-75.153227684152043,39.94752851676003],[-75.153236758163075,39.947512520035048],[-75.153243978391117,39.947491822167258],[-75.153250548243463,39.9474576627495],[-75.153274360701502,39.947324464286652],[-75.153364589443925,39.946904478899896],[-75.15343810695822,39.946566362100143],[-75.15345169958789,39.946501926988049],[-75.153451706880787,39.946501889310305],[-75.153453749831613,39.946492908234781],[-75.153457300320369,39.946477285626429],[-75.153456825252945,39.946459970779443],[-75.153450837277049,39.946440122710634],[-75.153436332865667,39.946420183670583],[-75.153413770212921,39.946402714816344],[-75.153389243323716,39.946391769028551],[-75.153242530320298,39.946372355510029],[-75.153242440603023,39.946372344468763],[-75.15246030597811,39.946275609483422],[-75.151621766003174,39.946171962708249],[-75.151599042799191,39.946169207120825],[-75.151573853150637,39.946168531074974],[-75.151555449478693,39.946170737941692]]],[[[-75.153170857920742,39.947669122960278],[-75.153155022081663,39.947677738615234],[-75.152822980223945,39.947858388321585],[-75.152806605118798,39.947867297166368],[-75.152797388511402,39.947873789372096],[-75.152794275404489,39.947882985879382],[-75.15280196177919,39.947891475431817],[-75.15288430043357,39.947902902245723],[-75.153067908191076,39.94792549229215],[-75.153092488969321,39.947928516685536],[-75.153109819963092,39.947930648919254],[-75.153119916107286,39.947930150365437],[-75.153129390553332,39.947927417622019],[-75.153137428773348,39.947922689039871],[-75.153143339741277,39.947916371553596],[-75.153147590814527,39.947904537384403],[-75.153150950174094,39.947889110482194],[-75.153195868828206,39.947675256580901],[-75.153187701974517,39.947668219434831],[-75.153178838823365,39.947666536605524],[-75.153170857920742,39.947669122960278]]]]},"properties":{"OBJECTID_1":227,"OBJECTID":170,"ASSET_NAME":"Washington Square","SITE_NAME":"Washington Square","CHILD_OF":"Washington Square","ADDRESS":"600 WALNUT ST","TYPE":"Land","USE_":"Park- Square\\Plaza","ACREAGE":7.188231,"ZIPCODE":"19106","ALLIAS":" ","GLOBALID":"312e8aa1-9303-4e47-90ba-39f9670481af","Shape_Length":2466.2898625438743,"Shape_Area":313118.08993003709}},{"type":"Feature","id":228,"geometry":{"type":"Polygon","coordinates":[[[-75.117940926958539,40.033335891154294],[-75.117925609219768,40.033346258745979],[-75.117918220547367,40.033359269658916],[-75.117910806271169,40.033385754862891],[-75.117815739913084,40.0338254728685],[-75.117812053681519,40.03384248179492],[-75.11763434070464,40.034671098653021],[-75.117624146534069,40.034718566348793],[-75.117630483365645,40.034741440926247],[-75.117648509065006,40.03475908983458],[-75.117686992978633,40.034763890423847],[-75.117731822806988,40.034769483377694],[-75.118118417551699,40.034817022255012],[-75.118118445259057,40.034817063436208],[-75.11835272223901,40.03484633236441],[-75.11934337435693,40.03497007277474],[-75.119745637906263,40.035021014986512],[-75.119749518655112,40.034996889641526],[-75.119958644324285,40.033615917932757],[-75.119962703617333,40.033585911158454],[-75.118779084806903,40.033434875159038],[-75.118775653317385,40.033434437033812],[-75.118357142597546,40.033380819486396],[-75.118152201717123,40.033354354533415],[-75.118014349840919,40.033338146832747],[-75.117976636311141,40.033334145181179],[-75.117940926958539,40.033335891154294]]]},"properties":{"OBJECTID_1":228,"OBJECTID":171,"ASSET_NAME":"Ziehler Playground","SITE_NAME":"Ziehler Playground","CHILD_OF":"Ziehler Playground","ADDRESS":"200-64 E OLNEY AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":7.1486770000000002,"ZIPCODE":"19120","ALLIAS":" ","GLOBALID":"45c1f909-f0f9-4781-b407-0ab817f74568","Shape_Length":2224.4871711052178,"Shape_Area":311395.10978897486}},{"type":"Feature","id":229,"geometry":{"type":"Polygon","coordinates":[[[-75.149598397908079,39.954964979783433],[-75.149565521957925,39.955105883201384],[-75.149467949444272,39.955538624079175],[-75.149425365233483,39.955750814242094],[-75.149345413384751,39.956105571044816],[-75.149310494761608,39.956273505594858],[-75.149309431489868,39.956278618212984],[-75.149314045034387,39.956279185024435],[-75.150034848069907,39.956367750761899],[-75.150402021042439,39.956412416020271],[-75.150680260352374,39.95644622428032],[-75.150943272859138,39.956477722666207],[-75.151252271946674,39.956474899813941],[-75.151344143958013,39.956041830303079],[-75.151385521177389,39.955861045226769],[-75.151399739348506,39.955789660465918],[-75.151407928424902,39.95574994426282],[-75.151470766827501,39.955445188214],[-75.15155174327154,39.955052460966861],[-75.151240320974978,39.955016387483937],[-75.1510986766705,39.954999980536797],[-75.151087919146676,39.954998733993726],[-75.150851655564267,39.954968823967825],[-75.150457785566843,39.954921590795905],[-75.15001815513655,39.95486938980212],[-75.149628073890554,39.954823221737371],[-75.149598397908079,39.954964979783433]]]},"properties":{"OBJECTID_1":229,"OBJECTID":172,"ASSET_NAME":"Franklin Square","SITE_NAME":"Franklin Square","CHILD_OF":"Franklin Square","ADDRESS":"200 N 06TH ST","TYPE":"Land","USE_":"Park- Square\\Plaza","ACREAGE":6.7632300000000001,"ZIPCODE":"19106","ALLIAS":" ","GLOBALID":"3dec6b21-8e63-47b0-8bc3-1d036510e262","Shape_Length":2158.6941819178792,"Shape_Area":294605.10086127388}},{"type":"Feature","id":230,"geometry":{"type":"Polygon","coordinates":[[[-74.990498968587175,40.066830913000871],[-74.990226269690652,40.067117597708091],[-74.990116687736375,40.06724035994516],[-74.990115939371506,40.067241198884574],[-74.989765361947704,40.067630002296141],[-74.989821441581469,40.067660926024189],[-74.989819857315041,40.06767060507034],[-74.989813360230642,40.067682300730965],[-74.989799333369163,40.067719396796413],[-74.989847446310122,40.067739540704366],[-74.98990422924237,40.067768776464682],[-74.990090232151061,40.06786454295888],[-74.990144068734608,40.067892983370101],[-74.990205171199008,40.067924903377723],[-74.990317432098792,40.067983554909631],[-74.990406443987553,40.068029915194884],[-74.990488288037596,40.06807283960817],[-74.990548414436802,40.06810402504334],[-74.990607482994307,40.068134865163849],[-74.990667630040022,40.068166583559886],[-74.990725914317053,40.068197129958158],[-74.990910002202156,40.068293842056569],[-74.991355640857648,40.068526120123771],[-74.992030423073714,40.068885062758447],[-74.992090216054621,40.068859439764026],[-74.992147361948341,40.06883035528881],[-74.992201411607653,40.068798558155635],[-74.992206485447582,40.06879529282206],[-74.992292780927642,40.06873974343673],[-74.992353632869268,40.068709789973092],[-74.992438600447883,40.068684214103726],[-74.992495883903771,40.068674066856801],[-74.99253704587629,40.068670150137855],[-74.992547062042192,40.068644870515683],[-74.992572904290981,40.06861199984472],[-74.992715400635859,40.06843919602715],[-74.992809051958986,40.068334174067708],[-74.992820008184609,40.068321886920046],[-74.992808817428482,40.068312390585284],[-74.992765959363808,40.068278523761613],[-74.992700522998973,40.068226814673942],[-74.992663836281864,40.068197334509762],[-74.99251493424569,40.068120028907039],[-74.99236262701703,40.068040956388742],[-74.992234017188878,40.067974186082353],[-74.992213900209023,40.067963741987555],[-74.992122934556804,40.06791651536588],[-74.991994565103397,40.067862275365002],[-74.991848844977952,40.067802452027074],[-74.991732704357275,40.067716352520286],[-74.991677365602641,40.067655335707855],[-74.991768293370612,40.067476879000459],[-74.991103366058113,40.06706156967207],[-74.990958566944627,40.066973599924651],[-74.990666649883835,40.066788785432571],[-74.990498968587175,40.066830913000871]]]},"properties":{"OBJECTID_1":230,"OBJECTID":173,"ASSET_NAME":"Mitchell Playground","SITE_NAME":"Mitchell Playground","CHILD_OF":"Mitchell Playground","ADDRESS":"3694 CHESTERFIELD RD","TYPE":"Land","USE_":"Recreation Site","ACREAGE":6.7111650000000003,"ZIPCODE":"19114","ALLIAS":" ","GLOBALID":"ccf27828-cf6a-4081-8696-003e2868cc20","Shape_Length":2389.357639158357,"Shape_Area":292337.15715279605}},{"type":"Feature","id":231,"geometry":{"type":"Polygon","coordinates":[[[-75.169801942574665,40.063703333687542],[-75.169778565894376,40.063713593859262],[-75.169757229066519,40.06373219274051],[-75.169747387637798,40.063741824302269],[-75.168947064546757,40.064523151347096],[-75.168947095530982,40.064523169162293],[-75.168315231032281,40.065135432256149],[-75.168311340836453,40.065139202082769],[-75.168280331207981,40.065169315452991],[-75.168260365633742,40.065204796504588],[-75.168276152637674,40.065226047471818],[-75.168338084428441,40.065250881465055],[-75.168384217656438,40.065267801890087],[-75.168454930820502,40.065293985504425],[-75.168542715692965,40.065328650895772],[-75.168594267950681,40.06535071881882],[-75.168690635396501,40.065393100349482],[-75.168764468963332,40.065426597096966],[-75.168822991021798,40.065454048249343],[-75.168906876105112,40.065496660070394],[-75.168983074338655,40.065535819485689],[-75.169070594816915,40.065584599171956],[-75.169123887827311,40.065615817876065],[-75.169210439400615,40.065665380291996],[-75.169300295706449,40.065722310547507],[-75.169377293890108,40.065772420527161],[-75.16943807752574,40.065814357246254],[-75.169480044582954,40.065843305858522],[-75.169525736189016,40.065877586487296],[-75.169573585444525,40.065914645614235],[-75.169614355028841,40.065931270282505],[-75.169642987518159,40.065923595120793],[-75.169661557907318,40.065905232359029],[-75.170282164994333,40.065267721527988],[-75.170284913249773,40.065264898190613],[-75.170796829479301,40.064738644941976],[-75.170797353007458,40.0647381070766],[-75.170816928138379,40.064717944849896],[-75.170819229398404,40.064693721468352],[-75.170794987794181,40.064664116129393],[-75.170732292787932,40.064598805538154],[-75.170729628469147,40.064596030085404],[-75.170059514057584,40.063902704005706],[-75.169885776899093,40.063720909096112],[-75.169855222603445,40.063701874815045],[-75.169835959505647,40.063700422318625],[-75.169801942574665,40.063703333687542]]]},"properties":{"OBJECTID_1":231,"OBJECTID":174,"ASSET_NAME":"Finley Recreation Center","SITE_NAME":"Finley Recreation Center","CHILD_OF":"Finley Recreation Center","ADDRESS":"7701 MANSFIELD AVE","TYPE":"Land","USE_":"Recreation Center","ACREAGE":6.6499579999999998,"ZIPCODE":"19150","ALLIAS":"Whitehall Commons","GLOBALID":"05a40dc3-13af-49f7-a6e4-5d5a6ec01019","Shape_Length":2195.3662229736583,"Shape_Area":289671.01564062422}},{"type":"Feature","id":232,"geometry":{"type":"Polygon","coordinates":[[[-75.175114990202871,39.961708552165511],[-75.175102604180637,39.961708529174281],[-75.175090888774108,39.961711603599205],[-75.17508547677987,39.96171447980916],[-75.175079962092383,39.961717408675888],[-75.175074815206031,39.961723701171017],[-75.175073413088541,39.96172541496604],[-75.175058095692407,39.961792291300881],[-75.175058036729709,39.96179254946945],[-75.175058019790598,39.961792625675429],[-75.175042407686561,39.961860789249826],[-75.174999085294274,39.962062184558889],[-75.174987010422257,39.962118978338701],[-75.174966512051725,39.962215375419099],[-75.174921731286759,39.962408155822558],[-75.174905481094058,39.962483786176861],[-75.174904373516668,39.962489467436178],[-75.174889255263665,39.962558772851651],[-75.174855914997138,39.962708894741354],[-75.174850515257418,39.962731431331143],[-75.174830460062196,39.962815261995139],[-75.174829364468337,39.962821553509052],[-75.174824757770423,39.962848003879962],[-75.174817268976966,39.962880613763204],[-75.174809798651651,39.962913106928845],[-75.174807607763668,39.962923828469243],[-75.174808982792428,39.962934630047023],[-75.17481395138087,39.962944782461534],[-75.174817741055563,39.962949091472076],[-75.174820510338279,39.962952240500812],[-75.17482164969185,39.962953536502567],[-75.174889249561872,39.963006160144239],[-75.174958586586925,39.963064854115878],[-75.174958732934513,39.963064978136259],[-75.174978293115899,39.963081536268483],[-75.17504912439307,39.963143072176905],[-75.175231581644098,39.963296281912754],[-75.175316279970616,39.963367257906029],[-75.175324991963706,39.963374540778126],[-75.175338807088735,39.96338567917288],[-75.175440998666545,39.963467948080073],[-75.175540214851097,39.963557455542599],[-75.175632731147331,39.963635439994704],[-75.175663877575545,39.963660753623842],[-75.175721021347968,39.963707193647203],[-75.175744241284079,39.963726866564031],[-75.175829082129439,39.963798744562844],[-75.17589549866338,39.963853777364591],[-75.175925106987393,39.963878310371491],[-75.176006401873224,39.963946345144919],[-75.176015614062138,39.963954368102328],[-75.176015687720493,39.963954432825702],[-75.176050451970411,39.963984708294056],[-75.176089361747415,39.964017507683494],[-75.176117774324382,39.964036765411436],[-75.176117816554822,39.964036794290237],[-75.176125896936455,39.964042270813465],[-75.176139696510489,39.964049437992209],[-75.17613974359125,39.964049462474698],[-75.176152147919595,39.964055905473117],[-75.176180281748444,39.96406688292889],[-75.176180316369141,39.964066896319707],[-75.176210312466168,39.964075017885804],[-75.176241345648037,39.964080182156877],[-75.17627249739796,39.964082247792405],[-75.176287210736206,39.964082449896495],[-75.176287412034242,39.964082452609944],[-75.176301925278665,39.96408265112467],[-75.176331472480996,39.964079966651376],[-75.17636024232516,39.964074218408548],[-75.176380066352678,39.964069084911934],[-75.176399054097601,39.964062473913451],[-75.176417210068308,39.964054390019648],[-75.176465457164113,39.964028644564635],[-75.176468885276591,39.964026645524257],[-75.1765120080603,39.964001370769147],[-75.17653698605649,39.963985677647706],[-75.176537083242891,39.963985615855641],[-75.176557708301459,39.963972657879467],[-75.176594470826785,39.963944345482716],[-75.176614883149085,39.963927389436051],[-75.176614915760481,39.963927363137117],[-75.176629477889776,39.963915265683362],[-75.176647134367457,39.963900242663307],[-75.176664512578611,39.963885455772058],[-75.176695206274246,39.963852501263986],[-75.176723269716817,39.963818287607566],[-75.176743592161515,39.963790038931293],[-75.176743663802867,39.963789940525658],[-75.176748699270604,39.96378294176602],[-75.176779172519673,39.963732217923329],[-75.176834416335012,39.963639955190459],[-75.176882101850111,39.963558817121893],[-75.176927883266316,39.963480834028246],[-75.176956509887319,39.96343174371367],[-75.176982188805539,39.963389837737864],[-75.176985670378599,39.963382994235019],[-75.176993757046205,39.963367096111284],[-75.177000905726686,39.963343532759147],[-75.177004495310868,39.963319399440124],[-75.177004513321236,39.963295118449601],[-75.177001410623802,39.963278293634644],[-75.177000072119498,39.963271032088642],[-75.176994809826468,39.963249859209419],[-75.176994787634072,39.963249765006388],[-75.176992329707232,39.9632398762311],[-75.176983164558365,39.963217069687893],[-75.176983046947726,39.963216774221166],[-75.176968683464679,39.963181030586853],[-75.176965676939702,39.963174064106674],[-75.176949817834128,39.963137310230444],[-75.176932379561279,39.963103019444972],[-75.176918608161657,39.963081230453305],[-75.176911333599421,39.963069720854229],[-75.176887564056258,39.963037691072536],[-75.176862854294797,39.963006928647374],[-75.176834515313416,39.962977758003333],[-75.176803432116159,39.962950370178675],[-75.176787678338158,39.962938259539456],[-75.176770487601473,39.962925042662505],[-75.176601382092542,39.962800831262598],[-75.176601072229403,39.962800603564332],[-75.176530895499809,39.96274905572988],[-75.176449305482564,39.962688867013725],[-75.176445734549716,39.962686045131989],[-75.176440642466304,39.962682021416441],[-75.176301258528142,39.962579342787905],[-75.176175030673321,39.962486354880312],[-75.175906815420475,39.962288826356307],[-75.175639527308874,39.962090416959562],[-75.175519740511234,39.962003224871076],[-75.175519485275601,39.96200303894112],[-75.175354733166287,39.961883117502637],[-75.175234446389467,39.961792731500324],[-75.17523433821718,39.961792650684586],[-75.175126574914032,39.961711675579274],[-75.175118352441871,39.961709432228602],[-75.175115094767435,39.961708542799066],[-75.175114990202871,39.961708552165511]]]},"properties":{"OBJECTID_1":232,"OBJECTID":175,"ASSET_NAME":"Von Colln Field","SITE_NAME":"Von Colln Field","CHILD_OF":"Benjamin Franklin Parkway","ADDRESS":"2250 PENNSYLVANIA AVE","TYPE":"Land","USE_":"Athletic","ACREAGE":6.5010469999999998,"ZIPCODE":"19130","ALLIAS":" ","GLOBALID":"d6e96f83-cd7b-4c7f-a878-d29c7d6e307a","Shape_Length":2219.960271194594,"Shape_Area":283184.4180701162}},{"type":"Feature","id":233,"geometry":{"type":"Polygon","coordinates":[[[-75.134017642846587,39.98183239850507],[-75.134003971083658,39.981837164140735],[-75.133991578784247,39.981843681700092],[-75.133980843681186,39.981851753459047],[-75.133972089070525,39.981861135401608],[-75.13396922709785,39.981874104394471],[-75.133673428608262,39.983214769891603],[-75.133663543642484,39.983259568777541],[-75.13366516411692,39.983275819669856],[-75.133669709140023,39.983291739880968],[-75.133686257379608,39.983314321096557],[-75.13371293925465,39.983331772222272],[-75.133733934639807,39.983340951144449],[-75.133742515332131,39.983343538975539],[-75.133773081503051,39.983349793293002],[-75.133802689806984,39.983353456943874],[-75.135285594699241,39.983542284446379],[-75.135313832708604,39.983545979556212],[-75.135331463877961,39.983545741511179],[-75.135365445306718,39.983538833549126],[-75.135380925526206,39.983532340234596],[-75.135405466874957,39.983517387291236],[-75.135415585778034,39.983501014634513],[-75.135421908639174,39.983490785181999],[-75.135428369687915,39.983476661945282],[-75.135433519557253,39.983458353311306],[-75.135716665702518,39.982130997711394],[-75.135719899303254,39.982116094538718],[-75.13571940611223,39.982101917393564],[-75.135715911874101,39.982087990848605],[-75.135709505121156,39.98207469264748],[-75.13570035723734,39.982062378093502],[-75.135688721357383,39.982051378222145],[-75.135673990501815,39.98204316049047],[-75.135657853735808,39.982036687550739],[-75.135640661715598,39.98203209984112],[-75.13561504328004,39.982028678015688],[-75.13408762990025,39.981832891848399],[-75.134062090768651,39.981829756204441],[-75.134047151215384,39.981828635382072],[-75.134017642846587,39.98183239850507]]]},"properties":{"OBJECTID_1":233,"OBJECTID":176,"ASSET_NAME":"Norris Square","SITE_NAME":"Norris Square","CHILD_OF":"Norris Square","ADDRESS":"2100-60 N HOWARD ST","TYPE":"Land","USE_":"Park- Square\\Plaza","ACREAGE":6.4006670000000003,"ZIPCODE":"19122","ALLIAS":" ","GLOBALID":"79baa211-8df9-4acd-8318-7281921ebaab","Shape_Length":2069.7257516266968,"Shape_Area":278811.8998823018}},{"type":"Feature","id":234,"geometry":{"type":"Polygon","coordinates":[[[-75.024565453090986,40.114002873268937],[-75.023935462887948,40.115535039228817],[-75.024097849994334,40.115616185712653],[-75.02443931827078,40.115780536104943],[-75.024611456854046,40.11586288160332],[-75.024775210535083,40.115943850436594],[-75.02494140324589,40.116024764196645],[-75.025107936958747,40.116105525400108],[-75.025165121392547,40.116132447850447],[-75.026255955096048,40.115061604630242],[-75.026317992752794,40.114992652379257],[-75.024595447675907,40.11398407371113],[-75.024565453090986,40.114002873268937]]]},"properties":{"OBJECTID_1":234,"OBJECTID":177,"ASSET_NAME":"Gifford Playground","SITE_NAME":"Gifford Playground","CHILD_OF":"Gifford Playground","ADDRESS":"575 TOMLINSON RD","TYPE":"Land","USE_":"Recreation Site","ACREAGE":6.4000510000000004,"ZIPCODE":"19116","ALLIAS":" ","GLOBALID":"42e0db5e-3de9-4372-a3c8-efbb798bf5e0","Shape_Length":2134.7647665983823,"Shape_Area":278785.04620974942}},{"type":"Feature","id":235,"geometry":{"type":"Polygon","coordinates":[[[-75.119929396685379,39.994212141063429],[-75.119890716197304,39.99420063523656],[-75.118173210271294,39.993982906827178],[-75.118116648327103,39.993978244586096],[-75.118089838845322,39.993982786461139],[-75.117785747851016,39.995363302014653],[-75.117788669607293,39.995386208316638],[-75.117839243587412,39.995404602032728],[-75.119598444594615,39.995633845656819],[-75.119631203493981,39.995631602219746],[-75.119649102289785,39.995617886939307],[-75.119646179861263,39.995594981585114],[-75.119935164220649,39.994290014008705],[-75.119938273438109,39.994235054896421],[-75.119929396685379,39.994212141063429]]]},"properties":{"OBJECTID_1":235,"OBJECTID":178,"ASSET_NAME":"McPherson Square","SITE_NAME":"McPherson Square","CHILD_OF":"McPherson Square","ADDRESS":"601 E INDIANA AVE","TYPE":"Land","USE_":"Park- Square\\Plaza","ACREAGE":6.3911300000000004,"ZIPCODE":"19134","ALLIAS":" ","GLOBALID":"781fd4aa-5746-4b00-9172-31cbca5e583f","Shape_Length":2092.648707580769,"Shape_Area":278396.56184225401}},{"type":"Feature","id":236,"geometry":{"type":"Polygon","coordinates":[[[-75.145282423834402,40.050864886406359],[-75.14526091858562,40.050906518759369],[-75.145278210154245,40.050908769617898],[-75.145291810747835,40.050910534933614],[-75.147539650907362,40.051202170972523],[-75.148125279702924,40.051277599901091],[-75.148133923152344,40.051237973351235],[-75.148260522588387,40.050684188697161],[-75.14827613021636,40.050640280540911],[-75.146958133352328,40.049903528039749],[-75.146951750358724,40.049899960437855],[-75.146429625806576,40.049607947619108],[-75.146404532699194,40.049639257868698],[-75.145946321180148,40.050339969020541],[-75.145659866232222,40.050300896385679],[-75.145282423834402,40.050864886406359]]]},"properties":{"OBJECTID_1":236,"OBJECTID":179,"ASSET_NAME":"Morris Estate Recreation Center","SITE_NAME":"Morris Estate Recreation Center","CHILD_OF":"Morris Estate Recreation Center","ADDRESS":"1610 CHELTEN AVE","TYPE":"Land","USE_":"Recreation Center","ACREAGE":6.381278,"ZIPCODE":"19141","ALLIAS":" ","GLOBALID":"a390f33f-e643-4ff6-a3da-53677a97b018","Shape_Length":2316.3551597382366,"Shape_Area":277967.40384336381}},{"type":"Feature","id":237,"geometry":{"type":"Polygon","coordinates":[[[-75.120683692433474,40.000485759482252],[-75.120675823355043,40.000522385366601],[-75.120671887276103,40.000540707734167],[-75.120672696928537,40.000556225774545],[-75.120684383941281,40.000568890712977],[-75.120693231672576,40.000572795691447],[-75.120703159910093,40.000574605296912],[-75.120730751627249,40.000578001616603],[-75.120778414179014,40.000583868721137],[-75.122406768752612,40.000795503041473],[-75.122436391260024,40.000799286019316],[-75.122453963785006,40.000801529937839],[-75.12247819320055,40.000804623617071],[-75.122488402513881,40.000804258110605],[-75.122498150642343,40.000801883567028],[-75.122506773937758,40.00079766500216],[-75.122520714882768,40.00077725413351],[-75.122541897299115,40.000689240879979],[-75.122724229566259,39.999831705864516],[-75.122748409017262,39.999724447638108],[-75.122755658151974,39.999690489810575],[-75.122757809133319,39.999690793129218],[-75.122762648922318,39.999668174560838],[-75.122809073700125,39.999451224301005],[-75.122811669564086,39.999439090998486],[-75.122815347937561,39.999421901573129],[-75.122817222883015,39.999413139637035],[-75.12281668999006,39.999408593467848],[-75.122815294272144,39.999402820174183],[-75.122811224886064,39.999395476468223],[-75.122807274499507,39.999391234121177],[-75.122801661635549,39.999386841097461],[-75.122798599343028,39.999384747303637],[-75.122791918228828,39.999382104856373],[-75.122781818548233,39.999379703133684],[-75.122739400843145,39.999374254222666],[-75.122700860540633,39.999369453577337],[-75.121140667453759,39.999168243448068],[-75.121069338406571,39.999158552929181],[-75.121044475140806,39.99915517411268],[-75.12100960543961,39.999150437134531],[-75.12099947157796,39.999150251901447],[-75.120980659497221,39.999155706582414],[-75.120967734367795,39.99916754922468],[-75.12096460154055,39.999174964122453],[-75.120961412441929,39.999191941249613],[-75.120954868737286,39.999226781028469],[-75.120683692433474,40.000485759482252]]]},"properties":{"OBJECTID_1":237,"OBJECTID":180,"ASSET_NAME":"McVeigh Recreation Center","SITE_NAME":"McVeigh Recreation Center","CHILD_OF":"McVeigh Recreation Center","ADDRESS":"400-64 E ONTARIO ST","TYPE":"Land","USE_":"Recreation Center","ACREAGE":6.3390519999999997,"ZIPCODE":"19134","ALLIAS":"McKinley Playground","GLOBALID":"4be4e4cd-2537-4133-b0f2-f800b683880a","Shape_Length":2084.5030833162468,"Shape_Area":276128.05623087526}},{"type":"Feature","id":238,"geometry":{"type":"Polygon","coordinates":[[[-75.224634802813227,39.951833271643906],[-75.224622818863068,39.951839587822406],[-75.224617259663873,39.951846221131269],[-75.224614546289644,39.951853835206954],[-75.224610812264942,39.95187070440069],[-75.224607662156572,39.951884934808767],[-75.22433175780094,39.95321449177375],[-75.22432865075811,39.953230048494213],[-75.224328420612466,39.95324294843725],[-75.224332379552607,39.953250299453423],[-75.224348022169195,39.953260396259935],[-75.224358114164602,39.953262120412511],[-75.224377011354306,39.953264502433903],[-75.224408491132195,39.953268470618816],[-75.226097176941423,39.953479218532685],[-75.226118055846854,39.953482053818497],[-75.226127233032344,39.953481523210868],[-75.226143557375522,39.953475197847197],[-75.226151100969744,39.953468563973559],[-75.226156120341827,39.953460641098658],[-75.226158261373186,39.953451980051099],[-75.226161120545839,39.953438294616916],[-75.226438210110757,39.95211087113978],[-75.226440439248663,39.952098858510212],[-75.226443289075945,39.952083498810346],[-75.226443111788299,39.952074056050023],[-75.22643917554025,39.95206511264378],[-75.22643185687987,39.95205753102131],[-75.226413286147476,39.952048919802351],[-75.226395016754566,39.952046064480903],[-75.226361941014872,39.952042085147298],[-75.224692302769128,39.951836086261061],[-75.224650438952708,39.951830935387477],[-75.224634802813227,39.951833271643906]]]},"properties":{"OBJECTID_1":238,"OBJECTID":181,"ASSET_NAME":"Malcolm X Memorial Park","SITE_NAME":"Malcolm X Memorial Park","CHILD_OF":"Malcolm X Memorial Park","ADDRESS":"5100 PINE ST","TYPE":"Land","USE_":"Park- Square\\Plaza","ACREAGE":6.2978209999999999,"ZIPCODE":"19143","ALLIAS":"Black Oak Park","GLOBALID":"70a4c573-1542-4708-a9d3-1a26e67792d2","Shape_Length":2077.2615724729885,"Shape_Area":274331.97466566705}},{"type":"Feature","id":239,"geometry":{"type":"Polygon","coordinates":[[[-75.106599338441669,40.001755278633524],[-75.106592585790807,40.001794355918285],[-75.106662082235289,40.001803055416929],[-75.108914386018313,40.002094278824998],[-75.109003955465852,40.002105560630234],[-75.109013883298587,40.002066566193776],[-75.10916069796896,40.001402538323461],[-75.109058022847762,40.001389294515874],[-75.109073917257135,40.00131747487881],[-75.109087086178818,40.001320002482153],[-75.109130767247976,40.001114717848381],[-75.109126997546085,40.001077474360891],[-75.109057245742704,40.001068695683649],[-75.109004341273902,40.001062755362916],[-75.108995052627165,40.001022128569559],[-75.108924420878239,40.000773301778388],[-75.108931339064597,40.000733274904519],[-75.108601916547258,40.000691467962078],[-75.108495560441639,40.000678159649397],[-75.1084753865712,40.000675635674668],[-75.1084525076174,40.000674493804766],[-75.108440542498997,40.000676954009471],[-75.108420615771152,40.000688043103779],[-75.108413834831012,40.000696017081282],[-75.108409753322903,40.000705012775569],[-75.108407472460812,40.000714823891805],[-75.108404392305616,40.000728074777733],[-75.108404330364408,40.000728341860039],[-75.108401815963077,40.000739156758499],[-75.10837258223593,40.000864912412332],[-75.108245880959004,40.000846007920835],[-75.108237503875358,40.000884103615107],[-75.108165883602638,40.00087595896688],[-75.108103600569962,40.000868125571252],[-75.108043369839848,40.00085975910924],[-75.107978349169414,40.000850621917792],[-75.107915723964041,40.000842941828921],[-75.107791016468042,40.000826547043857],[-75.107655715598369,40.000808763974113],[-75.107513489613453,40.000789894170751],[-75.107443869725842,40.000780658011656],[-75.107191121783828,40.000747934703618],[-75.107136197015464,40.001004480030936],[-75.107122368972824,40.001024637646857],[-75.107112716287034,40.001073545133188],[-75.106758342551004,40.001029754662312],[-75.10674880766463,40.001067263165865],[-75.106599338441669,40.001755278633524]]]},"properties":{"OBJECTID_1":239,"OBJECTID":182,"ASSET_NAME":"Scanlon Recreation Center","SITE_NAME":"Scanlon Recreation Center","CHILD_OF":"Scanlon Recreation Center","ADDRESS":"1099 E TIOGA ST","TYPE":"Land","USE_":"Recreation Center","ACREAGE":6.2792279999999998,"ZIPCODE":"19134","ALLIAS":"Webster Playground","GLOBALID":"1dd79f91-b28a-4be6-be49-1b8fea862706","Shape_Length":2314.9116524797873,"Shape_Area":273522.25720175146}},{"type":"Feature","id":240,"geometry":{"type":"Polygon","coordinates":[[[-75.183476509295375,39.967318817286198],[-75.183619254911903,39.96729579162767],[-75.183782555170737,39.967319096864813],[-75.18387993610969,39.967386756638334],[-75.183966439781713,39.967482536884155],[-75.18394979425905,39.967686977863529],[-75.183958154375318,39.967685510571727],[-75.184600129528889,39.967572830471212],[-75.184630677931835,39.967520004265026],[-75.184654665507551,39.967451883579002],[-75.184670789463112,39.967379338813075],[-75.184671460745705,39.96737579573113],[-75.18468304931578,39.96731460320823],[-75.184685605838027,39.967246904380488],[-75.184682309608462,39.967192419565116],[-75.184674346823513,39.967143366224398],[-75.184661416350082,39.967107718775175],[-75.184645169076049,39.967065389156609],[-75.184637463644208,39.967033119281979],[-75.184639583941248,39.966999887866201],[-75.184639653259168,39.966998796490337],[-75.184641180052623,39.966958366246502],[-75.184649368790986,39.966938798279905],[-75.184656872636793,39.966920870156258],[-75.184622555120043,39.966884486840698],[-75.184662330620455,39.966788276948506],[-75.184665762335015,39.966779977881131],[-75.184549305711499,39.966744890869883],[-75.184541530620905,39.966761753333714],[-75.184534454398076,39.966777225846684],[-75.184526941691232,39.966793651780137],[-75.184513882925074,39.966790241400133],[-75.184191214147205,39.966705970105274],[-75.184184999008608,39.966704347157581],[-75.184186604101995,39.966699922147292],[-75.184193072999292,39.966682084435455],[-75.184203923473859,39.966652161238571],[-75.183826548673764,39.966556055245526],[-75.183810656295805,39.966589003866481],[-75.183806158755004,39.966598329651312],[-75.183802346044232,39.966606234541395],[-75.183800524403765,39.966603341199622],[-75.183763625371938,39.966544735913239],[-75.183724123174827,39.96655110464323],[-75.183723879229831,39.96655009185713],[-75.183713326218907,39.966506236093977],[-75.183721550773541,39.966503890008013],[-75.183752112229129,39.966495174203295],[-75.183718838218795,39.966383977789647],[-75.183681162935315,39.966389227763223],[-75.183671828345638,39.966352889349302],[-75.183708647758166,39.966346675076231],[-75.183633304610936,39.96623891570291],[-75.18363273551445,39.9662369630977],[-75.183618299141031,39.966187387344135],[-75.18363289705718,39.966185108134454],[-75.183652101779828,39.96618211024122],[-75.183672153429768,39.96617897991802],[-75.183650407261297,39.966093061485481],[-75.183621851772685,39.965980244236675],[-75.18361469920373,39.965951984429722],[-75.183667534054507,39.965734364733287],[-75.18365058479165,39.965710642241838],[-75.183652241753606,39.965666781156656],[-75.183659565478976,39.965638281110586],[-75.18366020663386,39.965597658963873],[-75.183658925025739,39.965560726698214],[-75.183653035465085,39.96553542432855],[-75.183650480513322,39.965524449633897],[-75.183635633415363,39.965492320874887],[-75.183626320059076,39.965455424301354],[-75.183611109506003,39.96540929831523],[-75.183589306884997,39.965372336823997],[-75.183546706343122,39.965342675932241],[-75.183543266059658,39.965339112067632],[-75.183515794276531,39.965310659941139],[-75.183511040045317,39.965280599491287],[-75.183510032504032,39.965274228431831],[-75.183478622427288,39.965208129564594],[-75.183456861586592,39.965170096776596],[-75.183428967591055,39.965129050763608],[-75.183402830732206,39.96508873061952],[-75.183374492387969,39.965035830863819],[-75.183339174259899,39.964978742037559],[-75.183333226852412,39.964970285455031],[-75.183321390920398,39.964953456499202],[-75.183322642797208,39.964948773117939],[-75.183330742808238,39.964918478523686],[-75.183321985439221,39.964890519770961],[-75.183298684188756,39.964869615845899],[-75.183265974882588,39.964837945207407],[-75.183236058359711,39.964803205122188],[-75.183214057878615,39.964779114570121],[-75.183194931385529,39.964758172469004],[-75.183172158269457,39.964723293037423],[-75.18313992907153,39.964678888300661],[-75.183099902700576,39.964628345322318],[-75.183076543270374,39.964608985280762],[-75.182998209901925,39.964505724845161],[-75.182982201988636,39.96448462181889],[-75.182921324216224,39.964395642749807],[-75.182903307145963,39.964397776883992],[-75.18287830003581,39.964400766454155],[-75.182796796699932,39.964408890012301],[-75.182796568607159,39.964408914642085],[-75.182709966226454,39.964416345598949],[-75.182709846483405,39.96441635373175],[-75.182660886420479,39.964419318161532],[-75.182658542717604,39.964419459435902],[-75.182609288074403,39.964422441579494],[-75.182608910125978,39.964422465558741],[-75.182536467126241,39.964426941651602],[-75.18253334387019,39.964427013220551],[-75.182533273537118,39.964427015250763],[-75.182532003066811,39.964427046287874],[-75.182533470005325,39.964443814494985],[-75.182542049030729,39.964541886914176],[-75.182542328677442,39.96454508365229],[-75.182546957736008,39.964597993698192],[-75.182509646921289,39.964640840707304],[-75.182464364584234,39.964702392712681],[-75.182450390389661,39.964721388670135],[-75.182451462653745,39.964729049635757],[-75.18246725099084,39.964841872562765],[-75.182513605363752,39.964913841057907],[-75.18276225314996,39.96511048676377],[-75.182844886923462,39.965166918013772],[-75.18286319074538,39.965249200617592],[-75.182857625394874,39.965396475195448],[-75.182838129131682,39.965723533066289],[-75.182715466337683,39.96634852923475],[-75.182747144370694,39.966431111998972],[-75.182817022947262,39.966470908992214],[-75.182852685242366,39.966471706898091],[-75.18292394066097,39.9664514588206],[-75.183046976530449,39.966383237922791],[-75.183083669159117,39.966356767187214],[-75.183133593484996,39.96635788407351],[-75.183210626545701,39.966367348868161],[-75.183290222290196,39.966636634175082],[-75.183449200760592,39.967174477199627],[-75.183481005303037,39.96728207371946],[-75.183478715193218,39.967300785143124],[-75.183476509295375,39.967318817286198]]]},"properties":{"OBJECTID_1":240,"OBJECTID":183,"ASSET_NAME":"Water Works","SITE_NAME":"Water Works","CHILD_OF":"East Fairmount Park","ADDRESS":"650 WATER WORKS DR","TYPE":"Land","USE_":"Park- Regional/Watershed","ACREAGE":6.2465120000000001,"ZIPCODE":"19130","ALLIAS":" ","GLOBALID":"bde678bc-a9de-4f07-a700-2e10ec4d9b28","Shape_Length":3360.8905770775768,"Shape_Area":272097.05053911306}},{"type":"Feature","id":241,"geometry":{"type":"Polygon","coordinates":[[[-75.025004520308713,40.060892409864536],[-75.025533457816081,40.061200280873926],[-75.025569459654491,40.0612073842847],[-75.025671047643783,40.061240333493664],[-75.02565275715007,40.061275526636685],[-75.025670718223864,40.061280947069683],[-75.026031295841562,40.06149294017348],[-75.026647082502748,40.061837891531503],[-75.027608928685297,40.060932128817804],[-75.02798844123771,40.061151939471543],[-75.027965561915806,40.060889698663431],[-75.027944157115357,40.060882133587626],[-75.026683880717655,40.060174479534396],[-75.026216592061772,40.060159599143226],[-75.02638921856196,40.060257142618852],[-75.026458716676501,40.060294947628982],[-75.026011434335004,40.060731093643753],[-75.025079332162662,40.06021097844414],[-75.025031988178327,40.060180191025196],[-75.024878396594502,40.060332473165303],[-75.024897437930662,40.060355102484188],[-75.024912610114768,40.060844803241444],[-75.025004520308713,40.060892409864536]]]},"properties":{"OBJECTID_1":241,"OBJECTID":184,"ASSET_NAME":"McArdle Recreation Center","SITE_NAME":"McArdle Recreation Center","CHILD_OF":"McArdle Recreation Center","ADDRESS":"8930 ASHTON RD","TYPE":"Land","USE_":"Recreation Center","ACREAGE":6.1368320000000001,"ZIPCODE":"19152","ALLIAS":" ","GLOBALID":"7c652df2-a86b-4569-b738-74475bc240fa","Shape_Length":2731.0197100027831,"Shape_Area":267319.29046984063}},{"type":"Feature","id":242,"geometry":{"type":"Polygon","coordinates":[[[-75.095865391137011,40.011661134736435],[-75.095854582383311,40.011674506731147],[-75.095851198147599,40.011691143614449],[-75.095574979734167,40.012977638192986],[-75.095571641219564,40.012992832667699],[-75.09556727209322,40.013022696508408],[-75.095575836086411,40.013038059835353],[-75.095603394870537,40.013050852838965],[-75.09563972832369,40.01305558078716],[-75.095680085189969,40.013060833333597],[-75.097199771862535,40.013258677988958],[-75.097262577147717,40.013266935494656],[-75.097306427345302,40.013272699770361],[-75.097328218389578,40.013271140754966],[-75.097353603114342,40.013255584282049],[-75.097361340751561,40.01323362911387],[-75.097368017651434,40.013202953546383],[-75.097373645910878,40.013176742709753],[-75.097645430083347,40.011911020938349],[-75.097630902062647,40.011884212902416],[-75.097620668293331,40.011878198147137],[-75.097608758023839,40.011874424280379],[-75.097557803444246,40.011868048158874],[-75.095936874510116,40.011656467325516],[-75.095922227282884,40.011654456411996],[-75.095893034269864,40.011651496542562],[-75.095865391137011,40.011661134736435]]]},"properties":{"OBJECTID_1":242,"OBJECTID":185,"ASSET_NAME":"Piccoli Playground","SITE_NAME":"Piccoli Playground","CHILD_OF":"Piccoli Playground","ADDRESS":"1501 E BRISTOL ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":6.0283949999999997,"ZIPCODE":"19124","ALLIAS":" ","GLOBALID":"cce07b5a-d1de-43b4-b95d-775a691e35f9","Shape_Length":2027.9056849079395,"Shape_Area":262595.79214005556}},{"type":"Feature","id":243,"geometry":{"type":"Polygon","coordinates":[[[-75.052449876373004,40.039169797033693],[-75.052540756294306,40.039224379594941],[-75.052427281383856,40.039348068576146],[-75.052975865052161,40.039699290277085],[-75.052195385895018,40.040535636988594],[-75.052177391139196,40.040552883891024],[-75.052464172699047,40.040712218170782],[-75.052490089672318,40.040726618273432],[-75.052873489722231,40.04093962981657],[-75.053147501414074,40.041092611018037],[-75.053575885942735,40.041332148015101],[-75.053600077886131,40.041313325375761],[-75.053659477639272,40.041254122507219],[-75.053739076200984,40.041173826277323],[-75.053817341972348,40.041095351265568],[-75.053855759759614,40.041056967367858],[-75.053895209857444,40.04101844730269],[-75.053935657706035,40.040978595468694],[-75.053970635234876,40.040942261762666],[-75.054013219279128,40.040899362242115],[-75.054052558591536,40.040860999913043],[-75.054085680529795,40.040828406120617],[-75.054133439877333,40.040781087648909],[-75.054174047792202,40.040741950420497],[-75.054214465933384,40.040702306841339],[-75.054255217016873,40.040664402876423],[-75.054278528562705,40.040639549453736],[-75.054291987052565,40.040625167426683],[-75.054335356425966,40.040583499937625],[-75.054376099105951,40.040542026686261],[-75.054403278789039,40.040513228227617],[-75.054436406848325,40.040482773571981],[-75.05445586348128,40.040463828823391],[-75.054491661131919,40.040426431157925],[-75.054531132263847,40.040385267710576],[-75.054568864817668,40.040345609649101],[-75.054629576375859,40.040281375916287],[-75.054730066071258,40.040182702255279],[-75.054588638310861,40.040104160437963],[-75.052605149824558,40.039008945588691],[-75.052449876373004,40.039169797033693]]]},"properties":{"OBJECTID_1":243,"OBJECTID":186,"ASSET_NAME":"Mayfair Playground","SITE_NAME":"Mayfair Playground","CHILD_OF":"Mayfair Playground","ADDRESS":"2901 PRINCETON AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":6.6554279999999997,"ZIPCODE":"19149","ALLIAS":" ","GLOBALID":"2de2c100-a411-427c-bc6d-a24c825d47d7","Shape_Length":2488.6815382039313,"Shape_Area":289909.35114792449}},{"type":"Feature","id":244,"geometry":{"type":"Polygon","coordinates":[[[-75.177366248839206,40.050760602271367],[-75.176933208244122,40.051195300993022],[-75.17691162384277,40.051216503961165],[-75.175961540999452,40.052159087683641],[-75.175943116688273,40.052177979015354],[-75.175920957934977,40.052208834075856],[-75.17592755301132,40.052234977784487],[-75.175945711903452,40.05224796004368],[-75.175956366992679,40.05225544379833],[-75.17599807080839,40.052281538890099],[-75.176808776506462,40.052781168068272],[-75.176864859730372,40.052815712005405],[-75.176889501359071,40.052830027735723],[-75.17692222305655,40.052832641913767],[-75.17695199913706,40.05281857188811],[-75.176957476452671,40.052813049736059],[-75.177134040054369,40.05263503522373],[-75.177157759880643,40.05261145180863],[-75.178306240404112,40.051469541948656],[-75.178432713455564,40.051344185524449],[-75.178435683259067,40.051340565972254],[-75.178450605004031,40.051322374330965],[-75.178456267376333,40.051304106072251],[-75.178453501633371,40.051292504937585],[-75.178441362992501,40.051279770463893],[-75.178417158389578,40.051265128766055],[-75.178143240079876,40.05109944709546],[-75.177597042908403,40.050763415141603],[-75.177597007981078,40.05076343958779],[-75.177480652485841,40.050691794267074],[-75.177453472939305,40.050684690260375],[-75.177437549834096,40.050689554142934],[-75.177428086849048,40.050697787399855],[-75.177366248839206,40.050760602271367]]]},"properties":{"OBJECTID_1":244,"OBJECTID":187,"ASSET_NAME":"Cliveden Park","SITE_NAME":"Cliveden Park","CHILD_OF":"Cliveden Park","ADDRESS":"501 E JOHNSON ST","TYPE":"Land","USE_":"Park- Neighborhood","ACREAGE":5.9711299999999996,"ZIPCODE":"19119","ALLIAS":" ","GLOBALID":"3b6c706b-cc90-41e4-87f5-3eee372bd632","Shape_Length":2133.5233857608259,"Shape_Area":260101.44171509036}},{"type":"Feature","id":245,"geometry":{"type":"Polygon","coordinates":[[[-75.123127071719438,40.048171803523559],[-75.123097958160585,40.048338907931729],[-75.122944301332709,40.049208633468645],[-75.12288775149905,40.049522486743122],[-75.122882537705323,40.049551282338243],[-75.122881955072074,40.049566238661299],[-75.122893138096444,40.049578915947087],[-75.12290659993883,40.049585184086922],[-75.122921999645627,40.049589427785016],[-75.122936035702821,40.049591282311539],[-75.122951164721002,40.049593281666787],[-75.123627638101524,40.049682494672716],[-75.124531236931148,40.049796462232692],[-75.124543236656066,40.049794890275294],[-75.124559587794451,40.04978794223161],[-75.124565819600164,40.049779874508289],[-75.124575739181495,40.04975894783265],[-75.12458542769285,40.049728479421105],[-75.124591928536248,40.049705368916499],[-75.124676913197021,40.049321050469345],[-75.12468598070808,40.049279933955951],[-75.124857644343763,40.048501454978222],[-75.124860273533258,40.048489529618564],[-75.12488171382968,40.048391339251879],[-75.124829900162013,40.048384677877664],[-75.12474248887338,40.048375071150801],[-75.124685528236441,40.048367837069755],[-75.124625976509591,40.048359786882216],[-75.124570180455478,40.048352240573074],[-75.124515719365604,40.048344886931595],[-75.124456229618445,40.04833741743122],[-75.124401091651634,40.048330741153244],[-75.124342280663967,40.048323061850525],[-75.124286055983617,40.048315747080018],[-75.124228574412555,40.048307889066812],[-75.124172554366041,40.048301224953015],[-75.124114711957077,40.048292906319354],[-75.124057086941988,40.048286059495602],[-75.123998544654484,40.048278467249631],[-75.123941448514543,40.048270890912811],[-75.123882613410132,40.048263291913436],[-75.123825669108854,40.048256155086143],[-75.123767538736757,40.048248281106723],[-75.123710014502691,40.048240952560299],[-75.123648764466978,40.048232894570404],[-75.12358929604639,40.048225393568401],[-75.123529493337386,40.048217836236894],[-75.123472593162461,40.048210651586359],[-75.123419483966103,40.048203633777433],[-75.123364995693095,40.048196988070856],[-75.123311544145409,40.048190092131414],[-75.123257075293182,40.048182430459882],[-75.123229518114741,40.048179274761445],[-75.123171850830687,40.048171131748497],[-75.123127071719438,40.048171803523559]]]},"properties":{"OBJECTID_1":245,"OBJECTID":188,"ASSET_NAME":"Sturgis Playground","SITE_NAME":"Sturgis Playground","CHILD_OF":"Sturgis Playground","ADDRESS":"200-20 W 65TH AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":5.8501060000000003,"ZIPCODE":"19126","ALLIAS":" ","GLOBALID":"b3861ec4-d48c-4759-b09b-cc4aae30e914","Shape_Length":2007.6121640668043,"Shape_Area":254829.57312524389}},{"type":"Feature","id":246,"geometry":{"type":"Polygon","coordinates":[[[-75.236169341974872,40.067791528335796],[-75.23687660929977,40.068403770885851],[-75.237109634405556,40.068608987805334],[-75.238668966755,40.068168650426045],[-75.238538646370145,40.067888999904277],[-75.238498679230858,40.067900314101536],[-75.23844482142178,40.067913369937486],[-75.238099521360255,40.067305537224961],[-75.238093020933064,40.067294078682281],[-75.23806872368155,40.067272044502893],[-75.238039392232537,40.067256782940916],[-75.238011186530571,40.06725358772519],[-75.237953221085689,40.067255753348732],[-75.237924723657514,40.067252550833359],[-75.237896693553353,40.067245184235539],[-75.237868801190629,40.067234130182676],[-75.237839929397197,40.067214944890182],[-75.23781414724651,40.06718994456503],[-75.237795942574152,40.067159193986242],[-75.23778994703045,40.067126758776439],[-75.237792534644868,40.067095963610583],[-75.23780260188984,40.067068297127058],[-75.237804098036705,40.067064154643298],[-75.237822405844,40.067040602040883],[-75.237848680031959,40.067017705625091],[-75.237879889784907,40.066999850929392],[-75.237913176424328,40.066986490722613],[-75.235850329832871,40.067515370700363],[-75.236169341974872,40.067791528335796]]]},"properties":{"OBJECTID_1":246,"OBJECTID":189,"ASSET_NAME":"Old Line Park","SITE_NAME":"Old Line Park","CHILD_OF":"Old Line Park","ADDRESS":"8730 OLD LINE RD","TYPE":"Land","USE_":"Park- Neighborhood","ACREAGE":5.810511,"ZIPCODE":"19128","ALLIAS":" ","GLOBALID":"68f8af82-5413-448a-aaea-2d2d50eff696","Shape_Length":2169.7460255454735,"Shape_Area":253104.91459347648}},{"type":"Feature","id":247,"geometry":{"type":"Polygon","coordinates":[[[-75.135149753172342,40.031381975354279],[-75.135482961696937,40.031423429900052],[-75.135532091568635,40.031426726105266],[-75.135625491233284,40.031438291390415],[-75.13620752827228,40.031514042331736],[-75.136323250806129,40.030997048905313],[-75.136331195354245,40.030963904476017],[-75.1363507053468,40.030872042295677],[-75.13640125028212,40.030878394173435],[-75.136408742141299,40.030838680892884],[-75.13649033648197,40.030469976783117],[-75.136494655986624,40.03045045801202],[-75.136625980733996,40.029857036041825],[-75.136351844136868,40.029820056473802],[-75.136440217700084,40.029419615882773],[-75.136449858165562,40.029386528063419],[-75.135476731519319,40.029257897094411],[-75.135471889352047,40.029301017949003],[-75.135435955344121,40.029620946997248],[-75.135428627085247,40.029711075294806],[-75.135359191411652,40.029708010510547],[-75.135301139580889,40.02970544813909],[-75.135286742081604,40.029853263875999],[-75.135209581781552,40.030692871758106],[-75.135149753172342,40.031381975354279]]]},"properties":{"OBJECTID_1":247,"OBJECTID":190,"ASSET_NAME":"Barrett Playground","SITE_NAME":"Barrett Playground","CHILD_OF":"Barrett Playground","ADDRESS":"641 LINDLEY AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":5.7953020000000004,"ZIPCODE":"19120","ALLIAS":"Lindley Playground","GLOBALID":"dfc60caf-9e91-4b1b-9679-3f2045739107","Shape_Length":2257.4779134030664,"Shape_Area":252442.52553463393}},{"type":"Feature","id":248,"geometry":{"type":"Polygon","coordinates":[[[-75.241285175208375,39.925226147708152],[-75.24123520034037,39.925183271645231],[-75.23818574897372,39.926750670606978],[-75.23824592756236,39.926801250676021],[-75.238292738586622,39.926841781942016],[-75.238232631280994,39.926879434344933],[-75.238266688499948,39.926907715639402],[-75.238810306083025,39.927370394744365],[-75.238859855371231,39.927413738266907],[-75.238871928400528,39.927420157340109],[-75.238888586169992,39.927423166529884],[-75.238901029448144,39.927423016441935],[-75.238913202303209,39.92742103141066],[-75.238924658430406,39.927417286356743],[-75.238934965634456,39.927411917777732],[-75.238967438803471,39.92738888041545],[-75.239080190422669,39.927308890203882],[-75.240674615033541,39.926187518943458],[-75.240741847810142,39.926140276063634],[-75.241560911400938,39.925564307114108],[-75.241576289768048,39.925553489202649],[-75.241593146787153,39.925540561069418],[-75.241600364484157,39.925531343205336],[-75.241604601940892,39.925519863524507],[-75.241604565474233,39.925513494497451],[-75.241602328746453,39.925503198558999],[-75.241595718342097,39.925492059122142],[-75.241575236534089,39.925474241713495],[-75.241344424982543,39.925276647246925],[-75.241285175208375,39.925226147708152]]]},"properties":{"OBJECTID_1":248,"OBJECTID":191,"ASSET_NAME":"McCreesh Playground","SITE_NAME":"McCreesh Playground","CHILD_OF":"McCreesh Playground","ADDRESS":"6744 REGENT ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":5.7778960000000001,"ZIPCODE":"19142","ALLIAS":" ","GLOBALID":"d4319b59-2cdc-4077-b47a-51e55c87b4d4","Shape_Length":2560.3710356243532,"Shape_Area":251684.06668817901}},{"type":"Feature","id":249,"geometry":{"type":"Polygon","coordinates":[[[-75.226425557548566,39.982072668644214],[-75.225891906373946,39.982097523504351],[-75.225997955395968,39.982584753981421],[-75.226173805503137,39.982992702508263],[-75.226074537286095,39.984121948432367],[-75.225664702915154,39.985383955626027],[-75.226237763224745,39.985556536716686],[-75.226303752422197,39.985391999644676],[-75.226571920098493,39.984723420870509],[-75.226657962715905,39.984508902001203],[-75.226875412476943,39.983765641095232],[-75.226918196469967,39.983413593330312],[-75.226928519795052,39.982733762602237],[-75.226460360019885,39.982115741153216],[-75.226427657683544,39.982072570663917],[-75.226425557548566,39.982072668644214]]]},"properties":{"OBJECTID_1":249,"OBJECTID":192,"ASSET_NAME":"Parkside-Evans Recreation Center","SITE_NAME":"Parkside-Evans Recreation Center","CHILD_OF":"West Fairmount Park","ADDRESS":"5301 PARKSIDE AVE","TYPE":"Land","USE_":"Recreation Center","ACREAGE":5.7447730000000004,"ZIPCODE":"19131","ALLIAS":" ","GLOBALID":"6262ab40-934b-4c15-b61e-bf9cf27f3ece","Shape_Length":2877.7057862281499,"Shape_Area":250241.34923026271}},{"type":"Feature","id":250,"geometry":{"type":"Polygon","coordinates":[[[-75.237348306446378,39.970217695598706],[-75.237306659203895,39.970222697757329],[-75.235852875886778,39.970384435551068],[-75.235818766880229,39.970388029201601],[-75.23579811148457,39.970390205731292],[-75.23578522559184,39.970400709205677],[-75.235772839566053,39.970410805569415],[-75.235775298156554,39.970422400289301],[-75.235781122298903,39.970449876715413],[-75.236027103996108,39.971759870367521],[-75.236031495924564,39.971784663768574],[-75.236035926497124,39.971809678759875],[-75.236049380856812,39.971822361304788],[-75.236069965699215,39.971826500953661],[-75.236085726871252,39.971824727107261],[-75.236117864305328,39.971821108189573],[-75.237587625077452,39.971658319668983],[-75.237623578107986,39.971654401853087],[-75.237645778012208,39.971651983099399],[-75.237655385207574,39.97164805787569],[-75.237669367033973,39.971635404086946],[-75.237673667053997,39.971619130760651],[-75.237665290707113,39.97157863145506],[-75.237418518451761,39.970263439448246],[-75.237415718289256,39.970248598213509],[-75.237411857896618,39.970228134079676],[-75.23740681652292,39.97022221767849],[-75.237391449687095,39.970214702965833],[-75.237348306446378,39.970217695598706]]]},"properties":{"OBJECTID_1":250,"OBJECTID":193,"ASSET_NAME":"Carroll Park","SITE_NAME":"Carroll Park","CHILD_OF":"Cobbs Creek Park","ADDRESS":"5801 W GIRARD AVE","TYPE":"Land","USE_":"Park- Square\\Plaza","ACREAGE":5.6289239999999996,"ZIPCODE":"19131","ALLIAS":" ","GLOBALID":"d9327bd1-3399-4977-b290-479167f2947e","Shape_Length":1969.3443864107144,"Shape_Area":245194.90878562853}},{"type":"Feature","id":251,"geometry":{"type":"Polygon","coordinates":[[[-75.245669708712896,39.908325942489732],[-75.246107590951965,39.907839530911247],[-75.246694245297959,39.908144310308423],[-75.246085217061605,39.908821634121878],[-75.245882990922752,39.909048611181959],[-75.245859712449771,39.909088439293775],[-75.246622280604228,39.90949802554411],[-75.246666370023974,39.909496650195315],[-75.246723016101626,39.90944292289366],[-75.246985990964689,39.909146949113364],[-75.247345267457135,39.908741028679536],[-75.247301899101316,39.90871974562809],[-75.24671917311926,39.908407587855059],[-75.246602578539338,39.908346349389539],[-75.246991861687732,39.907914571818694],[-75.245771646553521,39.907256474408726],[-75.245462513392795,39.907087001793307],[-75.24543525207261,39.907080386676121],[-75.245416815986204,39.907079983898704],[-75.245400509637093,39.907084364171141],[-75.245385456025232,39.907096468999114],[-75.245322111726011,39.907167316821401],[-75.245367568631323,39.907190710463489],[-75.24565676477188,39.907347712332829],[-75.24555562552986,39.907460272350612],[-75.245265229327657,39.907304017965679],[-75.245218087193521,39.90727812865169],[-75.245066468527313,39.907449587895876],[-75.245114013539833,39.907472450625882],[-75.245403316033631,39.907630584389388],[-75.245252295739817,39.907798844916059],[-75.244961630076503,39.907641372956171],[-75.244918280705036,39.90761370674651],[-75.244713063370767,39.907841839039278],[-75.244759445794315,39.907866030700156],[-75.245049990687505,39.908023682523378],[-75.244898118119821,39.908192608754121],[-75.24469551173803,39.908418542919321],[-75.244671962116612,39.908445427504986],[-75.245073910902107,39.908664723410048],[-75.245122940359934,39.908618830387034],[-75.245474965776737,39.908241783605888],[-75.245669708712896,39.908325942489732]]]},"properties":{"OBJECTID_1":251,"OBJECTID":194,"ASSET_NAME":"Clearview Park","SITE_NAME":"Clearview Park","CHILD_OF":"Clearview Park","ADDRESS":"7600 BUIST AVE","TYPE":"Land","USE_":"Park- Mini","ACREAGE":5.5944789999999998,"ZIPCODE":"19153","ALLIAS":" ","GLOBALID":"96def150-5547-4655-9919-c1de631703e3","Shape_Length":3918.7135606282136,"Shape_Area":243694.53624577398}},{"type":"Feature","id":252,"geometry":{"type":"Polygon","coordinates":[[[-75.136375141849584,40.000659551348271],[-75.136376698583348,40.000746635614853],[-75.136370813048828,40.000815102874903],[-75.136364042976595,40.00089385680868],[-75.136352626770787,40.001026653795961],[-75.136399943437837,40.001032899349752],[-75.137223595365782,40.001141615899975],[-75.137212427298238,40.001174357200533],[-75.137276097528016,40.001182542378281],[-75.138065653237206,40.001284041686681],[-75.138091682613975,40.001287388349724],[-75.138107499785363,40.00128456851612],[-75.138116790007686,40.001281931754605],[-75.138124920506286,40.001277585494535],[-75.138131369866656,40.001271805299261],[-75.13813572537839,40.001264964714011],[-75.138136914746283,40.00125975142258],[-75.138137113352883,40.001258882849633],[-75.138169535381181,40.001116756948385],[-75.138383445422448,40.000139622585188],[-75.138428018996493,39.999932132628388],[-75.138433180880028,39.999907522376276],[-75.138444917519024,39.99985157093294],[-75.13844176918866,39.99984280713673],[-75.138428830103408,39.999827707158012],[-75.138419608333678,39.999822020942659],[-75.138397622181273,39.999815608238954],[-75.138360549924158,39.999810562456709],[-75.138308043405289,39.99980341663148],[-75.137584626080596,39.999708871344808],[-75.137330973006428,39.999675806578153],[-75.137316190791523,39.999753460948156],[-75.137334954391051,39.999809000915846],[-75.137340837965411,39.999826417358115],[-75.137462373030672,40.000183660479742],[-75.137411106908829,40.000181601725949],[-75.137274886563688,40.000176132651568],[-75.136378008114846,40.00014012043755],[-75.136332346368818,40.000138287011147],[-75.136375141849584,40.000659551348271]]]},"properties":{"OBJECTID_1":252,"OBJECTID":195,"ASSET_NAME":"Rivera Recreation Center","SITE_NAME":"Rivera Recreation Center","CHILD_OF":"Rivera Recreation Center","ADDRESS":"3201 N 05TH ST","TYPE":"Land","USE_":"Recreation Center","ACREAGE":5.4793260000000004,"ZIPCODE":"19140","ALLIAS":"Mann Recreation Center","GLOBALID":"ba6320e1-208e-494a-aef8-72f4dd1f561a","Shape_Length":2202.1577716205211,"Shape_Area":238678.53429868337}},{"type":"Feature","id":253,"geometry":{"type":"Polygon","coordinates":[[[-75.053626822214724,40.026495259907698],[-75.05364009153655,40.026510590143708],[-75.053656005632021,40.026521597975069],[-75.053673524017753,40.026526387493284],[-75.053700940272876,40.026523186436478],[-75.053718355793762,40.026513748682291],[-75.053739619866107,40.026502759575479],[-75.054780170557606,40.025964990466321],[-75.05478021707421,40.02596499966748],[-75.05524323600126,40.025726854012852],[-75.055285262833138,40.025705491519901],[-75.055295120644587,40.025699505609843],[-75.055307370954509,40.0256777173975],[-75.055292910158258,40.025642797650043],[-75.055275383761426,40.025624250087617],[-75.055258239771874,40.025606107956889],[-75.055239875994232,40.025585035825365],[-75.05496168146972,40.025266301402105],[-75.054899284615658,40.025193335246129],[-75.054890427530012,40.025182975268208],[-75.05454796269278,40.024790326726247],[-75.054525926569752,40.024766471433161],[-75.054502858817671,40.024741324145431],[-75.054489952938212,40.02473142504337],[-75.054466635098805,40.02472659321711],[-75.054441678777849,40.024733329327127],[-75.054414583419643,40.024747415529681],[-75.053992879764124,40.024965384643323],[-75.053992747805339,40.024965372534822],[-75.052922577776343,40.02551727083592],[-75.052914287998092,40.025521545339913],[-75.052892542323406,40.025532801403209],[-75.052870143779074,40.025545267554875],[-75.052857979654902,40.025552037969483],[-75.052843189296155,40.025566350649925],[-75.052838382034452,40.025581793445426],[-75.052842263649325,40.025598904521324],[-75.052851746543169,40.025608846858063],[-75.053070578402043,40.025854799689938],[-75.053626822214724,40.026495259907698]]]},"properties":{"OBJECTID_1":253,"OBJECTID":196,"ASSET_NAME":"Roosevelt Playground","SITE_NAME":"Roosevelt Playground","CHILD_OF":"Roosevelt Playground","ADDRESS":"4301 LEVICK ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":5.4634650000000002,"ZIPCODE":"19135","ALLIAS":" ","GLOBALID":"092f4df1-86b2-44fd-90ed-82ae6aaa16ab","Shape_Length":1947.7141467525635,"Shape_Area":237987.56955589043}},{"type":"Feature","id":254,"geometry":{"type":"Polygon","coordinates":[[[-75.136067308275898,40.037251763442733],[-75.136060577100395,40.037263062252215],[-75.135901915679611,40.037529357167408],[-75.135895351141201,40.037540375938718],[-75.135785913268975,40.037724307645654],[-75.135842079218179,40.037745269725548],[-75.135791025536449,40.037847021654429],[-75.135781337545438,40.037866332622386],[-75.135713890337868,40.038000758208682],[-75.135615166587684,40.038204862458528],[-75.135596783726982,40.038245176568317],[-75.135566735879493,40.038321304811177],[-75.13546000793967,40.038566402593261],[-75.135469523578095,40.038567604013551],[-75.135509800244904,40.038572689846148],[-75.135542756092164,40.038576868386833],[-75.135972124001398,40.038631304590105],[-75.135997401968396,40.038634503649774],[-75.136750194059232,40.038729768171621],[-75.136747207909522,40.038746765595604],[-75.136745631423182,40.038755740852658],[-75.137202699799886,40.038817613460985],[-75.137200239354954,40.038831890052293],[-75.137226375925252,40.038835230908724],[-75.137233768206514,40.038794673760428],[-75.137245330257073,40.038744401132689],[-75.13725475124842,40.038699592254936],[-75.137264467319056,40.038655887533864],[-75.137274167960356,40.038612552781295],[-75.137283238386701,40.038568718942699],[-75.137293571138628,40.038525285038673],[-75.13730198157289,40.038481694779598],[-75.137312334741864,40.038437760370314],[-75.137321738879365,40.038393935021283],[-75.137331409623428,40.038350857277315],[-75.137341154154399,40.038306410756348],[-75.137349885908776,40.038263181004218],[-75.137359890374697,40.038220111750434],[-75.137368940286123,40.038176777507374],[-75.13737830586318,40.038133434225593],[-75.137387667643239,40.038090219702987],[-75.137397404212138,40.038045917160851],[-75.137416475713607,40.037959126607944],[-75.137425864798018,40.037915171162808],[-75.137435582705351,40.037871352042622],[-75.13745468259782,40.037783821490379],[-75.137462933459744,40.037741661119064],[-75.137473074861688,40.037697771438147],[-75.137482136424453,40.037654678927289],[-75.137491219626881,40.037610475947723],[-75.137507727611663,40.037535216022199],[-75.137516775198335,40.037503264330624],[-75.137062109009719,40.03740102575761],[-75.136599259780567,40.037296989936401],[-75.136485165745341,40.037272005253278],[-75.136406729991648,40.037255890610986],[-75.136389926315161,40.037253760258032],[-75.136227857335911,40.037233065435409],[-75.136126124487163,40.037219858736464],[-75.136087477461061,40.037214785861828],[-75.136067308275898,40.037251763442733]]]},"properties":{"OBJECTID_1":254,"OBJECTID":197,"ASSET_NAME":"Cherashore Playground","SITE_NAME":"Cherashore Playground","CHILD_OF":"Cherashore Playground","ADDRESS":"851 W OLNEY AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":5.3492600000000001,"ZIPCODE":"19141","ALLIAS":" ","GLOBALID":"e34d40f6-4ccf-45f6-862b-41070e0b12d1","Shape_Length":1963.7349489511359,"Shape_Area":233012.84111638292}},{"type":"Feature","id":255,"geometry":{"type":"Polygon","coordinates":[[[-75.171995622335558,39.959407736637367],[-75.171988029907709,39.959408153490571],[-75.171987991165764,39.9594081562241],[-75.171984129819649,39.95940836859301],[-75.1719741857478,39.959411793347705],[-75.171965959531562,39.959416971333994],[-75.171959758735724,39.959423264337268],[-75.17195966252504,39.959423362187891],[-75.171959464049351,39.959423563159234],[-75.17193786581096,39.959522502058157],[-75.171932991438439,39.959544504319432],[-75.171920640180034,39.959600256351344],[-75.171908097234962,39.95965544364384],[-75.171903504047805,39.959675651095075],[-75.171888474504811,39.959742554261773],[-75.171879068418747,39.959791072454415],[-75.171872943805653,39.959822663145772],[-75.1718556118213,39.959903246930395],[-75.171839960798081,39.959963013607705],[-75.171836892896934,39.959977274399385],[-75.171826961315702,39.960023439944614],[-75.171681564969589,39.960709299897331],[-75.171672016322333,39.960749257039026],[-75.17169090685924,39.960780583660622],[-75.171777419274562,39.96082887960771],[-75.172917670604207,39.961469437330088],[-75.172992850419035,39.96149893669957],[-75.173191175166068,39.961561040759044],[-75.173239535164313,39.961562126897796],[-75.173276489270492,39.961552660966198],[-75.173311692996705,39.961527107752232],[-75.17333058691851,39.961487982074608],[-75.173396295248352,39.961177394290388],[-75.17339756793308,39.961171530241174],[-75.17340386507648,39.961142537376503],[-75.173415513851495,39.961094137923823],[-75.173425839521585,39.961045892563085],[-75.17342585226983,39.96104583428351],[-75.173430696283148,39.961023202378563],[-75.173442333146241,39.960975146843701],[-75.173445651867212,39.960959142780787],[-75.173454342813244,39.960917229973688],[-75.173463368323539,39.960877609650915],[-75.17346718937128,39.960860832986462],[-75.173482310335558,39.960791484543506],[-75.17349054764216,39.960749244389987],[-75.173497816586803,39.960711975908495],[-75.173505104347541,39.960683071961384],[-75.17350511252765,39.960683041510656],[-75.173513568747367,39.960649508264588],[-75.173526376651623,39.960594097014777],[-75.173528157334445,39.960584593464283],[-75.173530850168973,39.960570210684331],[-75.173533738985469,39.960560910419908],[-75.173535932942684,39.960553847085784],[-75.173535641087852,39.960551971828728],[-75.17353521547561,39.960549239406689],[-75.173531871248699,39.96054328609064],[-75.173488550896039,39.960509271253606],[-75.173450319489632,39.960480620893868],[-75.17345023520619,39.960480558633115],[-75.173420015562968,39.960457912342719],[-75.173388901001474,39.960433670973131],[-75.173388808904591,39.960433598625713],[-75.173364553227273,39.960414701128265],[-75.173339090933638,39.960395171945876],[-75.173302997286967,39.96036748857977],[-75.173252606199767,39.960331684911665],[-75.17323433953797,39.96031930287652],[-75.173218121860998,39.960307477733117],[-75.173161411212078,39.960266129606175],[-75.173132316619103,39.96024383196864],[-75.173075576966539,39.960200349544138],[-75.172995845453144,39.96013839704645],[-75.172958144406621,39.960110684668464],[-75.172957883574767,39.960110492299698],[-75.172878665605566,39.960052261627162],[-75.172814428283417,39.960005161564382],[-75.17277279227153,39.959973802624184],[-75.172757914437909,39.959962280517317],[-75.172757570938828,39.959962014209879],[-75.172694786077855,39.959913390652765],[-75.172581031324356,39.959831062954862],[-75.172451095752152,39.959735119491555],[-75.172364059162447,39.959670852587593],[-75.17234228486258,39.959655047029692],[-75.172342205089819,39.959654989374513],[-75.172244237128723,39.959583883148724],[-75.172097609921266,39.959474384186237],[-75.172048928763701,39.959439311261647],[-75.172015107020343,39.959414944694231],[-75.172009509199299,39.959411765369786],[-75.17200637213233,39.959409984752412],[-75.171995752599813,39.959407728752346],[-75.171995622335558,39.959407736637367]]]},"properties":{"OBJECTID_1":255,"OBJECTID":198,"ASSET_NAME":"Barnes Foundation Museum","SITE_NAME":"Barnes Foundation Museum","CHILD_OF":"Benjamin Franklin Parkway","ADDRESS":"2051 BENJAMIN FRANKLIN PKY","TYPE":"Land","USE_":"Museum","ACREAGE":5.3385790000000002,"ZIPCODE":"19130","ALLIAS":" ","GLOBALID":"b87ad35d-721d-415e-93c7-c6d58705411f","Shape_Length":2023.9435559158892,"Shape_Area":232547.52736846852}},{"type":"Feature","id":256,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.250824121381086,39.968059636326686],[-75.250794014212019,39.968206945831554],[-75.250551765070284,39.969367552627737],[-75.250548583725788,39.969383299328094],[-75.250545912101316,39.969396522643407],[-75.250545992274809,39.969409460820231],[-75.250549441898087,39.969415893355048],[-75.250554830046624,39.969421484243313],[-75.25057137261598,39.969427693814254],[-75.250580426657464,39.969429097458914],[-75.250601620515297,39.969431740405959],[-75.250655526087272,39.969438461068144],[-75.251792767984469,39.969579213587636],[-75.251828144042278,39.969583636392514],[-75.251828316549606,39.969583658168027],[-75.251828909263892,39.969579449930563],[-75.251830485062925,39.969568251586168],[-75.251833445061962,39.969552083779938],[-75.251860955618582,39.969401845154415],[-75.251864176146356,39.969386393901303],[-75.252082242209539,39.968340266229816],[-75.252116040271957,39.96817469893147],[-75.252078592302965,39.968170276144527],[-75.251881744334938,39.96814702482358],[-75.251053827970566,39.968049229582704],[-75.25099045980356,39.968039321618463],[-75.250927013295481,39.968031543657411],[-75.250824121381086,39.968059636326686]]],[[[-75.249659915363821,39.968864475671694],[-75.249579577003303,39.969242043317507],[-75.249574995286451,39.969263538439016],[-75.249573021381948,39.969279911488883],[-75.249575859041215,39.969297367864421],[-75.249583787485989,39.969310898731621],[-75.249599969503905,39.969318979155396],[-75.249608986629113,39.969320048706201],[-75.249630998938812,39.969322660114194],[-75.250362882086108,39.969411719541768],[-75.250392671512159,39.969414891250047],[-75.250412484214195,39.969415607558929],[-75.250423127922161,39.969413557207226],[-75.250432936128348,39.969409772266211],[-75.250447337488751,39.969403014098191],[-75.250454743701567,39.969394653856234],[-75.250458155234597,39.969381085362926],[-75.25046057455188,39.969367781770934],[-75.250516525840823,39.969092689106297],[-75.250546429538517,39.968956888088577],[-75.250501102475255,39.968949832559311],[-75.249705294273355,39.968846385095858],[-75.249665237600198,39.968839403530339],[-75.249659915363821,39.968864475671694]]]]},"properties":{"OBJECTID_1":256,"OBJECTID":199,"ASSET_NAME":"Granahan Playground","SITE_NAME":"Granahan Playground","CHILD_OF":"Cobbs Creek Park","ADDRESS":"338-50 N 65TH ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":5.3268509999999996,"ZIPCODE":"19151","ALLIAS":" ","GLOBALID":"3d35dea1-1021-45e4-81da-73c84a96f810","Shape_Length":2589.5692261363765,"Shape_Area":232036.71345304366}},{"type":"Feature","id":257,"geometry":{"type":"Polygon","coordinates":[[[-75.230324123579578,39.922306178294605],[-75.230303342829274,39.922312156580908],[-75.23029225663872,39.922320074207761],[-75.230255816234774,39.922346101559015],[-75.229259472189142,39.923047882783671],[-75.22922510580068,39.923071605614652],[-75.229219485098312,39.923078426945899],[-75.229215362917643,39.923090784516411],[-75.229216187962095,39.92310211198275],[-75.229219805729045,39.923109699531601],[-75.229225571331142,39.923116453120961],[-75.229255756345339,39.923141713035669],[-75.230443748110758,39.924140870576068],[-75.230464118381789,39.924158452434348],[-75.230477715291585,39.924165270808729],[-75.230484852773003,39.924166842200961],[-75.230494009407252,39.924167294769511],[-75.230504654896706,39.924166286196076],[-75.230512154671274,39.92416449221119],[-75.230519235508496,39.924161877222041],[-75.23052573738714,39.924158496277656],[-75.230546179050364,39.924144126704832],[-75.231571582298031,39.923419118571104],[-75.231598182562962,39.923400573708911],[-75.231604358170614,39.923393519381648],[-75.231607680250747,39.923385405880175],[-75.231607877108488,39.923376902084641],[-75.231604934689074,39.92336870325645],[-75.231599096073097,39.923361481472121],[-75.231586990750671,39.923351296525489],[-75.231554125829007,39.923323645704031],[-75.230411684244118,39.922359479927628],[-75.23037568217579,39.922328851392493],[-75.230355803322198,39.922312833624119],[-75.230335295955641,39.922306321984358],[-75.230324123579578,39.922306178294605]]]},"properties":{"OBJECTID_1":257,"OBJECTID":200,"ASSET_NAME":"Connell Park","SITE_NAME":"Connell Park","CHILD_OF":"Connell Park","ADDRESS":"6401 ELMWOOD AVE","TYPE":"Land","USE_":"Park- Mini","ACREAGE":5.3208630000000001,"ZIPCODE":"19142","ALLIAS":" ","GLOBALID":"c28d65f5-f8e5-4246-b899-e9567e311ed4","Shape_Length":1917.4577455403169,"Shape_Area":231775.89997306559}},{"type":"Feature","id":258,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.222677060190549,39.967356652046099],[-75.22268060487076,39.967372700333819],[-75.222684707638663,39.967391279206836],[-75.22287378877752,39.968279050081314],[-75.222877969643974,39.968299593040882],[-75.22288871204546,39.968316408918547],[-75.222907455858561,39.96832806169644],[-75.222918884137044,39.9683311308154],[-75.222942950717311,39.968331718514108],[-75.222962574420464,39.968329697275948],[-75.223815346186868,39.968241860743916],[-75.223861540073273,39.968237715916523],[-75.223886428641933,39.968232982195154],[-75.223896811890484,39.968227594859847],[-75.223905452108397,39.968220617630358],[-75.223911936725443,39.968212375694868],[-75.223917360574148,39.968193675037107],[-75.223771334327992,39.967338057504364],[-75.223763827136111,39.967322850944313],[-75.223748046516079,39.967309736350181],[-75.223723473142982,39.967304271358955],[-75.223699557865785,39.967304033130944],[-75.223675620376696,39.967306438840914],[-75.223654940964053,39.967308518039744],[-75.223121839768595,39.967362966532356],[-75.223098742251366,39.967363188579071],[-75.223075744743866,39.967361509012484],[-75.223053110032652,39.967357946233896],[-75.223031103409454,39.967352545729959],[-75.223010730818942,39.967346879373814],[-75.222991318428896,39.967339481717524],[-75.222973116751263,39.96733044927975],[-75.222956352294375,39.967319894268414],[-75.222941238962008,39.967307952941056],[-75.22292423467384,39.967294748210136],[-75.22290904637444,39.967280289637451],[-75.222895838390471,39.967264724101739],[-75.222884734698468,39.967248212910164],[-75.222875858973055,39.967230925472016],[-75.222869076667507,39.967211788437439],[-75.222862979531214,39.967176908917828],[-75.22281711761859,39.966871326838898],[-75.222812097248195,39.966831111887466],[-75.22272021630576,39.966838792816894],[-75.222707036055127,39.966771243813668],[-75.222645357160715,39.966492400894211],[-75.222645099456969,39.966492434861799],[-75.222402264762664,39.966522397706704],[-75.222394974554646,39.966522266844393],[-75.222385051038273,39.966519928187807],[-75.222379222571277,39.966517049041101],[-75.222373377808054,39.966513065810872],[-75.222369425665761,39.966509639644869],[-75.222364889642648,39.966502456963873],[-75.222363267958499,39.966494429375004],[-75.222361456504942,39.966485459665265],[-75.22235898464983,39.966473216492552],[-75.222356134158304,39.966459096306018],[-75.222277471374724,39.966081211458388],[-75.221690347776018,39.966141810635904],[-75.221605516038693,39.966146678994178],[-75.221660378366295,39.966467601319785],[-75.221670118585465,39.966480558785712],[-75.221677814756646,39.96648522976659],[-75.221691698960498,39.966489599215144],[-75.221706477796928,39.966492237733071],[-75.221732209935496,39.966490813527749],[-75.221976997427632,39.966467222841111],[-75.22201463693979,39.966465171636216],[-75.222064980677473,39.96646914869374],[-75.222115480487332,39.966479599244614],[-75.222145862067265,39.966490867946561],[-75.222169911935751,39.96650560745173],[-75.222197082257381,39.966528312957323],[-75.222209791679703,39.966538356183385],[-75.222220907474821,39.966549090505133],[-75.222231887807794,39.966562143716963],[-75.22224251525239,39.966578040816522],[-75.222246887220777,39.966585383870246],[-75.222250498227979,39.966593918399845],[-75.222252913443128,39.966599627180734],[-75.222258097517553,39.966614065475063],[-75.222262433495473,39.966628669790374],[-75.222306663635635,39.966893946937972],[-75.222310054404588,39.966914286012212],[-75.222311875341475,39.966925203892131],[-75.222313514107682,39.966935038361633],[-75.222365898615649,39.966930061955601],[-75.222370271235789,39.966954477154019],[-75.222372814115261,39.966968022032539],[-75.222400351249448,39.96713923917838],[-75.222405166951248,39.967168709731574],[-75.222409246285793,39.967168277915093],[-75.222432239517801,39.967289757097554],[-75.222436497405369,39.967317099814615],[-75.222441468617077,39.967349220927204],[-75.222483176170897,39.967345071543726],[-75.222613119569672,39.967332626774542],[-75.222650308347013,39.967331088903407],[-75.222668783691844,39.96733975170455],[-75.222677060190549,39.967356652046099]]],[[[-75.22474951736271,39.968830699701336],[-75.224758255139989,39.968835588003834],[-75.224764138743041,39.968841496492722],[-75.224768146737432,39.968847364604841],[-75.224799005216667,39.969027573997181],[-75.22479927314177,39.969032998499024],[-75.224860751405956,39.969074499941598],[-75.224878971410291,39.969117521737431],[-75.224886576581483,39.969159212520104],[-75.22489546687423,39.969211411097184],[-75.224903982787993,39.969263002270473],[-75.224905138124313,39.969270102335742],[-75.224911298528895,39.969307975326174],[-75.224913276118755,39.969320141780841],[-75.224900864682851,39.969322093218608],[-75.224907405867683,39.969351833165696],[-75.224915174260673,39.969401262609765],[-75.224932976413456,39.969513147527856],[-75.224935440096743,39.969525058884173],[-75.224970335953714,39.969521537136664],[-75.22522244697484,39.969498013075516],[-75.22524520521911,39.969496005450537],[-75.225253127307212,39.969495306693453],[-75.22525972177624,39.969493875044428],[-75.225267484574104,39.969491003177254],[-75.225273718141608,39.969487214683589],[-75.225278883181318,39.969482433204639],[-75.225281714481099,39.969477176907411],[-75.22528339715349,39.969470971813685],[-75.225283888944645,39.96946684524957],[-75.225280147876575,39.96944969712392],[-75.225273055632016,39.969407525714338],[-75.225200620444014,39.968961874805693],[-75.225165646602505,39.968762053955693],[-75.225115316862443,39.968769528497006],[-75.225104006170397,39.968770632009189],[-75.224826815355613,39.968797675436527],[-75.224814442964345,39.968796940944358],[-75.224811476654551,39.968774674157835],[-75.224768260903417,39.968517567385092],[-75.224745361501533,39.968520325036906],[-75.224458749187903,39.968549619034889],[-75.224444968737672,39.968466850913813],[-75.224419924244643,39.968332248179209],[-75.224411012186451,39.968274506130221],[-75.224203663687234,39.96829684405909],[-75.223917143751734,39.968325403507542],[-75.223904090722186,39.968326726228263],[-75.223888572886409,39.968328297419589],[-75.223880602719333,39.968330796118124],[-75.223874428506804,39.968335413860267],[-75.223870673558977,39.968348092941632],[-75.223872315243341,39.968357603988387],[-75.223890273576828,39.968461645754346],[-75.223912198180599,39.968588673720063],[-75.223937093082128,39.968588591080483],[-75.224154887271311,39.968564473424273],[-75.224207230369558,39.96881879458229],[-75.224421232406357,39.968798832131206],[-75.224432283977421,39.968850746756921],[-75.224441367352441,39.968849236589925],[-75.224493873574204,39.968849997620495],[-75.224722899195612,39.968826862190504],[-75.224735095702869,39.968827130609334],[-75.22474951736271,39.968830699701336]]]]},"properties":{"OBJECTID_1":258,"OBJECTID":201,"ASSET_NAME":"West Mill Creek","SITE_NAME":"West Mill Creek","CHILD_OF":"West Mill Creek","ADDRESS":"5100 WESTMINSTER AVE","TYPE":"Land","USE_":"Park- Neighborhood","ACREAGE":5.2610460000000003,"ZIPCODE":"19139","ALLIAS":" ","GLOBALID":"6447fe6e-2f91-4786-9395-beaeea4daaab","Shape_Length":4254.1763036232205,"Shape_Area":229170.24062176765}},{"type":"Feature","id":259,"geometry":{"type":"Polygon","coordinates":[[[-75.15942827607428,40.049075055358649],[-75.159418329330521,40.049081627410615],[-75.159398978847918,40.049099403261557],[-75.159372689388064,40.049123552285103],[-75.158109294991235,40.050344291705194],[-75.158045405863604,40.050405453699639],[-75.158033147084183,40.050418339148152],[-75.158029727767953,40.050431702447895],[-75.158030854488757,40.050444008709526],[-75.158037880767708,40.050452420539251],[-75.158051755499699,40.050463034891919],[-75.158067879559226,40.050473971197576],[-75.158082395545122,40.050482040229483],[-75.158910273821178,40.050984967145894],[-75.158936733790199,40.051002795846031],[-75.158964256767732,40.051021341395433],[-75.158970295762543,40.051023773384856],[-75.158997639546129,40.051031753185164],[-75.159020518321967,40.051028566911221],[-75.159034124148235,40.051021607081708],[-75.159058170704256,40.051003744373425],[-75.160381385498809,40.049713231468836],[-75.160396915256868,40.049698182296666],[-75.160408043141999,40.049686190151213],[-75.160414447016649,40.04967091994547],[-75.160412835627739,40.049656863832453],[-75.160397277107933,40.049644959402741],[-75.160380416927836,40.049635796249063],[-75.160356284775148,40.04962139735423],[-75.160316365590376,40.04959758016745],[-75.159503669091464,40.049093444988181],[-75.15948383928432,40.049080693565308],[-75.159462443258406,40.049070242251332],[-75.159446684459738,40.049068749804661],[-75.15942827607428,40.049075055358649]]]},"properties":{"OBJECTID_1":259,"OBJECTID":202,"ASSET_NAME":"Lonnie Young Recreation Center","SITE_NAME":"Lonnie Young Recreation Center","CHILD_OF":"Lonnie Young Recreation Center","ADDRESS":"1100 E CHELTEN AVE","TYPE":"Land","USE_":"Recreation Center","ACREAGE":5.2449890000000003,"ZIPCODE":"19138","ALLIAS":"East Germantown Recreation Center","GLOBALID":"78c5fd65-0623-4d74-97ec-0b16f09041e4","Shape_Length":1975.1732520826242,"Shape_Area":228470.78747740679}},{"type":"Feature","id":260,"geometry":{"type":"Polygon","coordinates":[[[-75.211856866486841,39.979400923249678],[-75.212918581266209,39.979792993421917],[-75.212918872396628,39.979793100770202],[-75.213475884794121,39.980001661494875],[-75.213826831021123,39.980133269354575],[-75.213929603855703,39.980167576517331],[-75.213970858207077,39.980174255472065],[-75.213996860863105,39.980173855191055],[-75.214016278661063,39.980155930878823],[-75.214017024188777,39.980147914925141],[-75.214009882225767,39.98011259552279],[-75.21399931163964,39.980060320993474],[-75.213982448688498,39.979997275597427],[-75.213981912581048,39.979995291458337],[-75.213637484122529,39.978737086872179],[-75.213625833020586,39.978727246313554],[-75.213607432299398,39.978679994753413],[-75.213003076271704,39.978452407422644],[-75.212865953563181,39.978392176773909],[-75.212768137008865,39.978337014553865],[-75.2125693642827,39.978260772010806],[-75.212569119361973,39.978260681901254],[-75.211856866486841,39.979400923249678]]]},"properties":{"OBJECTID_1":260,"OBJECTID":203,"ASSET_NAME":"Carousel House Recreation Center","SITE_NAME":"Carousel House","CHILD_OF":"West Fairmount Park","ADDRESS":"1701 BELMONT AVE","TYPE":"Land","USE_":"Recreation Center","ACREAGE":5.2442460000000004,"ZIPCODE":"19131","ALLIAS":" ","GLOBALID":"36c57288-a5e5-407d-9d36-56338f7b765a","Shape_Length":2012.7464519281543,"Shape_Area":228438.47871097416}},{"type":"Feature","id":261,"geometry":{"type":"Polygon","coordinates":[[[-74.971500242156111,40.096488458543533],[-74.971468764895192,40.09653019762716],[-74.971654008723362,40.096589287961422],[-74.971838771168436,40.096641521822065],[-74.972015225001002,40.0966850962431],[-74.972192621204485,40.096723344404317],[-74.972353587931863,40.096752796424362],[-74.972543576957975,40.096782697136241],[-74.97266973313026,40.096799144082858],[-74.972710332045068,40.096803953602105],[-74.972740665374701,40.096788921318137],[-74.974122155887585,40.095948918108974],[-74.974085613352884,40.095927118238421],[-74.973301223148454,40.095553409949062],[-74.972746240885769,40.095288665521359],[-74.972543266398631,40.095190403339224],[-74.972528962825493,40.095187541947958],[-74.971500242156111,40.096488458543533]]]},"properties":{"OBJECTID_1":261,"OBJECTID":204,"ASSET_NAME":"Fitzpatrick Playground","SITE_NAME":"Fitzpatrick Playground","CHILD_OF":"Fitzpatrick Playground","ADDRESS":"3500 ACADEMY RD","TYPE":"Land","USE_":"Recreation Site","ACREAGE":5.2268520000000001,"ZIPCODE":"19154","ALLIAS":" ","GLOBALID":"d9be1ef9-2a07-43ec-803e-bb4c79ee6494","Shape_Length":1962.7473952648436,"Shape_Area":227680.78900717464}},{"type":"Feature","id":262,"geometry":{"type":"Polygon","coordinates":[[[-75.151048980641036,39.97786405176597],[-75.151034777612637,39.977875042413366],[-75.151031096354615,39.977882332991705],[-75.151026624978854,39.977903018262609],[-75.151020064273382,39.97793337371823],[-75.150862828087398,39.978654468045747],[-75.150811822074715,39.978891237125218],[-75.150734690009941,39.979239027430211],[-75.150734043056033,39.979241946498945],[-75.150727431666454,39.979271477262017],[-75.150723754316971,39.979287905167652],[-75.150730164920091,39.979303773169143],[-75.150746798029147,39.979314371976344],[-75.15078323698603,39.979319687978368],[-75.150792670111159,39.979321059441261],[-75.151958021604329,39.979470562994798],[-75.151958751151284,39.979470657899626],[-75.15199881235894,39.979475832963345],[-75.152001108279407,39.979476130016906],[-75.152059589416524,39.979483685379208],[-75.15205967566672,39.979483696341923],[-75.152123904812143,39.979491994487631],[-75.152138961292096,39.979493939141541],[-75.152164588381993,39.97949725025709],[-75.152187082307265,39.979494441895831],[-75.152196777988991,39.979489685042644],[-75.152209588072154,39.97947518658259],[-75.152214465422944,39.97945236243104],[-75.152214848761091,39.979450577178085],[-75.152295797919166,39.979080266765038],[-75.152386336627103,39.978662717563132],[-75.152387313690369,39.978658239085505],[-75.152462994662841,39.978310852019767],[-75.152506454086222,39.978108144874284],[-75.15250714384031,39.978104931231677],[-75.152510167123936,39.978090832027462],[-75.152513683869131,39.978074425668602],[-75.15251321962802,39.978065464430436],[-75.152509391720017,39.978056993798738],[-75.152493229664259,39.978044338067562],[-75.152464845532037,39.978040614111173],[-75.152433253209551,39.978036469736033],[-75.152349101887751,39.97802542858318],[-75.152066567723395,39.977988989204796],[-75.151686645505322,39.977940113049449],[-75.151584130968274,39.977926726469853],[-75.151577855090906,39.977925917612481],[-75.151181513485213,39.977874869552537],[-75.151068522624158,39.977860388388734],[-75.151048980641036,39.97786405176597]]]},"properties":{"OBJECTID_1":262,"OBJECTID":205,"ASSET_NAME":"11th & Columbia Playground","SITE_NAME":"11th & Columbia Playground","CHILD_OF":"11th & Columbia Playground","ADDRESS":"1001-33 CECIL B MOORE AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":5.1989999999999998,"ZIPCODE":"19122","ALLIAS":" ","GLOBALID":"72f25e8c-1b22-4b90-a062-7bd512094fd7","Shape_Length":1899.527873651444,"Shape_Area":226467.56320455915}},{"type":"Feature","id":263,"geometry":{"type":"Polygon","coordinates":[[[-75.168425902943383,40.043993305111869],[-75.168393813331079,40.044024513114628],[-75.168038713010446,40.044367495375027],[-75.167943831482035,40.044459690599247],[-75.16752796665476,40.044860375009698],[-75.167446383074392,40.044939099528492],[-75.167404313446539,40.044987592285096],[-75.167409061938883,40.045003748784964],[-75.167467072757773,40.045044679536531],[-75.167552078814921,40.045101664106909],[-75.167779096864123,40.04523585739598],[-75.168921475688393,40.045934043371908],[-75.168955048335135,40.045954721793656],[-75.168981759053608,40.045968316342972],[-75.169008563932962,40.045963963934419],[-75.169035648148508,40.045938922443163],[-75.16908820115772,40.045887448926848],[-75.169346604118019,40.04563812005587],[-75.169318737785474,40.045623316599219],[-75.169318889551647,40.045606071930692],[-75.169319179504981,40.045573172575253],[-75.169319694136007,40.045514885038145],[-75.169308304145787,40.045507443582046],[-75.169296966738699,40.045500037544606],[-75.169250623173653,40.045469761245478],[-75.169265961465854,40.044883886503122],[-75.169277731281042,40.044469782562473],[-75.168587016728665,40.04404957471327],[-75.168476397202454,40.043986396561706],[-75.168440179787993,40.043983835563594],[-75.168425902943383,40.043993305111869]]]},"properties":{"OBJECTID_1":263,"OBJECTID":206,"ASSET_NAME":"Waterview Recreation Center","SITE_NAME":"Waterview Recreation Center","CHILD_OF":"Waterview Recreation Center","ADDRESS":"5826 MC MAHON AVE","TYPE":"Land","USE_":"Recreation Center","ACREAGE":5.177721,"ZIPCODE":"19144","ALLIAS":" ","GLOBALID":"517230d8-967f-4eb1-82b3-7d9d02c8ec33","Shape_Length":1929.9737854453888,"Shape_Area":225540.59776365521}},{"type":"Feature","id":264,"geometry":{"type":"Polygon","coordinates":[[[-75.110691390092356,39.984185978031768],[-75.110649170221308,39.984206595824162],[-75.110634186148772,39.984213817196121],[-75.110623906035144,39.984220285359356],[-75.110614816450848,39.984231382473013],[-75.110612192327352,39.984240102683579],[-75.110615393416552,39.984253456615939],[-75.11062356261246,39.984265891318856],[-75.111201540686835,39.985160351706519],[-75.111218811053575,39.98518668950318],[-75.111226976349229,39.985193894477987],[-75.111234746480719,39.985197854760486],[-75.11124523647959,39.985200155705058],[-75.111256138317074,39.98519990628553],[-75.111266431995517,39.985197130805041],[-75.111276678913825,39.985191880915586],[-75.111295876095426,39.985182044215776],[-75.113325263686562,39.984120701776],[-75.113343897685539,39.984110964437413],[-75.11335209138015,39.984105643772523],[-75.113358341574411,39.984098943128799],[-75.113362267140161,39.984091266423036],[-75.113363627274964,39.98408308386793],[-75.113362342864292,39.984074894619468],[-75.113350774202019,39.984058293142702],[-75.113335058346564,39.984040143023073],[-75.113038301901028,39.983705376489546],[-75.113031650925862,39.983697873957198],[-75.113021447218571,39.98368660547564],[-75.113015463694666,39.983681279852895],[-75.112999225151711,39.983675057242415],[-75.112990096779484,39.983674586199321],[-75.112972928658792,39.983679091532544],[-75.112964600307222,39.983683476508226],[-75.112951455474899,39.983690398043436],[-75.112274900766977,39.984044996151198],[-75.112262675668134,39.984051515264269],[-75.112251103766937,39.984053460433977],[-75.112239273322317,39.984052984895122],[-75.112228027498389,39.984050123344154],[-75.112218166712353,39.98404507618627],[-75.11221362594199,39.984039728718095],[-75.111868482750708,39.983651349182054],[-75.111852667432402,39.983636013187407],[-75.111836703103236,39.983620533204039],[-75.1118298176211,39.983615241746648],[-75.111821398975479,39.983611486445071],[-75.111802281020672,39.983609467462436],[-75.111788074291908,39.983613600090386],[-75.111772333447988,39.983621042081282],[-75.11175145824761,39.983630910555753],[-75.110691390092356,39.984185978031768]]]},"properties":{"OBJECTID_1":264,"OBJECTID":207,"ASSET_NAME":"Cohocksink Recreation Center","SITE_NAME":"Cohocksink Recreation Center","CHILD_OF":"Cohocksink Recreation Center","ADDRESS":"2901 CEDAR ST","TYPE":"Land","USE_":"Recreation Center","ACREAGE":5.113022,"ZIPCODE":"19134","ALLIAS":" ","GLOBALID":"bf9c711e-9319-4167-b076-13d35708d0e9","Shape_Length":2164.2526863287044,"Shape_Area":222722.39319259877}},{"type":"Feature","id":265,"geometry":{"type":"Polygon","coordinates":[[[-75.187900873586415,40.017417217194094],[-75.18770003512131,40.01755713035358],[-75.186881199875458,40.018124626955156],[-75.186843609159396,40.018150564025163],[-75.186402920860971,40.018446421168782],[-75.187134454883605,40.019056204332692],[-75.187544974104654,40.018778938289508],[-75.188414567079676,40.018191541527166],[-75.189075247323387,40.017744776760637],[-75.188593068632088,40.017318346483101],[-75.188350844818871,40.017111606444537],[-75.187900873586415,40.017417217194094]]]},"properties":{"OBJECTID_1":265,"OBJECTID":208,"ASSET_NAME":"McMichael Park","SITE_NAME":"McMichael Park","CHILD_OF":"McMichael Park","ADDRESS":"3201-45 MIDVALE AVE","TYPE":"Land","USE_":"Park- Neighborhood","ACREAGE":5.0846929999999997,"ZIPCODE":"19129","ALLIAS":" ","GLOBALID":"52ad0865-07dc-48de-b3bd-fd0ba19d97e9","Shape_Length":2063.9234496913464,"Shape_Area":221488.32454668832}},{"type":"Feature","id":266,"geometry":{"type":"Polygon","coordinates":[[[-75.150334982478427,39.9887440986261],[-75.150318307574295,39.988748883785156],[-75.150302943956987,39.988755797118536],[-75.150289352755365,39.988764634628815],[-75.150277929320353,39.988775135866447],[-75.150269017235374,39.988786985148117],[-75.150262880432493,39.988799836153724],[-75.150258506827711,39.988820512811465],[-75.149989298592672,39.990065518262767],[-75.149982086195124,39.990098870131362],[-75.149985052343013,39.990110828085342],[-75.149998185775274,39.990132893335968],[-75.150008013954448,39.990142434317718],[-75.15001970056008,39.990150644241311],[-75.150032940993583,39.990157309872728],[-75.150047397332514,39.990162262274204],[-75.150062698433715,39.99016537410364],[-75.151385975559052,39.990335677608535],[-75.151400039743919,39.990336034767637],[-75.151413900861954,39.990334168116021],[-75.151426975886167,39.990330160863145],[-75.151438700823434,39.990324180444645],[-75.151448589268284,39.990316478946653],[-75.151461270979595,39.990297280603158],[-75.151464139503645,39.990284276254201],[-75.151750315575555,39.988986585601467],[-75.1517576301068,39.988955100164638],[-75.151755642389517,39.988938932321673],[-75.151743792779058,39.988925492069313],[-75.151725002590169,39.988918088306143],[-75.151702125274667,39.988914700665646],[-75.151658758450296,39.988908278565283],[-75.150379164372296,39.98874482902729],[-75.150363548869365,39.988742930994135],[-75.150352466581424,39.988741583442106],[-75.150334982478427,39.9887440986261]]]},"properties":{"OBJECTID_1":266,"OBJECTID":209,"ASSET_NAME":"Fotteral Square","SITE_NAME":"Fotteral Square","CHILD_OF":"Fotteral Square","ADDRESS":"2400 N 11TH ST","TYPE":"Land","USE_":"Park- Square\\Plaza","ACREAGE":5.0727390000000003,"ZIPCODE":"19133","ALLIAS":" ","GLOBALID":"2d89d269-0717-4912-91a9-5d62ed0caada","Shape_Length":1857.1816813427179,"Shape_Area":220967.57062274346}},{"type":"Feature","id":267,"geometry":{"type":"Polygon","coordinates":[[[-75.153201279622039,39.914612259942949],[-75.153192468697682,39.914616245619548],[-75.153185524755727,39.914622020661533],[-75.153181729221217,39.914625965860225],[-75.153180339339301,39.914632424432021],[-75.153178404486752,39.914641417845942],[-75.153176005812725,39.914652353266312],[-75.152947192274453,39.915711890508284],[-75.152939407549184,39.915745674547324],[-75.152938100219643,39.915751349296926],[-75.152939011693093,39.915758977261852],[-75.152942398946266,39.915766181062871],[-75.152948038890599,39.915772490719704],[-75.152957173454368,39.91577810916155],[-75.152964495482593,39.91578087986651],[-75.152974241270812,39.915782413408387],[-75.153007739772974,39.915786534795586],[-75.15463380392012,39.9159957428433],[-75.154670292235394,39.915999895378782],[-75.154678907833571,39.916000875192964],[-75.154688240064033,39.916000370128508],[-75.154697839697903,39.91599751945342],[-75.154705933036695,39.915992624504739],[-75.154711802705464,39.915986116851393],[-75.154715367625812,39.915972948043866],[-75.154722989349125,39.915934829009728],[-75.154924391790544,39.91500609661729],[-75.154928529822698,39.914987322015214],[-75.154928229670574,39.91497516856797],[-75.154925085212255,39.914969539001177],[-75.154895649312138,39.914938726396443],[-75.154779804685973,39.914825876108566],[-75.154769272981866,39.914817285256731],[-75.154761521194146,39.914813849896511],[-75.154725693617138,39.914809079816123],[-75.153294738133511,39.914620109000751],[-75.153227819648137,39.914611647387147],[-75.153211211998766,39.914610405351496],[-75.153201279622039,39.914612259942949]]]},"properties":{"OBJECTID_1":267,"OBJECTID":210,"ASSET_NAME":"Murphy Recreation Center","SITE_NAME":"Murphy Recreation Center","CHILD_OF":"Murphy Recreation Center","ADDRESS":"300 SHUNK ST","TYPE":"Land","USE_":"Recreation Center","ACREAGE":4.9671919999999998,"ZIPCODE":"19148","ALLIAS":"Greenwich Recreation Center","GLOBALID":"e94aa321-18de-49e7-bfee-3a49daa44cf9","Shape_Length":1828.6314895089156,"Shape_Area":216369.94391881535}},{"type":"Feature","id":268,"geometry":{"type":"Polygon","coordinates":[[[-75.106285557119193,39.998325967866123],[-75.10624417825224,39.998347592064079],[-75.10620394981504,39.998368614723489],[-75.105350607473696,39.998815167928598],[-75.105319011173535,39.998831722710591],[-75.105300046676916,39.998841659385604],[-75.105284562417211,39.998853863948703],[-75.105279201171257,39.998870411350538],[-75.105285426730163,39.998886776988712],[-75.105295148658399,39.998897807968774],[-75.105331485856595,39.998939045676266],[-75.106242811923707,39.999971948551234],[-75.106299782093473,40.00003574633147],[-75.106416825461181,40.000168448231328],[-75.106429517150801,40.000182954302588],[-75.106440567854165,40.000195584475151],[-75.106452793199381,40.000207835330961],[-75.106465521265207,40.000212410148357],[-75.106480685038505,40.000212562019357],[-75.106489685173926,40.000209492219888],[-75.106508275300868,40.000199306147287],[-75.106525644348366,40.000189789352461],[-75.106530419671543,40.000187172792273],[-75.106862811799417,40.000005045641515],[-75.10693044525398,39.999967986417687],[-75.10693566827706,39.999965124256072],[-75.106996245832292,39.999931931955942],[-75.107375273525506,39.999724248882849],[-75.107473438555672,39.999670459925291],[-75.107490227939678,39.999661260325858],[-75.107497351642337,39.999653600643867],[-75.107501088358461,39.999649582457586],[-75.107501197272882,39.99963522430491],[-75.107489968910556,39.999620925038428],[-75.107476565634741,39.999606186458429],[-75.107446262737426,39.999572866094255],[-75.106361007289465,39.998355400564201],[-75.106344559799552,39.998336595649725],[-75.10631799634119,39.998321993544671],[-75.106285557119193,39.998325967866123]]]},"properties":{"OBJECTID_1":268,"OBJECTID":211,"ASSET_NAME":"Harrowgate Park","SITE_NAME":"Harrowgate Park","CHILD_OF":"Harrowgate Park","ADDRESS":"3455 KENSINGTON AVE","TYPE":"Land","USE_":"Park- Neighborhood","ACREAGE":4.9122729999999999,"ZIPCODE":"19134","ALLIAS":"Gates Park","GLOBALID":"6de09ffe-1305-44d4-a78f-a83da9b4ed5f","Shape_Length":1891.8098235772259,"Shape_Area":213977.68463624586}},{"type":"Feature","id":269,"geometry":{"type":"Polygon","coordinates":[[[-75.211133056311368,39.942383076712474],[-75.211223549491706,39.942400641871529],[-75.211294163168205,39.94242873846963],[-75.211341358699173,39.942446468743441],[-75.211366444992819,39.942455893454721],[-75.211405474192546,39.942398561490904],[-75.211583828584097,39.942136573256334],[-75.211595200435454,39.942119869853144],[-75.211605499807419,39.942104740192242],[-75.211614177978632,39.942091992043018],[-75.211617867618884,39.942083653824866],[-75.211616485672735,39.942066217664717],[-75.211611508652354,39.942058285911308],[-75.211599286746548,39.942047638576334],[-75.211576712284611,39.942028851318561],[-75.210840185925179,39.941410353249054],[-75.210801490082815,39.94137803446462],[-75.210770040773639,39.941351768655629],[-75.210738483173571,39.941333821205426],[-75.210720680815186,39.941327393062004],[-75.210684244190446,39.941316376217507],[-75.210648519057742,39.941312037131951],[-75.210624773127421,39.941312365555262],[-75.210601549561645,39.941312685716753],[-75.21057484421172,39.941313054025507],[-75.209527376170513,39.9413279768021],[-75.209492719185207,39.941328444442355],[-75.209454133035479,39.941328966498723],[-75.209419862585221,39.941329521066088],[-75.209406085333242,39.941332154067837],[-75.209377772429534,39.941344618504978],[-75.209371754082113,39.941350052496219],[-75.209347605966798,39.941367024097374],[-75.20899610695993,39.941614060325151],[-75.208975141911651,39.941628793997552],[-75.208963493295599,39.941636981041142],[-75.208952726549299,39.941646220171179],[-75.208950195286647,39.941658475408957],[-75.208952931151927,39.941666324297081],[-75.20896375024374,39.941680197074376],[-75.209025399138923,39.941731437903094],[-75.209622242941819,39.942234208099897],[-75.209818851068917,39.94240093861368],[-75.209843562424808,39.942384281218011],[-75.209855033668703,39.942376549668367],[-75.209953771736309,39.942375328700969],[-75.210574478412695,39.942367681141675],[-75.211024371382095,39.942361979606275],[-75.211133056311368,39.942383076712474]]]},"properties":{"OBJECTID_1":269,"OBJECTID":212,"ASSET_NAME":"48th & Woodland Playground","SITE_NAME":"48th & Woodland Playground","CHILD_OF":"48th & Woodland Playground","ADDRESS":"4740 WOODLAND AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":4.8979169999999996,"ZIPCODE":"19143","ALLIAS":"Comegys Playground","GLOBALID":"ae1732dc-ddb3-40c2-b136-e8b8951451f5","Shape_Length":1881.861336174801,"Shape_Area":213352.34964240048}},{"type":"Feature","id":270,"geometry":{"type":"Polygon","coordinates":[[[-75.151117320645142,39.965584143412713],[-75.151098671304538,39.965588532437778],[-75.151091216482982,39.965596440326365],[-75.151087503068325,39.965607864047499],[-75.151085241519468,39.965617730353713],[-75.150597200149335,39.967835604159262],[-75.1505867078085,39.967883376440838],[-75.150583471855441,39.96789810780087],[-75.150586191158752,39.967912760533494],[-75.150597799018939,39.967924582698458],[-75.15061496434717,39.967931114728742],[-75.150659589775486,39.967942056731999],[-75.151371467579409,39.968116599720013],[-75.151393663285631,39.968118152990627],[-75.151407205343304,39.968114039278639],[-75.151420990114246,39.96810358067043],[-75.151426811698357,39.968091354118592],[-75.151433546264769,39.968060679127952],[-75.151913533937403,39.965890407406278],[-75.151918720200385,39.965866494632593],[-75.151923959681056,39.965834974848811],[-75.151921380029336,39.965826279255786],[-75.151916046925635,39.965818361966051],[-75.15190413843159,39.965810484998066],[-75.151877172916102,39.965802532877774],[-75.151856480320035,39.965796448250849],[-75.151179790265758,39.965599093513568],[-75.151152213307029,39.96559112016152],[-75.151127103255959,39.965583859523946],[-75.151117320645142,39.965584143412713]]]},"properties":{"OBJECTID_1":270,"OBJECTID":213,"ASSET_NAME":"East Poplar Playground","SITE_NAME":"East Poplar Playground","CHILD_OF":"East Poplar Playground","ADDRESS":"800 N 08TH ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":4.841094,"ZIPCODE":"19123","ALLIAS":" ","GLOBALID":"9b95399d-8072-4910-b581-928d0cb4d0f6","Shape_Length":2198.9545471291549,"Shape_Area":210877.11647274642}},{"type":"Feature","id":271,"geometry":{"type":"Polygon","coordinates":[[[-75.144528054491445,39.972685047756833],[-75.144514810353542,39.972693266201865],[-75.144511501154369,39.97269939460169],[-75.144508475173311,39.972712733105574],[-75.144246796823523,39.973905305853961],[-75.144238708418314,39.973942597504617],[-75.144237117737262,39.973959242911363],[-75.144246134583966,39.973972542223656],[-75.144253994132569,39.973977116785576],[-75.144273085767011,39.97398016778412],[-75.144303411182165,39.973984215411697],[-75.145699037793491,39.974166729075755],[-75.145733416695236,39.974171049421763],[-75.145753985554649,39.974173633629533],[-75.145773700799083,39.974172426783568],[-75.145782613037539,39.97416818069739],[-75.145789896006917,39.974162383017422],[-75.145795104064362,39.9741553858413],[-75.14579951289997,39.974132335040601],[-75.146020291425089,39.972946991789186],[-75.146027618161014,39.972907636531858],[-75.146030311223129,39.972893168667547],[-75.146029595569487,39.972886237084701],[-75.146026273952572,39.972879770760059],[-75.146020627819752,39.972874340119901],[-75.146004533214537,39.972868357916354],[-75.145988193112672,39.972866396806197],[-75.145960879874721,39.972863120768054],[-75.1459179971,39.972857975874746],[-75.144583187612611,39.972689436950702],[-75.144556964149729,39.972686299748972],[-75.144545068887865,39.972684876350087],[-75.144528054491445,39.972685047756833]]]},"properties":{"OBJECTID_1":271,"OBJECTID":214,"ASSET_NAME":"Cruz Recreation Center","SITE_NAME":"Cruz Recreation Center","CHILD_OF":"Cruz Recreation Center","ADDRESS":"1400-52 N 05TH ST","TYPE":"Land","USE_":"Recreation Center","ACREAGE":4.8098989999999997,"ZIPCODE":"19122","ALLIAS":" ","GLOBALID":"eca0742e-d71a-409b-bdb2-16e3402caa05","Shape_Length":1817.9434173124453,"Shape_Area":209518.2946796577}},{"type":"Feature","id":272,"geometry":{"type":"Polygon","coordinates":[[[-75.027272974446689,40.035551456482523],[-75.026799623619169,40.035807746905753],[-75.02635048941336,40.036051986840661],[-75.0259824720805,40.036251781526836],[-75.025953600163618,40.036267104028461],[-75.025944786015003,40.036286671368615],[-75.025965410216187,40.036330041810203],[-75.026171858599227,40.036767460527209],[-75.026181930146379,40.036789228322988],[-75.02619786022062,40.036809136511103],[-75.026223144171837,40.036816678765341],[-75.026245767499788,40.036813405610069],[-75.026272453058766,40.0368038727322],[-75.026311396724438,40.03678996126677],[-75.026452416807757,40.036739585289943],[-75.026579618197445,40.036694146349284],[-75.026959645625041,40.036556402795647],[-75.026988716966514,40.036545864875613],[-75.027042815740671,40.036526065449891],[-75.027131444808617,40.036493627348399],[-75.027247800052422,40.036451041903028],[-75.027445856318494,40.036378784910426],[-75.02765786226729,40.036303272930688],[-75.027670239825099,40.03629886370048],[-75.027775601018334,40.036261336081239],[-75.027921019197223,40.036209504668967],[-75.027978098775307,40.036189082549733],[-75.028665596226318,40.035939272584031],[-75.02863786385565,40.035903047210041],[-75.028593725609412,40.035837048765096],[-75.028383856844599,40.035523239773873],[-75.028107935199046,40.035097589226467],[-75.027969971041799,40.035172281568151],[-75.027948529259646,40.035183959268714],[-75.027578178221972,40.035385654327996],[-75.027578151270944,40.035385624855358],[-75.027272974446689,40.035551456482523]]]},"properties":{"OBJECTID_1":272,"OBJECTID":215,"ASSET_NAME":"Holmesburg Playground","SITE_NAME":"Holmesburg Playground","CHILD_OF":"Holmesburg Playground","ADDRESS":"4500 RHAWN ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":4.7718780000000001,"ZIPCODE":"19136","ALLIAS":" ","GLOBALID":"73523fbb-e178-42a3-9ffb-86b48ee84a1d","Shape_Length":2056.1685539705622,"Shape_Area":207862.13112627552}},{"type":"Feature","id":273,"geometry":{"type":"Polygon","coordinates":[[[-75.045912724725383,40.014234242525184],[-75.045991397662519,40.014323010757359],[-75.046056003189278,40.014394938582399],[-75.046060276115597,40.014399695842755],[-75.046070070805371,40.014411778935326],[-75.046042989325073,40.014446697546134],[-75.046021198826978,40.014477789646314],[-75.045974685122374,40.014484595540473],[-75.045906852507358,40.014510653075305],[-75.045860025479485,40.01452535286321],[-75.045829226344352,40.014524627485514],[-75.045816758674846,40.014579643977576],[-75.045794496346403,40.014622576452922],[-75.045747668046303,40.014637276167342],[-75.045714981997122,40.014683914231568],[-75.046079433824389,40.015079664847903],[-75.046166666924435,40.015045934778044],[-75.048203808750529,40.014258200801386],[-75.04828050914854,40.014228540960708],[-75.048323342090796,40.014211977458473],[-75.047595840035953,40.013384965296247],[-75.047530838314529,40.013400653510402],[-75.047476519740442,40.013413762948872],[-75.047372129065025,40.013454762529008],[-75.04735270743646,40.01346611363391],[-75.047261661615622,40.013519324717862],[-75.047164085102651,40.013582804451573],[-75.047156169392423,40.013587953232175],[-75.047092605016417,40.013643083404105],[-75.047023125952549,40.013703341844021],[-75.046906266743932,40.013799357596127],[-75.04678568920184,40.01385973022029],[-75.046705862246441,40.013928963502281],[-75.046616710800734,40.013974272333506],[-75.046562864270257,40.014036215920846],[-75.046508703294791,40.014106052496892],[-75.046429818979746,40.014151602943073],[-75.046378171791687,40.014158288116725],[-75.046325164822221,40.014157039930097],[-75.046285774870981,40.014156112375623],[-75.046268210264302,40.014171346414187],[-75.046259166374469,40.014179190644867],[-75.046228051805656,40.014186359260165],[-75.046196938400982,40.014193527894626],[-75.046176405742031,40.014193044370622],[-75.046175027977696,40.014191918049363],[-75.046161477315792,40.014180840391276],[-75.046130678333611,40.014180115094383],[-75.046114650534605,40.014195541183355],[-75.046093802273575,40.014202951530272],[-75.046078088929988,40.014210482800721],[-75.046047288764541,40.014209757453905],[-75.04591917104112,40.014072415963959],[-75.045814307834661,40.014125256374058],[-75.045912724725383,40.014234242525184]]]},"properties":{"OBJECTID_1":273,"OBJECTID":216,"ASSET_NAME":"Lardners Point Park","SITE_NAME":"Lardners Point Park","CHILD_OF":"Lardners Point Park","ADDRESS":"5202 LEVICK ST","TYPE":"Land","USE_":"Park- Community","ACREAGE":4.7539049999999996,"ZIPCODE":"19135","ALLIAS":" ","GLOBALID":"b67ab970-a55c-4ecf-90c2-07386b42317f","Shape_Length":2178.570574724461,"Shape_Area":207079.20663327214}},{"type":"Feature","id":274,"geometry":{"type":"Polygon","coordinates":[[[-75.118675861885805,39.979079021370019],[-75.118667399307199,39.979080849241008],[-75.118659921559214,39.979084404441615],[-75.118650125266115,39.979095475130592],[-75.118643418723295,39.979110110859374],[-75.11863712020201,39.979123858517696],[-75.118621947820202,39.979156972171758],[-75.117569931467344,39.981475490353091],[-75.117565510496007,39.981485176836095],[-75.117561089558251,39.981494862418764],[-75.117555151478115,39.981508213731999],[-75.117554782289517,39.981515230596237],[-75.11755696355408,39.98152205007046],[-75.117561522773258,39.981528136589873],[-75.117576135436636,39.981544725459322],[-75.117781949746899,39.981778374564449],[-75.117790899113601,39.981788535309398],[-75.117798283690732,39.981792802566723],[-75.117806864001892,39.981795441155306],[-75.11781603929488,39.981796267001471],[-75.117825175847642,39.981795221419794],[-75.117833644066295,39.981792380974227],[-75.117849359901456,39.981783621198176],[-75.117863044873516,39.981776671864687],[-75.118087151376415,39.981662862121773],[-75.118099199502552,39.981656742914616],[-75.118109851956433,39.981650279041581],[-75.11812173244995,39.981642319688532],[-75.118130085914871,39.981635306623055],[-75.118140852234461,39.981625692654426],[-75.118152548557177,39.981613327542981],[-75.118159457476651,39.981603966601767],[-75.118164586286341,39.981597018342114],[-75.118168829518027,39.98158937760514],[-75.11817042309157,39.981586338033551],[-75.118176001872669,39.981575696859061],[-75.118180530369145,39.981565651507196],[-75.118374173185998,39.981136064139456],[-75.118383918321129,39.981114443034684],[-75.11840640923883,39.981102639890373],[-75.119397583711802,39.980582796421324],[-75.119413308306335,39.980574553833705],[-75.119426623591238,39.980568248194189],[-75.119431313763329,39.980563184693459],[-75.119432725656893,39.980557062123154],[-75.119430583748411,39.980551067131266],[-75.119424458877035,39.980544032958043],[-75.11941887787961,39.980537623050424],[-75.119412613972671,39.980530428910399],[-75.118935697649647,39.979987968501234],[-75.118929067814875,39.979980427155631],[-75.118922060254206,39.97997232662032],[-75.118917535269816,39.979963239609482],[-75.118916000761331,39.979950727867632],[-75.118916684279938,39.979943907424961],[-75.119091706372259,39.979558753494331],[-75.119098921883335,39.979542920227033],[-75.119101043798707,39.979531106815074],[-75.119099743432002,39.979519232065776],[-75.11909508186416,39.979507865929101],[-75.119087288104936,39.979497566887055],[-75.119072507456181,39.979481174384745],[-75.118755428032244,39.979129519365237],[-75.118744218565794,39.979117087632396],[-75.118727221342567,39.979098236706747],[-75.118709330070686,39.979082419770371],[-75.118698756659754,39.979078813788604],[-75.118687288701423,39.979077649809561],[-75.118675861885805,39.979079021370019]]]},"properties":{"OBJECTID_1":274,"OBJECTID":217,"ASSET_NAME":"Cione Playground","SITE_NAME":"Cione Playground","CHILD_OF":"Cione Playground","ADDRESS":"2600 ARAMINGO AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":4.7522390000000003,"ZIPCODE":"19125","ALLIAS":"Aramingo Sqaure","GLOBALID":"9ba6fd3c-ffef-4770-b82d-31e5f6e08f93","Shape_Length":2372.1558189058956,"Shape_Area":207006.73657120334}},{"type":"Feature","id":275,"geometry":{"type":"Polygon","coordinates":[[[-75.180896691629059,40.057663657271753],[-75.181834891685838,40.058231754923817],[-75.181869503486581,40.058252903967222],[-75.181886498300898,40.058263286824833],[-75.181901767388382,40.058270812754031],[-75.181925181631726,40.058271168513492],[-75.18194077226228,40.058264903588963],[-75.181958927873097,40.058248338906949],[-75.182531325508322,40.057688866118355],[-75.182543993649958,40.057676474729433],[-75.183019858670733,40.057210978210904],[-75.183032241761552,40.057198864220503],[-75.183094226448247,40.057138229122216],[-75.183237490718795,40.056998085804224],[-75.18327408691674,40.056962285527703],[-75.183291532329164,40.056943090059022],[-75.183294731561645,40.056928447175196],[-75.183293287281401,40.056914183495003],[-75.183285955943163,40.056902795860545],[-75.183276141934769,40.056895417207343],[-75.182762872172901,40.056575774204951],[-75.182754322300738,40.056570439305986],[-75.182726037622615,40.056559774562956],[-75.182708217190438,40.056558017641827],[-75.182682348408306,40.056562398740233],[-75.18265184380661,40.056581983463396],[-75.182615867464378,40.056617543312399],[-75.182606570946604,40.056626733082723],[-75.182223954794068,40.05700491936684],[-75.182143678401545,40.056952222769638],[-75.182266896869578,40.056833100011296],[-75.182234202422578,40.05681508888631],[-75.181953700428537,40.056644704507512],[-75.181921645693976,40.056675775583351],[-75.181864739163501,40.056731067971178],[-75.1818085857537,40.056785264422295],[-75.181753073517598,40.056839185055757],[-75.181697169391143,40.056893451000086],[-75.181641400222404,40.056947494683897],[-75.180896691629059,40.057663657271753]]]},"properties":{"OBJECTID_1":275,"OBJECTID":218,"ASSET_NAME":"Pleasant Playground","SITE_NAME":"Pleasant Playground","CHILD_OF":"Pleasant Playground","ADDRESS":"6750 BOYER ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":4.7302679999999997,"ZIPCODE":"19119","ALLIAS":" ","GLOBALID":"b9b7547f-a15c-4305-9bd4-ec87b843c55c","Shape_Length":2087.2993350792785,"Shape_Area":206049.657433218}},{"type":"Feature","id":276,"geometry":{"type":"Polygon","coordinates":[[[-75.178251712063613,39.977038995521269],[-75.178229035726133,39.97705317202837],[-75.178223914782691,39.977063891034447],[-75.178215671903288,39.977107170229196],[-75.178211726318665,39.977127892482592],[-75.177969720082743,39.978228865683391],[-75.17796162883063,39.978266957532512],[-75.17795422903059,39.978301789699238],[-75.177952405654096,39.978309393920803],[-75.177962953022458,39.978330524786095],[-75.177980261046827,39.978338124402114],[-75.178023324663201,39.97834358560123],[-75.179323258054765,39.978510904070539],[-75.179386027310969,39.978519049688771],[-75.17942167221166,39.978522361952749],[-75.179445385101758,39.978511625059916],[-75.179453144539508,39.97849864950242],[-75.179457337316208,39.978472099601142],[-75.179464548292842,39.978433014854822],[-75.179714499525019,39.977335352505129],[-75.179726828493898,39.97727317231719],[-75.179730649737152,39.977253897865822],[-75.179722763164335,39.977234089984464],[-75.17970097773393,39.977221914119475],[-75.179651470049819,39.977216013669775],[-75.179590973125073,39.977208634470664],[-75.178296758103258,39.977041413294486],[-75.178266400307962,39.97703733615613],[-75.178251712063613,39.977038995521269]]]},"properties":{"OBJECTID_1":276,"OBJECTID":219,"ASSET_NAME":"Athletic Recreation Center","SITE_NAME":"Athletic Recreation Center","CHILD_OF":"Athletic Recreation Center","ADDRESS":"1401-55 N 27TH ST","TYPE":"Land","USE_":"Recreation Center","ACREAGE":4.7030570000000003,"ZIPCODE":"19121","ALLIAS":" ","GLOBALID":"1ec83ed3-4d35-4939-9884-405de668ad54","Shape_Length":1795.6259994219779,"Shape_Area":204864.35738441965}},{"type":"Feature","id":277,"geometry":{"type":"Polygon","coordinates":[[[-75.252848919201696,40.045534313581435],[-75.252789035354809,40.045497709306332],[-75.252646619052769,40.045397834587121],[-75.252054363278148,40.045013454937546],[-75.251637764989979,40.044711700197688],[-75.251383384811518,40.044539558502329],[-75.25082470600212,40.044000109002546],[-75.250647648076892,40.04384703956196],[-75.250204911125365,40.043554914290283],[-75.250134839834104,40.04364543079592],[-75.250416227351252,40.043813603178045],[-75.250570921798172,40.043881994428581],[-75.250760145800541,40.044030475959296],[-75.250322846328444,40.04423284912103],[-75.251579196655456,40.045069130502988],[-75.252402275090859,40.045740744246118],[-75.253923919786246,40.046933348679097],[-75.254415531686689,40.046548864561956],[-75.252848919201696,40.045534313581435]]]},"properties":{"OBJECTID_1":277,"OBJECTID":220,"ASSET_NAME":"Ottinger Tract","SITE_NAME":"Ottinger Tract","CHILD_OF":"Manayunk Canal","ADDRESS":"7808 NIXON ST","TYPE":"Land","USE_":"Park- Watershed\\Conservation","ACREAGE":4.7008510000000001,"ZIPCODE":"19128","ALLIAS":" ","GLOBALID":"5ab57300-c08a-4814-be95-f0fb8a6974ad","Shape_Length":3623.3183215706299,"Shape_Area":204768.31082542415}},{"type":"Feature","id":278,"geometry":{"type":"Polygon","coordinates":[[[-75.166419073965216,40.024648910373074],[-75.166463666200016,40.024605234106339],[-75.166794416508324,40.024276774850556],[-75.166907794875371,40.024346491278827],[-75.167237943033925,40.024027636497813],[-75.167567691205022,40.023723586305991],[-75.167314215213253,40.023554478878388],[-75.167692558370589,40.023184413791284],[-75.167711206232113,40.023158823564266],[-75.16754092612581,40.023067878031476],[-75.167521410914247,40.023084475530148],[-75.167133919374479,40.023464602253284],[-75.167052937408783,40.023417403922352],[-75.166956747145846,40.023362657135458],[-75.166869548539026,40.023312400450948],[-75.166774267541399,40.023257481140618],[-75.166676327708672,40.023201325210167],[-75.166581449527726,40.023146268830061],[-75.16648632211583,40.023091175225382],[-75.16635474480303,40.023016466308384],[-75.165604404171205,40.02373427363279],[-75.165352079918989,40.023973889616713],[-75.165289870618196,40.024029036200325],[-75.166419073965216,40.024648910373074]]]},"properties":{"OBJECTID_1":278,"OBJECTID":221,"ASSET_NAME":"Happy Hollow Playground","SITE_NAME":"Happy Hollow Playground","CHILD_OF":"Happy Hollow Playground","ADDRESS":"4800 WAYNE AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":4.6788600000000002,"ZIPCODE":"19144","ALLIAS":" ","GLOBALID":"ffcba080-4804-4f2a-bcb5-f3ca23b58d05","Shape_Length":2158.6427584921848,"Shape_Area":203810.32693973853}},{"type":"Feature","id":279,"geometry":{"type":"Polygon","coordinates":[[[-75.050566319424092,40.092672202458047],[-75.050592005592165,40.092699961384326],[-75.05082358786494,40.092914370060086],[-75.05082915517302,40.092917070570451],[-75.050844078794995,40.09292431039156],[-75.051101714478079,40.092675721394436],[-75.051106607913141,40.092671388724334],[-75.051284402095845,40.092783375831957],[-75.051709939295279,40.09239726580995],[-75.051641087951396,40.091687261829208],[-75.051594964842749,40.091656672553064],[-75.052038753569647,40.091278261387373],[-75.052042977191519,40.091274659926363],[-75.051535591758622,40.090930558575941],[-75.051016996216873,40.091326051341888],[-75.050743340292968,40.091573739456059],[-75.049994312346826,40.092103064197232],[-75.050211244985093,40.092276918215667],[-75.050376320401583,40.092466872933151],[-75.050462402871446,40.092559901131622],[-75.050505707852238,40.092610091809462],[-75.050566319424092,40.092672202458047]]]},"properties":{"OBJECTID_1":279,"OBJECTID":222,"ASSET_NAME":"Baldi School Playground","SITE_NAME":"Baldi School Playground","CHILD_OF":"Baldi School Playground","ADDRESS":"8725 VERREE RD","TYPE":"Land","USE_":"Recreation Site","ACREAGE":4.6236300000000004,"ZIPCODE":"19115","ALLIAS":" ","GLOBALID":"41d792bb-8322-4e4c-a8bc-ad55b4605fcf","Shape_Length":2010.4715851158503,"Shape_Area":201404.47895120402}},{"type":"Feature","id":280,"geometry":{"type":"Polygon","coordinates":[[[-75.092081129527685,40.021316907964561],[-75.092049407712167,40.021347746934147],[-75.093417721646986,40.022239656418805],[-75.093445021478303,40.022204862847374],[-75.093499736667752,40.021974873188455],[-75.09322473245615,40.021174778093219],[-75.09313160402732,40.020908049357331],[-75.093179420614888,40.020823168006409],[-75.093254020968544,40.020681121063248],[-75.093373292853798,40.020661097845981],[-75.093552873488619,40.020639201648038],[-75.093674969138746,40.020634133069848],[-75.09374614922146,40.020657766739454],[-75.093790434371329,40.020667775381703],[-75.093823635676344,40.020609102932291],[-75.093780496232,40.020597160149798],[-75.093671303455693,40.020599211508191],[-75.093234947895922,40.020549998868226],[-75.093239435127572,40.020523923077008],[-75.093282538575721,40.020273441099086],[-75.093250360313405,40.020169014347061],[-75.093232074786982,40.020165027677741],[-75.092534229638829,40.020012876156976],[-75.092498617132904,40.019996528007304],[-75.092326140034601,40.020186121187891],[-75.092357141038306,40.02020489367024],[-75.092341527795313,40.020221823200252],[-75.092201201839558,40.020497075836545],[-75.092081129527685,40.021316907964561]]]},"properties":{"OBJECTID_1":280,"OBJECTID":223,"ASSET_NAME":"Simpson Playground","SITE_NAME":"Simpson Playground","CHILD_OF":"Simpson Playground","ADDRESS":"1010 ARROTT ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":4.5868270000000004,"ZIPCODE":"19124","ALLIAS":" ","GLOBALID":"2459cb3e-f60f-4755-9a3d-9946dc4eab97","Shape_Length":2324.4999887393706,"Shape_Area":199801.24748398157}},{"type":"Feature","id":281,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.099514720788221,39.981089961601974],[-75.09948537607103,39.981098275301491],[-75.099449483944582,39.981115384158308],[-75.099411262101739,39.981135075626909],[-75.097796109632881,39.981980096126783],[-75.097743672626706,39.982007994962935],[-75.097704873445053,39.982033356279992],[-75.097670894946489,39.98206316298149],[-75.097637283181072,39.982100403589548],[-75.097605341417392,39.98215144521388],[-75.097589576987815,39.982191338269125],[-75.097579467222232,39.982233756968029],[-75.097577094205334,39.982261888340688],[-75.0975795608542,39.982301867565759],[-75.097588951709156,39.982345756034647],[-75.0976039463539,39.982382917129833],[-75.097622638514096,39.982415885557849],[-75.097639196039324,39.982435402634209],[-75.097906344327669,39.982741167439755],[-75.097944467328858,39.982784211505688],[-75.097966749772098,39.982811510622518],[-75.097978530424498,39.982818593787123],[-75.097992734934621,39.982827134973874],[-75.098008660114786,39.982820197374323],[-75.098021706476061,39.982814514167977],[-75.09837855137954,39.982685721906961],[-75.098870252308146,39.982467561586198],[-75.09900497544038,39.982381594597157],[-75.099790909167012,39.982098282627874],[-75.099813328952891,39.982088096959153],[-75.100238278274347,39.981895180877778],[-75.100321483485246,39.981851939368958],[-75.100268639222605,39.981795110066663],[-75.099687131520284,39.981141277502147],[-75.09967022407703,39.981121746338424],[-75.099660362674868,39.98111035566555],[-75.099619940541828,39.981093389108835],[-75.099587934901265,39.981087022076586],[-75.099551996087001,39.981085069376434],[-75.099514720788221,39.981089961601974]]],[[[-75.100829402472115,39.982522460786171],[-75.100794214900873,39.982532367240964],[-75.100744705668617,39.982555555020753],[-75.100361214374814,39.98271416998913],[-75.100262265176056,39.982755362208522],[-75.100261735360874,39.982755582443076],[-75.100219766668303,39.982773963179383],[-75.100144462997619,39.982807927111672],[-75.100095276052258,39.982828487434539],[-75.100057349343004,39.982845098100888],[-75.100025627992295,39.982857989300783],[-75.099822985624556,39.982939334580664],[-75.099013800604538,39.983252195486642],[-75.098784875436166,39.983329308809154],[-75.098656624481521,39.983378747539845],[-75.098509511100389,39.983439067356585],[-75.09861029313015,39.983559378281441],[-75.099025416086093,39.984062181443186],[-75.099039644043174,39.984079254039649],[-75.099051897799953,39.984089288995136],[-75.099065935188563,39.98409783068437],[-75.099089998860407,39.984107276134374],[-75.099107203570568,39.98411134435122],[-75.099124420031941,39.984113371089848],[-75.099151248594168,39.98411298881912],[-75.099168731469206,39.984110050690234],[-75.099201087346941,39.984098447529746],[-75.101253646358657,39.983023770467945],[-75.101273192035592,39.983012919891351],[-75.10129080148954,39.983002371523213],[-75.101300220478279,39.982994246223178],[-75.101308691815049,39.982982278662242],[-75.101311012148528,39.982971286423926],[-75.101305069799011,39.982962557007596],[-75.101293283956991,39.982948960490091],[-75.101275002861186,39.982927717451169],[-75.100943734421065,39.9825518102123],[-75.100930393862015,39.982539789719233],[-75.100914593291037,39.98253023984433],[-75.100895098320493,39.982522466228183],[-75.100878927632863,39.982519132156597],[-75.100855197022312,39.982518482559307],[-75.100829402472115,39.982522460786171]]]]},"properties":{"OBJECTID_1":281,"OBJECTID":224,"ASSET_NAME":"Monkiewicz Playground","SITE_NAME":"Monkiewicz Playground","CHILD_OF":"Monkiewicz Playground","ADDRESS":"3201 RICHMOND ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":9.8924230000000009,"ZIPCODE":"19134","ALLIAS":" ","GLOBALID":"8420550f-c6d4-4b8b-9bbd-4cbe12547db5","Shape_Length":4061.830931628368,"Shape_Area":430912.23117282538}},{"type":"Feature","id":282,"geometry":{"type":"Polygon","coordinates":[[[-75.24111941078074,39.981310563450997],[-75.24105878379487,39.981317365036396],[-75.239541258151775,39.981485431139568],[-75.2394705107302,39.9814925402965],[-75.239437425205097,39.981500175961216],[-75.239418647639667,39.981513312537047],[-75.23939840648832,39.981545447888635],[-75.239226388325108,39.981818577316083],[-75.239191131133808,39.981875764226473],[-75.239177063741067,39.981899015658975],[-75.239173766992593,39.98192175670389],[-75.239193419944129,39.981938930736639],[-75.239256937001485,39.981961153097096],[-75.241175473260157,39.982612845244198],[-75.241314918567639,39.982660474587561],[-75.241370898683044,39.982679595562999],[-75.241397290492586,39.982685195477373],[-75.241419280976004,39.982685876164481],[-75.241432820316575,39.982677697360522],[-75.241437700454185,39.982659442684643],[-75.241434430196747,39.98265034685442],[-75.241428805089882,39.982622592236638],[-75.241421968592618,39.982588853771638],[-75.241200304705146,39.981391357976669],[-75.241196307404579,39.981368306072504],[-75.241189828851319,39.981330939902989],[-75.241180873019374,39.981318056335013],[-75.241173801296583,39.981313109359903],[-75.241141878641656,39.981308042595074],[-75.24111941078074,39.981310563450997]]]},"properties":{"OBJECTID_1":282,"OBJECTID":225,"ASSET_NAME":"Tustin Playground","SITE_NAME":"Tustin Playground","CHILD_OF":"Tustin Playground","ADDRESS":"5901-29 W COLUMBIA AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":4.3330909999999996,"ZIPCODE":"19151","ALLIAS":" ","GLOBALID":"25418fbd-aced-41f6-b23c-48255c7e67df","Shape_Length":1861.3282867124747,"Shape_Area":188748.62704270758}},{"type":"Feature","id":283,"geometry":{"type":"Polygon","coordinates":[[[-75.182603508534726,39.934873353924161],[-75.182596629918208,39.934875274966636],[-75.182588636344562,39.934879414567867],[-75.182583412183249,39.934883549491296],[-75.182578673077458,39.934890366772976],[-75.18257533844266,39.934905395781144],[-75.182345265177943,39.935966618549287],[-75.182340419924074,39.93598906870384],[-75.182339933477252,39.935995221634563],[-75.182340372478805,39.936001136694195],[-75.182344214330101,39.936009458855132],[-75.182350925514839,39.936016619879204],[-75.182359978745879,39.936022046630555],[-75.182368639644636,39.936024691283421],[-75.182390207534738,39.936027788880281],[-75.182428128397632,39.936032604995368],[-75.183810589448527,39.93621003474945],[-75.183842416847938,39.93621402117099],[-75.183849927251856,39.936214961383634],[-75.183855843624201,39.936214906352298],[-75.183863525448103,39.936214065496138],[-75.183870046255578,39.936212478753923],[-75.183875755651627,39.936209473684528],[-75.183881827987364,39.936204854014214],[-75.183887626010488,39.936196773728597],[-75.183890867042948,39.936185209684851],[-75.183895164825472,39.936165714256703],[-75.184122939178494,39.935121851321057],[-75.184127516176389,39.9351009709724],[-75.184128597163038,39.935093791572385],[-75.184128041513475,39.935086808016813],[-75.184124924723392,39.935079489649333],[-75.184117181452251,39.935070955925283],[-75.184110381069345,39.93506739525381],[-75.184102699759819,39.935065125844176],[-75.184086016065592,39.935063182112188],[-75.182693570176511,39.934882695267156],[-75.182638865812791,39.934875342884418],[-75.182618937412727,39.934872664958306],[-75.182608900235209,39.93487234385497],[-75.182603508534726,39.934873353924161]]]},"properties":{"OBJECTID_1":283,"OBJECTID":226,"ASSET_NAME":"Wharton Square Playground","SITE_NAME":"Wharton Square Playground","CHILD_OF":"Wharton Square Playground","ADDRESS":"1300 S 23RD ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":4.3003159999999996,"ZIPCODE":"19146","ALLIAS":" ","GLOBALID":"e12ab160-2de8-40fa-baee-604bffc0fe9c","Shape_Length":1714.2326745091884,"Shape_Area":187320.95661643991}},{"type":"Feature","id":284,"geometry":{"type":"Polygon","coordinates":[[[-75.155907325782266,39.918821228900228],[-75.155899520649271,39.918827549566068],[-75.155896531036021,39.918833463797917],[-75.155894985766508,39.918841024434201],[-75.155892605736085,39.918852674834902],[-75.155670220312075,39.919896329502201],[-75.155659245937713,39.919947668187255],[-75.155656385977025,39.919964134489383],[-75.15565834192158,39.919971877059787],[-75.155662260523513,39.91997740518098],[-75.155669130344052,39.919982472980642],[-75.155677181372624,39.919985473535881],[-75.155688061210427,39.919987296490184],[-75.155702463526865,39.919989113546293],[-75.155733011510264,39.919992968202642],[-75.15707035869417,39.92016610166209],[-75.157090485866476,39.920168771522782],[-75.157102786619774,39.920170403921901],[-75.157116585534851,39.920167671421368],[-75.157123638133953,39.920164391714565],[-75.157131906584766,39.920157000218424],[-75.157135886997409,39.920149345065873],[-75.157138941736719,39.920136844021187],[-75.157143675122597,39.920114847249067],[-75.157377799006241,39.91903534819749],[-75.157377744549507,39.91902741799511],[-75.15737623019966,39.919022482207325],[-75.157372491529273,39.919015210237355],[-75.157364311252252,39.919006487206282],[-75.157356174877151,39.919001644956971],[-75.157300871437499,39.918994348585827],[-75.155993473491051,39.918825668346599],[-75.155944412869687,39.918819482949822],[-75.15591942327292,39.918817264203369],[-75.155907325782266,39.918821228900228]]]},"properties":{"OBJECTID_1":284,"OBJECTID":227,"ASSET_NAME":"Mifflin Square","SITE_NAME":"Mifflin Square","CHILD_OF":"Mifflin Square","ADDRESS":"500 WOLF ST","TYPE":"Land","USE_":"Park- Square\\Plaza","ACREAGE":4.1718960000000003,"ZIPCODE":"19148","ALLIAS":" ","GLOBALID":"d979a2a5-0d37-4513-8088-a6db7a9dabc4","Shape_Length":1689.6527210835809,"Shape_Area":181727.12643345247}},{"type":"Feature","id":285,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.155996629173529,40.042859192211921],[-75.155983024156853,40.042875978157824],[-75.155980868538691,40.042903662762775],[-75.155979196249817,40.042925143972475],[-75.155942124902381,40.043600349301926],[-75.155941352344769,40.043614424652489],[-75.155940429845344,40.043632636787187],[-75.155939821412716,40.043665847124601],[-75.155952470549721,40.04368443422014],[-75.155976650600635,40.043694158919727],[-75.156018883335037,40.043695568542283],[-75.156890985636423,40.043719713683195],[-75.156923817115825,40.043720736848059],[-75.15694381999927,40.043721359587032],[-75.156974909161789,40.043722328088982],[-75.157011348302376,40.043723462400408],[-75.157042843001662,40.043721672116973],[-75.157056950697097,40.043711946043793],[-75.157059904202299,40.0437099097417],[-75.157060440124937,40.043705794284641],[-75.157065199720549,40.043669256499747],[-75.157067249173465,40.043610347481042],[-75.15709283883298,40.042956788369104],[-75.157094562877631,40.04291753037166],[-75.157094336136922,40.042891404798077],[-75.157084443807776,40.04287966651362],[-75.157067582524846,40.042874422217743],[-75.157018761011201,40.042874203147278],[-75.156051175649353,40.042851299401676],[-75.156020072975679,40.042851062861629],[-75.155996629173529,40.042859192211921]]],[[[-75.156573487269341,40.041339210594678],[-75.156549767025737,40.041339467030426],[-75.156187429470734,40.041343670905718],[-75.156123382096965,40.041344624019118],[-75.156098082887937,40.041345000581515],[-75.156079940812489,40.041351132272901],[-75.156072761903147,40.041356465455799],[-75.156065837067842,40.041366468036891],[-75.15606323325116,40.041377850343125],[-75.156047776626991,40.041685990398335],[-75.156022849248217,40.042138805421736],[-75.156022198516681,40.042150614764942],[-75.15599607580765,40.0426405462864],[-75.155995458026354,40.042652137426465],[-75.155991937323193,40.042718904326179],[-75.155989428911894,40.042739411576882],[-75.155988983261992,40.042753369069104],[-75.155996314500413,40.042766011902195],[-75.156007358711392,40.042773004514508],[-75.156024958598366,40.042776680759957],[-75.156548223360076,40.042791089199923],[-75.156549788927236,40.042755280319497],[-75.156642197302233,40.04139888466441],[-75.156644389575945,40.041338700322299],[-75.156573487269341,40.041339210594678]]]]},"properties":{"OBJECTID_1":285,"OBJECTID":228,"ASSET_NAME":"Belfield Recreation Center","SITE_NAME":"Belfield Recreation Center","CHILD_OF":"Belfield Recreation Center","ADDRESS":"2109 W CHEW AVE","TYPE":"Land","USE_":"Recreation Center","ACREAGE":4.1394229999999999,"ZIPCODE":"19138","ALLIAS":" ","GLOBALID":"d5baea04-a8ff-453c-be77-0c9867775bba","Shape_Length":2586.5121444941615,"Shape_Area":180312.42040254758}},{"type":"Feature","id":286,"geometry":{"type":"Polygon","coordinates":[[[-75.088034249814541,40.016211339151461],[-75.088026849975677,40.016216047618599],[-75.088009556335649,40.0162331799878],[-75.087999025417119,40.01624421954071],[-75.087826942363989,40.016424607491793],[-75.08781509641463,40.016437024862341],[-75.087772900701125,40.016482146344551],[-75.08767143955383,40.016590645869549],[-75.087670085633235,40.016592090377266],[-75.087651506049369,40.016611827515575],[-75.087502473861591,40.016768982807214],[-75.087494986125492,40.016776766249706],[-75.08749317807623,40.016778644436961],[-75.087379440305753,40.016896860576018],[-75.087207443883059,40.017068711440025],[-75.087245431866776,40.017088572768259],[-75.08846459147567,40.017781685013773],[-75.088491112585416,40.017795076470428],[-75.08899730285242,40.017271861362673],[-75.089013903503101,40.017254619978409],[-75.089311732211343,40.01694527908699],[-75.089328691883622,40.016927663940024],[-75.089344766030777,40.016910904981088],[-75.08934743043497,40.016897701643614],[-75.089338095630737,40.016879244730433],[-75.08933190962361,40.016874571871348],[-75.089232738700872,40.016823195206001],[-75.088136165569765,40.016233854501557],[-75.088098277440082,40.016213514622763],[-75.088070458418144,40.016202936644795],[-75.088034249814541,40.016211339151461]]]},"properties":{"OBJECTID_1":286,"OBJECTID":229,"ASSET_NAME":"Overington Park","SITE_NAME":"Overington Park","CHILD_OF":"Overington Park","ADDRESS":"4600 LEIPER ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":4.1362189999999996,"ZIPCODE":"19124","ALLIAS":" ","GLOBALID":"9d0e596d-e066-4868-9d9a-60666ea85e77","Shape_Length":1691.4574080217321,"Shape_Area":180172.96770948733}},{"type":"Feature","id":287,"geometry":{"type":"Polygon","coordinates":[[[-75.164183440336913,39.932500272863528],[-75.164177083242691,39.93250401290868],[-75.164172068805939,39.932508577924885],[-75.164168520067619,39.932513410253954],[-75.164166843467569,39.932519209239537],[-75.164161277412532,39.932543840986391],[-75.16393525649697,39.933566113178742],[-75.163925160001781,39.933611620241912],[-75.163923461949238,39.933621549905439],[-75.163925192005252,39.933628096965613],[-75.163932100277293,39.933635805071987],[-75.163939394659408,39.933640625114052],[-75.16395094470704,39.933646213277783],[-75.163963782925578,39.933649137347132],[-75.164004691214842,39.933654307192583],[-75.165346267784287,39.933827622166255],[-75.165362053062836,39.933829657417832],[-75.165368256277489,39.933830457665742],[-75.165378069080376,39.933829472355733],[-75.165388857446729,39.933826347491696],[-75.165399424687664,39.933820296546614],[-75.165407340471987,39.933811795447767],[-75.165410989213782,39.933802917066032],[-75.165415560119726,39.933779976573618],[-75.165643084805723,39.932736486261753],[-75.16565184613313,39.932704912945695],[-75.165651660625684,39.93269871067082],[-75.165648936778368,39.932692871068305],[-75.16564057980429,39.932686292732441],[-75.165629420220768,39.932682994911914],[-75.165617354363093,39.932681430946793],[-75.165599206702694,39.932679077588254],[-75.164239220687534,39.932501399029256],[-75.164209698470586,39.932497465387449],[-75.164195100596018,39.932497114614499],[-75.164183440336913,39.932500272863528]]]},"properties":{"OBJECTID_1":287,"OBJECTID":230,"ASSET_NAME":"Columbus/DiProspero Playground","SITE_NAME":"Columbus/DiProspero Playground","CHILD_OF":"Columbus/DiProspero Playground","ADDRESS":"1200 WHARTON ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":4.1115329999999997,"ZIPCODE":"19147","ALLIAS":"Passyunk Square","GLOBALID":"de703e83-5eb0-40e2-ac2b-fd188a4ade63","Shape_Length":1676.6032820795776,"Shape_Area":179097.61318277376}},{"type":"Feature","id":288,"geometry":{"type":"Polygon","coordinates":[[[-75.159546221733308,39.933145675234236],[-75.159536662359216,39.933148916514043],[-75.159531421426266,39.933152013866149],[-75.159525542273769,39.933156225778006],[-75.159511737646383,39.933167977692477],[-75.15912268528902,39.933486984978046],[-75.159109548242967,39.933497370667205],[-75.159102237012974,39.933505466933795],[-75.159095506827043,39.933517909325992],[-75.159083950279282,39.93356650778361],[-75.158938649381241,39.93422751375607],[-75.158934468694071,39.934246576762547],[-75.158933512573114,39.93425222256883],[-75.158933198215223,39.934256108768643],[-75.158935076981166,39.934261874486957],[-75.15893913634568,39.934266931714788],[-75.158944993010152,39.934270804163347],[-75.158952095494925,39.934273128876491],[-75.158979299103237,39.934277720578926],[-75.160328541394563,39.934505588926655],[-75.160349127747708,39.934508977586304],[-75.160362662018557,39.934511205070294],[-75.160371697266967,39.934511647860482],[-75.160378433581826,39.934510898049986],[-75.160388200335774,39.934507655072267],[-75.160396531121307,39.934502565018363],[-75.160402850756171,39.93449597891221],[-75.160406719344053,39.934488352647747],[-75.160408241404184,39.934481274377447],[-75.160410797971437,39.934469377393995],[-75.160654515779044,39.933353678423323],[-75.160661461593222,39.933317903540953],[-75.160662726952694,39.933311479017846],[-75.16066152301525,39.93330504739717],[-75.160657958766819,39.933299158057594],[-75.160652335761299,39.933294313367568],[-75.160640883962941,39.933289349686184],[-75.160626615899389,39.933287249824602],[-75.160607102986376,39.933284695459086],[-75.159603845346794,39.933149889821344],[-75.159575288833821,39.933145951571596],[-75.159559521716034,39.933144430408049],[-75.159546221733308,39.933145675234236]]]},"properties":{"OBJECTID_1":288,"OBJECTID":231,"ASSET_NAME":"Capitolo Playground","SITE_NAME":"Capitolo Playground","CHILD_OF":"Capitolo Playground","ADDRESS":"900 FEDERAL ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":4.11069,"ZIPCODE":"19147","ALLIAS":" ","GLOBALID":"246a80bc-b349-4f9e-ba67-d9eb52c0c02c","Shape_Length":1645.7857495737953,"Shape_Area":179061.13082923641}},{"type":"Feature","id":289,"geometry":{"type":"Polygon","coordinates":[[[-75.188698107021395,39.930636785965042],[-75.188689732109466,39.930640726441112],[-75.188683105063376,39.930646298940331],[-75.188678740895455,39.930653067163668],[-75.188677439450586,39.93065918568719],[-75.188675483867542,39.930668376460822],[-75.188672841279299,39.930680797328186],[-75.18844677319322,39.931730834262893],[-75.18844137050985,39.93175642931304],[-75.188439660997247,39.931766914925618],[-75.188441347122989,39.931773291193203],[-75.188444529293221,39.931777733972154],[-75.188449290153727,39.93178183899515],[-75.188454342786173,39.931784568385673],[-75.188459090360311,39.931786386348058],[-75.188463697755481,39.931786955082281],[-75.188471644676554,39.93178797773394],[-75.188514169228128,39.931793656063022],[-75.188661749136941,39.931811751374433],[-75.189856336584768,39.931966348326725],[-75.189869583128655,39.931967989249827],[-75.189885430992973,39.931969952238539],[-75.189898790011384,39.931970005387171],[-75.189906794956812,39.93196756214887],[-75.189913524678559,39.931963428079811],[-75.189918396778822,39.931957964098032],[-75.189920984998238,39.931951642728329],[-75.189923009277337,39.931942271466191],[-75.189928839691021,39.931915280331935],[-75.190154928483423,39.93086630553141],[-75.19015842329901,39.93084961485372],[-75.190159338813274,39.930842832667757],[-75.190159644627599,39.930838752514866],[-75.190156980120562,39.930831159697647],[-75.190151337646427,39.930824607747425],[-75.190147367785713,39.930822215251347],[-75.190143293817911,39.930819759162567],[-75.190133673410116,39.930817119799478],[-75.190127408812629,39.930816303302777],[-75.190100449737216,39.930812789454549],[-75.188784618317925,39.930649398698783],[-75.188779599742404,39.930642785827992],[-75.188736202362932,39.930637274596663],[-75.188717385349449,39.930634884723283],[-75.188698107021395,39.930636785965042]]]},"properties":{"OBJECTID_1":289,"OBJECTID":232,"ASSET_NAME":"Vare Recreation Center","SITE_NAME":"Vare Recreation Center","CHILD_OF":"Vare Recreation Center","ADDRESS":"2600 MORRIS ST","TYPE":"Land","USE_":"Recreation Center","ACREAGE":4.1032919999999997,"ZIPCODE":"19145","ALLIAS":" ","GLOBALID":"431c67a4-e8b1-45cf-aea2-646a5b156738","Shape_Length":1679.4483295603459,"Shape_Area":178738.76913463429}},{"type":"Feature","id":290,"geometry":{"type":"Polygon","coordinates":[[[-75.188018388813504,40.057024275617238],[-75.18800979033081,40.057029592632098],[-75.187599820849599,40.057429403246211],[-75.187583427576655,40.057445389998804],[-75.187506941812217,40.05751997775662],[-75.186844203729464,40.058167525444397],[-75.186890165020557,40.058192180569328],[-75.187420180931383,40.058514018660659],[-75.187919361802244,40.058815932820806],[-75.187996522430211,40.058744179968897],[-75.188048543640008,40.058695949502102],[-75.188101417771961,40.058646835223357],[-75.188152198430672,40.05859922127069],[-75.18820579380602,40.058549882460127],[-75.188258189113242,40.058501207940715],[-75.188309798359967,40.058451114808697],[-75.188363954827025,40.058402995787262],[-75.18841601904829,40.058352525321929],[-75.188802194813576,40.057995943254483],[-75.188838560279464,40.057963331985938],[-75.188829366932055,40.057954991870346],[-75.188741316180241,40.057875123573581],[-75.188627146968102,40.057771563938665],[-75.188525768812056,40.057679603282232],[-75.188442767760037,40.057600417655784],[-75.188365469346792,40.057514142050749],[-75.188292896597432,40.057421683632725],[-75.188222360004559,40.057318687346516],[-75.188194429209886,40.057272538532466],[-75.188173024900607,40.057232131384097],[-75.188094367243522,40.057079374264219],[-75.188084512100573,40.057059750442988],[-75.188073911072536,40.057038640447686],[-75.188060286027209,40.057025511708233],[-75.188039573869915,40.057020153788152],[-75.188018388813504,40.057024275617238]]]},"properties":{"OBJECTID_1":290,"OBJECTID":233,"ASSET_NAME":"Mt Airy Playground","SITE_NAME":"Mt Airy Playground","CHILD_OF":"Mt Airy Playground","ADDRESS":"7001 GERMANTOWN AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":4.0719019999999997,"ZIPCODE":"19119","ALLIAS":" ","GLOBALID":"0337eccf-ed6f-493c-8768-939eadd7af51","Shape_Length":1737.4905113396678,"Shape_Area":177371.4306499286}},{"type":"Feature","id":291,"geometry":{"type":"Polygon","coordinates":[[[-75.229296863952953,40.033020357587645],[-75.229317575772072,40.033046340948765],[-75.229411740820794,40.033171046501963],[-75.229339688497205,40.033203251624109],[-75.229188691860244,40.033273620119779],[-75.228654704998263,40.033707677142765],[-75.228381622862685,40.033828566437897],[-75.2283673853523,40.03383458604921],[-75.228402207040403,40.03388123194302],[-75.228405590825361,40.033885746338235],[-75.228650268734512,40.034212174964544],[-75.228712718205912,40.034300203591549],[-75.228728883882653,40.03432299053641],[-75.228743942509723,40.034332825697355],[-75.228773069128465,40.03433256137123],[-75.228807605634842,40.034313888625498],[-75.228869239653903,40.034279936042623],[-75.229506637277211,40.033919195337667],[-75.229513035573348,40.033915574094308],[-75.230183810978502,40.033530382148136],[-75.230464438472453,40.03337188088053],[-75.230632582036151,40.033281995598891],[-75.230918233730833,40.033122822312549],[-75.230937067836592,40.033112287414134],[-75.230943560154117,40.033106286827639],[-75.230948008494835,40.033099271039333],[-75.230950152951266,40.033091642499677],[-75.230949867062265,40.033083839922512],[-75.230942221506652,40.033069501389761],[-75.230807458276757,40.032926855347789],[-75.230800773863436,40.032919780081791],[-75.230693122717241,40.032807075771032],[-75.230660241965566,40.032825952961389],[-75.230438756667112,40.032923998801323],[-75.230345646624983,40.032963383924589],[-75.230151689886696,40.03276026382725],[-75.230013858836855,40.032616774639038],[-75.229721897956409,40.03275015320262],[-75.229687916347018,40.032763601795011],[-75.229707878645129,40.032790832733141],[-75.22971908140866,40.032806113466883],[-75.229720949849153,40.032814190441904],[-75.229715862307316,40.032829957038437],[-75.229700674292076,40.032841254702397],[-75.229296863952953,40.033020357587645]]]},"properties":{"OBJECTID_1":291,"OBJECTID":234,"ASSET_NAME":"Hillside Recreation Center","SITE_NAME":"Hillside Recreation Center","CHILD_OF":"Hillside Recreation Center","ADDRESS":"201 FOUNTAIN ST","TYPE":"Land","USE_":"Recreation Center","ACREAGE":4.0621150000000004,"ZIPCODE":"19127","ALLIAS":" ","GLOBALID":"aa065faa-b3ac-4c9a-b000-5e30c88e8c96","Shape_Length":2090.6909191372124,"Shape_Area":176945.00737114003}},{"type":"Feature","id":292,"geometry":{"type":"Polygon","coordinates":[[[-75.173667492864894,39.960662274133007],[-75.173654639759917,39.960675684520446],[-75.173641604837158,39.960730816776355],[-75.173641593463941,39.960730869680752],[-75.173641585010785,39.960730907333506],[-75.17360731085671,39.960882480194485],[-75.173596541429831,39.96093011192378],[-75.173596531362918,39.960930161253529],[-75.173596515831235,39.960930231183816],[-75.173570602382725,39.961047728031424],[-75.173552218516349,39.961131085157149],[-75.173511295992171,39.961316641806647],[-75.173391624050751,39.961859265929426],[-75.173388781569329,39.961872158673735],[-75.173499516689574,39.961920636843857],[-75.173571712164318,39.961949901209536],[-75.173644041092473,39.961983737566307],[-75.173724645356458,39.962029633257757],[-75.173798383671752,39.96207793450116],[-75.173844211373591,39.96212061377917],[-75.173923277669019,39.962181786618935],[-75.174030826633313,39.962268397501212],[-75.17415757043571,39.962367641648967],[-75.174189734927523,39.962407889436157],[-75.174269895781407,39.962470351618855],[-75.17437636271697,39.962545036376191],[-75.174407140563858,39.962567723749004],[-75.174489636844925,39.96257622153135],[-75.174590137609655,39.962590511465059],[-75.174698957925386,39.962602263387303],[-75.174704369066561,39.962577666441689],[-75.17471940852981,39.962509301737903],[-75.174742617725357,39.96240228582613],[-75.174742691460253,39.962401946898055],[-75.174766487999662,39.962293149347389],[-75.174824667233182,39.962027142522082],[-75.174824690012443,39.962027035812774],[-75.174860341499979,39.961864029059235],[-75.174860371050002,39.961863898174514],[-75.174902981336771,39.961675211940744],[-75.174913518631669,39.961629296734273],[-75.174920824570592,39.961597459417398],[-75.174922872561766,39.961571322833038],[-75.174917181331494,39.961558861122306],[-75.174894332832764,39.961539454041713],[-75.174545732589692,39.961281889901613],[-75.174413614506278,39.961184442856357],[-75.174180484083962,39.96101249087581],[-75.173790752905148,39.96072503147051],[-75.173708305175268,39.960664398858412],[-75.173688376915223,39.960657882129368],[-75.173667492864894,39.960662274133007]]]},"properties":{"OBJECTID_1":292,"OBJECTID":235,"ASSET_NAME":"Rodin Museum","SITE_NAME":"Rodin Museum","CHILD_OF":"Benjamin Franklin Parkway","ADDRESS":"2151 BENJAMIN FRANKLIN PKY","TYPE":"Land","USE_":"Museum","ACREAGE":4.0344420000000003,"ZIPCODE":"19130","ALLIAS":" ","GLOBALID":"b3e5e9cc-8268-4f53-a4c1-a570b0a0b99c","Shape_Length":1783.9503171249344,"Shape_Area":175739.53616165524}},{"type":"Feature","id":293,"geometry":{"type":"Polygon","coordinates":[[[-75.182600037775828,39.919696067471421],[-75.182590452068837,39.91969869282309],[-75.182582181960512,39.919703261381549],[-75.182575883304295,39.91970941751692],[-75.182572046014059,39.919716675741881],[-75.182570970081528,39.919724467027308],[-75.182519382710211,39.919965307474904],[-75.182483972719027,39.920124787472375],[-75.182483962936644,39.920124829600894],[-75.182458334207666,39.920236135266265],[-75.182416951207131,39.920420310684939],[-75.182381279035297,39.920583063572053],[-75.18236245989813,39.920675051742336],[-75.18233380255532,39.920815131862319],[-75.182332831348745,39.920822256039678],[-75.182334319506154,39.92082932807007],[-75.182338162896684,39.920835851866883],[-75.182344096779943,39.920841370094578],[-75.182351701563007,39.920845497634822],[-75.182360445210435,39.92084794506156],[-75.182585589843526,39.920878111246985],[-75.182817314799181,39.920909853318435],[-75.183018517051551,39.920932879078833],[-75.183247781214448,39.920962582054514],[-75.183248061870273,39.920962618070483],[-75.183429842427998,39.920986210264914],[-75.183520404018111,39.92099757001445],[-75.183589557763739,39.921006243958793],[-75.183693290702635,39.921019256199827],[-75.183743619001746,39.921025621990218],[-75.183753338336757,39.921024823177106],[-75.183762409939959,39.921022025838994],[-75.183770150922371,39.92101743363822],[-75.183775982964661,39.921011394036576],[-75.183780966857285,39.920997660636196],[-75.183809250476656,39.920871060899579],[-75.183819274905773,39.920826190524465],[-75.183839079183329,39.920737502987116],[-75.183870044389138,39.920598882492136],[-75.1838895544347,39.92051153807909],[-75.183901149210982,39.920459629001819],[-75.183934550400778,39.920305665625939],[-75.183977674514466,39.920089854559777],[-75.184016862883468,39.919922378465209],[-75.184021141402113,39.919904388210462],[-75.184019917814183,39.919896348132774],[-75.184015834660201,39.919888888284063],[-75.184009209017972,39.919882598714445],[-75.184000574256359,39.919877981509977],[-75.183990605805093,39.919875402279246],[-75.183817856386142,39.919852789706951],[-75.183656683714943,39.919831691994993],[-75.183656647606213,39.919831687582743],[-75.183457578049911,39.919806122905982],[-75.183457342826884,39.91980609241245],[-75.183194171923105,39.919772893458479],[-75.182934145725611,39.919739781419317],[-75.182934054903455,39.919739769474781],[-75.182739323015994,39.919713633003191],[-75.182620109933453,39.919697299892782],[-75.182620075062076,39.919697293705887],[-75.182610196371485,39.919695593047898],[-75.182600037775828,39.919696067471421]]]},"properties":{"OBJECTID_1":293,"OBJECTID":236,"ASSET_NAME":"Girard Estates Park","SITE_NAME":"Girard Estates Park","CHILD_OF":"Girard Estates Park","ADDRESS":"2101 SHUNK ST","TYPE":"Land","USE_":"Park- Neighborhood","ACREAGE":4.0203059999999997,"ZIPCODE":"19145","ALLIAS":"Girard Park","GLOBALID":"1784d7af-685d-4fa5-975d-e5e31507a760","Shape_Length":1656.5087767776542,"Shape_Area":175123.88692048829}},{"type":"Feature","id":294,"geometry":{"type":"Polygon","coordinates":[[[-75.17835751361261,39.915142348841648],[-75.178349281897582,39.915147827072637],[-75.178343257664253,39.915154802745249],[-75.178339270920631,39.915165635404549],[-75.178336186391917,39.91518008514528],[-75.178111094408123,39.916231909349179],[-75.178105785187753,39.916258581883923],[-75.178106501378892,39.916267580150681],[-75.178109282819022,39.916273980270624],[-75.178115522307195,39.91628083458383],[-75.178121876489385,39.916284997439718],[-75.178126393409229,39.916286969264995],[-75.178130399383633,39.916288157460407],[-75.178137130472322,39.916289502291434],[-75.1781532182126,39.916291577790304],[-75.179490155984837,39.916464339186916],[-75.179502040700058,39.916465673337228],[-75.179510307577715,39.916466601110834],[-75.179524735285298,39.916462572678874],[-75.179534847099205,39.916457536562213],[-75.179544742124392,39.916448609516102],[-75.17954921547738,39.916439108611847],[-75.179553786038156,39.916418185944892],[-75.179778867457216,39.915383241438057],[-75.179785947339013,39.915348525549796],[-75.179785391090547,39.915339500249232],[-75.179784043147521,39.915334424360239],[-75.179776978091581,39.915324552160797],[-75.179768690795967,39.915318071003796],[-75.179753595583378,39.915311814752961],[-75.179694019417241,39.915304130641083],[-75.178441304626276,39.915145236471375],[-75.178402948597764,39.9151404531585],[-75.17837482006766,39.915137780549287],[-75.17835751361261,39.915142348841648]]]},"properties":{"OBJECTID_1":294,"OBJECTID":237,"ASSET_NAME":"Barry Playground","SITE_NAME":"Barry Playground","CHILD_OF":"Barry Playground","ADDRESS":"1800 JOHNSTON ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":4.0125479999999998,"ZIPCODE":"19145","ALLIAS":" ","GLOBALID":"2b46af77-ca72-4f22-a6ae-e97d7b61cbab","Shape_Length":1652.889135212044,"Shape_Area":174785.88980498089}},{"type":"Feature","id":295,"geometry":{"type":"Polygon","coordinates":[[[-75.040236239023784,40.032416495523201],[-75.040141696559303,40.032464963410852],[-75.040094040202831,40.032489373856158],[-75.040046084575124,40.032513939410272],[-75.03999851513511,40.0325387546388],[-75.039951503484062,40.032562809907652],[-75.039902843501366,40.032587663339356],[-75.039854949226395,40.032612244681452],[-75.039806754384472,40.032637013538782],[-75.039760871072616,40.032660078972285],[-75.039714863551353,40.032683641541098],[-75.039681623346183,40.032705999733338],[-75.039749101160538,40.032784089691091],[-75.039755627417065,40.032791643144392],[-75.039933150649858,40.032997089563523],[-75.040117175545618,40.033210058796783],[-75.04015104066211,40.033192484491224],[-75.04016189972981,40.033186848729365],[-75.040242615397318,40.033146501936898],[-75.040295687059299,40.033119316899246],[-75.04034877588046,40.033091730373641],[-75.040402262257018,40.033063169254866],[-75.040453011302901,40.033037961223087],[-75.040509191302164,40.033008077787315],[-75.040560707505875,40.032981532626096],[-75.04061506683415,40.032953620940951],[-75.040665214244328,40.032927770592515],[-75.040719019306195,40.03290008726664],[-75.040771702575483,40.032872667592564],[-75.040832113052772,40.032841834976217],[-75.040880757583878,40.032816835721022],[-75.040944317952665,40.032783821115565],[-75.040998107492783,40.032755992228623],[-75.041051155561377,40.032727855689451],[-75.04109870028104,40.032704651430187],[-75.041150386002144,40.032678046939793],[-75.041199352517253,40.032652845204403],[-75.041258275191851,40.03262250980309],[-75.041311759528114,40.032594979033362],[-75.041364680826504,40.032566341083594],[-75.041416437712968,40.03254109063564],[-75.041468406742169,40.032512139141772],[-75.041521790730016,40.032483946341578],[-75.041574844619859,40.032457180207565],[-75.04163011832361,40.032431095332747],[-75.041682807061449,40.032401434470522],[-75.041736325186491,40.032378805128808],[-75.04178660272639,40.032348056558057],[-75.041830289545231,40.032325434120125],[-75.041840483558346,40.032320154657882],[-75.041944063472101,40.03226947467661],[-75.042128125121252,40.032476046696132],[-75.042150012998178,40.032499548596135],[-75.042153060014371,40.03249797782081],[-75.04216232547509,40.032493202650997],[-75.042171117063106,40.032488670404241],[-75.042184440817934,40.032481803164167],[-75.042198882411313,40.032474358573666],[-75.042256476348356,40.032444670739125],[-75.042276315373343,40.03243444479908],[-75.042280405965272,40.032432336368387],[-75.042307942709257,40.032418141665751],[-75.042343294406322,40.032399918787185],[-75.042402153112732,40.032369581307954],[-75.04242460400657,40.032356702952356],[-75.04243088256392,40.032350316545759],[-75.042437565746951,40.032335492319014],[-75.042437788951389,40.032324168658981],[-75.042436116728112,40.032318339978929],[-75.042429682609196,40.032307765827611],[-75.042369117693255,40.03223923214437],[-75.042362233707522,40.032231443346042],[-75.041963032382341,40.031779684004547],[-75.041955312981656,40.03177094919937],[-75.041811524240927,40.031608231010445],[-75.041765175094881,40.031633253224427],[-75.041426691325512,40.031805497390984],[-75.041381283637733,40.031829831631079],[-75.041332753815297,40.031854593202858],[-75.041285547615104,40.031878789476927],[-75.041237421580121,40.031903447001014],[-75.041188309360152,40.03192861286594],[-75.041139648186075,40.031953548768477],[-75.041093171119925,40.031977358493243],[-75.041046359063643,40.032001660382228],[-75.040999444201304,40.032025394868285],[-75.040951433595311,40.032050297383051],[-75.040857381183073,40.032098583669743],[-75.040236239023784,40.032416495523201]]]},"properties":{"OBJECTID_1":295,"OBJECTID":238,"ASSET_NAME":"Mullin Playground","SITE_NAME":"Mullin Playground","CHILD_OF":"Mullin Playground","ADDRESS":"4301 PRINCETON AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":3.8935770000000001,"ZIPCODE":"19135","ALLIAS":" ","GLOBALID":"fdf312c2-ece0-477a-918d-979f48b5ef73","Shape_Length":2076.4008265517587,"Shape_Area":169603.61808943591}},{"type":"Feature","id":296,"geometry":{"type":"Polygon","coordinates":[[[-75.079154860826293,40.024915532963618],[-75.079149716932136,40.02493095807781],[-75.079149440515053,40.024937446348993],[-75.079153026780716,40.024948886473233],[-75.079157833864912,40.024954023379429],[-75.079173643927959,40.024964937767741],[-75.079188791349978,40.024974314884815],[-75.079260403872766,40.02501864647455],[-75.079787320815086,40.025351362904146],[-75.079977093837499,40.025472254692986],[-75.079990866908759,40.025481030286876],[-75.080001556303799,40.025487364446377],[-75.080015093449973,40.025492037521921],[-75.080030399809189,40.025492613252574],[-75.080040755756343,40.025490173435244],[-75.080055967294186,40.025480258849669],[-75.080063308137682,40.025473008556659],[-75.080077455729949,40.025458171177185],[-75.080480102543362,40.025031095133016],[-75.08048353549303,40.025027397776689],[-75.080656055591348,40.024841577900553],[-75.080656249729046,40.024841677923533],[-75.080927774186108,40.024554547486716],[-75.080931471533091,40.02455035438409],[-75.080897647468063,40.024530080524492],[-75.080526354183192,40.0242930894563],[-75.080270005348154,40.024130419296846],[-75.080170312248427,40.024067156971135],[-75.080355013200531,40.023894551602332],[-75.080389935316248,40.023854327390346],[-75.080041570122688,40.023632214908964],[-75.080030558452208,40.023626900438735],[-75.080021849489782,40.023624184946364],[-75.080005244890444,40.023621823792709],[-75.079992673114461,40.023624140897724],[-75.079981648585957,40.023631398339298],[-75.07997836484472,40.023635504617324],[-75.079971697254109,40.023645874639044],[-75.079969300406304,40.023649601476357],[-75.079662482766892,40.024127117851712],[-75.079658458930751,40.024133382022953],[-75.079452876642421,40.024453718269655],[-75.079450378267651,40.024457611230794],[-75.079154860826293,40.024915532963618]]]},"properties":{"OBJECTID_1":296,"OBJECTID":239,"ASSET_NAME":"McIlvain Playground","SITE_NAME":"McIlvain Playground","CHILD_OF":"McIlvain Playground","ADDRESS":"5200 N PENN ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":3.8538890000000001,"ZIPCODE":"19124","ALLIAS":"Frankford Playground","GLOBALID":"e07c0996-bfa7-442a-86bf-dc6576ea0a77","Shape_Length":1798.881350881418,"Shape_Area":167874.61659542649}},{"type":"Feature","id":297,"geometry":{"type":"Polygon","coordinates":[[[-75.150318179787575,39.974870882134113],[-75.15026915662456,39.975670834617176],[-75.150222277846694,39.976218998636675],[-75.150699462414295,39.976280875425509],[-75.151195989744522,39.976345529109601],[-75.15123683283619,39.976350850134637],[-75.151246745002609,39.976351261118133],[-75.151256381256871,39.976349425015222],[-75.151264895682829,39.97634550377456],[-75.151271548085333,39.976339834734958],[-75.151275757128957,39.97633291921435],[-75.151283227498439,39.976299993915802],[-75.151560861518078,39.975041472938429],[-75.151563400018347,39.975030006372222],[-75.15156500793411,39.975022231838011],[-75.151559470219709,39.97500724681916],[-75.151544168453881,39.974997045870538],[-75.15153433079854,39.974994876002128],[-75.151506989565931,39.974991354696954],[-75.151482641078658,39.97498821831352],[-75.150383036456333,39.974844734244378],[-75.15032257970654,39.97483691783156],[-75.150318179787575,39.974870882134113]]]},"properties":{"OBJECTID_1":297,"OBJECTID":240,"ASSET_NAME":"Dendy Recreation Center","SITE_NAME":"Dendy Recreation Center","CHILD_OF":"Dendy Recreation Center","ADDRESS":"1501-39 N 10TH ST","TYPE":"Land","USE_":"Recreation Center","ACREAGE":3.7431640000000002,"ZIPCODE":"19122","ALLIAS":" ","GLOBALID":"a9fffdad-28d8-431f-a53b-4b5c2038e154","Shape_Length":1649.5202226408771,"Shape_Area":163051.5499657066}},{"type":"Feature","id":298,"geometry":{"type":"Polygon","coordinates":[[[-75.132804394375938,39.976319045531042],[-75.132797880835838,39.976330340004139],[-75.132643002473543,39.976589380025658],[-75.132609728636623,39.976643745861892],[-75.131799300390682,39.978027229609722],[-75.131787418858167,39.978047671316602],[-75.131758229666673,39.978077008621071],[-75.131372567694058,39.978464434262648],[-75.131366754934874,39.978470269119036],[-75.131360654664661,39.978476392050091],[-75.1313565360783,39.978482666521607],[-75.131355962932091,39.97848638369129],[-75.131355459867223,39.978489650144986],[-75.131357559535971,39.978496492694944],[-75.13136258004765,39.978502366615857],[-75.131367530419084,39.978505260143649],[-75.131374027063856,39.978509057544308],[-75.131708019587691,39.978704260218798],[-75.131770600714958,39.978740836155175],[-75.131953974501116,39.978847531224922],[-75.132075998309787,39.978918530717117],[-75.13207840457666,39.978919244259735],[-75.132149382255804,39.978960384203653],[-75.132201636076843,39.978990671218064],[-75.132215989640244,39.978974646822941],[-75.132383590215056,39.978804147498423],[-75.132477811708043,39.978664069708302],[-75.132588598458781,39.978147950843137],[-75.132876555323307,39.976707135802471],[-75.132950753034081,39.976362795330516],[-75.132814276146291,39.976318298696498],[-75.132804394375938,39.976319045531042]]]},"properties":{"OBJECTID_1":298,"OBJECTID":241,"ASSET_NAME":"Shissler Recreation Center","SITE_NAME":"Shissler Recreation Center","CHILD_OF":"Shissler Recreation Center","ADDRESS":"1800-56 BLAIR ST","TYPE":"Land","USE_":"Recreation Center","ACREAGE":3.7418140000000002,"ZIPCODE":"19125","ALLIAS":" ","GLOBALID":"b7e5040d-4b60-4ce7-bf68-db2c81b734fc","Shape_Length":2228.5174543652806,"Shape_Area":162992.77506384929}},{"type":"Feature","id":299,"geometry":{"type":"Polygon","coordinates":[[[-75.151045793657346,39.934254403148557],[-75.152235469525579,39.934599884350945],[-75.152270224945681,39.934609364653213],[-75.152274736772867,39.934610594928955],[-75.152281952889197,39.934610003326029],[-75.152292405303612,39.934608216390586],[-75.152301272610515,39.934605550194782],[-75.152311346471976,39.934601663413979],[-75.152317613476129,39.934597853489137],[-75.152322838561403,39.934593743350497],[-75.152326232594191,39.934590197223052],[-75.152329015951821,39.934579447117891],[-75.152333122452561,39.934556617263851],[-75.152563326877484,39.933526144964802],[-75.152570047780486,39.933494866881141],[-75.152569220814669,39.933488023820594],[-75.152566451793021,39.933482720769028],[-75.152560646036193,39.933477129089574],[-75.152551621166893,39.933472927757606],[-75.152542056109823,39.933470978455183],[-75.152531752498177,39.933469611603016],[-75.152512121074238,39.933467009020703],[-75.151147949438112,39.933286296788737],[-75.151125506853688,39.933283386085215],[-75.151111010668515,39.933282483628091],[-75.151095211824909,39.933286141450161],[-75.15108445028433,39.93329384367923],[-75.151079998995328,39.933299848123774],[-75.151077400276819,39.933306959557989],[-75.15106973371617,39.933342596002731],[-75.150890963061215,39.93414691914667],[-75.150882649227185,39.934177287058901],[-75.150879150725331,39.934193846929254],[-75.150879957686897,39.934203443072896],[-75.150881713896524,39.934212365141327],[-75.150894917533648,39.934227147393607],[-75.150907139970514,39.934236063383906],[-75.150922598229457,39.934241991036259],[-75.150957158627747,39.934250960951005],[-75.150981292145815,39.934257224857831],[-75.150987248642011,39.934257403996632],[-75.15099533055438,39.934257646619365],[-75.151000915585939,39.93425391952173],[-75.15101082450407,39.934246297086979],[-75.151021251944584,39.934245958543912],[-75.151045793657346,39.934254403148557]]]},"properties":{"OBJECTID_1":299,"OBJECTID":242,"ASSET_NAME":"Sacks Playground","SITE_NAME":"Sacks Playground","CHILD_OF":"Sacks Playground","ADDRESS":"400 WASHINGTON AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":3.7385160000000002,"ZIPCODE":"19147","ALLIAS":" ","GLOBALID":"4989eb32-ef89-4777-8595-87988b798f91","Shape_Length":1612.4362748255703,"Shape_Area":162849.22146909146}},{"type":"Feature","id":300,"geometry":{"type":"Polygon","coordinates":[[[-75.063315298162181,40.015654078754764],[-75.063293607974984,40.015665272199527],[-75.063272195846821,40.015676338791941],[-75.062523428876801,40.016063346412466],[-75.062489040735073,40.016081121087559],[-75.062214793976466,40.016224027525787],[-75.062208934380408,40.016227080964775],[-75.06224320500182,40.016266587624806],[-75.062415422263228,40.016405755903811],[-75.062490029508865,40.01646585844302],[-75.062534340208984,40.016519358980545],[-75.062570590126072,40.016555411297709],[-75.062672075907827,40.016673476364538],[-75.062695101364227,40.016696648634287],[-75.062819353177957,40.016795489146396],[-75.062882966230404,40.016846274095471],[-75.062934989624623,40.016903832161454],[-75.063036675631665,40.01701820006685],[-75.063086187189867,40.017073023171839],[-75.063139443045998,40.017132286823305],[-75.063153882072186,40.017154755284743],[-75.063358412417628,40.017049745113781],[-75.064178537027843,40.016627248289403],[-75.064213223905256,40.016609530559094],[-75.064223826099649,40.016593355199674],[-75.06422139740144,40.016575361277859],[-75.064190311516626,40.016539742958813],[-75.064169009148031,40.01651533452354],[-75.06347744219093,40.01572568719115],[-75.063452498593762,40.015697092754145],[-75.063428945047519,40.015670092348259],[-75.063406030471356,40.015643825021456],[-75.063390471857119,40.015634875808857],[-75.063361765570988,40.015632511954685],[-75.063315298162181,40.015654078754764]]]},"properties":{"OBJECTID_1":300,"OBJECTID":243,"ASSET_NAME":"Moss Playground","SITE_NAME":"Moss Playground","CHILD_OF":"Moss Playground","ADDRESS":"5700 TORRESDALE AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":3.7068810000000001,"ZIPCODE":"19135","ALLIAS":" ","GLOBALID":"ba5219f3-0ee6-4e0f-a79c-5e13ac81576c","Shape_Length":1612.5103402281054,"Shape_Area":161471.08460597601}},{"type":"Feature","id":301,"geometry":{"type":"Polygon","coordinates":[[[-75.179086054526721,40.048757781267341],[-75.179111635424036,40.048773705145159],[-75.179140055769892,40.048791395468314],[-75.179155229784442,40.048800840644638],[-75.179172901641152,40.048807700859264],[-75.179201414761778,40.048802768901957],[-75.179225937759156,40.048779004853053],[-75.179322386655286,40.048685537260894],[-75.179322441836845,40.048685597061279],[-75.179736713501669,40.048273217823031],[-75.179736922653859,40.048271688985153],[-75.180013658767521,40.047996919592002],[-75.180136844852612,40.04787460904523],[-75.180172393079516,40.047839090910003],[-75.180183215457333,40.047824631245973],[-75.180182510953287,40.047809925436319],[-75.180172439518628,40.047797407670934],[-75.180003759178263,40.047695012379194],[-75.180003806316464,40.047694944056076],[-75.17935257599045,40.047301331068944],[-75.179306649897853,40.047273349653906],[-75.179281477586002,40.047258011595957],[-75.179255288821153,40.047242055218483],[-75.179226423381962,40.047240522657994],[-75.1791964208861,40.047262317002208],[-75.178775909500843,40.04767032435015],[-75.178775708944201,40.047670295533912],[-75.178631028086244,40.047811306930029],[-75.178275471818893,40.048157912974823],[-75.178241813602014,40.048191386122198],[-75.178225514690126,40.048212739171092],[-75.178226044429977,40.04822035284765],[-75.178235146561477,40.048233722168348],[-75.178256914552676,40.048247385849265],[-75.17828041223882,40.048262554190302],[-75.179086054526721,40.048757781267341]]]},"properties":{"OBJECTID_1":301,"OBJECTID":244,"ASSET_NAME":"Mallery Playground","SITE_NAME":"Mallery Playground","CHILD_OF":"Mallery Playground","ADDRESS":"100-70 E JOHNSON ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":3.680015,"ZIPCODE":"19144","ALLIAS":" ","GLOBALID":"1cba8e83-76c8-4818-8f8f-ed3425e2ff68","Shape_Length":1599.9826764195259,"Shape_Area":160300.84566650353}},{"type":"Feature","id":302,"geometry":{"type":"Polygon","coordinates":[[[-75.175448043805076,40.081209946597333],[-75.175032490431008,40.081643316427375],[-75.17493290898382,40.08174640699869],[-75.174959946038427,40.08176181722655],[-75.17597061983794,40.082341074126333],[-75.175974940766963,40.082342442218206],[-75.175986847799379,40.082346084958772],[-75.175990048480244,40.082346990972674],[-75.175997844350206,40.082346736682865],[-75.176009456508197,40.082342881833256],[-75.176021828099451,40.082335304805],[-75.176032455926176,40.08232440905347],[-75.176039235592441,40.082317459134764],[-75.176044875491527,40.082311673923002],[-75.176889194692578,40.081445180042742],[-75.176892077607263,40.081442218098026],[-75.176895347782761,40.08143597434109],[-75.176897547503671,40.081429502090259],[-75.176898297790331,40.081421042202152],[-75.176897472335526,40.081412347013057],[-75.176891809463754,40.081404149903861],[-75.17688151289569,40.081394976880169],[-75.176865883464203,40.081386035857001],[-75.175861876188961,40.080811516683063],[-75.175853610477446,40.080806786869431],[-75.175841359359623,40.080799763025972],[-75.175448043805076,40.081209946597333]]]},"properties":{"OBJECTID_1":302,"OBJECTID":245,"ASSET_NAME":"Emanuel Recreation Center","SITE_NAME":"Emanuel Recreation Center","CHILD_OF":"Emanuel Recreation Center","ADDRESS":"8500 PICKERING AVE","TYPE":"Land","USE_":"Recreation Center","ACREAGE":3.6776580000000001,"ZIPCODE":"19150","ALLIAS":" ","GLOBALID":"de80ce98-8006-4563-b457-b9b0c5747aba","Shape_Length":1594.9658809676794,"Shape_Area":160198.09990525708}},{"type":"Feature","id":303,"geometry":{"type":"Polygon","coordinates":[[[-75.167528025392571,39.967712963665498],[-75.167516515262449,39.967719564938712],[-75.167488147518654,39.967735834917235],[-75.166271129235014,39.968402385537011],[-75.16624347117677,39.968417961200693],[-75.166235678595356,39.968422350273862],[-75.1662307067336,39.96843022492218],[-75.166230356254545,39.968438977607676],[-75.166234687710201,39.968447077966928],[-75.166258272505416,39.968474802608583],[-75.166899742417243,39.969166928957449],[-75.166913626413148,39.969181733449339],[-75.166930095326265,39.969197880978797],[-75.16693912899575,39.969201566767509],[-75.166948041044165,39.969201768293019],[-75.166957461835281,39.969198999809613],[-75.166961080234216,39.969197153992546],[-75.166967632777315,39.969193810964995],[-75.166979751429608,39.969187628895945],[-75.168217428680421,39.968514635484787],[-75.168233801409826,39.968505895518206],[-75.168243871170517,39.968494982841065],[-75.168250237136675,39.968482526280376],[-75.168250612150075,39.968455959272035],[-75.16823698927017,39.96844022736817],[-75.168222029291385,39.968422949869151],[-75.167600159291098,39.967753802959933],[-75.167585955334332,39.967737161383596],[-75.167568623532702,39.967716857059166],[-75.167555909823264,39.967712086561157],[-75.167541872672373,39.96771074076878],[-75.167528025392571,39.967712963665498]]]},"properties":{"OBJECTID_1":303,"OBJECTID":246,"ASSET_NAME":"Francisville Playground","SITE_NAME":"Francisville Playground","CHILD_OF":"Francisville Playground","ADDRESS":"1737-39 FRANCIS ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":3.6737769999999998,"ZIPCODE":"19130","ALLIAS":" ","GLOBALID":"027b0dbc-7c13-4806-90d3-93cf436137f7","Shape_Length":1598.0140100588512,"Shape_Area":160029.03119056922}},{"type":"Feature","id":304,"geometry":{"type":"Polygon","coordinates":[[[-75.21704242945232,39.9704214658789],[-75.217020319443264,39.970427584851834],[-75.216145193217329,39.970678417865784],[-75.216088246675213,39.970694218105947],[-75.216050756814411,39.970704619403769],[-75.216041542084156,39.970709732722966],[-75.216027817048783,39.97072355913204],[-75.216021395947564,39.970735025832532],[-75.216022474061504,39.970754374312783],[-75.216026271724402,39.970782281992676],[-75.21611756432462,39.971516165844058],[-75.216120135332389,39.971537780869902],[-75.21612195035874,39.971553040659472],[-75.216132827867298,39.971569060988969],[-75.216152770363138,39.971581693701957],[-75.216170489577962,39.971592428463694],[-75.217208374873948,39.972218087075063],[-75.217241634566875,39.972238081881358],[-75.217270863820829,39.97225071844494],[-75.217297703206768,39.972248869122431],[-75.217320648873724,39.972238695103748],[-75.217327366557242,39.972229982029901],[-75.21733074707312,39.972220191585436],[-75.21733053222151,39.972210061397476],[-75.217325132315111,39.972168732244363],[-75.217116376679442,39.970530781303893],[-75.217108860651166,39.970472156662623],[-75.217102015894071,39.970441664370533],[-75.217088413903227,39.970428550088087],[-75.217079319473214,39.970423845234649],[-75.217054856265932,39.970419899447386],[-75.21704242945232,39.9704214658789]]]},"properties":{"OBJECTID_1":304,"OBJECTID":247,"ASSET_NAME":"Clara Muhammad Square","SITE_NAME":"Clara Muhammad Square","CHILD_OF":"Clara Muhammad Square","ADDRESS":"4700-30 LANCASTER AVE","TYPE":"Land","USE_":"Park- Square\\Plaza","ACREAGE":3.6036589999999999,"ZIPCODE":"19131","ALLIAS":"Durham Park","GLOBALID":"f79ae85d-121b-4cc5-94b7-45eed9a0d8f2","Shape_Length":1713.9566043835946,"Shape_Area":156974.84405676177}},{"type":"Feature","id":305,"geometry":{"type":"Polygon","coordinates":[[[-75.150395068395795,40.042130074455798],[-75.150368578998822,40.042164537175736],[-75.150337282614871,40.042201309430965],[-75.150316322662633,40.042231983259541],[-75.150293965035019,40.042264408566851],[-75.150272052244858,40.042302602344883],[-75.150252479934167,40.042333804029873],[-75.150223684065381,40.042387645874982],[-75.150193875975873,40.042454381800077],[-75.150188286164578,40.042463293397752],[-75.150157306594622,40.042546650912755],[-75.150140166046171,40.042599929404879],[-75.150124913089954,40.042658526079443],[-75.15008060256902,40.042878600580529],[-75.150085521735846,40.042893832807643],[-75.150096823439611,40.042906910097877],[-75.150113191878972,40.042916315086792],[-75.150122701791503,40.042919278436514],[-75.150146836921763,40.042923018809105],[-75.150195961463623,40.042924817231217],[-75.150220452212139,40.042922855885166],[-75.150244561583904,40.042919007279593],[-75.150263161782831,40.042914498778487],[-75.150278681980794,40.042909693510481],[-75.15031219122632,40.042896625773764],[-75.150331018904353,40.042887066797796],[-75.150348577474333,40.042876178927685],[-75.150364707188103,40.042864062165783],[-75.150392120288956,40.042836585216051],[-75.150403156110457,40.042821475315826],[-75.150412276695334,40.04280562288055],[-75.150419390643165,40.042789179916376],[-75.150424446756787,40.042772289427816],[-75.150431421141803,40.042741465759306],[-75.150441085349541,40.042694531491613],[-75.150447745421616,40.042671269260879],[-75.15045503158747,40.042649351101545],[-75.150463434002191,40.042628620516645],[-75.15046895829613,40.042614992395947],[-75.150485183198583,40.042581232616413],[-75.150502642271746,40.042549988475571],[-75.150503671677157,40.042547904290281],[-75.150509383172221,40.042536335626536],[-75.150524349453846,40.042515875218037],[-75.150534981222236,40.042497845874571],[-75.150547180969127,40.042484451710877],[-75.150566553586728,40.042460816713501],[-75.150594379423282,40.042431647938635],[-75.150607950584558,40.042414738396722],[-75.150627941977987,40.042396218055494],[-75.150658706253381,40.042369080881578],[-75.150682791673404,40.042350213478926],[-75.150719022378809,40.042326532854837],[-75.150738111667536,40.04231491280138],[-75.150780482564343,40.042290289880256],[-75.150810623708722,40.042274306685435],[-75.150845740026469,40.042257222387995],[-75.150879059685707,40.042242084171271],[-75.150902706829754,40.042232024169351],[-75.150933265218157,40.042221459195204],[-75.150964959640447,40.042209728772008],[-75.151006611847791,40.042195969300536],[-75.151031878191361,40.042188594901759],[-75.1510718683531,40.04217923531494],[-75.151115451785671,40.042169625438561],[-75.151147799593858,40.042162994192985],[-75.151168253795603,40.042159564569573],[-75.15119370543394,40.042155799300552],[-75.151216761751087,40.042152715965024],[-75.151258182241904,40.042151004077446],[-75.151306463325895,40.042150109634541],[-75.151326295414989,40.04215178188803],[-75.15137163496847,40.042155761150852],[-75.151406847349378,40.042160988961221],[-75.151443684670085,40.042166458051753],[-75.151482039929135,40.042177258552712],[-75.15151948484089,40.042189362042016],[-75.151569512541059,40.042210359382793],[-75.151614042259567,40.042229824942353],[-75.151666578874625,40.042262880549202],[-75.151698427806522,40.042286115611041],[-75.151735062130513,40.042319390826215],[-75.151765822233557,40.042348560570012],[-75.151788075962997,40.042374888904973],[-75.151819352046004,40.042413975191494],[-75.151867901054061,40.042472710510253],[-75.151920940449301,40.042527546852362],[-75.151951826642872,40.042563225642219],[-75.151980435270644,40.042593786488034],[-75.152025905302565,40.042643815840975],[-75.152046771650973,40.042665693251131],[-75.152091401265253,40.042710853390552],[-75.152110618114193,40.042726517907752],[-75.152134673634308,40.042747709672376],[-75.15215399956746,40.042763587487023],[-75.15217668415832,40.042778669071978],[-75.152190077389051,40.042788904787031],[-75.152216964017711,40.04280672948596],[-75.152248053855615,40.042827297325012],[-75.152273316071643,40.042840947801345],[-75.152291120250112,40.042850123647639],[-75.152329982335218,40.042870205884007],[-75.152350491273538,40.042879742926146],[-75.152404543951704,40.042903014072358],[-75.15243609388402,40.042914413597856],[-75.152480268468111,40.042929577426044],[-75.152502294526698,40.042937671979374],[-75.152534447023839,40.042945703584472],[-75.152570975419067,40.04295542802943],[-75.152593616254762,40.042960263971118],[-75.15259351262381,40.04293007934686],[-75.152593598523197,40.042928631552222],[-75.152600184367884,40.042818291410754],[-75.152611135548497,40.042657181238162],[-75.152457775103997,40.042431242219003],[-75.152366756632048,40.042302234178869],[-75.152309991580395,40.042223571979541],[-75.15218800314932,40.042040665519238],[-75.152088087641005,40.041897552414198],[-75.152072814327113,40.04190204274024],[-75.151867434358053,40.0417607752686],[-75.151576769537911,40.041546244600973],[-75.151323780869305,40.041371730077728],[-75.15127576896333,40.041343662880827],[-75.151256289214999,40.041370936575767],[-75.151230158421058,40.041403860544413],[-75.151205326761513,40.04143506322243],[-75.151165290505773,40.041482123995756],[-75.151106511435529,40.041544068985857],[-75.151059035863128,40.041592565218139],[-75.151011652733175,40.041638646092764],[-75.150987231845576,40.041660527079934],[-75.150964454597286,40.041679895371672],[-75.150938442381928,40.041702462959016],[-75.150904405253158,40.041728107040463],[-75.150826526412132,40.04178409557943],[-75.150775614863079,40.041819697873464],[-75.150722774157643,40.04185574664551],[-75.15064823236807,40.041904547476832],[-75.150589145615697,40.041948857740188],[-75.150523477085144,40.042003033842164],[-75.150485021649203,40.042038062834912],[-75.150465473937928,40.042057916786618],[-75.150448218490297,40.042074117625276],[-75.150395068395795,40.042130074455798]]]},"properties":{"OBJECTID_1":305,"OBJECTID":248,"ASSET_NAME":"Harpers Hollow Park","SITE_NAME":"Harpers Hollow Park","CHILD_OF":"Harpers Hollow Park","ADDRESS":"5850 OGONTZ AVE","TYPE":"Land","USE_":"Park- Mini","ACREAGE":3.591234,"ZIPCODE":"19141","ALLIAS":" ","GLOBALID":"77e97cce-468c-4c98-8343-5430b7c3113f","Shape_Length":2381.6881957543892,"Shape_Area":156433.42090749394}},{"type":"Feature","id":306,"geometry":{"type":"Polygon","coordinates":[[[-75.091129747809049,40.012076617613268],[-75.091560154367045,40.012336196720888],[-75.091597490963096,40.012358591498192],[-75.091700781243759,40.0124205460843],[-75.091615476084684,40.012509875782897],[-75.091572049304759,40.01255535208913],[-75.091562892271952,40.01256494154876],[-75.091554105518554,40.012574142223784],[-75.091540792770644,40.012588082978937],[-75.091538674897265,40.01259347980973],[-75.091539656534849,40.012604619535644],[-75.091542699442115,40.012609713274308],[-75.091566865401091,40.012623721698162],[-75.092158776831724,40.012982252184337],[-75.092167416807115,40.01298748448049],[-75.092196687553155,40.013004842053213],[-75.092228492932136,40.013024235165375],[-75.092245011458289,40.013032628657328],[-75.092280933011196,40.013045388091633],[-75.092299968601054,40.013049621184734],[-75.092339227139291,40.013053589838016],[-75.092372694212813,40.013052748942826],[-75.092400675538926,40.013050573671883],[-75.0924312050673,40.013045776791195],[-75.09246219517216,40.013038194645567],[-75.09250939313273,40.013020092297616],[-75.092537149765377,40.013002104002474],[-75.0925492867228,40.012991704026767],[-75.092577493944844,40.012955978428664],[-75.092997485842588,40.012335111484376],[-75.093000726631985,40.012330331695793],[-75.09300459786165,40.012326150368317],[-75.09300680502038,40.01232131332128],[-75.093007172742716,40.012316199437073],[-75.093005675737245,40.012311215399151],[-75.093002428558961,40.012306757611334],[-75.092997689254446,40.012303178944364],[-75.092993758459855,40.012300768710368],[-75.092987114490882,40.01229669364519],[-75.092980874421073,40.012292867602362],[-75.092947884484147,40.01227263634879],[-75.092659125307449,40.012101852137874],[-75.092615255108257,40.012076001486207],[-75.092094097197531,40.01176565693472],[-75.09208941824366,40.011762873438947],[-75.091576548462157,40.011457973142051],[-75.09155514247314,40.011480590003082],[-75.091351541649928,40.011695706102508],[-75.091488394490284,40.011773334936258],[-75.091364557812796,40.01189704333752],[-75.091326298229319,40.01187186452308],[-75.091129747809049,40.012076617613268]]]},"properties":{"OBJECTID_1":306,"OBJECTID":249,"ASSET_NAME":"Deni Playground","SITE_NAME":"Deni Playground","CHILD_OF":"Deni Playground","ADDRESS":"1381 RUAN ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":3.5451679999999999,"ZIPCODE":"19124","ALLIAS":" ","GLOBALID":"349d4145-ca40-4860-8661-196695be5f60","Shape_Length":1734.7977348850202,"Shape_Area":154426.92368751447}},{"type":"Feature","id":307,"geometry":{"type":"Polygon","coordinates":[[[-75.174480894370845,40.001749439702678],[-75.174311814723126,40.002520299876281],[-75.174294034590773,40.002599762197441],[-75.174288671816925,40.002626455106849],[-75.174284221976805,40.002648601266728],[-75.174284623107155,40.002667799129988],[-75.174296511939843,40.002677666161496],[-75.17432646203865,40.002684139749555],[-75.174473297876489,40.002703036016683],[-75.175046068960654,40.002779069910162],[-75.175110918744039,40.002787678499288],[-75.175632031718806,40.00285490298328],[-75.175643818733761,40.002779489495218],[-75.175833135071699,40.001843974608853],[-75.175058770547423,40.001750457337842],[-75.175075049313179,40.001664060391988],[-75.174664838125267,40.001613279619157],[-75.174516362053367,40.001590707556772],[-75.174480894370845,40.001749439702678]]]},"properties":{"OBJECTID_1":307,"OBJECTID":250,"ASSET_NAME":"Shuler Playground","SITE_NAME":"Shuler Playground","CHILD_OF":"Shuler Playground","ADDRESS":"2901 N 29TH ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":3.3614790000000001,"ZIPCODE":"19132","ALLIAS":" ","GLOBALID":"e1ee38fa-4215-44d4-8a16-61c7813e1371","Shape_Length":1565.2071776740352,"Shape_Area":146425.45066377541}},{"type":"Feature","id":308,"geometry":{"type":"Polygon","coordinates":[[[-75.171021031310943,39.941458827231813],[-75.171004720285822,39.941464919850191],[-75.170997094330403,39.941471331193327],[-75.170992001712875,39.94147909245595],[-75.170989717696756,39.941489956896007],[-75.170986717738216,39.94150423359995],[-75.170799994848565,39.942352244697311],[-75.170798208930577,39.942360007328254],[-75.170795720650503,39.942370823923646],[-75.170796133135767,39.942374883262012],[-75.170797902630468,39.942381000399223],[-75.170803969080509,39.942389250455513],[-75.17081048893661,39.942393727344673],[-75.17081669051764,39.942396258092046],[-75.170826065083105,39.942398275430094],[-75.170835397092901,39.942399470985627],[-75.170879407010972,39.942405108945159],[-75.172218486199128,39.942572665262716],[-75.172242405530639,39.942575658999438],[-75.172252060809726,39.942575894014162],[-75.172258023333185,39.942574884628939],[-75.17226423844113,39.942572987113508],[-75.172271678216489,39.942568367224148],[-75.172275513337112,39.942563389712149],[-75.172278845825247,39.942554844599123],[-75.172281293589947,39.942544133385923],[-75.172283330023987,39.94253519333347],[-75.172287912096834,39.942515091056919],[-75.172471589621239,39.941682791682673],[-75.172473970607257,39.941671648280945],[-75.172475715474278,39.941663481051407],[-75.172476754315099,39.941658620897613],[-75.172474829314353,39.941651538911984],[-75.172468406508941,39.94164332959361],[-75.172464167801067,39.941639784354038],[-75.172452423865138,39.941635088345848],[-75.172429692753298,39.941631791577016],[-75.172404106091321,39.94162872616333],[-75.171076463903248,39.941463018150792],[-75.171056789089619,39.941460464687452],[-75.171036457350567,39.941457825269488],[-75.171021031310943,39.941458827231813]]]},"properties":{"OBJECTID_1":308,"OBJECTID":251,"ASSET_NAME":"Anderson Recreation Center","SITE_NAME":"Anderson Recreation Center","CHILD_OF":"Anderson Recreation Center","ADDRESS":"740 S 17TH ST","TYPE":"Land","USE_":"Recreation Center","ACREAGE":3.360903,"ZIPCODE":"19146","ALLIAS":" ","GLOBALID":"12edd02f-1ba8-4d9e-9425-749122519b90","Shape_Length":1521.3036162063067,"Shape_Area":146400.53836413703}},{"type":"Feature","id":309,"geometry":{"type":"Polygon","coordinates":[[[-75.151256587691066,39.927018098475955],[-75.15124617155459,39.927021292607584],[-75.151240130277245,39.927025122892807],[-75.151235407470807,39.927029302019292],[-75.151231443793435,39.927034042566284],[-75.151219111245354,39.927065811499325],[-75.150831203192283,39.928072233791333],[-75.150815872827025,39.928113527013608],[-75.150815287726843,39.928122645602514],[-75.150817338504197,39.928131633820598],[-75.15082192489055,39.92814005330073],[-75.150829684313464,39.928143844072189],[-75.150846686692347,39.928149141811943],[-75.150853988882389,39.928150107427662],[-75.150866486754779,39.928151761152336],[-75.150906829773149,39.928157098653493],[-75.152031795751483,39.928305919692583],[-75.152054015592839,39.928308859447831],[-75.152065637208509,39.928309526393363],[-75.15207312051038,39.92830838764489],[-75.152080635880807,39.928306409870942],[-75.152087488673587,39.928303762944772],[-75.152096136703662,39.928297749027784],[-75.152102393544027,39.928290178936756],[-75.152104434138039,39.928280821210592],[-75.152110082235637,39.928254914167326],[-75.152340062301562,39.927219002579285],[-75.152345823120953,39.927193509848024],[-75.152347959669854,39.92718405878432],[-75.152346964209315,39.927180126704812],[-75.152344506262963,39.927174224300892],[-75.152341425646512,39.927169671036104],[-75.152337276756114,39.927166367615122],[-75.152332649103741,39.927163342576257],[-75.152328235485143,39.927161423433169],[-75.152323216956205,39.927159898749288],[-75.152310576134937,39.927157886038529],[-75.152277835112542,39.927153427632661],[-75.151342817315879,39.927027488748131],[-75.15130410279184,39.927022336058322],[-75.15127175629199,39.927018030466378],[-75.151262992991448,39.927017756183325],[-75.151256587691066,39.927018098475955]]]},"properties":{"OBJECTID_1":309,"OBJECTID":252,"ASSET_NAME":"Dickinson Square","SITE_NAME":"Dickinson Square","CHILD_OF":"Dickinson Square","ADDRESS":"1600 E MOYAMENSING AVE","TYPE":"Land","USE_":"Park- Square\\Plaza","ACREAGE":3.3460030000000001,"ZIPCODE":"19148","ALLIAS":" ","GLOBALID":"0ff33437-3e74-4b08-a4a3-d2039d040eb9","Shape_Length":1521.4742660456484,"Shape_Area":145751.35185152994}},{"type":"Feature","id":310,"geometry":{"type":"Polygon","coordinates":[[[-75.044456878431461,40.027649633925492],[-75.044445620217473,40.027654346995909],[-75.04443245008207,40.027659860207137],[-75.04441895858433,40.027666907544301],[-75.043995023603756,40.027888892827526],[-75.043979636885325,40.027896936171707],[-75.043905569596134,40.027935756196293],[-75.043905342190911,40.027935874281752],[-75.043528545838228,40.028127838259962],[-75.043512068442794,40.028136746979591],[-75.043501033925196,40.028144076479876],[-75.043493913541454,40.028149864619735],[-75.043492634212939,40.028153464805371],[-75.043490095346115,40.028160609777842],[-75.043489611141524,40.028164492710751],[-75.043491394214314,40.028171773781125],[-75.04349512490127,40.028178242050053],[-75.04365766629877,40.028393336766044],[-75.0438604336656,40.028656031962676],[-75.044059996479533,40.028924263902645],[-75.044229839478177,40.029152546345834],[-75.044238961334727,40.029161118514196],[-75.044248267370676,40.029166511607265],[-75.04425821248438,40.029168781395342],[-75.044270164692847,40.029169158507528],[-75.044280596214691,40.029167930159296],[-75.044300335527936,40.029159791086379],[-75.044323405936424,40.029147919044526],[-75.044608074343145,40.028999888891917],[-75.044984161154673,40.02880700627766],[-75.044989169722612,40.028804355321796],[-75.045217002077209,40.028684095223468],[-75.045223922772962,40.028680168352381],[-75.045233775511463,40.028671579118942],[-75.045237087970648,40.028665576843373],[-75.0452381737107,40.028659126562097],[-75.045238081373469,40.028648267624988],[-75.045235664477445,40.02864294496009],[-75.045197641857726,40.02859567504661],[-75.044961812573447,40.028285144374969],[-75.044961303692546,40.028284472819038],[-75.044630856399237,40.027844205811341],[-75.044502263867045,40.027675948822591],[-75.04449204219685,40.027662010229648],[-75.044485361141227,40.027652899985235],[-75.044480973452536,40.027650591742663],[-75.044470801073189,40.027648294989199],[-75.044456878431461,40.027649633925492]]]},"properties":{"OBJECTID_1":310,"OBJECTID":253,"ASSET_NAME":"Disston Recreation Center","SITE_NAME":"Disston Recreation Center","CHILD_OF":"Disston Recreation Center","ADDRESS":"4423 LONGSHORE AVE","TYPE":"Land","USE_":"Recreation Center","ACREAGE":3.3339799999999999,"ZIPCODE":"19135","ALLIAS":" ","GLOBALID":"6a9a0a57-d8d3-479f-8a5e-189d7c1399a2","Shape_Length":1522.2584636749634,"Shape_Area":145227.65372178835}},{"type":"Feature","id":311,"geometry":{"type":"Polygon","coordinates":[[[-75.12054585722413,40.021158882562084],[-75.120528091752021,40.021168140181892],[-75.120521957423662,40.021174987185169],[-75.120518194809009,40.021182779614428],[-75.120509760400935,40.021222771423609],[-75.12049839589352,40.021276654861815],[-75.120234540472481,40.022511279512464],[-75.120226872913122,40.022545747545273],[-75.120222508959799,40.022565367506147],[-75.120224353891615,40.022573528019493],[-75.120236004749415,40.022587282323386],[-75.120255198602734,40.022594466973231],[-75.120308062332526,40.022601155827061],[-75.120331373320724,40.022604105307636],[-75.121142993660058,40.022707746477906],[-75.12117820568281,40.022712248594075],[-75.121201964096102,40.022713421400923],[-75.121220209137405,40.022705043239498],[-75.121228359975504,40.022689948399901],[-75.121228451144617,40.022689349501483],[-75.12123382050018,40.022664158043625],[-75.121346005013521,40.022137686815505],[-75.12135870220429,40.022078096069855],[-75.12136117595648,40.02205371141941],[-75.121350938789192,40.022040036447187],[-75.121332905773741,40.022032504626104],[-75.121298409816646,40.022027617984115],[-75.121288604843173,40.022025025629389],[-75.12127314008869,40.022014606230286],[-75.121266976249004,40.021991712374842],[-75.121272081598548,40.021967677198198],[-75.121278560639155,40.021937615858363],[-75.121408380084318,40.021335279895901],[-75.121413468312241,40.021312289514761],[-75.121417721289149,40.021293042705508],[-75.121412396834728,40.021276678897472],[-75.121388178030998,40.021259989797478],[-75.121377487326356,40.021257847508799],[-75.121326553958795,40.021251542101183],[-75.120634344682173,40.021165597719943],[-75.120595209009437,40.021160723551304],[-75.120567192959996,40.021157234782066],[-75.12054585722413,40.021158882562084]]]},"properties":{"OBJECTID_1":311,"OBJECTID":254,"ASSET_NAME":"Feltonville Recreation Center","SITE_NAME":"Feltonville Recreation Center","CHILD_OF":"Feltonville Recreation Center","ADDRESS":"231-37 E WYOMING AVE","TYPE":"Land","USE_":"Recreation Center","ACREAGE":3.2801480000000001,"ZIPCODE":"19120","ALLIAS":" ","GLOBALID":"28ffc188-0ec7-4c2a-83e8-5b2de435f2d8","Shape_Length":1603.5653487758086,"Shape_Area":142882.61199373985}},{"type":"Feature","id":312,"geometry":{"type":"Polygon","coordinates":[[[-75.157508477706386,39.940820171292707],[-75.15750119527263,39.940825216377583],[-75.157492408810086,39.940838573605639],[-75.15748988307449,39.940849980181149],[-75.157487197396975,39.94086211206578],[-75.157316647009168,39.941647957828557],[-75.157314743339228,39.941656925888928],[-75.157311441652737,39.941672469520732],[-75.157307581934518,39.941690643227425],[-75.157309653082223,39.941700419249855],[-75.157316366687013,39.94170740253621],[-75.157324109249643,39.941711961012473],[-75.157338642967673,39.941716070217304],[-75.157369485870305,39.941719969623982],[-75.1587246647737,39.941888946728021],[-75.158753703639803,39.941892517576591],[-75.158758341913838,39.941893087290552],[-75.158767966401257,39.941891609911153],[-75.15877680201983,39.941888318978563],[-75.158782178985518,39.941884803942997],[-75.158787433834448,39.941879978770181],[-75.158791259132414,39.941874516717519],[-75.158793851803196,39.941867888830927],[-75.158798598205507,39.941845023688074],[-75.158972791794213,39.941051481711035],[-75.158978166813739,39.941028274861466],[-75.158980539793106,39.9410186272004],[-75.158980646623476,39.941009777105513],[-75.158972660798398,39.940999778301872],[-75.15895922445543,39.94099510302491],[-75.158938931656408,39.940991763138513],[-75.158903802183261,39.940987196064157],[-75.158793383229337,39.94097283871244],[-75.157580463475739,39.940820237823473],[-75.157558129142643,39.940817517399033],[-75.157540708187142,39.94081539457796],[-75.157526652449164,39.940814839005427],[-75.157508477706386,39.940820171292707]]]},"properties":{"OBJECTID_1":312,"OBJECTID":255,"ASSET_NAME":"Palumbo Recreation Center","SITE_NAME":"Palumbo Recreation Center","CHILD_OF":"Palumbo Recreation Center","ADDRESS":"700 S 09TH ST","TYPE":"Land","USE_":"Recreation Center","ACREAGE":3.221028,"ZIPCODE":"19147","ALLIAS":" ","GLOBALID":"572c5fc6-a940-488e-b47c-d2413b0546a4","Shape_Length":1492.4908290089252,"Shape_Area":140307.46658329663}},{"type":"Feature","id":313,"geometry":{"type":"Polygon","coordinates":[[[-75.233486872261281,39.948253675058602],[-75.233479435095234,39.948259114297265],[-75.233474840947522,39.948266178234263],[-75.233472526532822,39.94827717998448],[-75.233467977840405,39.948298789705433],[-75.233347269032421,39.948865757829793],[-75.233342944077179,39.948885844365719],[-75.233340691262001,39.948904032012017],[-75.233341719637096,39.948911919372676],[-75.233348471138186,39.94892471117948],[-75.233363077269658,39.948929296941827],[-75.233382938112825,39.948931774325132],[-75.233411372981934,39.94893532188275],[-75.235209813198807,39.949158564349801],[-75.235229586174583,39.949160983622441],[-75.235246641170434,39.949161718810998],[-75.235256965029592,39.949159571911764],[-75.235266230617157,39.949155463769472],[-75.235276557624374,39.949146082840684],[-75.235282108328747,39.949134646547904],[-75.235285155674376,39.949119775739909],[-75.23540295468402,39.948550534697823],[-75.235404764261631,39.948541873448185],[-75.235406540772502,39.948533378157855],[-75.235404874486449,39.948522666630517],[-75.235401098381018,39.948512280063461],[-75.235395306695082,39.948502455682174],[-75.235387378882578,39.948494331504698],[-75.235377332837245,39.948487740337654],[-75.235365658897578,39.948483002872052],[-75.235340348116424,39.948478771951152],[-75.233556118623284,39.948255965426242],[-75.233534744586606,39.948253386397049],[-75.233520354999371,39.948251649850008],[-75.233506508521373,39.948249978374669],[-75.233486872261281,39.948253675058602]]]},"properties":{"OBJECTID_1":313,"OBJECTID":256,"ASSET_NAME":"Christy Recreation Center","SITE_NAME":"Christy Recreation Center","CHILD_OF":"Christy Recreation Center","ADDRESS":"728 S 55TH ST","TYPE":"Land","USE_":"Recreation Center","ACREAGE":3.163891,"ZIPCODE":"19143","ALLIAS":" ","GLOBALID":"b8006d58-96a0-4e6d-8edf-415f13d91f26","Shape_Length":1581.7640698453456,"Shape_Area":137818.42647483494}},{"type":"Feature","id":314,"geometry":{"type":"Polygon","coordinates":[[[-75.149531943602653,39.933070126069616],[-75.149523403617238,39.933071489386137],[-75.149514554844799,39.933074621613621],[-75.149508559744262,39.933077809539341],[-75.149503263587079,39.933082429719803],[-75.149499786687315,39.93308673254657],[-75.1494964200417,39.9330930786873],[-75.149491369434116,39.933113825514042],[-75.149336314911423,39.933819646825718],[-75.149328999718946,39.933858738452635],[-75.149327309315197,39.933867769803285],[-75.149327768505046,39.93387607952679],[-75.149331218149996,39.933883929967209],[-75.149340454973853,39.933892407204794],[-75.149354492514121,39.933899120082522],[-75.149363797826183,39.933902259417017],[-75.149374755238398,39.933903730580745],[-75.149400682734566,39.93390721170573],[-75.149886023192209,39.93397237503806],[-75.1499857603104,39.933985765663252],[-75.150007301458984,39.933989390481486],[-75.150044918460637,39.933997573101728],[-75.150078814021327,39.934004946921632],[-75.150108865502816,39.934012637243129],[-75.150305620712345,39.93406635458161],[-75.150333916261673,39.934074145598075],[-75.150330983707832,39.934090471403792],[-75.150329162716872,39.934104480652159],[-75.150330595699728,39.93411450726412],[-75.150334593953971,39.934124113583678],[-75.150341000245646,39.934132912211268],[-75.150352839881506,39.934141888963943],[-75.15036323074186,39.934147157608514],[-75.150389278101287,39.93415476069341],[-75.150433862332093,39.934160997228823],[-75.150690100783834,39.934196838910403],[-75.150720794973921,39.934201132368692],[-75.150739959837338,39.93420023862879],[-75.150753569006568,39.93419746918574],[-75.150763029920441,39.934194339021197],[-75.150771932812219,39.934190375378421],[-75.150782294343813,39.934183711095528],[-75.150790739871169,39.934178363028145],[-75.150796341823806,39.934171133153392],[-75.150801885147544,39.934147012307072],[-75.150990798656252,39.933294755056544],[-75.150985023081617,39.933277022717796],[-75.150978114931689,39.933269503014849],[-75.150969033534693,39.933263508143376],[-75.150946642118782,39.933257423365589],[-75.15091023978421,39.933252743801333],[-75.149563006801756,39.933073325368007],[-75.149540211619652,39.933070242370071],[-75.149531943602653,39.933070126069616]]]},"properties":{"OBJECTID_1":314,"OBJECTID":257,"ASSET_NAME":"Jefferson Square","SITE_NAME":"Jefferson Square","CHILD_OF":"Jefferson Square","ADDRESS":"300 WASHINGTON AVE","TYPE":"Land","USE_":"Park- Square\\Plaza","ACREAGE":3.1378360000000001,"ZIPCODE":"19147","ALLIAS":" ","GLOBALID":"6394ef39-5c21-4663-a11a-85038f8e9450","Shape_Length":1501.5828287883028,"Shape_Area":136683.64249430032}},{"type":"Feature","id":315,"geometry":{"type":"Polygon","coordinates":[[[-75.150158585921488,39.969437012487624],[-75.150467086852913,39.968057093452821],[-75.150454810311146,39.968045088535327],[-75.15043206730887,39.96803045067508],[-75.149634909595719,39.967834297129819],[-75.149589719426103,39.967845210602178],[-75.149579449917937,39.967869370297855],[-75.14926961245402,39.969306901667892],[-75.149775235451145,39.969398486825384],[-75.150158585921488,39.969437012487624]]]},"properties":{"OBJECTID_1":315,"OBJECTID":258,"ASSET_NAME":"East Poplar Field","SITE_NAME":"East Poplar Field","CHILD_OF":"East Poplar Field","ADDRESS":"901-47 N 08TH ST","TYPE":"Land","USE_":"Athletic","ACREAGE":3.133505,"ZIPCODE":"19123","ALLIAS":" ","GLOBALID":"1d79d215-081a-4c10-a99c-3b48fc78831c","Shape_Length":1565.8318666312207,"Shape_Area":136495.02843346185}},{"type":"Feature","id":316,"geometry":{"type":"Polygon","coordinates":[[[-75.223189958837821,39.919495097378551],[-75.22294090639538,39.91985697431452],[-75.222928976680279,39.919874443972596],[-75.22292142036568,39.919885509301956],[-75.222916689972109,39.919892608541659],[-75.222914449793748,39.919900396968494],[-75.222914837964723,39.919908369462888],[-75.222917831537558,39.919916010147126],[-75.222925099693015,39.919924374839802],[-75.222946712457599,39.919942444097629],[-75.224047354025615,39.920868864419482],[-75.224069383956049,39.920888413974687],[-75.224078301544154,39.920896326582479],[-75.224087541771752,39.920900909895209],[-75.224098777620696,39.920903496404179],[-75.224110893635569,39.920903841692812],[-75.224123080094699,39.920901692762882],[-75.224130405105171,39.920899054716983],[-75.224137836606488,39.920895219785827],[-75.224141671102316,39.920893240063904],[-75.224155605035094,39.920874168306177],[-75.224711501226764,39.920064650455984],[-75.224737431044773,39.920026811016712],[-75.224684281969658,39.920006097790996],[-75.224599067602483,39.919971385865885],[-75.224547202198352,39.919951367587053],[-75.224497194319156,39.919929793626189],[-75.22444358045091,39.919908366367537],[-75.224409263321874,39.919895105512957],[-75.224391735585641,39.919888333151675],[-75.224335540186971,39.919864833442368],[-75.224290609955872,39.919845678694692],[-75.224247767754761,39.919826889778641],[-75.224195988304146,39.919805067626314],[-75.224141805447886,39.919785983802555],[-75.224094916238343,39.919765040585332],[-75.224043960988212,39.91974478443624],[-75.223996533194764,39.919725331279125],[-75.223946481861532,39.919704400328094],[-75.223911136861645,39.919690118367711],[-75.223908222484383,39.919688940525589],[-75.22389289775343,39.919682748209894],[-75.223843709063985,39.919662788574307],[-75.223797266070761,39.919641083806454],[-75.22374359106152,39.919621880333068],[-75.223695332013065,39.919600554475423],[-75.223646144610285,39.919580594780854],[-75.223594243886865,39.91956151051788],[-75.223541578850941,39.919539378426222],[-75.223490646621599,39.919517913389313],[-75.223444116444412,39.919498559964445],[-75.223394937622956,39.919478341760943],[-75.223306282231647,39.919440505839553],[-75.223245751392568,39.919414665651793],[-75.223189958837821,39.919495097378551]]]},"properties":{"OBJECTID_1":316,"OBJECTID":259,"ASSET_NAME":"63rd & Lindbergh Park","SITE_NAME":"63rd & Lindbergh Park","CHILD_OF":"63rd & Lindbergh Park","ADDRESS":"2800 S 63RD ST","TYPE":"Land","USE_":"Park- Neighborhood","ACREAGE":3.1217860000000002,"ZIPCODE":"19142","ALLIAS":" ","GLOBALID":"130aadcf-3e20-43c1-ba33-03e0b928cd74","Shape_Length":1539.7732529275445,"Shape_Area":135984.38504955676}},{"type":"Feature","id":317,"geometry":{"type":"Polygon","coordinates":[[[-75.248407104159313,39.907771091551801],[-75.247977250625794,39.908244730488761],[-75.247934387070799,39.908289850153167],[-75.248520712569487,39.908604554318067],[-75.248775888587105,39.908740415351545],[-75.249055478031181,39.908893003716827],[-75.249066612283713,39.908899085041384],[-75.249084593118312,39.908910478408536],[-75.249264459675487,39.909000603559832],[-75.2493920629841,39.909069872048214],[-75.249560849776984,39.90919584699823],[-75.249724165202139,39.90883047051733],[-75.249815054256047,39.908595510632423],[-75.249686960738828,39.908351083501252],[-75.249601707089639,39.908267115780419],[-75.249220894111815,39.908019521168178],[-75.249033359162311,39.907900477026793],[-75.248801281120038,39.907998637018558],[-75.248407104159313,39.907771091551801]]]},"properties":{"OBJECTID_1":317,"OBJECTID":260,"ASSET_NAME":"Cibotti Recreation Center","SITE_NAME":"Cibotti Recreation Center","CHILD_OF":"Cibotti Recreation Center","ADDRESS":"2500 S 77TH ST","TYPE":"Land","USE_":"Recreation Center","ACREAGE":3.1015779999999999,"ZIPCODE":"19153","ALLIAS":" ","GLOBALID":"4da0ced5-86ae-4590-a3e5-1347f8cd4adf","Shape_Length":1580.2198892095973,"Shape_Area":135104.11510087643}},{"type":"Feature","id":318,"geometry":{"type":"Polygon","coordinates":[[[-75.197339544753987,39.935514346249661],[-75.197321849713759,39.935524827557735],[-75.197313308311209,39.935540708712928],[-75.197311720123793,39.935548340935803],[-75.197308515252985,39.935563740799303],[-75.197096788541515,39.936557435217431],[-75.197082215213598,39.93662371148767],[-75.1970805565105,39.936631256543023],[-75.197080635461134,39.936637692394164],[-75.197083324393432,39.936643788997912],[-75.197088354934706,39.936648932200242],[-75.197096626173362,39.936652930277162],[-75.19711113128551,39.936655587660688],[-75.197175045178284,39.936664840971112],[-75.197178709831803,39.936665340608762],[-75.1979417066011,39.93676936312108],[-75.198029855411619,39.936780818480635],[-75.198056957330593,39.93678434078965],[-75.198067906430978,39.936785663823244],[-75.19807892270164,39.93678473042656],[-75.198089235751667,39.936781609053646],[-75.198098124679944,39.936776515223073],[-75.198104973243375,39.936769807339346],[-75.198116240603127,39.936740615834779],[-75.198126009871146,39.936713666039218],[-75.198266033238113,39.936327375287767],[-75.198272902440436,39.93630842587185],[-75.198334611434348,39.936137759647842],[-75.198350979986643,39.936094242981788],[-75.198365791898397,39.936064316709185],[-75.198390488041639,39.936022641365106],[-75.198539499548005,39.935738367703927],[-75.198548726799629,39.935720765480937],[-75.198560200057187,39.935697615267678],[-75.198555960170211,39.935675525561123],[-75.198532945952607,39.935661930040666],[-75.198523161644744,39.935660855509752],[-75.198443654533406,39.935650861376551],[-75.197418701305821,39.9355195805393],[-75.197377850603729,39.935514194216331],[-75.197361681538396,39.935512062054642],[-75.197339544753987,39.935514346249661]]]},"properties":{"OBJECTID_1":318,"OBJECTID":261,"ASSET_NAME":"Stinger Square Playground","SITE_NAME":"Stinger Square Playground","CHILD_OF":"Stinger Square Playground","ADDRESS":"1400 S 32ND ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":3.093696,"ZIPCODE":"19146","ALLIAS":" ","GLOBALID":"b51fdbea-648d-46c5-929a-970da9b2505a","Shape_Length":1480.9956764037454,"Shape_Area":134760.98676068414}},{"type":"Feature","id":319,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.092914214274813,40.022029418420423],[-75.092895057315758,40.02204869792962],[-75.092869337763048,40.022074582452973],[-75.091915350284879,40.023049823363102],[-75.09190725404035,40.023072691681513],[-75.091921686825231,40.023093645988077],[-75.09196900510193,40.023120477583284],[-75.092622864997281,40.023497071280467],[-75.092669465151289,40.023513641171462],[-75.092691943647651,40.023508829905886],[-75.092715006180171,40.02348954979275],[-75.093161691108577,40.023033223365019],[-75.093188111988781,40.023006225098143],[-75.093620669946574,40.022564077756087],[-75.093633234209278,40.022551303377405],[-75.093636923937424,40.02254755121762],[-75.093649875122537,40.022534383024635],[-75.09366537587664,40.022515661253792],[-75.093666877122246,40.022508415609117],[-75.093662987715604,40.022494151438053],[-75.093650884931634,40.022482946407152],[-75.093629198886958,40.022468957141378],[-75.093448025034135,40.022350365887199],[-75.093296585626078,40.022250883950207],[-75.093257431337648,40.022225161739868],[-75.09299707185076,40.022055208600428],[-75.092973007657264,40.022039884706011],[-75.092941919132215,40.022023591843812],[-75.092914214274813,40.022029418420423]]],[[[-75.09194077396026,40.024250440378019],[-75.091745169004071,40.024445747189993],[-75.091726822249313,40.024408254741459],[-75.091696520489165,40.024345729561702],[-75.091650091359739,40.024235312161707],[-75.091647107564327,40.024227349106091],[-75.091626487391167,40.024175758649996],[-75.091598199145636,40.024094476315859],[-75.091573916613839,40.024011435075145],[-75.091548481578698,40.023909315625843],[-75.091531537272502,40.023833091203379],[-75.091513519798553,40.023724901080456],[-75.091503380212274,40.023655079271371],[-75.091495586938024,40.023560722486486],[-75.091493573808606,40.023518553312279],[-75.091492333123242,40.023482934537398],[-75.091490470288377,40.023429507684689],[-75.091491366443918,40.023354294563234],[-75.09149299507277,40.023314449676462],[-75.091285047466215,40.023522726890057],[-75.091157959928381,40.023449967544018],[-75.091099821575455,40.023509217030238],[-75.090979021787703,40.023439215176339],[-75.090946229213088,40.023422258803073],[-75.090570382537749,40.02385228181749],[-75.090561465424301,40.023868029068488],[-75.09056077845392,40.023885561756536],[-75.090580699174794,40.023906763169286],[-75.09160535883106,40.024554278909136],[-75.091634259477289,40.024558138516525],[-75.091669754760716,40.024552579063965],[-75.091709958238397,40.024532769669058],[-75.091776752939367,40.024463835875778],[-75.091810970979466,40.024428522517184],[-75.092531369026759,40.023685046483905],[-75.092602004386748,40.02361214736397],[-75.092613119555253,40.023593259360752],[-75.092611608602255,40.023578867280946],[-75.092605887856564,40.023565971714653],[-75.091848745551943,40.023136150710215],[-75.091806070657,40.02311192422529],[-75.091794277415161,40.023150695853381],[-75.091791118479165,40.023182397787984],[-75.09178489700966,40.023244836175195],[-75.091777251247237,40.023352679070456],[-75.091776064962374,40.023431477904019],[-75.09177796735716,40.023516189656654],[-75.091783348082927,40.02359441156721],[-75.091791188375154,40.023675607968698],[-75.091804215987551,40.023768564037908],[-75.091819875130497,40.023852174196406],[-75.091836822519696,40.023927220985144],[-75.091853336995584,40.023991626417882],[-75.091884379381852,40.02409599031661],[-75.091902676456172,40.024149714666343],[-75.091917388600777,40.024189248501457],[-75.09194077396026,40.024250440378019]]]]},"properties":{"OBJECTID_1":319,"OBJECTID":262,"ASSET_NAME":"Northwood Park","SITE_NAME":"Northwood Park","CHILD_OF":"Northwood Park","ADDRESS":"999 ARROTT ST","TYPE":"Land","USE_":"Park- Neighborhood","ACREAGE":5.9181030000000003,"ZIPCODE":"19124","ALLIAS":" ","GLOBALID":"56f471b2-7ca6-4b7f-b74b-0bbea10c368c","Shape_Length":3962.6397459243949,"Shape_Area":257791.49973476212}},{"type":"Feature","id":320,"geometry":{"type":"Polygon","coordinates":[[[-75.061228766178004,40.028602160032875],[-75.061219949150868,40.028604540502876],[-75.061213761563408,40.028606998754235],[-75.061202835455788,40.028616048041329],[-75.061197195532074,40.028621782702785],[-75.060261310565835,40.029614239398043],[-75.060165823705034,40.029711616320128],[-75.060154863872881,40.029734136266526],[-75.060157138603131,40.029750765191153],[-75.06016206699374,40.029763786308131],[-75.060168658956954,40.029769878598302],[-75.060174532900803,40.029775308020739],[-75.060179611158688,40.029779520415062],[-75.060507497997122,40.029959595855331],[-75.060852522146931,40.030147293484269],[-75.061957869055931,40.028992762958779],[-75.061789520082115,40.028899408910519],[-75.061316503284743,40.028631744739698],[-75.061270593671537,40.028607777013399],[-75.061264895931444,40.028604823340757],[-75.061253474678196,40.028602199703499],[-75.061244141512887,40.028601750520522],[-75.061228766178004,40.028602160032875]]]},"properties":{"OBJECTID_1":320,"OBJECTID":263,"ASSET_NAME":"Lower Mayfair Playground","SITE_NAME":"Lower Mayfair Playground","CHILD_OF":"Lower Mayfair Playground","ADDRESS":"3001 ROBBINS ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":3.0030649999999999,"ZIPCODE":"19149","ALLIAS":" ","GLOBALID":"974a9605-8d87-4d70-a6ab-84147b0a9b51","Shape_Length":1533.745100429654,"Shape_Area":130812.97462061132}},{"type":"Feature","id":321,"geometry":{"type":"Polygon","coordinates":[[[-74.989094260885125,40.043137582483538],[-74.988985652333099,40.043194106276403],[-74.988902009269665,40.043229859460929],[-74.988828015890633,40.043269964235186],[-74.988578532353628,40.043385583904879],[-74.988466989628279,40.043448301814259],[-74.988370812856289,40.043484697613579],[-74.988243688790789,40.043513226310459],[-74.988179903894391,40.04352199098458],[-74.987953278887616,40.043538442224296],[-74.988358410042807,40.043955748207843],[-74.988512507371482,40.044123695177781],[-74.988565800374957,40.044045896841482],[-74.988651875630268,40.043940499318609],[-74.988724194873896,40.043867399630464],[-74.988765601656269,40.043859725835844],[-74.988877477482305,40.043777624650694],[-74.98887260249893,40.043735048237771],[-74.988893869941649,40.043698939156329],[-74.988942795872958,40.043663616558256],[-74.989132737109557,40.04353125130605],[-74.989841068980965,40.04311339843494],[-74.990864683025876,40.04252968678005],[-74.990884582947857,40.042494478019009],[-74.990918104459141,40.042383760815078],[-74.990465569583023,40.041994808055655],[-74.990297393130348,40.041850739810975],[-74.990290748377902,40.041852206589247],[-74.990077766689097,40.041899232209694],[-74.990173484243684,40.04202906200593],[-74.990392797160894,40.042326532213409],[-74.990359717445855,40.042556081886659],[-74.989814798126815,40.042817943171805],[-74.989666561391289,40.042882356583064],[-74.9893680929179,40.042972425025091],[-74.989313096744283,40.042962778268006],[-74.989094260885125,40.043137582483538]]]},"properties":{"OBJECTID_1":321,"OBJECTID":264,"ASSET_NAME":"Pleasant Hill Park","SITE_NAME":"Pleasant Hill Park","CHILD_OF":"Pleasant Hill Park","ADDRESS":"9201 N DELAWARE AVE","TYPE":"Land","USE_":"Park- Neighborhood","ACREAGE":2.9731700000000001,"ZIPCODE":"19114","ALLIAS":" ","GLOBALID":"64fe6f42-e725-407f-aca8-ddef0ddae7ff","Shape_Length":2580.6890086102335,"Shape_Area":129510.77839790471}},{"type":"Feature","id":322,"geometry":{"type":"Polygon","coordinates":[[[-75.097475406244911,39.997770343142328],[-75.097428601268959,39.997793807599415],[-75.0974546292002,39.997823595405244],[-75.097939199345902,39.998373295733181],[-75.097952389965485,39.998388111660603],[-75.097969792647717,39.998407658924869],[-75.097978523391987,39.998412240566473],[-75.097998956895665,39.998415890593655],[-75.098019198428389,39.998411647614688],[-75.098041766863162,39.998399870768075],[-75.098089462972922,39.998374982283664],[-75.099288341313724,39.997749459855356],[-75.099319308188257,39.997733299443389],[-75.099299928498027,39.997713672496253],[-75.09874679993402,39.997133936280285],[-75.098703980365826,39.997088810053349],[-75.097475406244911,39.997770343142328]]]},"properties":{"OBJECTID_1":322,"OBJECTID":265,"ASSET_NAME":"Heitzman Playground","SITE_NAME":"Heitzman Playground","CHILD_OF":"Heitzman Playground","ADDRESS":"2136 CASTOR AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":2.9110290000000001,"ZIPCODE":"19134","ALLIAS":" ","GLOBALID":"5978e6b8-9ad3-47a5-a30b-8578a5849a2d","Shape_Length":1456.3835545881764,"Shape_Area":126803.98152103426}},{"type":"Feature","id":323,"geometry":{"type":"Polygon","coordinates":[[[-75.138749352670061,39.990319767978079],[-75.138734799678588,39.990331726852439],[-75.138730767781226,39.990339371312956],[-75.138724961461435,39.990364830087067],[-75.138721857940737,39.990378916362282],[-75.138443795290158,39.991641223085814],[-75.138435233758585,39.991679500194309],[-75.138427458504424,39.991714267684927],[-75.138428093503762,39.991723738375562],[-75.138446729549273,39.991747653881859],[-75.138469070755193,39.9917553361486],[-75.138485696766111,39.991757317349006],[-75.138514016301357,39.991760690877463],[-75.13913279823619,39.991841146993792],[-75.139168661531741,39.991845899324602],[-75.139215899522895,39.991850861715903],[-75.13923535635962,39.991845362026481],[-75.139253058516616,39.991826056587968],[-75.139257354772099,39.991806692203859],[-75.139262350826016,39.991784177540808],[-75.139267538245534,39.99176079864376],[-75.139550283433394,39.990477615535376],[-75.139557382465767,39.990445153640096],[-75.139553366445853,39.990427765358127],[-75.139537393537665,39.990415079685057],[-75.139526517298094,39.99041196526484],[-75.139481517241478,39.990406130329461],[-75.139454808829015,39.990402667528215],[-75.138815014990172,39.990320393215157],[-75.138794146561892,39.99031767941711],[-75.1387695005522,39.9903144733129],[-75.138749352670061,39.990319767978079]]]},"properties":{"OBJECTID_1":323,"OBJECTID":266,"ASSET_NAME":"Fairhill Square","SITE_NAME":"Fairhill Square","CHILD_OF":"Fairhill Square","ADDRESS":"2601-61 N LAWRENCE ST","TYPE":"Land","USE_":"Park- Square\\Plaza","ACREAGE":2.862587,"ZIPCODE":"19133","ALLIAS":" ","GLOBALID":"03a97a57-c240-40ce-b886-4d5cec8cdfad","Shape_Length":1511.3702484660371,"Shape_Area":124693.951380525}},{"type":"Feature","id":324,"geometry":{"type":"Polygon","coordinates":[[[-75.160039990770471,40.03186413376509],[-75.159566813316715,40.032314957071328],[-75.160018634369081,40.032582565328767],[-75.159728537133006,40.032890134207378],[-75.159709153375871,40.03290813722527],[-75.160093825874242,40.033138314348349],[-75.160397701955532,40.033315229433967],[-75.160414686980758,40.033297269526713],[-75.160714058514657,40.032997209867652],[-75.161177357020634,40.032535959743079],[-75.161191192785452,40.032520840823899],[-75.160497102225023,40.032106903147557],[-75.160496946355096,40.032106810432623],[-75.160056058284496,40.031845515305889],[-75.160039990770471,40.03186413376509]]]},"properties":{"OBJECTID_1":324,"OBJECTID":267,"ASSET_NAME":"Wister Playground","SITE_NAME":"Wister Playground","CHILD_OF":"Wister Playground","ADDRESS":"4971 BAYNTON ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":2.854231,"ZIPCODE":"19144","ALLIAS":" ","GLOBALID":"d0dfbc21-2c2d-4a90-9be9-75685d6990d7","Shape_Length":1535.8355055988623,"Shape_Area":124329.80237544511}},{"type":"Feature","id":325,"geometry":{"type":"Polygon","coordinates":[[[-75.173408163421541,39.938583168215366],[-75.174590221717736,39.938729619031399],[-75.174608398983608,39.938731827426615],[-75.174619478944209,39.938742452302314],[-75.174626515762753,39.938752774651121],[-75.174635392858519,39.938758055702195],[-75.174652643693079,39.93875984684135],[-75.174669151874028,39.938761560033207],[-75.174682247423732,39.938762919082535],[-75.174704603972472,39.938760880219213],[-75.174718037655111,39.938754829709765],[-75.174720830890251,39.938749567436055],[-75.174725033576266,39.938739389342096],[-75.174729869397112,39.938723715763842],[-75.17473351347482,39.938707305427293],[-75.174806332191011,39.938378214274124],[-75.174827855494797,39.938278092123518],[-75.174783466258091,39.938273446333049],[-75.174573537683358,39.938246261224933],[-75.174584943057297,39.938192792571925],[-75.174611413309606,39.938068696534586],[-75.174648328316522,39.937895627048384],[-75.174652660577649,39.937863526592373],[-75.174550588336203,39.937850280912407],[-75.173494599967526,39.937716253757586],[-75.173470579837726,39.937713307535851],[-75.173454401791489,39.937711322267191],[-75.173434759504246,39.937717230444875],[-75.173421609029219,39.93772992223451],[-75.173416499792609,39.937751628219104],[-75.173412358973664,39.937769216699479],[-75.173250443608168,39.938508707829683],[-75.173246574316792,39.938529536146987],[-75.173244754174107,39.93854176166456],[-75.173242492555971,39.938556956017301],[-75.173245510364026,39.938569420875289],[-75.17326056331234,39.938583612162496],[-75.173278485695249,39.938589731753567],[-75.173294242001646,39.938591608455887],[-75.173311347641757,39.938593646117461],[-75.17332786166854,39.938593381908753],[-75.173333753471979,39.938590338198516],[-75.173352191921254,39.938580561962738],[-75.173373846960118,39.938578872510007],[-75.173408163421541,39.938583168215366]]]},"properties":{"OBJECTID_1":325,"OBJECTID":268,"ASSET_NAME":"Chew Playground","SITE_NAME":"Chew Playground","CHILD_OF":"Chew Playground","ADDRESS":"1800 WASHINGTON AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":2.8254160000000001,"ZIPCODE":"19146","ALLIAS":" ","GLOBALID":"feb5e427-d400-4da2-9b78-d3655d0bf2d5","Shape_Length":1479.8058200059579,"Shape_Area":123074.5879942907}},{"type":"Feature","id":326,"geometry":{"type":"Polygon","coordinates":[[[-75.192318684505437,39.937405104799097],[-75.19228486438513,39.937569923558968],[-75.192317078427095,39.937573958573843],[-75.192143966880678,39.938387819300836],[-75.192136335437255,39.938419039350663],[-75.192853627450873,39.938510895500492],[-75.193255492035703,39.938563980658408],[-75.193300938730559,39.938569888936577],[-75.193309483049688,39.938569895599009],[-75.193324999251757,39.938564787677116],[-75.193330877979292,39.938560044267511],[-75.19333889180372,39.938548545838273],[-75.19334269601336,39.938534199187217],[-75.193347858814661,39.938510651989311],[-75.193509191332765,39.937758722915184],[-75.193516394804163,39.937725356958836],[-75.193464559855286,39.937718151262608],[-75.193179048125302,39.937680482015097],[-75.193024172274775,39.937590821635034],[-75.193043515184854,39.937499708602594],[-75.19305017728756,39.937465399859512],[-75.192324600169911,39.93737412488958],[-75.192318684505437,39.937405104799097]]]},"properties":{"OBJECTID_1":326,"OBJECTID":269,"ASSET_NAME":"Donald Finnegan Playground","SITE_NAME":"Donald Finnegan Playground","CHILD_OF":"Donald Finnegan Playground","ADDRESS":"1231 S 30TH ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":2.8003710000000002,"ZIPCODE":"19146","ALLIAS":" ","GLOBALID":"0ad9fe5f-4481-4389-bc91-5851b8f19ab1","Shape_Length":1445.5242190787108,"Shape_Area":121983.58094736956}},{"type":"Feature","id":327,"geometry":{"type":"Polygon","coordinates":[[[-75.227557693446357,40.041425079631281],[-75.227464313833224,40.041509165065001],[-75.227462261957683,40.041511037322969],[-75.227443898347289,40.041527789900634],[-75.227441590253676,40.041534473252518],[-75.227439609219729,40.041540210533775],[-75.227437420698266,40.04154654692536],[-75.227438037292359,40.041556291215642],[-75.22744093045533,40.041561051639903],[-75.227448733751586,40.041573896404842],[-75.227463450641835,40.041589904121039],[-75.227487243144296,40.041615781520278],[-75.227755013265693,40.041896137969374],[-75.227754790719189,40.041896353826594],[-75.228163527836912,40.042324167328673],[-75.228223979100875,40.042384733987504],[-75.228252808535032,40.042401139710627],[-75.228308256632147,40.042421488692099],[-75.228355916556907,40.042429210421567],[-75.22840462123385,40.042429291201884],[-75.2284506132129,40.042421518807046],[-75.228492963158374,40.042405696245702],[-75.229013735866758,40.042166978030529],[-75.229012643061083,40.042166511658564],[-75.229020731369829,40.042162196809855],[-75.229030186511949,40.04214986787602],[-75.229030568949895,40.042128592969291],[-75.229016889015881,40.042109619622821],[-75.228990407824313,40.042073549159078],[-75.228982381906931,40.042062616937962],[-75.228289369562901,40.041171423646695],[-75.228247276380387,40.041116700234376],[-75.22816028001796,40.041005432923924],[-75.228136442788411,40.040975080340345],[-75.228107320210896,40.040964087622854],[-75.228085633477576,40.04096636583099],[-75.228062960961282,40.04098154266245],[-75.227949196263495,40.041081078961781],[-75.227949041787369,40.041081071966047],[-75.227557693446357,40.041425079631281]]]},"properties":{"OBJECTID_1":327,"OBJECTID":270,"ASSET_NAME":"Kelly Park","SITE_NAME":"Kelly Park","CHILD_OF":"Kelly Park","ADDRESS":"440-42 PARKER AVE","TYPE":"Land","USE_":"Park- Mini","ACREAGE":2.782556,"ZIPCODE":"19128","ALLIAS":" ","GLOBALID":"20671a95-3fdb-40f6-b1c1-28016c54606b","Shape_Length":1427.7526370784917,"Shape_Area":121207.65312036211}},{"type":"Feature","id":328,"geometry":{"type":"Polygon","coordinates":[[[-75.112710402037393,40.001939543660981],[-75.112696946720789,40.002003501488126],[-75.112680816906249,40.002080209632119],[-75.112566010979819,40.002635185976409],[-75.114038187579553,40.002820173001254],[-75.114077531992606,40.002830735452086],[-75.114119288704572,40.002762050869826],[-75.114126975239188,40.002747970351635],[-75.114130530044818,40.002734779791844],[-75.114136283551204,40.002704579602117],[-75.114251497351233,40.002149059014329],[-75.114257160216624,40.002122428424428],[-75.114253500291397,40.002112946643742],[-75.114246724369522,40.002104538529572],[-75.114225930540897,40.002093191068361],[-75.114204726353506,40.002090694015315],[-75.114186634959196,40.002088563967696],[-75.112787891059767,40.001908874091455],[-75.112718054980704,40.001899940755237],[-75.112710402037393,40.001939543660981]]]},"properties":{"OBJECTID_1":328,"OBJECTID":271,"ASSET_NAME":"Ramblers Ballfield","SITE_NAME":"Ramblers Ballfield","CHILD_OF":"Ramblers Ballfield","ADDRESS":"801-41 E ATLANTIC ST","TYPE":"Land","USE_":"Athletic","ACREAGE":2.7187760000000001,"ZIPCODE":"19134","ALLIAS":" ","GLOBALID":"a8c486ec-e0a3-4d23-be9e-1b06047cd331","Shape_Length":1407.3501958829675,"Shape_Area":118429.3010410664}},{"type":"Feature","id":329,"geometry":{"type":"Polygon","coordinates":[[[-75.103634681592126,39.985652220322756],[-75.103609682286631,39.985661345321027],[-75.103584819591717,39.985670421204048],[-75.10356453996738,39.98568067859653],[-75.103560305304782,39.985682820021154],[-75.103529485582968,39.985698408164758],[-75.102680555681786,39.986139709681261],[-75.102585067355392,39.986189627435614],[-75.102567363693453,39.986198369971092],[-75.10254336437967,39.986211460739689],[-75.102536157404415,39.986218934366299],[-75.10253174569084,39.986227598765538],[-75.102530435004397,39.986236851891618],[-75.102536856746283,39.986252555487702],[-75.102544047510534,39.986260731558311],[-75.103058603760587,39.986845790269122],[-75.103069357010583,39.986858016620154],[-75.103079958834712,39.986870070984402],[-75.103087808368386,39.986878869507933],[-75.103105986787298,39.986886259147781],[-75.103116344144496,39.98688679445187],[-75.103126492653274,39.986885114700904],[-75.103141926685879,39.98687864710692],[-75.103163338553244,39.986869674636452],[-75.103182152075874,39.986861791059006],[-75.104183911364387,39.986336869978807],[-75.104196006331122,39.986330355006558],[-75.104216515168659,39.986317944807652],[-75.104224741023231,39.986312967005226],[-75.104234801543456,39.986304763445339],[-75.104237517163611,39.986298468350512],[-75.104237428920584,39.986291833803804],[-75.104231222237587,39.986280822449402],[-75.10422247166305,39.98626830088488],[-75.103734706972091,39.985716329518091],[-75.103713722227511,39.985691145612762],[-75.103695774456781,39.985669607032712],[-75.103684951942157,39.985657356615143],[-75.103659594582396,39.98564669296119],[-75.103634681592126,39.985652220322756]]]},"properties":{"OBJECTID_1":329,"OBJECTID":272,"ASSET_NAME":"Campbell Square","SITE_NAME":"Campbell Square","CHILD_OF":"Campbell Square","ADDRESS":"2525 E ALLEGHENY AVE","TYPE":"Land","USE_":"Park- Square\\Plaza","ACREAGE":2.6305839999999998,"ZIPCODE":"19134","ALLIAS":"Allegheny Square","GLOBALID":"e9630364-3cd8-489d-977a-f7256801b2dd","Shape_Length":1345.2425572005959,"Shape_Area":114587.73807277814}},{"type":"Feature","id":330,"geometry":{"type":"Polygon","coordinates":[[[-75.21639416049122,39.965281679505374],[-75.216374678076789,39.965283257630936],[-75.215456492329807,39.965354024909644],[-75.215408413338807,39.965357637238277],[-75.215395202610168,39.965358708624436],[-75.215382154432959,39.96536245326719],[-75.215374684220862,39.965367181585265],[-75.215369061849188,39.96537338241405],[-75.215365784346474,39.96538075859101],[-75.215365310838294,39.965388428267268],[-75.215365846599681,39.965392679314377],[-75.215485780227183,39.966343725435188],[-75.21548730298413,39.96635249968616],[-75.215490860244358,39.966360098020836],[-75.215496989713088,39.9663661061428],[-75.215505236861901,39.966370905947088],[-75.215512137064721,39.966373109946076],[-75.215518785902262,39.966374079426437],[-75.215579279428184,39.966370140286202],[-75.216509771327253,39.966301166143133],[-75.216535362874225,39.966299086772075],[-75.216551501877888,39.96629777626999],[-75.216561577398195,39.96629490289709],[-75.216570576316727,39.966290378544194],[-75.216576352202424,39.966285774917893],[-75.216580535887687,39.966278462865816],[-75.216581553548934,39.966272243200052],[-75.216578691633927,39.966249575694867],[-75.216459395901396,39.96533653134091],[-75.216456302331693,39.965312290973181],[-75.216455170495692,39.965303424456913],[-75.216452376669722,39.965296296214134],[-75.216446983125707,39.965290116083665],[-75.216443322392081,39.965287834104394],[-75.216430592307802,39.965282015454591],[-75.216411008540746,39.965280314407117],[-75.21639416049122,39.965281679505374]]]},"properties":{"OBJECTID_1":330,"OBJECTID":273,"ASSET_NAME":"Mill Creek Playground","SITE_NAME":"Mill Creek Playground","CHILD_OF":"Mill Creek Playground","ADDRESS":"743-81 N 48TH ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":2.6266579999999999,"ZIPCODE":"19139","ALLIAS":" ","GLOBALID":"b13747e9-2445-4f4e-8b17-d0980d42a66c","Shape_Length":1342.1076901192982,"Shape_Area":114416.68511083825}},{"type":"Feature","id":331,"geometry":{"type":"Polygon","coordinates":[[[-75.174251455605642,40.039372914626362],[-75.1739762413508,40.039639482398947],[-75.173501202842871,40.04009602282769],[-75.173482819895071,40.040113120732805],[-75.173469916455574,40.040130207296514],[-75.173469565294297,40.040138128318837],[-75.173476000983243,40.040153069987213],[-75.173492894418018,40.040165878375497],[-75.173521965625483,40.040184263270383],[-75.173565331296047,40.040209593923869],[-75.173619026187239,40.040238215176821],[-75.173656432895186,40.040256240987127],[-75.173689710032747,40.040271666647563],[-75.173744299675008,40.040295094657388],[-75.173775735751008,40.040307295726755],[-75.173799262566718,40.04031508374301],[-75.173826284493586,40.040324028653188],[-75.173840190102368,40.040327878798564],[-75.173863648816152,40.040334373223892],[-75.173887796766579,40.040340714613059],[-75.173937930364261,40.040352821397484],[-75.173985387977112,40.04036340850822],[-75.174051920414783,40.040377116495712],[-75.174115317232463,40.040390110804424],[-75.174172864133737,40.040402405355465],[-75.174229368314329,40.040421911613429],[-75.174264415461764,40.040434009715845],[-75.174297190932876,40.040446382132458],[-75.174380811528465,40.040484610291436],[-75.174418056829538,40.040503716142901],[-75.174519339429224,40.040560519926139],[-75.174539820751761,40.040572604898948],[-75.174552066225047,40.040579829861422],[-75.174574227697391,40.040581930554879],[-75.174585039538258,40.040579487057677],[-75.174594597709429,40.040574895371911],[-75.174602196363949,40.040568499175343],[-75.174643315996278,40.040527530418331],[-75.174745066525986,40.040426152204844],[-75.175126281565511,40.040063593689531],[-75.175143150257441,40.040047249069929],[-75.175148132648516,40.040042420516151],[-75.17513734493906,40.040036538364248],[-75.174906087713268,40.039894875287828],[-75.174631022805357,40.039724508106424],[-75.174610738098735,40.03971194370947],[-75.174791705948635,40.039538474938176],[-75.174571543641235,40.039396110211833],[-75.174503241040398,40.039351942880181],[-75.174421697268869,40.039299212722248],[-75.174384336143859,40.039275053190842],[-75.174365886209159,40.039262271298256],[-75.174251455605642,40.039372914626362]]]},"properties":{"OBJECTID_1":331,"OBJECTID":274,"ASSET_NAME":"Morton Playground","SITE_NAME":"Morton Playground","CHILD_OF":"Morton Playground","ADDRESS":"88 E HAINES ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":2.6181939999999999,"ZIPCODE":"19144","ALLIAS":" ","GLOBALID":"f25a186f-9a37-43af-9973-70441a0d3d05","Shape_Length":1445.6047940636724,"Shape_Area":114048.10586815031}},{"type":"Feature","id":332,"geometry":{"type":"Polygon","coordinates":[[[-75.208197982958239,40.002558053986604],[-75.208203179179591,40.002584680132784],[-75.208221358714212,40.002581675051573],[-75.208586144274321,40.002522412886748],[-75.208616466667578,40.002517514151151],[-75.208971089860142,40.002463085838919],[-75.209005192586815,40.002456285768766],[-75.209051532835531,40.002443622526094],[-75.20905451710567,40.002442801992451],[-75.209121735629154,40.002424328953808],[-75.209213788217212,40.002396336811572],[-75.209211447539374,40.00239188721558],[-75.20919057361516,40.0023498052336],[-75.2091870944096,40.002350389566054],[-75.209102456766004,40.00216722023557],[-75.209027180154436,40.002022346096446],[-75.208943211115766,40.001900315421587],[-75.208799351285435,40.001715217767348],[-75.208740919609298,40.001654354538232],[-75.208644430857646,40.001547570748592],[-75.208530139978237,40.001449719937746],[-75.208510207708059,40.001432234403772],[-75.208489351291092,40.001412176767772],[-75.208487668786503,40.001412462077965],[-75.208479416677591,40.001413859743984],[-75.208413085718206,40.001428204724895],[-75.208343806622551,40.001444063853619],[-75.208276582097724,40.001458179039801],[-75.208205732700478,40.001472826609785],[-75.208083930705897,40.001498080596775],[-75.20793334762925,40.001520618529931],[-75.207863069051584,40.001531781740418],[-75.207790969080406,40.001543434363455],[-75.207720792934751,40.001552986961478],[-75.207650295113311,40.001564966001396],[-75.20758133751896,40.001576141176983],[-75.207512246261672,40.001586943039293],[-75.207273865460181,40.00161560858853],[-75.207267503976908,40.001616856131044],[-75.207335344547985,40.001644052633949],[-75.207380242277807,40.00166464837028],[-75.207430991020331,40.001690840060093],[-75.20750700075638,40.001731499069201],[-75.207610292281871,40.00178412927098],[-75.207771805256186,40.001867175412343],[-75.208053980004252,40.002012568325448],[-75.208197982958239,40.002558053986604]]]},"properties":{"OBJECTID_1":332,"OBJECTID":275,"ASSET_NAME":"Woodside Park","SITE_NAME":"Woodside Park","CHILD_OF":"Woodside Park","ADDRESS":"3910-18 CONSHOHOCKEN AVE","TYPE":"Land","USE_":"Park- Neighborhood","ACREAGE":2.6025969999999998,"ZIPCODE":"19131","ALLIAS":" ","GLOBALID":"68b49379-4e1d-4a42-a11c-3c51b1f15f2c","Shape_Length":1534.9041506001222,"Shape_Area":113368.7415149889}},{"type":"Feature","id":333,"geometry":{"type":"Polygon","coordinates":[[[-75.195344640551809,39.967972123675324],[-75.195348173723289,39.967995033863303],[-75.195354891295949,39.968012326890552],[-75.195372168755483,39.968025358096853],[-75.195383212861572,39.968029300816148],[-75.195407846984196,39.968035718428801],[-75.195838705651454,39.968150666726515],[-75.19589417340913,39.968164558772401],[-75.195950656700575,39.968158168300015],[-75.196492538788931,39.968098246431353],[-75.196535329106609,39.968093486308149],[-75.196528216981037,39.968059205101113],[-75.196486918187574,39.967867654586861],[-75.1964740994745,39.967823539830334],[-75.196465259225036,39.967777820619276],[-75.196393636750543,39.967786044036117],[-75.196364153245682,39.967630735427392],[-75.196351414561477,39.96763246657153],[-75.19632982676552,39.967519003445688],[-75.196314943840903,39.967440653114743],[-75.196301348955615,39.967367070744686],[-75.196286995379594,39.967290246782397],[-75.196273233292573,39.967216628249801],[-75.196258858971348,39.967138675759749],[-75.19625057698795,39.967094839441828],[-75.19623999255171,39.967058300491054],[-75.196189140425716,39.967063254073487],[-75.195266202324618,39.967165867849381],[-75.195228452422796,39.96717040904695],[-75.195218459790254,39.96717466095668],[-75.195204908892123,39.967188587042244],[-75.195203127775613,39.967205931419635],[-75.195205080280488,39.967216723010253],[-75.195206670299768,39.967225508095559],[-75.195344640551809,39.967972123675324]]]},"properties":{"OBJECTID_1":333,"OBJECTID":276,"ASSET_NAME":"Miles Mack Playground","SITE_NAME":"Miles Mack Playground","CHILD_OF":"Miles Mack Playground","ADDRESS":"732-66 N 36TH ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":2.5771579999999998,"ZIPCODE":"19104","ALLIAS":" ","GLOBALID":"77baec42-eeda-4a0d-88e2-3257ffcc0f36","Shape_Length":1351.7461996927361,"Shape_Area":112260.50179504977}},{"type":"Feature","id":334,"geometry":{"type":"Polygon","coordinates":[[[-75.180772919928799,40.024997559070179],[-75.17998096781362,40.025771767519977],[-75.18002472375737,40.025798494896904],[-75.180130227068446,40.025862939076497],[-75.180168730347631,40.02588591778229],[-75.180860439265743,40.026318690775646],[-75.180889294147619,40.026333612793771],[-75.180898053011418,40.026324249927605],[-75.18154710249317,40.02569587251962],[-75.181562935069422,40.025680167931604],[-75.181568722359913,40.025665333401392],[-75.181567909213101,40.025657553919274],[-75.18155911687758,40.025643617780787],[-75.180799056581805,40.024979749697707],[-75.180772919928799,40.024997559070179]]]},"properties":{"OBJECTID_1":334,"OBJECTID":277,"ASSET_NAME":"Cloverly Park","SITE_NAME":"Cloverly Park","CHILD_OF":"Cloverly Park","ADDRESS":"5425 WISSAHICKON AVE","TYPE":"Land","USE_":"Park- Neighborhood","ACREAGE":2.5549710000000001,"ZIPCODE":"19144","ALLIAS":" ","GLOBALID":"6fca7f3a-63f3-454c-a6b1-b16751ab7945","Shape_Length":1335.1460266248725,"Shape_Area":111294.10940501491}},{"type":"Feature","id":335,"geometry":{"type":"Polygon","coordinates":[[[-75.167431599307847,39.965255118610536],[-75.167298726394023,39.965858232864591],[-75.167294459411849,39.965876558081341],[-75.167288440230465,39.965902409684936],[-75.167289783493345,39.965919561020748],[-75.16730509031936,39.965932068381605],[-75.167315940497119,39.965934594886207],[-75.167335135934707,39.965937004692549],[-75.167377215358172,39.965942286648293],[-75.168708188257412,39.966107708905326],[-75.168735693851829,39.966110990202068],[-75.168747662975207,39.966111528874457],[-75.168758779250524,39.96610807127805],[-75.168766893425072,39.96610127816102],[-75.168770440244359,39.966092465833768],[-75.168773059699419,39.966081864852001],[-75.168776100850636,39.966069565032093],[-75.168901566820324,39.965495532387841],[-75.168921687927053,39.96540087386397],[-75.168879933894104,39.965397235132066],[-75.167484956717828,39.965223136999143],[-75.167440742547228,39.965217745753741],[-75.167431599307847,39.965255118610536]]]},"properties":{"OBJECTID_1":335,"OBJECTID":278,"ASSET_NAME":"Clemente Playground","SITE_NAME":"Clemente Playground","CHILD_OF":"Clemente Playground","ADDRESS":"1800 WALLACE ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":2.5440589999999998,"ZIPCODE":"19130","ALLIAS":" ","GLOBALID":"a8a66482-de73-4856-832f-116c24adc3ca","Shape_Length":1361.2233115426898,"Shape_Area":110818.73845359754}},{"type":"Feature","id":336,"geometry":{"type":"Polygon","coordinates":[[[-75.103879303154415,40.003192575360181],[-75.103861072826561,40.003203538810205],[-75.103855406640065,40.003211388659508],[-75.103850688205313,40.003232167662702],[-75.103847551030853,40.003245983884142],[-75.10384212800524,40.003270802198969],[-75.103799889472725,40.003464119389349],[-75.103780909185701,40.003555165639753],[-75.103872676848638,40.003566443525244],[-75.104099693166617,40.00382079649205],[-75.104147845734587,40.00387557095663],[-75.104688951856502,40.004485630484297],[-75.104747566125866,40.00446077002551],[-75.105420178454224,40.004162342795688],[-75.105053695686578,40.003758520092639],[-75.104964948231427,40.003662639938312],[-75.104685057348277,40.003353568806894],[-75.104693200576818,40.003292455538677],[-75.104236697240808,40.003233493219568],[-75.104191794117341,40.00322769276822],[-75.104000503873607,40.003203020548554],[-75.103956664799256,40.00319736616909],[-75.103901294667196,40.003190263828529],[-75.103879303154415,40.003192575360181]]]},"properties":{"OBJECTID_1":336,"OBJECTID":279,"ASSET_NAME":"Juniata Park Older Adult Center","SITE_NAME":"Juniata Park Older Adult Center","CHILD_OF":"Juniata Park Older Adult Center","ADDRESS":"1231 E SEDGLEY AVE","TYPE":"Land","USE_":"Older Adult Center","ACREAGE":2.516159,"ZIPCODE":"19124","ALLIAS":" ","GLOBALID":"51b30189-d1d3-4f3d-8f28-1e732ec34d2c","Shape_Length":1417.5315549808515,"Shape_Area":109603.41948423615}},{"type":"Feature","id":337,"geometry":{"type":"Polygon","coordinates":[[[-75.16821103155786,39.961826816523192],[-75.169615705338089,39.962006631559539],[-75.169773296405296,39.961263655115125],[-75.168375566678961,39.96108936256816],[-75.16821103155786,39.961826816523192]]]},"properties":{"OBJECTID_1":337,"OBJECTID":280,"ASSET_NAME":"Matthias Baldwin Park","SITE_NAME":"Matthias Baldwin Park","CHILD_OF":"Matthias Baldwin Park","ADDRESS":"423-33 N 19TH ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":2.4982850000000001,"ZIPCODE":"19130","ALLIAS":" ","GLOBALID":"5c2b27a4-a2b4-4d82-80e1-48078510ba68","Shape_Length":1342.8949713978486,"Shape_Area":108824.875843303}},{"type":"Feature","id":338,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.227751106205957,39.974882854047472],[-75.226931951383875,39.974966867367826],[-75.22667374691089,39.974991477972644],[-75.226603874883736,39.974996849494282],[-75.226612029789948,39.975039487442203],[-75.226725391473451,39.975642187987624],[-75.226729701976055,39.975665400571174],[-75.226732437207872,39.975680136167156],[-75.226737651821296,39.975687932734552],[-75.226745698776597,39.97569413734729],[-75.226767047154752,39.975699651441076],[-75.226788008628759,39.975697453492124],[-75.226808975952295,39.975695255668015],[-75.226830257212043,39.975693024197803],[-75.227815857327229,39.975588825787163],[-75.227839161088198,39.975586371888049],[-75.22785042037323,39.975583843376619],[-75.227868846832109,39.97557289488995],[-75.227878232981865,39.975556503004348],[-75.227877301760103,39.97553644885754],[-75.227874261828802,39.975512755186834],[-75.227868894226432,39.975470912921097],[-75.227796798830084,39.974909510642732],[-75.227792849946425,39.974876708627583],[-75.227751106205957,39.974882854047472]]],[[[-75.228709893118491,39.975248348862479],[-75.22837562744229,39.975270840735668],[-75.228017178250028,39.97529749255488],[-75.227967652228998,39.9753007685391],[-75.22797249459677,39.975340230533597],[-75.227995886191437,39.97553090014214],[-75.227997082062842,39.975540641880094],[-75.227998429629636,39.975551628526404],[-75.22800648913838,39.975560178620931],[-75.228016889253823,39.975567069160157],[-75.228029076822494,39.975571932092784],[-75.228035668534218,39.975573206808718],[-75.228054080978552,39.975573800663753],[-75.228091515223312,39.975571540124072],[-75.228715678419817,39.975535012032545],[-75.228732786438613,39.975533959829264],[-75.228750391004297,39.975532876185987],[-75.228769705539221,39.975524721240326],[-75.2287771641045,39.975518417749633],[-75.228782650598347,39.975511007754591],[-75.228786752687654,39.975494357349476],[-75.228784281345909,39.975474645995796],[-75.228758782452985,39.975271341563108],[-75.228757480282226,39.975260958692786],[-75.22875542452482,39.975244659535392],[-75.228709893118491,39.975248348862479]]]]},"properties":{"OBJECTID_1":338,"OBJECTID":281,"ASSET_NAME":"Conestoga Playground","SITE_NAME":"Conestoga Playground","CHILD_OF":"Conestoga Playground","ADDRESS":"5200-300 MEDIA ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":2.47621,"ZIPCODE":"19131","ALLIAS":" ","GLOBALID":"913c2d6b-5ee2-4851-87d3-462b1c4bbeab","Shape_Length":1806.5481319208861,"Shape_Area":107863.24861928988}},{"type":"Feature","id":339,"geometry":{"type":"Polygon","coordinates":[[[-75.131182481676561,39.971718675697936],[-75.131162122276379,39.971725907608821],[-75.130343372645925,39.972009491345354],[-75.130324754693049,39.97201577624449],[-75.130305691568807,39.972026194798751],[-75.130299892908297,39.97203422661655],[-75.130296772937655,39.972043098076128],[-75.130296515776948,39.972052286280729],[-75.13029913165893,39.972061252649979],[-75.130310341072231,39.972082120447304],[-75.130768762314986,39.97293665430346],[-75.130776223857012,39.972950583292807],[-75.130781156352541,39.972959790841507],[-75.130798412289323,39.972966814471349],[-75.130808224855784,39.972967455623227],[-75.130817909245877,39.97296607554933],[-75.130832932031154,39.972960582500662],[-75.130849442424761,39.972954717041951],[-75.131681900369458,39.972665248633589],[-75.131704903877136,39.972657421011029],[-75.131711856764454,39.972654290013352],[-75.13171718060201,39.972649610823368],[-75.131720303649345,39.972643875871185],[-75.131720910278389,39.972637678038595],[-75.1317147485655,39.972623868875843],[-75.131707770903986,39.972610902475665],[-75.131243528027625,39.971744857954953],[-75.131235233718755,39.971729323281792],[-75.131220978180338,39.971722456487761],[-75.131213805708953,39.971720501555083],[-75.131198720670824,39.971717532588627],[-75.131182481676561,39.971718675697936]]]},"properties":{"OBJECTID_1":339,"OBJECTID":282,"ASSET_NAME":"Hetzell Playground","SITE_NAME":"Hetzell Playground","CHILD_OF":"Hetzell Playground","ADDRESS":"1301 E COLUMBIA AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":2.4635720000000001,"ZIPCODE":"19125","ALLIAS":" ","GLOBALID":"4e669f92-2326-411b-9fec-0bc7c0c203d6","Shape_Length":1304.1735829284792,"Shape_Area":107312.68223520779}},{"type":"Feature","id":340,"geometry":{"type":"Polygon","coordinates":[[[-75.097270521148658,39.990035373329562],[-75.097243441316195,39.990049683932178],[-75.096476676850045,39.990448671896168],[-75.096404885854966,39.990485526049497],[-75.096376979181855,39.990499852480148],[-75.096368142583188,39.990506791597198],[-75.096359178170545,39.9905247654549],[-75.096359716045527,39.990534473042608],[-75.096363639968388,39.990543714689139],[-75.096373484274665,39.990555653958772],[-75.096389966473481,39.990575641574054],[-75.096944249188027,39.991198385368676],[-75.096964376145166,39.991220798933561],[-75.09697526188242,39.991232922603025],[-75.096987696211514,39.991238271132865],[-75.097001397140204,39.99124127380604],[-75.097029625675106,39.991239732253945],[-75.097042635373001,39.991235270979857],[-75.097054269070469,39.991229299299725],[-75.097111906766287,39.991199713341203],[-75.097885218238119,39.990794726347247],[-75.09790106894765,39.990786564294467],[-75.097920653050281,39.990776480995862],[-75.097936819279425,39.990763419187068],[-75.097941173180317,39.990754968056073],[-75.097942608006235,39.990745943995741],[-75.097941028272714,39.990736932275389],[-75.097936536252419,39.990728523634331],[-75.097906000131687,39.990693985062435],[-75.097359501213688,39.990075840078703],[-75.097346153501704,39.990060741987783],[-75.097335386313048,39.990048645417993],[-75.097325127497257,39.990037119238835],[-75.09731534385682,39.990032021220337],[-75.097292312009969,39.99002880022136],[-75.097270521148658,39.990035373329562]]]},"properties":{"OBJECTID_1":340,"OBJECTID":283,"ASSET_NAME":"Samuel Recreation Center","SITE_NAME":"Samuel Recreation Center","CHILD_OF":"Samuel Recreation Center","ADDRESS":"2501 E TIOGA ST","TYPE":"Land","USE_":"Recreation Center","ACREAGE":2.4401280000000001,"ZIPCODE":"19134","ALLIAS":"Fox Square","GLOBALID":"b7c5da55-f229-4118-9797-2ce2254d9d88","Shape_Length":1281.9815545352874,"Shape_Area":106291.5331671548}},{"type":"Feature","id":341,"geometry":{"type":"Polygon","coordinates":[[[-75.048647668653771,40.021005097394955],[-75.048634536277063,40.021010498407179],[-75.048614479551006,40.021020885120016],[-75.04859711762623,40.021029876426205],[-75.047278499364069,40.021711554173763],[-75.04725787359186,40.021722211096488],[-75.047223767402585,40.021739821300024],[-75.047196986674294,40.021753649206765],[-75.04716832366401,40.021768450088814],[-75.047149863995102,40.021781335817543],[-75.04714325088429,40.021796718775398],[-75.047146564406773,40.021809925076241],[-75.047159766558067,40.021827883804434],[-75.047174618544886,40.021844879396163],[-75.047500746715897,40.022217628466414],[-75.047512285352667,40.022230746301396],[-75.047530096874283,40.022239792145342],[-75.047538746838867,40.02224048138396],[-75.047549190966961,40.022240320806432],[-75.047571583533838,40.022234890954287],[-75.047778056703081,40.022127226769392],[-75.048993403162513,40.021498507962505],[-75.049024616471712,40.021482837641891],[-75.04904225308681,40.021470832411389],[-75.049047853378141,40.021464927104084],[-75.049052912832906,40.02144810907334],[-75.04905113088779,40.021437578937181],[-75.049042192810091,40.021422396852579],[-75.049009098786286,40.021383751795597],[-75.048998404426882,40.021371384724567],[-75.048724113753693,40.021054187371853],[-75.048694355258164,40.021018876175937],[-75.048684808867748,40.021010118653884],[-75.04866798050503,40.021004172298568],[-75.048647668653771,40.021005097394955]]]},"properties":{"OBJECTID_1":341,"OBJECTID":284,"ASSET_NAME":"Dorsey Playground","SITE_NAME":"Dorsey Playground","CHILD_OF":"Dorsey Playground","ADDRESS":"6501 HEGERMAN ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":2.4302679999999999,"ZIPCODE":"19135","ALLIAS":" ","GLOBALID":"981df22d-5ff1-4a24-bcc1-cc71c828bdb5","Shape_Length":1426.5595561309638,"Shape_Area":105862.08137741066}},{"type":"Feature","id":342,"geometry":{"type":"Polygon","coordinates":[[[-75.165878432336285,39.954621247842013],[-75.165968075664907,39.954632593508556],[-75.166027220204441,39.954639108366727],[-75.166028766527148,39.954643671704545],[-75.166055352196565,39.954649067538796],[-75.166089786239652,39.954653214735117],[-75.166121771697306,39.954657067099831],[-75.166179538986952,39.954664024792528],[-75.166225643760839,39.954669577296713],[-75.166249183065702,39.95467171037064],[-75.166266228589535,39.954669981393913],[-75.166282170162631,39.954663385490221],[-75.166291176042606,39.954656851423962],[-75.166300514657792,39.954645292675529],[-75.166303673660636,39.954636295995691],[-75.166310594769641,39.954595853885131],[-75.166328277003572,39.954514633571002],[-75.166352104044478,39.954405532746044],[-75.166361005251503,39.954363726039269],[-75.166378702413226,39.954280601307659],[-75.166400045909995,39.954185237298276],[-75.166406442215902,39.954156654252678],[-75.166406450946084,39.954156609398517],[-75.166420558423184,39.954083706937965],[-75.166428377019017,39.954035546207223],[-75.166430171316762,39.954016900442461],[-75.166428420082269,39.954001684286268],[-75.16642200900553,39.953980161490591],[-75.166416811597841,39.953971027068654],[-75.166405107205023,39.95395453076295],[-75.16639675040399,39.953947261469921],[-75.166387975058242,39.953937944651337],[-75.166377404583912,39.953930238064551],[-75.166363711454835,39.953921860171349],[-75.16634249985033,39.953912738998902],[-75.16632375429208,39.95390751709801],[-75.166300514868865,39.953902800365839],[-75.166238927267997,39.953893276177737],[-75.166143550149769,39.953880707722121],[-75.16605977521948,39.953869958376515],[-75.165847553328604,39.953842100276773],[-75.165770288344689,39.953831678466592],[-75.165704734913263,39.953822816098217],[-75.165654310434434,39.95381591454489],[-75.165616349861466,39.953810829993337],[-75.165599221774769,39.953806916646286],[-75.165570770550687,39.953799666725516],[-75.165545162787623,39.953791963674206],[-75.16551861503946,39.953782779793357],[-75.165500638264348,39.953777078615744],[-75.165487421298465,39.953774499472189],[-75.165356859737244,39.953756940730024],[-75.165253649477307,39.953744185130034],[-75.165253564427402,39.953744174203571],[-75.165208235109034,39.95373838287658],[-75.165194932204088,39.953738678708326],[-75.165182835905028,39.95374295628757],[-75.165173886095076,39.953750540313322],[-75.165169508252006,39.95376021319543],[-75.165160381915442,39.953797149262996],[-75.165147288316604,39.953857923333992],[-75.165147272469625,39.953858001365361],[-75.165124556747671,39.953960955959168],[-75.165105566563597,39.954041378079275],[-75.165087480876764,39.954122243154742],[-75.165068031291,39.95420919900215],[-75.165053031903298,39.954276086768736],[-75.165035356601663,39.954354901361661],[-75.16500937324615,39.954486927492425],[-75.165023326337291,39.954506227221977],[-75.165034906887655,39.954514001745835],[-75.165047505892971,39.954519963846607],[-75.16505968561799,39.954521990769166],[-75.165079534805301,39.954523532762479],[-75.165187286052955,39.954535715047136],[-75.165297906532089,39.954549230507205],[-75.165392561944529,39.954560725594582],[-75.165509632531766,39.954576512568138],[-75.165569905126588,39.954583655858009],[-75.165634575973272,39.954590870267765],[-75.165747449421985,39.954605641604843],[-75.165878432336285,39.954621247842013]]]},"properties":{"OBJECTID_1":342,"OBJECTID":285,"ASSET_NAME":"John F. Kennedy Plaza","SITE_NAME":"John F. Kennedy Plaza","CHILD_OF":"Benjamin Franklin Parkway","ADDRESS":"1501 JOHN F KENNEDY BLV","TYPE":"Land","USE_":"Park- Square\\Plaza","ACREAGE":2.3665560000000001,"ZIPCODE":"19102","ALLIAS":" ","GLOBALID":"a69a868c-0c74-4568-a7b3-d4ef25b82c8b","Shape_Length":1265.1854368846114,"Shape_Area":102623.60825243971}},{"type":"Feature","id":343,"geometry":{"type":"Polygon","coordinates":[[[-75.148450077365155,39.997114467753235],[-75.148492783868136,39.997117523290015],[-75.149074849487306,39.997194548742421],[-75.149609202798345,39.997267443128969],[-75.149688259550487,39.996949495328643],[-75.149951928136957,39.996984467185065],[-75.150004327230945,39.99698790208307],[-75.15008072041212,39.996622186524469],[-75.150081498907682,39.996588300578594],[-75.150073542182795,39.996580403126714],[-75.150062940906722,39.996574628947357],[-75.150010288670231,39.99656655438951],[-75.148845770720328,39.996412742499047],[-75.148723708973066,39.9963962728567],[-75.148637784020067,39.996387555378199],[-75.148618549803672,39.996393408610317],[-75.14861149120604,39.996399348553972],[-75.148607058951569,39.996406638277755],[-75.148601976585823,39.996428298058845],[-75.148450077365155,39.997114467753235]]]},"properties":{"OBJECTID_1":343,"OBJECTID":286,"ASSET_NAME":"12th & Cambria Playground","SITE_NAME":"12th & Cambria Playground","CHILD_OF":"12th & Cambria Playground","ADDRESS":"1149 W CAMBRIA ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":2.3643990000000001,"ZIPCODE":"19133","ALLIAS":" ","GLOBALID":"d0c735fc-a096-4bfb-b9da-2bf703447679","Shape_Length":1370.0382558698511,"Shape_Area":102992.7765428776}},{"type":"Feature","id":344,"geometry":{"type":"Polygon","coordinates":[[[-75.15231905865825,39.942404023065968],[-75.152310905633684,39.942408248911292],[-75.152305025754998,39.942414314764648],[-75.152301371340286,39.94242478475222],[-75.152297807336907,39.942441096302012],[-75.152186683604285,39.942950113241395],[-75.152183173831446,39.942966198959731],[-75.152180047017779,39.942980534559432],[-75.152182407929985,39.942988499894234],[-75.152187591474231,39.94299562903926],[-75.152195176134541,39.943001343002138],[-75.152204548720718,39.94300517738403],[-75.152227870666209,39.943008411362484],[-75.152259264343428,39.943012763407545],[-75.15355221424916,39.943175974205928],[-75.153608537495671,39.943183495057006],[-75.153622896375197,39.943185412194566],[-75.153632932886396,39.943185260956561],[-75.15363865659738,39.943184445350155],[-75.153653522243374,39.943177786331631],[-75.153661011602949,39.94317123064711],[-75.153665788370247,39.943162539411198],[-75.153671881436807,39.943135266497698],[-75.153773036119759,39.942666941644717],[-75.153782667490432,39.942620494917527],[-75.153785767260061,39.942595950111397],[-75.15378297611862,39.942587966064913],[-75.15377215657935,39.942578282074109],[-75.153755126601041,39.94257421953008],[-75.15374126061235,39.942572579364025],[-75.153723949953516,39.942570532351283],[-75.153710082796721,39.942568892154988],[-75.152361193285685,39.942406352283953],[-75.152337954747935,39.942403330154839],[-75.152328568919756,39.942402110244018],[-75.15231905865825,39.942404023065968]]]},"properties":{"OBJECTID_1":344,"OBJECTID":287,"ASSET_NAME":"Starr Garden Playground","SITE_NAME":"Starr Garden Playground","CHILD_OF":"Starr Garden Playground","ADDRESS":"600-44 LOMBARD ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":2.1669420000000001,"ZIPCODE":"19147","ALLIAS":" ","GLOBALID":"0fe437b8-6936-4ba1-92a1-3e46ac5f03a1","Shape_Length":1275.0748820656804,"Shape_Area":94391.670193342739}},{"type":"Feature","id":345,"geometry":{"type":"Polygon","coordinates":[[[-75.090928076142674,40.00759874750085],[-75.090913084178823,40.007607029502232],[-75.090908338625198,40.00761319441358],[-75.090903532854242,40.00762092663637],[-75.090824866052827,40.007747492506304],[-75.089984197303224,40.009080824132354],[-75.089964989972913,40.009111568537712],[-75.089960076558697,40.009125571256611],[-75.089963935212026,40.009139773613661],[-75.089975726617524,40.009151104346586],[-75.090002685429226,40.009162905428205],[-75.090066996322562,40.009191057129364],[-75.09008993125309,40.009201097142238],[-75.090115350916435,40.009202597915333],[-75.090149245576498,40.009186908604377],[-75.090176464825532,40.009172713531242],[-75.091340405435076,40.00853279187826],[-75.091366190113149,40.00851862278207],[-75.091395841500812,40.008502329372888],[-75.091416108098983,40.008491191520797],[-75.091420535951102,40.00848832243441],[-75.091426370470131,40.008484540733377],[-75.09143294358222,40.008472729871833],[-75.091432822577957,40.008466245007014],[-75.091403457267688,40.008429783905548],[-75.091264311023153,40.008268772849426],[-75.091240288599991,40.008229209719474],[-75.091227603497458,40.008204286093559],[-75.091166710616633,40.00806254470961],[-75.091140553338377,40.008002639849266],[-75.090992657388867,40.007663017655538],[-75.09097966540908,40.007634207022001],[-75.090971002889432,40.007615000805252],[-75.090955264051914,40.007600140385321],[-75.090937191854835,40.007597258374929],[-75.090928076142674,40.00759874750085]]]},"properties":{"OBJECTID_1":345,"OBJECTID":288,"ASSET_NAME":"Womrath Park","SITE_NAME":"Womrath Park","CHILD_OF":"Womrath Park","ADDRESS":"4098 FRANKFORD AVE","TYPE":"Land","USE_":"Park- Mini","ACREAGE":2.1662249999999998,"ZIPCODE":"19124","ALLIAS":" ","GLOBALID":"983ea95c-302a-4be6-9f48-2c16eb334d4c","Shape_Length":1484.8442896185925,"Shape_Area":94360.304599955416}},{"type":"Feature","id":346,"geometry":{"type":"Polygon","coordinates":[[[-75.172439888096946,39.923369122856528],[-75.172435200253702,39.923391000440247],[-75.172428736561642,39.923420886870623],[-75.172520968388028,39.92343308661237],[-75.173125155832778,39.923511889569482],[-75.173153172936239,39.923515520469351],[-75.173164596837239,39.923515889820131],[-75.173170791459995,39.923514547760384],[-75.17317801201628,39.923511671802153],[-75.173186045854777,39.923505771393259],[-75.173189944248833,39.923499866350589],[-75.173193685294905,39.923482707702817],[-75.173200583786965,39.923451066820981],[-75.173429463271276,39.922403937596485],[-75.173433334542267,39.92238670528333],[-75.173427734339271,39.922376072712531],[-75.173422952804557,39.922370485297847],[-75.173419533909296,39.922366489960666],[-75.17341413901849,39.922362296147902],[-75.173403503242966,39.922355464430368],[-75.173391595886898,39.922351337816629],[-75.173376243753793,39.922349548513175],[-75.173358690810502,39.9223475025195],[-75.172750639377952,39.922273347647796],[-75.172681174251125,39.922264240294489],[-75.172676761648091,39.92228833786497],[-75.172642006114771,39.922452382001381],[-75.172637902769026,39.92246674835387],[-75.172651219222416,39.922468370362402],[-75.172494227871056,39.923181669123046],[-75.172486436462563,39.923215833462834],[-75.17247312655735,39.92321403498665],[-75.172439888096946,39.923369122856528]]]},"properties":{"OBJECTID_1":346,"OBJECTID":289,"ASSET_NAME":"Guerin Recreation Center","SITE_NAME":"Guerin Recreation Center","CHILD_OF":"Guerin Recreation Center","ADDRESS":"2201 S 16TH ST","TYPE":"Land","USE_":"Recreation Center","ACREAGE":2.0909439999999999,"ZIPCODE":"19145","ALLIAS":" ","GLOBALID":"3e5e5c51-e7d0-42f0-ba11-486a011c8cea","Shape_Length":1284.8486747128131,"Shape_Area":91081.105236979914}},{"type":"Feature","id":347,"geometry":{"type":"Polygon","coordinates":[[[-75.144752511615906,40.037042849376235],[-75.144746250579615,40.037631174340696],[-75.144821634882192,40.037771930504],[-75.144858719963167,40.037645282726793],[-75.145041292582547,40.036864670345409],[-75.145041613381437,40.036864130701971],[-75.14504095947531,40.036870080623437],[-75.145261194445496,40.035868225238382],[-75.145378499448825,40.035346228786992],[-75.145382304053982,40.035329316424409],[-75.145382587575995,40.035326693677888],[-75.145383511281878,40.035318141420845],[-75.145380196827503,40.035305271774682],[-75.145373219295479,40.035294479704497],[-75.145354743580128,40.035284459450537],[-75.14532325928208,40.035278892560463],[-75.145168384237451,40.035260819715724],[-75.145047642912317,40.035245100320601],[-75.145029067838507,40.035242739132521],[-75.144904826856546,40.03522694832062],[-75.144885215491016,40.035226788222786],[-75.144871822306229,40.035231977058189],[-75.144862082064478,40.035244329865023],[-75.144845751940068,40.035272985824861],[-75.144797248003144,40.035400172879008],[-75.144780735127952,40.035449434618918],[-75.144777398426484,40.03556551123387],[-75.144777339127756,40.03556891844778],[-75.144771129021692,40.035923411877114],[-75.144767582889159,40.036144268768062],[-75.144767032734165,40.036177866139106],[-75.1447559948801,40.03685160128822],[-75.144752511615906,40.037042849376235]]]},"properties":{"OBJECTID_1":347,"OBJECTID":290,"ASSET_NAME":"Clarkson Park","SITE_NAME":"Clarkson Park","CHILD_OF":"Clarkson Park","ADDRESS":"5401-55 N BROAD ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":2.060746,"ZIPCODE":"19141","ALLIAS":" ","GLOBALID":"41396e39-de72-4556-a09d-76d6a5299c9c","Shape_Length":1998.7259164378538,"Shape_Area":89765.786631099356}},{"type":"Feature","id":348,"geometry":{"type":"Polygon","coordinates":[[[-75.143249036407127,39.944557116329158],[-75.143291483583681,39.94435821961298],[-75.143265353331373,39.944355044337492],[-75.143185333651942,39.944345321072262],[-75.143185257939493,39.944345311242323],[-75.143052349964009,39.94432869861393],[-75.143046088191795,39.944327910260739],[-75.143020169780229,39.944324614501447],[-75.14301383725109,39.94432380922089],[-75.142942295711691,39.94431471277381],[-75.142872180067542,39.944305797360933],[-75.14278839726019,39.944295273769256],[-75.14277453388398,39.944293531424606],[-75.142692435766804,39.944283217250778],[-75.142683848557226,39.94428213994896],[-75.14253956832836,39.944264124813074],[-75.142516671926231,39.94426139229941],[-75.142467052265289,39.944255473544338],[-75.142456550815055,39.944254221158658],[-75.142394955648157,39.944246874113226],[-75.142365328635279,39.944243338916955],[-75.142365241227239,39.944243328820562],[-75.142317210216262,39.944237346103307],[-75.142312070072904,39.944237559919181],[-75.142305194624001,39.944237846910923],[-75.142299312156837,39.944239193555674],[-75.142293658800114,39.944240487743457],[-75.14228324174266,39.944245120043583],[-75.142279093831647,39.944248243296002],[-75.142274121395303,39.944251987529377],[-75.142271966898392,39.944254778573111],[-75.142267607256443,39.944260429788748],[-75.142264136605149,39.944269881009667],[-75.142260707052742,39.944292659304068],[-75.142253136125262,39.944342946301553],[-75.142236614646166,39.94445268747954],[-75.142222251322124,39.944547339624954],[-75.142222232554076,39.944547462638511],[-75.142203400552532,39.944666345327825],[-75.142190383296409,39.944748522767625],[-75.142181048622433,39.944806911311851],[-75.142169446883713,39.944876696718268],[-75.142152935907149,39.944975999769063],[-75.142142781728978,39.945037072750054],[-75.142140717909626,39.945049487884951],[-75.142139163992908,39.945058834914185],[-75.142138991911182,39.945067040228047],[-75.142141389210479,39.945075035454238],[-75.142146218196416,39.945082351632813],[-75.142153189772614,39.945088560511486],[-75.142161105821359,39.945093005935263],[-75.142169599527975,39.945096766198596],[-75.142177407103063,39.945099401701512],[-75.142208701776056,39.945103416354428],[-75.142245523857085,39.94510813962701],[-75.142245577451476,39.945108146251606],[-75.142276454298994,39.945112006321764],[-75.142279447292694,39.945112379813764],[-75.142316600666959,39.945117042117374],[-75.142377276162279,39.945124642190457],[-75.142429015960275,39.945131122751505],[-75.142900206076689,39.945190293296328],[-75.14310944547934,39.94521656631084],[-75.143196701898589,39.944806060021818],[-75.143226962392504,39.944662115481982],[-75.143249036407127,39.944557116329158]]]},"properties":{"OBJECTID_1":348,"OBJECTID":291,"ASSET_NAME":"Foglietta Plaza","SITE_NAME":"Foglietta Plaza","CHILD_OF":"I-95 Park","ADDRESS":"109 SPRUCE ST","TYPE":"Land","USE_":"Park- Linear\\Parkway","ACREAGE":2.057328,"ZIPCODE":"19106","ALLIAS":" ","GLOBALID":"383a7b77-d5b8-458c-838e-26134d8e9bfe","Shape_Length":1188.5460317165589,"Shape_Area":89616.845958640901}},{"type":"Feature","id":349,"geometry":{"type":"Polygon","coordinates":[[[-75.163232184688454,39.932272925013166],[-75.163242765020769,39.932282735174212],[-75.163244631218291,39.932284134200799],[-75.163265668940554,39.932303079587143],[-75.163285383301044,39.93230525601696],[-75.163324753056628,39.932310420254197],[-75.163656327758659,39.932353907740691],[-75.163795077155555,39.932372105418224],[-75.16379815861913,39.93237251008761],[-75.163907395236762,39.932386837154795],[-75.163912063468658,39.932361411198421],[-75.163878776766254,39.932328578946588],[-75.163807779996887,39.932258284344378],[-75.163755422547453,39.932206641229875],[-75.163699113472262,39.932239869503938],[-75.16366487094227,39.93220441709618],[-75.163720227169534,39.932171899877673],[-75.163685836114084,39.932138013698321],[-75.163547361231807,39.93200140405208],[-75.163478564383766,39.931951066826791],[-75.162635223785671,39.931339734539421],[-75.162599350388831,39.931313730008583],[-75.162443958018315,39.931199163577723],[-75.162620560116068,39.931086155553935],[-75.162680294991006,39.931041845104367],[-75.162409106952381,39.93100726413337],[-75.162224815040318,39.930983765303722],[-75.162183058794085,39.930978441397535],[-75.162171859846836,39.930980830467824],[-75.162162171804866,39.930985771977063],[-75.162148556885114,39.930998006009389],[-75.162122952536365,39.931018912085634],[-75.161868396427479,39.931226755507687],[-75.161834690394713,39.931254274157745],[-75.161872732622541,39.931283125542912],[-75.161897092932264,39.931301564124148],[-75.16199485657809,39.931372694697906],[-75.163134011878341,39.932201499800264],[-75.163146748862772,39.932210765749012],[-75.163232184688454,39.932272925013166]]]},"properties":{"OBJECTID_1":349,"OBJECTID":292,"ASSET_NAME":"South Philadelphia Older Adults Center","SITE_NAME":"South Philadelphia Older Adults Center","CHILD_OF":"South Philadelphia Older Adults Center","ADDRESS":"1430 E PASSYUNK AVE","TYPE":"Land","USE_":"Older Adult Center","ACREAGE":2.037639,"ZIPCODE":"19147","ALLIAS":" ","GLOBALID":"ae3e4642-dbe5-4224-82a1-9aa304f63468","Shape_Length":1747.183120170009,"Shape_Area":88759.218324859583}},{"type":"Feature","id":350,"geometry":{"type":"Polygon","coordinates":[[[-75.220510547540741,40.025091554196962],[-75.220465114728569,40.025099956285572],[-75.220423243570835,40.025115904281307],[-75.220379330237691,40.025146301634308],[-75.220348157093369,40.025183938918545],[-75.220333891390766,40.025218321212172],[-75.220329988984332,40.025254287788059],[-75.220336649222588,40.025290012209929],[-75.220354843829256,40.025323603962391],[-75.220388343832852,40.025372243444679],[-75.220400902884279,40.025390477878396],[-75.220984225471156,40.026147440574206],[-75.221003951845248,40.02617217759903],[-75.22101994475301,40.026182904778857],[-75.221040448792124,40.026187148607342],[-75.221061294534991,40.026184046012567],[-75.221091197582041,40.026171156204597],[-75.221128178208417,40.026155216491652],[-75.221159612882204,40.026141481019906],[-75.2219665370081,40.02578887925025],[-75.22199010921814,40.025778523111946],[-75.222020910103396,40.025764991501646],[-75.222026460568799,40.025756087489967],[-75.222027951431613,40.025750074614479],[-75.22202802586591,40.025749775319824],[-75.222028865863138,40.025746385336802],[-75.22202382177565,40.025727187569181],[-75.222000514384419,40.025717596051038],[-75.221977239318946,40.025708017853589],[-75.221655569195519,40.025575504873771],[-75.221111010293953,40.025346206397884],[-75.22076199223234,40.025179059713828],[-75.2206919764958,40.025139584741993],[-75.220653869576623,40.025118332430317],[-75.220614824042315,40.025103241179401],[-75.220557273996704,40.025091113872016],[-75.220510547540741,40.025091554196962]]]},"properties":{"OBJECTID_1":350,"OBJECTID":293,"ASSET_NAME":"Manayunk Park","SITE_NAME":"Manayunk Park","CHILD_OF":"Manayunk Park","ADDRESS":"4300 SILVERWOOD ST","TYPE":"Land","USE_":"Park- Neighborhood","ACREAGE":2.0247320000000002,"ZIPCODE":"19127","ALLIAS":" ","GLOBALID":"fba3366e-4470-416e-85ae-39efd20ab19d","Shape_Length":1297.1348486971224,"Shape_Area":88197.089489765087}},{"type":"Feature","id":351,"geometry":{"type":"Polygon","coordinates":[[[-75.168903875976667,39.928716436690799],[-75.168893432893199,39.928719771462951],[-75.168884505365639,39.928725109967182],[-75.168880314737081,39.928729416205506],[-75.168877726805775,39.928732075419887],[-75.168873585259462,39.928740174237568],[-75.168870393540175,39.928754572712691],[-75.168861380584389,39.928795229114883],[-75.16877479302471,39.929201177252047],[-75.168771517616122,39.92921706952793],[-75.168768623590253,39.92923361281256],[-75.168770460859179,39.929241229008198],[-75.168775053600058,39.929248123342632],[-75.168782015423517,39.92925371497315],[-75.168790767163642,39.929257537652092],[-75.16880057069254,39.929259273825522],[-75.168857168763751,39.92926650257197],[-75.170200314408859,39.929441823260362],[-75.170254888026548,39.929449268864012],[-75.170261336320024,39.929449368873215],[-75.170266719653199,39.929448758351185],[-75.170274433722497,39.929445696338632],[-75.170280446312503,39.92944087150606],[-75.170284100868571,39.929434807891397],[-75.170286186566273,39.929422993843154],[-75.170298633978305,39.929368515542549],[-75.170386380529223,39.92896130497644],[-75.170391086929669,39.928938225917648],[-75.170393895399528,39.928924450397979],[-75.170390581187519,39.928916644231833],[-75.170384360073953,39.928909973728572],[-75.17037581457484,39.92890506378091],[-75.170359802292992,39.928901604990955],[-75.170335868090092,39.928898514908752],[-75.168969952162769,39.928722554230653],[-75.16892702676239,39.928716916318066],[-75.168915093940456,39.928715348471847],[-75.168903875976667,39.928716436690799]]]},"properties":{"OBJECTID_1":351,"OBJECTID":294,"ASSET_NAME":"DiSilvestro Playground","SITE_NAME":"DiSilvestro Playground","CHILD_OF":"DiSilvestro Playground","ADDRESS":"1700 S BROAD ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":1.9907360000000001,"ZIPCODE":"19145","ALLIAS":" ","GLOBALID":"bb5e4bf5-e232-4762-bfdf-772f8bc97023","Shape_Length":1249.3506728660905,"Shape_Area":86716.153972000029}},{"type":"Feature","id":352,"geometry":{"type":"Polygon","coordinates":[[[-75.150966981027139,39.985666157016475],[-75.150955856329261,39.985672939355695],[-75.150949854041613,39.985679929597914],[-75.150946966742097,39.985686387598271],[-75.150944704249071,39.98569665844812],[-75.150942322847214,39.985707465415096],[-75.150840364755453,39.986160714901686],[-75.15083716839267,39.98617463535679],[-75.150834774613969,39.986185060910437],[-75.150837178645403,39.986198912672862],[-75.150842138899435,39.986204858208239],[-75.150849110421348,39.986209454512093],[-75.150862225475066,39.986212920405848],[-75.150877771770922,39.986214928543454],[-75.152253560440215,39.986394204045588],[-75.152272325283974,39.986396680388481],[-75.152282823869896,39.986397355005415],[-75.152293164601147,39.986395817649559],[-75.152310364361099,39.986386723709913],[-75.15231593585878,39.986379847087882],[-75.152318883004895,39.986372066812272],[-75.152321967462555,39.98635705265513],[-75.152425926413287,39.985891295253865],[-75.152428814344731,39.985879304973516],[-75.152428084361958,39.985870736875356],[-75.152420957769579,39.98585873978864],[-75.152409559583603,39.985850014034547],[-75.15239941734275,39.985846425485967],[-75.152388664550472,39.985845018902552],[-75.15236724890822,39.985842242908134],[-75.151011682721418,39.985666535879552],[-75.150992549961231,39.985664069013787],[-75.150976810527936,39.985663682856398],[-75.150966981027139,39.985666157016475]]]},"properties":{"OBJECTID_1":352,"OBJECTID":295,"ASSET_NAME":"Penrose Playground","SITE_NAME":"Penrose Playground","CHILD_OF":"Penrose Playground","ADDRESS":"1101 W SUSQUEHANNA AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":1.964413,"ZIPCODE":"19133","ALLIAS":" ","GLOBALID":"f3e9b6a1-ed5f-441f-aace-df1d1759425c","Shape_Length":1231.2138439592677,"Shape_Area":85569.466473238441}},{"type":"Feature","id":353,"geometry":{"type":"Polygon","coordinates":[[[-75.158476767007528,39.943742697191936],[-75.158474479303479,39.943753173907801],[-75.158472349059608,39.943762928861183],[-75.158473019924571,39.94377032336218],[-75.158476145060433,39.943777330914621],[-75.158479022034228,39.943780624266843],[-75.158481519893172,39.943783483772442],[-75.15848877315193,39.943788357276311],[-75.158497415169563,39.943791623203801],[-75.158514299764647,39.943793680583155],[-75.15852994926999,39.94379558751659],[-75.159887400077494,39.943961234104222],[-75.159910434950518,39.943963969868783],[-75.159927925237682,39.94396604702262],[-75.159938113007286,39.94396346499591],[-75.159946790586716,39.943958613440245],[-75.159953123520395,39.943951948349877],[-75.159956512458848,39.943944114835709],[-75.159957761368233,39.943938435987292],[-75.159959470374844,39.943930667254683],[-75.160061343390737,39.943467599766635],[-75.16006331695813,39.943458632345319],[-75.16006522426666,39.943449959862889],[-75.160066482957561,39.943444238886691],[-75.160065045786553,39.943436552284901],[-75.160061378966375,39.943429318105395],[-75.160055675308456,39.943422913723211],[-75.16005021466249,39.943420145931711],[-75.160037767364969,39.943417209566462],[-75.160024696144163,39.943415778228207],[-75.160007878318439,39.94341393611905],[-75.160004505424567,39.943426509352648],[-75.159974640896493,39.943421763285336],[-75.158652727834351,39.943258972903628],[-75.158611117861497,39.943254226016982],[-75.158595625805702,39.943257034076055],[-75.158589307205077,39.943260865713043],[-75.158584678766758,39.943265929385625],[-75.158582132403069,39.943271801459503],[-75.158578235523194,39.943288838178496],[-75.158566120733397,39.943341800256718],[-75.158476767007528,39.943742697191936]]]},"properties":{"OBJECTID_1":353,"OBJECTID":296,"ASSET_NAME":"Seger Park Playground","SITE_NAME":"Seger Park Playground","CHILD_OF":"Seger Park Playground","ADDRESS":"1000-42 LOMBARD ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":1.916275,"ZIPCODE":"19147","ALLIAS":" ","GLOBALID":"6a33b643-3c5a-48fc-b418-e72bf53741fe","Shape_Length":1231.9161597476921,"Shape_Area":83472.637325287476}},{"type":"Feature","id":354,"geometry":{"type":"Polygon","coordinates":[[[-75.139113225900275,39.98613609146193],[-75.139676689618724,39.986214157503994],[-75.139786978412275,39.986228425078806],[-75.139808113524708,39.986126006176121],[-75.140015805782994,39.986151079952542],[-75.140046825319772,39.986155093011909],[-75.140164660729724,39.98560625084103],[-75.140216500363294,39.98537053170805],[-75.14018261524113,39.985366572459519],[-75.139864994871573,39.98532391763414],[-75.139805299161353,39.985329759176004],[-75.13979335804126,39.985332795257158],[-75.139781513379816,39.985333352112477],[-75.139346277042321,39.985274667665635],[-75.139336643374506,39.985273621389887],[-75.139323659684564,39.98527580656755],[-75.139314941534906,39.985278915912303],[-75.139304011226159,39.985283628314129],[-75.139296207421367,39.9852908932533],[-75.139294815506872,39.985299130283991],[-75.139186937159579,39.985784529192181],[-75.139113225900275,39.98613609146193]]]},"properties":{"OBJECTID_1":354,"OBJECTID":297,"ASSET_NAME":"Cassiano Park","SITE_NAME":"Cassiano Park","CHILD_OF":"Cassiano Park","ADDRESS":"2301 N 04TH ST","TYPE":"Land","USE_":"Park- Neighborhood","ACREAGE":1.8690599999999999,"ZIPCODE":"19133","ALLIAS":" ","GLOBALID":"458ad1c4-5dd0-4e8d-a045-ddc6d38fe484","Shape_Length":1162.716301255236,"Shape_Area":81415.961744235057}},{"type":"Feature","id":355,"geometry":{"type":"Polygon","coordinates":[[[-75.222816013970913,40.024312256437049],[-75.222856627313575,40.02434092162963],[-75.223038327169803,40.024488502931192],[-75.223453175754145,40.024173854666891],[-75.223011692038412,40.023962114607428],[-75.222521249197612,40.023501022678481],[-75.222462053107733,40.02346892460227],[-75.222367271652274,40.023353413655698],[-75.22217622787214,40.02312300312061],[-75.221691298018854,40.023526393734564],[-75.221942283067492,40.023679110771241],[-75.222063697449556,40.023756874506738],[-75.222138972620556,40.023805086979664],[-75.222185112109713,40.023834638113705],[-75.222310529598005,40.023911511209029],[-75.222481357921112,40.024045951867883],[-75.222606447345171,40.024144275558527],[-75.22264883216603,40.024179716574238],[-75.222686101351115,40.02421087967906],[-75.222759292375443,40.024272222042697],[-75.222816013970913,40.024312256437049]]]},"properties":{"OBJECTID_1":355,"OBJECTID":298,"ASSET_NAME":"Venice Island Playground","SITE_NAME":"Venice Island Playground","CHILD_OF":"Venice Island Playground","ADDRESS":"1 RECTOR ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":1.8009729999999999,"ZIPCODE":"19127","ALLIAS":" ","GLOBALID":"f9821144-23d3-47d4-b054-40a4acbfcf83","Shape_Length":1411.545581503148,"Shape_Area":78450.047973039313}},{"type":"Feature","id":356,"geometry":{"type":"Polygon","coordinates":[[[-75.137220070136834,39.972256960576367],[-75.137193191252408,39.972263658559108],[-75.137181211381247,39.972269493822004],[-75.1371706617483,39.972276781665229],[-75.137161838327458,39.972285317087739],[-75.137149103200557,39.972305154190941],[-75.136927139379168,39.973344198065426],[-75.136927894504041,39.973363687303298],[-75.136939879208995,39.973384886513557],[-75.136960110864024,39.973401976533204],[-75.136972675147433,39.973408384202926],[-75.13698643239934,39.973413127813807],[-75.137005143418293,39.973415558668442],[-75.137473172370406,39.973476357329986],[-75.137502700818956,39.973480193101707],[-75.137518164314145,39.973478636786837],[-75.137532870051658,39.973474645769848],[-75.137557514835208,39.973460154332649],[-75.137566379209687,39.973450282689868],[-75.137572387697475,39.973439211638734],[-75.137574987550778,39.973427610671202],[-75.137578134738362,39.973413014545052],[-75.137790211764539,39.972429180988932],[-75.137794495825446,39.972408437821393],[-75.137798002607695,39.972391462162449],[-75.137792627490953,39.972366364305635],[-75.13778492914048,39.972355025362781],[-75.137762631951873,39.972337078442813],[-75.137748905206607,39.972331180502415],[-75.137715720748403,39.972325313537553],[-75.137303970833869,39.972268098337523],[-75.137270544584183,39.972256706060868],[-75.137245279325029,39.97225329976596],[-75.137220070136834,39.972256960576367]]]},"properties":{"OBJECTID_1":356,"OBJECTID":299,"ASSET_NAME":"Hancock Playground","SITE_NAME":"Hancock Playground","CHILD_OF":"Hancock Playground","ADDRESS":"147 MASTER ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":1.7918879999999999,"ZIPCODE":"19122","ALLIAS":" ","GLOBALID":"b9a0a4bc-5090-49e1-9f7b-b7e56fb12ee5","Shape_Length":1182.4913522595014,"Shape_Area":78054.356742748103}},{"type":"Feature","id":357,"geometry":{"type":"Polygon","coordinates":[[[-75.238177385050975,39.956856503683028],[-75.238145445053249,39.957000367215215],[-75.238141371439411,39.957018715085304],[-75.238119559209551,39.95710910736166],[-75.238572954911547,39.957164257136725],[-75.238582989167696,39.957165033609932],[-75.238643087395758,39.956855531197498],[-75.238647841939127,39.956831047126691],[-75.239169233183276,39.956890028290928],[-75.239276569101634,39.95635118591013],[-75.239284708491695,39.956306065632141],[-75.238324201883898,39.956185681034604],[-75.238315327059368,39.956234621593616],[-75.238262504774468,39.956452109570336],[-75.23823240558734,39.956593187001083],[-75.238204387777088,39.956725559533112],[-75.238177385050975,39.956856503683028]]]},"properties":{"OBJECTID_1":357,"OBJECTID":300,"ASSET_NAME":"Sayre-Morris Recreation Center","SITE_NAME":"Sayre-Morris Recreation Center","CHILD_OF":"Sayre-Morris Recreation Center","ADDRESS":"5825 SPRUCE ST","TYPE":"Land","USE_":"Recreation Center","ACREAGE":1.737309,"ZIPCODE":"19139","ALLIAS":" ","GLOBALID":"67b7c939-1b86-46f3-81ee-a0ba2d59fcbf","Shape_Length":1231.5280989492733,"Shape_Area":75676.820612574593}},{"type":"Feature","id":358,"geometry":{"type":"Polygon","coordinates":[[[-75.150254812363912,39.920655233665357],[-75.150244147866189,39.920659438406389],[-75.150237201848142,39.920664571714653],[-75.150231996952115,39.920671942091523],[-75.150229642150776,39.920679295097031],[-75.150225035636865,39.920700821475492],[-75.150003999775095,39.921715743535074],[-75.149999938046875,39.921734281858555],[-75.149996052053581,39.921754650537586],[-75.149996863893747,39.921762306906466],[-75.149999790474453,39.921769377809355],[-75.150004458043824,39.9217755691473],[-75.150013267928472,39.921782531980696],[-75.150019483787162,39.921785508440593],[-75.150026757667192,39.921787899800108],[-75.150039863486825,39.921789935043932],[-75.150055951053233,39.921791969418841],[-75.150473978595883,39.921844838697055],[-75.150484979415211,39.921846256721338],[-75.150489524846762,39.921846860738349],[-75.150499665185876,39.921845350756108],[-75.150507522940401,39.921841868948334],[-75.150512609213024,39.921837999940891],[-75.15051667685627,39.921831911149908],[-75.150519956595872,39.921824087149638],[-75.150528541542144,39.921803608739275],[-75.150952713850572,39.92078997840288],[-75.150962794951823,39.920766721791658],[-75.150964317231754,39.920761859246419],[-75.150964293098554,39.920755787617608],[-75.150962498292671,39.920750944490813],[-75.150960399040599,39.920747391933716],[-75.150955925243309,39.920743753115573],[-75.150949532899517,39.920740558261656],[-75.150941192160857,39.920738771688853],[-75.150931693906486,39.92073760220682],[-75.150904470048346,39.92073415319912],[-75.150313203631796,39.920660201306852],[-75.150266111039741,39.920654059922342],[-75.150254812363912,39.920655233665357]]]},"properties":{"OBJECTID_1":358,"OBJECTID":301,"ASSET_NAME":"Burke Playground","SITE_NAME":"Burke Playground","CHILD_OF":"Burke Playground","ADDRESS":"200 SNYDER AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":1.714383,"ZIPCODE":"19148","ALLIAS":" ","GLOBALID":"b7c7d72b-1ed4-4149-bb2e-5366f172cf53","Shape_Length":1182.9142581534113,"Shape_Area":74678.278558289006}},{"type":"Feature","id":359,"geometry":{"type":"Polygon","coordinates":[[[-75.166329985538894,40.021399503359909],[-75.166020185227623,40.021648678298632],[-75.166317635194659,40.021850258767515],[-75.166087125762857,40.022105356264944],[-75.166060692671607,40.022125982165207],[-75.166359366309436,40.022285497328731],[-75.166796227068033,40.022531653323114],[-75.166807266569876,40.022535262440364],[-75.166819004363219,40.022537121277153],[-75.16683077138039,40.022537165226957],[-75.166831017312987,40.02253716985814],[-75.166842790236927,40.022535395693325],[-75.16685387643416,40.022531865320559],[-75.166889338612165,40.022500663513739],[-75.167034578576008,40.022378567028625],[-75.167210720622478,40.022244806206587],[-75.167334872209054,40.022160977745429],[-75.166330102785096,40.021399409589421],[-75.166329985538894,40.021399503359909]]]},"properties":{"OBJECTID_1":359,"OBJECTID":302,"ASSET_NAME":"Kay Park","SITE_NAME":"Kay Park","CHILD_OF":"Kay Park","ADDRESS":"4712 PULASKI AVE","TYPE":"Land","USE_":"Park- Mini","ACREAGE":1.707325,"ZIPCODE":"19144","ALLIAS":" ","GLOBALID":"4ead35c0-7052-43ac-b0d4-6e6ed321ab34","Shape_Length":1216.8603263214861,"Shape_Area":74370.74897045955}},{"type":"Feature","id":360,"geometry":{"type":"Polygon","coordinates":[[[-75.17446875972405,40.026763006706766],[-75.174446311293465,40.026785759264683],[-75.175071669047711,40.027172571476029],[-75.175091949409136,40.027178697156558],[-75.175102941854092,40.027178325527743],[-75.17511337852963,40.027175642957026],[-75.175122447571596,40.027170856494379],[-75.175135939197716,40.027157776269163],[-75.175340366754995,40.026959553626902],[-75.17534746311712,40.026952669516703],[-75.175792680655334,40.026521435723026],[-75.175806284024702,40.026508245302935],[-75.175810633718413,40.026492166949296],[-75.17580605122177,40.026476127145564],[-75.175792278735031,40.026467695813658],[-75.175719067287574,40.026422874659225],[-75.175715459206842,40.02642066649247],[-75.175268173368352,40.026147082554196],[-75.17525070590834,40.026165523868684],[-75.17506123080652,40.026348666170172],[-75.174955373865558,40.026287528642214],[-75.17446875972405,40.026763006706766]]]},"properties":{"OBJECTID_1":360,"OBJECTID":303,"ASSET_NAME":"Wissahickon Playground","SITE_NAME":"Wissahickon Playground","CHILD_OF":"Wissahickon Playground","ADDRESS":"5326 PULASKI AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":1.6871290000000001,"ZIPCODE":"19144","ALLIAS":"Kelly Playground","GLOBALID":"4cffc892-d42e-43c9-b0f3-263d66ee47be","Shape_Length":1114.1456604039518,"Shape_Area":73491.011302837622}},{"type":"Feature","id":361,"geometry":{"type":"Polygon","coordinates":[[[-75.237819387758364,39.94644214430577],[-75.23777040785788,39.946451498809047],[-75.237117337065669,39.946577971661434],[-75.236940536365566,39.9466151621248],[-75.236081503188117,39.946818215269566],[-75.236052768514654,39.946825450310371],[-75.23602622695158,39.946832132445081],[-75.23601048494308,39.946838196218515],[-75.235998887558168,39.946851266870155],[-75.23599488019974,39.946867128470181],[-75.23599244836204,39.946876981621365],[-75.236001406235246,39.946892350717818],[-75.236008719067556,39.946898679207621],[-75.236028362420157,39.94690645193571],[-75.236055392670082,39.946910704183111],[-75.236088766005565,39.946914874694514],[-75.237674712949939,39.947112330061515],[-75.237707542448348,39.947116460255742],[-75.237718986351041,39.947114024127835],[-75.237731313057296,39.947106517610997],[-75.237750014534569,39.947095127764896],[-75.237752327988474,39.947084385409802],[-75.237756724497373,39.947063971441828],[-75.23786762765792,39.946540866880831],[-75.237879794422213,39.946482269514341],[-75.237881046861631,39.946468941490188],[-75.237879418398563,39.94646128250514],[-75.237876116708179,39.9464539517788],[-75.237864747751033,39.946444357670103],[-75.237857924724764,39.946440514161345],[-75.237846057724553,39.946437235932237],[-75.237819387758364,39.94644214430577]]]},"properties":{"OBJECTID_1":361,"OBJECTID":304,"ASSET_NAME":"Sherwood Park","SITE_NAME":"Sherwood Park","CHILD_OF":"Sherwood Park","ADDRESS":"5601 BALTIMORE AVE","TYPE":"Land","USE_":"Park- Mini","ACREAGE":1.6431990000000001,"ZIPCODE":"19143","ALLIAS":" ","GLOBALID":"57386bad-7a27-4b21-81db-5eb20499cc44","Shape_Length":1304.7304613812737,"Shape_Area":71577.464974136805}},{"type":"Feature","id":362,"geometry":{"type":"Polygon","coordinates":[[[-75.1679090806131,40.03069196431278],[-75.168022964906541,40.030752636445442],[-75.168111795219858,40.03081003227453],[-75.168137208246179,40.030825689246356],[-75.168324759457334,40.030946120770629],[-75.168299994292298,40.030970340131717],[-75.168462367147995,40.031069451484875],[-75.168484895625895,40.031050201358276],[-75.169090200731574,40.030458371710708],[-75.168961629976536,40.030386908924875],[-75.168840996420286,40.030322298179833],[-75.169339905742646,40.02983627966838],[-75.169371010417336,40.029803938459786],[-75.16925856240313,40.029744282031409],[-75.169228810481727,40.029776155348593],[-75.168786456910979,40.030210313565831],[-75.168679284752614,40.030151259896584],[-75.168533975759601,40.030072761906567],[-75.1679090806131,40.03069196431278]]]},"properties":{"OBJECTID_1":362,"OBJECTID":305,"ASSET_NAME":"Howell Park","SITE_NAME":"Howell Park","CHILD_OF":"Howell Park","ADDRESS":"5215 GREENE ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":1.542616,"ZIPCODE":"19144","ALLIAS":" ","GLOBALID":"516ee87c-1556-46de-951f-15c127e451d9","Shape_Length":1453.1938056534666,"Shape_Area":67196.136747590019}},{"type":"Feature","id":363,"geometry":{"type":"Polygon","coordinates":[[[-75.201525982055841,39.965642674370223],[-75.201391924957392,39.965657267230029],[-75.200370410924805,39.965768042921269],[-75.200317633546447,39.965773786250814],[-75.200243005866085,39.965781783051],[-75.200192383521909,39.965785110863173],[-75.200196942482663,39.965809620425588],[-75.200271306026465,39.966224253507662],[-75.200275101315682,39.966246648553479],[-75.200326883109824,39.966240703811863],[-75.200907873773772,39.966179137481063],[-75.20117193496425,39.966150581655484],[-75.201608012124026,39.966103583846404],[-75.201650015070385,39.966100196417536],[-75.201564689881081,39.965641185190123],[-75.201525982055841,39.965642674370223]]]},"properties":{"OBJECTID_1":363,"OBJECTID":306,"ASSET_NAME":"39th & Olive Playground","SITE_NAME":"39th & Olive Playground","CHILD_OF":"39th & Olive Playground","ADDRESS":"700-14 N 39TH ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":1.509644,"ZIPCODE":"19104","ALLIAS":" ","GLOBALID":"62ce587b-8669-49c8-b65e-ee4ff695c677","Shape_Length":1115.9814391024815,"Shape_Area":65759.916295872521}},{"type":"Feature","id":364,"geometry":{"type":"Polygon","coordinates":[[[-75.134771815095547,39.978055004666402],[-75.134643771756643,39.978653989405174],[-75.134636303535459,39.978689257422936],[-75.134634202146415,39.978699179375035],[-75.134632518607745,39.978707131297739],[-75.134633607473731,39.978714713911977],[-75.134639284563818,39.978724166200656],[-75.13465169718026,39.978735445195447],[-75.134669148476448,39.978737717041284],[-75.134689973500969,39.978740427982672],[-75.135416719194751,39.97883502482847],[-75.135439496254179,39.97883799004515],[-75.13545074006845,39.978838592206984],[-75.135457488853731,39.978837367396224],[-75.135466631996962,39.978834367153887],[-75.135475860478039,39.978828419800664],[-75.135478985572846,39.978825764497721],[-75.135483729613512,39.978817897608771],[-75.135485107630643,39.97881127763813],[-75.135488029007405,39.978797241353703],[-75.135623472713021,39.978159528991817],[-75.135629143532455,39.978133607752341],[-75.135588971412119,39.978128409986056],[-75.134823642784298,39.978029420814522],[-75.134778920648415,39.978022186373892],[-75.134771815095547,39.978055004666402]]]},"properties":{"OBJECTID_1":364,"OBJECTID":307,"ASSET_NAME":"Towey Playground","SITE_NAME":"Towey Playground","CHILD_OF":"Towey Playground","ADDRESS":"1832-50 N HOWARD ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":1.451978,"ZIPCODE":"19122","ALLIAS":" ","GLOBALID":"35ca3f9d-6b7f-44cd-8747-7a4c6d93da17","Shape_Length":998.76385788401956,"Shape_Area":63247.977759354617}},{"type":"Feature","id":365,"geometry":{"type":"Polygon","coordinates":[[[-75.12760762801895,39.972183449741443],[-75.127648877617219,39.972168065819801],[-75.127893168588713,39.97208355287929],[-75.127952444843586,39.972063371040072],[-75.128002506943645,39.972045767305488],[-75.12804497950097,39.972031037404292],[-75.128103929124549,39.972010638086054],[-75.128206578912483,39.971975134069112],[-75.128307977979929,39.971940051900411],[-75.12841511905124,39.971903263635944],[-75.128467416666311,39.971885291800376],[-75.128518758079252,39.971867668418561],[-75.12882865151154,39.97176074710886],[-75.128855639822078,39.971753234536557],[-75.128743414966678,39.97154723073691],[-75.12871494531143,39.971558293727],[-75.128538261757512,39.971618012280999],[-75.128512792139446,39.971573277372592],[-75.128489778877892,39.97153280637297],[-75.128467624558681,39.971492837942357],[-75.128445168808369,39.971454733152591],[-75.12842320500225,39.971412560647039],[-75.128222754504932,39.971482229977454],[-75.128059849985846,39.971538845032995],[-75.127735475415079,39.971650721470041],[-75.127653159065986,39.971505774254375],[-75.127342275133145,39.971614427672556],[-75.127302812909804,39.971627808800797],[-75.12760762801895,39.972183449741443]]]},"properties":{"OBJECTID_1":365,"OBJECTID":308,"ASSET_NAME":"Fishtown Recreation Center","SITE_NAME":"Fishtown Recreation Center","CHILD_OF":"Fishtown Recreation Center","ADDRESS":"1202-32 E MONTGOMERY AVE","TYPE":"Land","USE_":"Recreation Center","ACREAGE":1.4496869999999999,"ZIPCODE":"19125","ALLIAS":"Lederer Recreation Center","GLOBALID":"7c8fc774-87e7-4ed3-a19e-fc28b5356733","Shape_Length":1205.712086280055,"Shape_Area":63148.187409912563}},{"type":"Feature","id":366,"geometry":{"type":"Polygon","coordinates":[[[-75.14542530795552,39.93509878888301],[-75.145484456201544,39.93511299966984],[-75.145961929993902,39.935238792837346],[-75.145953798175185,39.935265754206888],[-75.14629318630459,39.935359159706465],[-75.14633477255073,39.935371011610208],[-75.146361793792693,39.93523819533781],[-75.146380573833071,39.935145249626295],[-75.146396654471374,39.935067007686399],[-75.146403310800338,39.935069818617926],[-75.146422573652274,39.935077985796276],[-75.146573634893358,39.935142033171935],[-75.146599115505978,39.935025129979927],[-75.14648259590092,39.934977815783],[-75.146422639281198,39.934952807327797],[-75.146478905315547,39.934693150352942],[-75.14648317634267,39.934671974170875],[-75.146447372456294,39.934667486089928],[-75.145631760435279,39.934566146143887],[-75.145602641020901,39.93456254392806],[-75.145577216695614,39.934559399542977],[-75.145569269785113,39.934558992915548],[-75.145562732790253,39.934559759001019],[-75.145556180864872,39.934562350219238],[-75.145549591902864,39.934566976907483],[-75.145546693510695,39.934570652132258],[-75.145543713720599,39.934577489900434],[-75.145542084224886,39.934584429514345],[-75.145439724918617,39.93502978079389],[-75.14542530795552,39.93509878888301]]]},"properties":{"OBJECTID_1":366,"OBJECTID":309,"ASSET_NAME":"Shot Tower Playground","SITE_NAME":"Shot Tower Playground","CHILD_OF":"Shot Tower Playground","ADDRESS":"101-31 CARPENTER ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":1.445867,"ZIPCODE":"19147","ALLIAS":" ","GLOBALID":"48256472-32ff-4ad8-9180-c3ed0cd6e57d","Shape_Length":1117.1673682473922,"Shape_Area":62981.73986593564}},{"type":"Feature","id":367,"geometry":{"type":"Polygon","coordinates":[[[-75.123052494285275,39.994543771759858],[-75.123251951585672,39.99456933658621],[-75.123321048024479,39.994578630571631],[-75.123731509456761,39.994632723502967],[-75.123733908848138,39.994632991043268],[-75.123772758562481,39.994637326343025],[-75.123791160647855,39.994639374628164],[-75.123803542636026,39.994640752667848],[-75.123811239430751,39.994640597185878],[-75.123819475444364,39.994638979057541],[-75.123824325377143,39.994637313192321],[-75.123827862946271,39.994635261395267],[-75.123831227967003,39.994633309268615],[-75.123834595112442,39.994629636227124],[-75.123838080107078,39.994624430530237],[-75.1238400728313,39.994619552904979],[-75.123842182014954,39.994610240381576],[-75.123969833682352,39.994000069918343],[-75.123977388799759,39.993965801873124],[-75.123937475988626,39.99396133959501],[-75.123147652933184,39.993853108407414],[-75.123101933023634,39.993845684611891],[-75.123097878151512,39.993865015278146],[-75.122965920561313,39.994489845242455],[-75.122964143930702,39.994498038177191],[-75.122962377164427,39.994506188088323],[-75.122961326236876,39.994514487734691],[-75.12296232528324,39.994519580685093],[-75.122965221818575,39.994525196409548],[-75.122969120559219,39.994529615979765],[-75.12297681459161,39.994534073755126],[-75.122985973210305,39.994536375550474],[-75.122995603047002,39.994536277879156],[-75.123052494285275,39.994543771759858]]]},"properties":{"OBJECTID_1":367,"OBJECTID":310,"ASSET_NAME":"Hissey Playground","SITE_NAME":"Hissey Playground","CHILD_OF":"Hissey Playground","ADDRESS":"400-32 E INDIANA AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":1.438564,"ZIPCODE":"19134","ALLIAS":" ","GLOBALID":"9c2209a7-f4ec-4485-9874-39259a8232bd","Shape_Length":994.9725277297963,"Shape_Area":62663.589060317739}},{"type":"Feature","id":368,"geometry":{"type":"Polygon","coordinates":[[[-75.144975677549581,40.034942235470766],[-75.144958632932585,40.034984560832335],[-75.144957247893416,40.034987999246063],[-75.14493153248732,40.035051857839669],[-75.144923784319715,40.035071098180495],[-75.144917454745368,40.035088529912912],[-75.144916389111188,40.035091464692464],[-75.144914244986722,40.03510875348811],[-75.144917805702335,40.035116610053933],[-75.144922689300998,40.035122586462158],[-75.144928802998649,40.035128244778981],[-75.144970555510966,40.035137748768008],[-75.145096089883879,40.035156118732949],[-75.145203362990244,40.035169023293861],[-75.145278035354949,40.035177598761081],[-75.145304827151179,40.035181156293234],[-75.145331831167368,40.035184742959331],[-75.145371867863219,40.035190058692507],[-75.145395157421817,40.035183959840381],[-75.145414670771856,40.035164439354091],[-75.145427908350669,40.035106985070776],[-75.14543091125644,40.035092880125084],[-75.145515134568058,40.034700704664353],[-75.145620300304458,40.034220246377636],[-75.145707530057905,40.033832873842265],[-75.145713347804019,40.033796454988348],[-75.145710948404911,40.033786253295929],[-75.145704341796431,40.033777435678886],[-75.145699659376731,40.033771532342122],[-75.145689044256287,40.033764266389305],[-75.145644999154158,40.033758535487209],[-75.145526985815266,40.033743178435294],[-75.145497971480964,40.033739700288493],[-75.145478654700312,40.033738686488455],[-75.145469788318891,40.033740586602178],[-75.145465639615225,40.033742675692274],[-75.14545971918794,40.033751041655087],[-75.145453967160734,40.033765923107708],[-75.145322806908339,40.034070660501378],[-75.14532235713429,40.034070560199218],[-75.144975677549581,40.034942235470766]]]},"properties":{"OBJECTID_1":368,"OBJECTID":311,"ASSET_NAME":"Shevchenko Park","SITE_NAME":"Shevchenko Park","CHILD_OF":"Shevchenko Park","ADDRESS":"5301 N BROAD ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":1.3156049999999999,"ZIPCODE":"19141","ALLIAS":" ","GLOBALID":"120d3760-5bc2-450a-b64e-3cd463c85a58","Shape_Length":1254.6585511148189,"Shape_Area":57307.545940908873}},{"type":"Feature","id":369,"geometry":{"type":"Polygon","coordinates":[[[-75.160925499948391,40.00590141296712],[-75.161120331828585,40.006470290640941],[-75.161234306783683,40.006820880050583],[-75.161371361705818,40.007224105393185],[-75.161414055995721,40.007229993892139],[-75.161450601776551,40.007064393894829],[-75.161678573541579,40.006016271997218],[-75.161680717453493,40.006006412758694],[-75.161687279136459,40.005974379099513],[-75.161689166613641,40.005965161009122],[-75.161689138446292,40.005958124338932],[-75.161686643263025,40.005951351009159],[-75.161681858515237,40.005945349589183],[-75.161675141100275,40.005940562415013],[-75.161666996336564,40.005937349572037],[-75.161658022146426,40.005935947091515],[-75.161645707888312,40.005934351273424],[-75.161546262299723,40.005921463665203],[-75.161008286886982,40.005850019058691],[-75.160886351258725,40.005833635023222],[-75.160925499948391,40.00590141296712]]]},"properties":{"OBJECTID_1":369,"OBJECTID":312,"ASSET_NAME":"Jerome Brown Playground","SITE_NAME":"Jerome Brown Playground","CHILD_OF":"Jerome Brown Playground","ADDRESS":"1927-41 W ONTARIO ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":1.294753,"ZIPCODE":"19140","ALLIAS":"Kenderton Park Playground","GLOBALID":"4b347565-5399-46d4-a77c-7014c63492b5","Shape_Length":1238.8413380453933,"Shape_Area":56399.217616169641}},{"type":"Feature","id":370,"geometry":{"type":"Polygon","coordinates":[[[-75.194827156223454,40.008734295706994],[-75.19460445533872,40.009087666664129],[-75.195243286059139,40.009323895931026],[-75.195724714123827,40.009501743187947],[-75.195726683340894,40.009502470861406],[-75.195909106858934,40.009223384466509],[-75.195994098099689,40.009090879306846],[-75.195975886826304,40.009085134831487],[-75.19484207099498,40.008710629341273],[-75.194832156882455,40.00872636101353],[-75.194827358077333,40.008733975837146],[-75.194827156223454,40.008734295706994]]]},"properties":{"OBJECTID_1":370,"OBJECTID":313,"ASSET_NAME":"Inn Yard Park","SITE_NAME":"Inn Yard Park","CHILD_OF":"East Fairmount Park","ADDRESS":"4208-52 RIDGE AVE","TYPE":"Land","USE_":"Park- Neighborhood","ACREAGE":1.2858499999999999,"ZIPCODE":"19129","ALLIAS":" ","GLOBALID":"da8ad70b-6c71-43f4-9890-3f99d2de3ca8","Shape_Length":1020.2093979331194,"Shape_Area":56011.401251202784}},{"type":"Feature","id":371,"geometry":{"type":"Polygon","coordinates":[[[-75.144986336610714,39.933263300253273],[-75.14500954161548,39.933266497987042],[-75.145009485944854,39.933266667916868],[-75.145613340577214,39.933349029044564],[-75.145633800719466,39.933350004564339],[-75.145709017607231,39.933010285417055],[-75.1458190319604,39.932530122912247],[-75.145158143006455,39.932453184376271],[-75.145064226099791,39.932928321177798],[-75.144986336610714,39.933263300253273]]]},"properties":{"OBJECTID_1":371,"OBJECTID":314,"ASSET_NAME":"Rizzo Ice Rink","SITE_NAME":"Rizzo Ice Rink","CHILD_OF":"Rizzo Ice Rink","ADDRESS":"1101 S FRONT ST","TYPE":"Land","USE_":"Ice Rink","ACREAGE":1.2781290000000001,"ZIPCODE":"19147","ALLIAS":" ","GLOBALID":"38b9ef16-8e19-4eaa-b4c9-5279f7ca3817","Shape_Length":974.0443724166845,"Shape_Area":55675.098510850286}},{"type":"Feature","id":372,"geometry":{"type":"Polygon","coordinates":[[[-75.187765647672606,40.057153276855253],[-75.187974092443127,40.056948620563944],[-75.187998408719352,40.056923525567221],[-75.188000734802372,40.056912602280363],[-75.187996165851132,40.056899488966351],[-75.187986556771847,40.056882541204715],[-75.187566215817242,40.056091461264337],[-75.1875339534418,40.056123946495255],[-75.187062512786824,40.056582029855818],[-75.186970718790576,40.056671082905353],[-75.187735228974034,40.057133769253369],[-75.187765647672606,40.057153276855253]]]},"properties":{"OBJECTID_1":372,"OBJECTID":315,"ASSET_NAME":"Lovett Park","SITE_NAME":"Lovett Park","CHILD_OF":"Lovett Park","ADDRESS":"6923-45 GERMANTOWN AVE","TYPE":"Land","USE_":"Park- Mini","ACREAGE":1.2263219999999999,"ZIPCODE":"19119","ALLIAS":" ","GLOBALID":"c4c9e589-73f6-4adc-b178-2787c0e05a8b","Shape_Length":985.57478488418565,"Shape_Area":53418.36459203613}},{"type":"Feature","id":373,"geometry":{"type":"Polygon","coordinates":[[[-75.207280197782069,39.979261823255996],[-75.207362510475519,39.979292965646565],[-75.207787475721872,39.979453747983293],[-75.207890610676827,39.979489040847803],[-75.207905816801741,39.979494563855376],[-75.207915927930756,39.979491396450804],[-75.207935594378952,39.979485235835043],[-75.208030846267519,39.979454778938809],[-75.208067680532551,39.979443001488903],[-75.208046360582955,39.979427439255119],[-75.208301062959634,39.978978592070128],[-75.208259438860452,39.9789646128432],[-75.208202454914684,39.978733157035734],[-75.207876816609101,39.978595600459315],[-75.207280197782069,39.979261823255996]]]},"properties":{"OBJECTID_1":373,"OBJECTID":316,"ASSET_NAME":"Kelly Pool","SITE_NAME":"Kelly Pool","CHILD_OF":"West Fairmount Park","ADDRESS":"4200 LANSDOWNE DR","TYPE":"Land","USE_":"Pool","ACREAGE":1.212907,"ZIPCODE":"19131","ALLIAS":" ","GLOBALID":"1d1b61f7-b7f7-42b0-ba2d-db8dc491de73","Shape_Length":927.87922811372391,"Shape_Area":52833.963231974209}},{"type":"Feature","id":374,"geometry":{"type":"Polygon","coordinates":[[[-75.184048091720555,39.979831791450671],[-75.184037645530111,39.979878825786123],[-75.18409141642509,39.979884506059427],[-75.184358883424494,39.979920775182954],[-75.184777221661633,39.97997742269834],[-75.184777860829797,39.979974733054156],[-75.184781734948018,39.979956536353818],[-75.184782771861933,39.979951719305291],[-75.184809293074395,39.979828597126868],[-75.184809445080205,39.979827890528611],[-75.184828846295559,39.979737860975376],[-75.184833957290692,39.97973860862718],[-75.184841184636056,39.979739666678562],[-75.184849668556467,39.979700972320749],[-75.184908995007675,39.979422757296938],[-75.184922607227918,39.979365463581708],[-75.184923210879361,39.979365543748969],[-75.184923557690652,39.979363958514895],[-75.184928203235387,39.979343165223277],[-75.18493079410743,39.979331003634556],[-75.184934096572718,39.979307318715108],[-75.184853756522529,39.9792966417182],[-75.184248699816351,39.979216908697062],[-75.184219624798601,39.979212665422544],[-75.184196322424015,39.979216332329429],[-75.184189795665773,39.979219951726826],[-75.184184403266016,39.979224546150682],[-75.184177919516003,39.979235800769217],[-75.184173944973466,39.979254048366577],[-75.184048091720555,39.979831791450671]]]},"properties":{"OBJECTID_1":374,"OBJECTID":317,"ASSET_NAME":"30th & Jefferson Playground","SITE_NAME":"30th & Jefferson Playground","CHILD_OF":"30th & Jefferson Playground","ADDRESS":"3001-15 JEFFERSON ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":1.206447,"ZIPCODE":"19121","ALLIAS":" ","GLOBALID":"86541f11-bb8a-4872-9cf4-ab82a8dd206f","Shape_Length":918.51859313353145,"Shape_Area":52552.698498298654}},{"type":"Feature","id":375,"geometry":{"type":"Polygon","coordinates":[[[-75.16147428344803,40.007455482309048],[-75.161465304290132,40.007460258874822],[-75.161452785741616,40.007473878401264],[-75.161450544105321,40.007484055294192],[-75.161428183769644,40.007585613745583],[-75.161453035521944,40.007649528123984],[-75.161604305362346,40.008117249377854],[-75.161610335112044,40.00812975266669],[-75.161627069369672,40.008164448743834],[-75.161651689061756,40.008167708642532],[-75.161665332444116,40.008169457854613],[-75.162018189009132,40.008214701792511],[-75.162174044521947,40.00823503868498],[-75.16217886670556,40.00820640406895],[-75.162233256068617,40.007947602215829],[-75.162309115689482,40.007592966569241],[-75.16231684324633,40.007556900981591],[-75.162263186757684,40.007549925994219],[-75.161551883784071,40.00745844827599],[-75.161522810557528,40.007454763574167],[-75.161495271876547,40.00745127294325],[-75.16147428344803,40.007455482309048]]]},"properties":{"OBJECTID_1":375,"OBJECTID":318,"ASSET_NAME":"20th & Tioga Ballfield","SITE_NAME":"20th & Tioga Ballfield","CHILD_OF":"20th & Tioga Ballfield","ADDRESS":"2001 W TIOGA ST","TYPE":"Land","USE_":"Athletic","ACREAGE":1.1991959999999999,"ZIPCODE":"19140","ALLIAS":" ","GLOBALID":"196917c0-2c2a-4a9a-bc7c-05ab5afd7fb3","Shape_Length":913.6688256306719,"Shape_Area":52236.699603802139}},{"type":"Feature","id":376,"geometry":{"type":"Polygon","coordinates":[[[-75.148113453197624,39.930371558638932],[-75.148108381359322,39.930373990754354],[-75.148103976007221,39.930376102811174],[-75.148096507825613,39.930382494609098],[-75.148094633777845,39.930385467809856],[-75.148091634503018,39.930390227435701],[-75.148090448830459,39.930395794079097],[-75.147995166558559,39.930824450494377],[-75.147992690628797,39.930835135400791],[-75.14799305300069,39.930839396447212],[-75.147994734896344,39.930845784111625],[-75.147998767063996,39.930852228706897],[-75.148002523109724,39.930856255901766],[-75.148007334692906,39.930859186174722],[-75.14801304040914,39.930861872735427],[-75.148019565724098,39.930863939067358],[-75.148027900081246,39.930865036399226],[-75.148048199760524,39.930867708092478],[-75.148868137046136,39.930975622658273],[-75.148877938726784,39.93097691269044],[-75.148889615257588,39.930978449778721],[-75.148894290039124,39.930979787507965],[-75.148894471802834,39.93097983938484],[-75.148899806436432,39.93098136687869],[-75.14890825500926,39.930986636665544],[-75.148936921995627,39.930960707633851],[-75.149026711667659,39.930522879732564],[-75.149033654761169,39.930489592179114],[-75.149004509763415,39.930485660436858],[-75.148156266123038,39.93037336795468],[-75.148141627637855,39.930371430208453],[-75.148124195662518,39.930369212834442],[-75.148113453197624,39.930371558638932]]]},"properties":{"OBJECTID_1":376,"OBJECTID":319,"ASSET_NAME":"Herron Playground","SITE_NAME":"Herron Playground","CHILD_OF":"Herron Playground","ADDRESS":"1322 S 02ND ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":1.119874,"ZIPCODE":"19147","ALLIAS":" ","GLOBALID":"d0eb6da8-b98c-41a0-b71f-cd76d777dfb9","Shape_Length":889.46341769373578,"Shape_Area":48781.511082150013}},{"type":"Feature","id":377,"geometry":{"type":"Polygon","coordinates":[[[-75.233009699368409,39.918270498482705],[-75.233002420086521,39.918271950571665],[-75.232994736725985,39.918274076745583],[-75.232988199394242,39.918276284839628],[-75.232979864104919,39.918282176384253],[-75.232970967643354,39.918288465562952],[-75.232624201303196,39.91853269044833],[-75.232611421006212,39.918541668500403],[-75.23260123635508,39.918549437638532],[-75.232596747157331,39.91855488831802],[-75.232593378904781,39.918562646735261],[-75.232592869908601,39.918567512657994],[-75.232592984327368,39.918572954490372],[-75.232594239698273,39.918578868267588],[-75.232597782315167,39.918585234107155],[-75.232601843171068,39.918589265127949],[-75.232615319897604,39.918600600032576],[-75.2332511143196,39.919127438183835],[-75.233275676262323,39.91914906964633],[-75.233294646206915,39.919135519668401],[-75.233666822415742,39.918873091636343],[-75.233709096170003,39.918838941759127],[-75.233684942139476,39.918818713184194],[-75.233074659592745,39.918302114179461],[-75.23305833174885,39.918288047989336],[-75.233045947806474,39.91827737953642],[-75.233034737442225,39.918272780732721],[-75.233022402084842,39.918270439457864],[-75.233009699368409,39.918270498482705]]]},"properties":{"OBJECTID_1":377,"OBJECTID":320,"ASSET_NAME":"Buist Park","SITE_NAME":"Buist Park","CHILD_OF":"Buist Park","ADDRESS":"2528 HOBSON ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":1.1066750000000001,"ZIPCODE":"19142","ALLIAS":" ","GLOBALID":"f9e0d07f-f308-4c5c-ba40-829f3594b443","Shape_Length":900.5390542666936,"Shape_Area":48206.553349340167}},{"type":"Feature","id":378,"geometry":{"type":"Polygon","coordinates":[[[-75.123467175379943,39.983882580654502],[-75.123709712806189,39.984162952792367],[-75.123869465919796,39.984347624073131],[-75.123896634607277,39.984378907737266],[-75.123921564544972,39.984366158277851],[-75.123930106990031,39.984358582374419],[-75.123938679768983,39.984350979232623],[-75.123947497538467,39.984343159141929],[-75.124067064933669,39.984237117425373],[-75.12407065506973,39.984233934243001],[-75.124074628550204,39.98423040933168],[-75.124080235743818,39.984225436905653],[-75.124083498552878,39.984220237841832],[-75.124085107885534,39.984214422485842],[-75.12408466181823,39.984205359649657],[-75.124082619889151,39.984200006774813],[-75.124078469148003,39.984192909013565],[-75.12405176905078,39.984162168621801],[-75.123312372498688,39.983328184128517],[-75.123305170874076,39.98332008214301],[-75.123293167013983,39.98331188826657],[-75.123277578841765,39.983309150073268],[-75.1232621206495,39.983310894766241],[-75.123252358011868,39.983315617967179],[-75.123241412464637,39.983320914177902],[-75.122860634631763,39.983505145486212],[-75.122848434535157,39.983511048167827],[-75.122833324348733,39.983518359215878],[-75.122825130037413,39.983524565334925],[-75.122819067294628,39.983532078084195],[-75.12281546515527,39.983540476106555],[-75.122814531449336,39.983549292020832],[-75.122820975351445,39.983563234279174],[-75.122834715166107,39.983578601386817],[-75.123123662618369,39.983902310779101],[-75.123153423043604,39.983936073214529],[-75.123184877341487,39.983918896023503],[-75.123396565728896,39.98380896620062],[-75.123401315526451,39.983806447507597],[-75.123467175379943,39.983882580654502]]]},"properties":{"OBJECTID_1":378,"OBJECTID":321,"ASSET_NAME":"Pops Playground","SITE_NAME":"Pops Playground","CHILD_OF":"Pops Playground","ADDRESS":"2150-72 E HUNTINGDON ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":1.0822320000000001,"ZIPCODE":"19125","ALLIAS":" ","GLOBALID":"3e1909f5-3f1c-4caa-9b2f-eb9ee9d5e53c","Shape_Length":1146.2562792443455,"Shape_Area":47141.84505828908}},{"type":"Feature","id":379,"geometry":{"type":"Polygon","coordinates":[[[-75.220570129442535,39.931318610182558],[-75.21964374372304,39.931965245088158],[-75.21956180391301,39.932021740890754],[-75.219624181233826,39.932073383156705],[-75.220974256399828,39.931768922233516],[-75.221064743787736,39.931749647765031],[-75.221084866190722,39.931737244134297],[-75.221055015411906,39.931712351662505],[-75.220972896415176,39.93164301437033],[-75.220655400550086,39.931375840280197],[-75.220641189200393,39.931363882309284],[-75.220604988379606,39.931330184735977],[-75.220582881926475,39.931309607544513],[-75.220570129442535,39.931318610182558]]]},"properties":{"OBJECTID_1":379,"OBJECTID":322,"ASSET_NAME":"Deritis Playground","SITE_NAME":"Deritis Playground","CHILD_OF":"Deritis Playground","ADDRESS":"5655 GRAYS AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":1.0521659999999999,"ZIPCODE":"19143","ALLIAS":" ","GLOBALID":"e5e3a5a4-f710-4871-8a73-f8e4ea1aa5c2","Shape_Length":1050.1576525924129,"Shape_Area":45832.226479407756}},{"type":"Feature","id":380,"geometry":{"type":"Polygon","coordinates":[[[-75.159975334137599,39.982089962850658],[-75.160381589690658,39.982144121034928],[-75.160421325208148,39.98214830905706],[-75.160636364903354,39.981174150867119],[-75.16057805293741,39.981164372827379],[-75.160189993905377,39.981113430708938],[-75.159975334137599,39.982089962850658]]]},"properties":{"OBJECTID_1":380,"OBJECTID":323,"ASSET_NAME":"Amos Playground","SITE_NAME":"Amos Playground","CHILD_OF":"Amos Playground","ADDRESS":"1817-59 N 16TH ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":1.0513399999999999,"ZIPCODE":"19121","ALLIAS":" ","GLOBALID":"f499b855-8402-46d6-aadd-3ca2f61174d9","Shape_Length":974.56105286738057,"Shape_Area":45796.19735180198}},{"type":"Feature","id":381,"geometry":{"type":"Polygon","coordinates":[[[-75.220118675166987,40.030794200823998],[-75.220675010580322,40.030450389962489],[-75.220714207102105,40.030425281926284],[-75.220260033797615,40.030002423590183],[-75.220225771486511,40.030027820356857],[-75.219673191621098,40.030374483235299],[-75.219640090855307,40.030394240851869],[-75.220086818650671,40.030814850035767],[-75.220118675166987,40.030794200823998]]]},"properties":{"OBJECTID_1":381,"OBJECTID":324,"ASSET_NAME":"Fairview Park","SITE_NAME":"Fairview Park","CHILD_OF":"Fairview Park","ADDRESS":"4418 MANAYUNK AVE","TYPE":"Land","USE_":"Park- Mini","ACREAGE":1.024675,"ZIPCODE":"19128","ALLIAS":" ","GLOBALID":"992c3bd3-aec0-4a70-9466-1a21b3370126","Shape_Length":848.21036814412628,"Shape_Area":44634.673503046484}},{"type":"Feature","id":382,"geometry":{"type":"Polygon","coordinates":[[[-75.162845387709865,39.938528377521408],[-75.162840909439183,39.938548269180572],[-75.162837546892931,39.938563204281699],[-75.16283935165923,39.938570341406901],[-75.162844169053713,39.938576593213078],[-75.162860308950741,39.938583730236893],[-75.162871507661805,39.93858513074634],[-75.162890951994342,39.938587560604894],[-75.162913503210504,39.938590380403042],[-75.163924878886803,39.938716411792839],[-75.163955385830633,39.938720191952079],[-75.163962001388654,39.938689096544941],[-75.163975817326204,39.938614950704888],[-75.163846378808927,39.93859845917428],[-75.163875597441375,39.938438741454874],[-75.164096440357014,39.938465740894202],[-75.164110971656712,39.938398106603607],[-75.163957736009039,39.938379096406614],[-75.163982409867884,39.938255690801917],[-75.163987886662085,39.938231603958954],[-75.163527281717307,39.93817538631761],[-75.163523714238266,39.938174950863996],[-75.163518999128726,39.938174376000994],[-75.163515402349461,39.938196300433532],[-75.163489867447879,39.938321394867174],[-75.163435057876612,39.93831388860972],[-75.163378795861249,39.938306009885409],[-75.163212799195847,39.938285017872857],[-75.162944446009632,39.938252964347846],[-75.162908352214671,39.93824873172246],[-75.162900032820104,39.938285677695809],[-75.162845387709865,39.938528377521408]]]},"properties":{"OBJECTID_1":382,"OBJECTID":325,"ASSET_NAME":"Hawthorne Cultural Center","SITE_NAME":"Hawthorne Cultural Center","CHILD_OF":"Hawthorne Cultural Center","ADDRESS":"1200 CARPENTER ST","TYPE":"Land","USE_":"Park- Neighborhood","ACREAGE":1.0244070000000001,"ZIPCODE":"19147","ALLIAS":" ","GLOBALID":"8bfc748a-be22-4d66-9acd-8afe3c092847","Shape_Length":1110.2668702895367,"Shape_Area":44623.041026056075}},{"type":"Feature","id":383,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.19916011314038,40.072425924864447],[-75.199131936233883,40.072449263376875],[-75.19874929970284,40.072830586146509],[-75.19873704364089,40.072851826386987],[-75.198742227455455,40.072870907565893],[-75.198769024491611,40.072889999139193],[-75.199377577367116,40.073250271575134],[-75.199400718798444,40.073264068661004],[-75.199432958462651,40.073269051343075],[-75.199455603739921,40.07326198551705],[-75.199464410501236,40.073247666732811],[-75.199463631985864,40.073233594724677],[-75.199224949018742,40.07244488037729],[-75.199210980683191,40.072424244625736],[-75.199197756975153,40.072420046163579],[-75.199182293733557,40.072418983933304],[-75.19916011314038,40.072425924864447]]],[[[-75.199266300645448,40.072078884041701],[-75.199282433335384,40.072104306197879],[-75.199303985232788,40.072109558067538],[-75.199332329508451,40.0720994463382],[-75.199348434338276,40.072084287633778],[-75.199408243906305,40.072022359358051],[-75.199589000473779,40.07184256936123],[-75.199129687735919,40.071580542887908],[-75.199119002150709,40.071575532186259],[-75.199266300645448,40.072078884041701]]],[[[-75.199769117565324,40.073582126048571],[-75.19975365324801,40.073588508855906],[-75.19974250302495,40.073602863955294],[-75.199741773857212,40.073610497280001],[-75.199800540862554,40.073821619487617],[-75.199809066561414,40.073831214237416],[-75.199821274569146,40.073835453153066],[-75.199833299173079,40.073835243355525],[-75.199845443300916,40.073829296827292],[-75.199967134069539,40.07371265763679],[-75.199970671741639,40.073701384413702],[-75.199967647738745,40.073689980007387],[-75.19995820340975,40.073680455886674],[-75.199788824313273,40.073582939079593],[-75.199779045907604,40.073581458882416],[-75.199769117565324,40.073582126048571]]]]},"properties":{"OBJECTID_1":383,"OBJECTID":326,"ASSET_NAME":"Winston Park","SITE_NAME":"Winston Park","CHILD_OF":"Winston Park","ADDRESS":"181-85 E WILLOW GROVE AVE","TYPE":"Land","USE_":"Park- Mini","ACREAGE":1.020397,"ZIPCODE":"19118","ALLIAS":" ","GLOBALID":"aa7d656a-d0d9-416f-9cf2-adf2083cb2d2","Shape_Length":1516.2499477132203,"Shape_Area":44448.295508254989}},{"type":"Feature","id":384,"geometry":{"type":"Polygon","coordinates":[[[-75.127918161326434,39.97893509909165],[-75.127909978881235,39.978939355999643],[-75.127896951085404,39.978946132294872],[-75.127492073809066,39.979156743884189],[-75.127481667024142,39.979162157308124],[-75.127471427539035,39.979167484451615],[-75.127463197257271,39.97917176546455],[-75.127452934280853,39.979178307555479],[-75.127447055266941,39.97918490748247],[-75.127443885204343,39.979190174525826],[-75.127441945768069,39.979198786373708],[-75.127442974214446,39.979207488571355],[-75.127446898562965,39.979215688399862],[-75.12745733924136,39.979227930482075],[-75.12790651025206,39.979734214255693],[-75.127920561597222,39.979749439196361],[-75.127925984391268,39.979752077864788],[-75.127935930768658,39.979755739837493],[-75.12794547240388,39.979757629251679],[-75.127955665355515,39.979758150469685],[-75.127963218535953,39.979757757199714],[-75.127970920197342,39.979756066238537],[-75.127980475998427,39.979752006491431],[-75.127995963189619,39.979743842929594],[-75.128401008630632,39.979530349176713],[-75.128415450807168,39.979522736543231],[-75.128429927645612,39.979515105778233],[-75.128434845451437,39.979508494657011],[-75.128436803258396,39.979493486824211],[-75.128430396659525,39.979482442550783],[-75.128413254879945,39.979462593285035],[-75.127977351247424,39.978967153985096],[-75.127967266890209,39.978955692272841],[-75.127966978318213,39.978955370319987],[-75.127958371941844,39.978945761549895],[-75.127952976133386,39.978939695089764],[-75.127950292668999,39.978938821050562],[-75.127948059190686,39.978938092446803],[-75.127947699435907,39.97893797610373],[-75.127941902275467,39.978936086644907],[-75.127937243471536,39.97893547292022],[-75.127930107226774,39.978934534083336],[-75.127918161326434,39.97893509909165]]]},"properties":{"OBJECTID_1":384,"OBJECTID":327,"ASSET_NAME":"Konrad Square","SITE_NAME":"Konrad Square","CHILD_OF":"Konrad Square","ADDRESS":"2200-26 E DAUPHIN ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":1.016478,"ZIPCODE":"19125","ALLIAS":" ","GLOBALID":"0ea9a38c-1be5-4daf-9121-8acb6054ecd6","Shape_Length":839.76151246760207,"Shape_Area":44277.614923276502}},{"type":"Feature","id":385,"geometry":{"type":"Polygon","coordinates":[[[-75.16486393272622,39.938937457970177],[-75.164869339372842,39.938903853870499],[-75.164454988792443,39.93885311292815],[-75.164433319024866,39.938850534056598],[-75.164417261892211,39.938849061116223],[-75.164404598674409,39.938851171443865],[-75.16439654921389,39.938856798834934],[-75.164391065669918,39.938870297691309],[-75.164387846255707,39.938881786963947],[-75.164213209857081,39.939705117790197],[-75.164212078949177,39.939712721205431],[-75.164214646048251,39.939720592701512],[-75.164223349774659,39.939728598043594],[-75.164231368786602,39.939733156874922],[-75.164240016446456,39.939736636944787],[-75.164253027540383,39.939738278200345],[-75.164679828725056,39.939791163707298],[-75.164687023015901,39.939745310938392],[-75.16486393272622,39.938937457970177]]]},"properties":{"OBJECTID_1":385,"OBJECTID":328,"ASSET_NAME":"Ridgway Pool","SITE_NAME":"Ridgway Pool","CHILD_OF":"Ridgway Pool","ADDRESS":"1301 CARPENTER ST","TYPE":"Land","USE_":"Pool","ACREAGE":1.008308,"ZIPCODE":"19147","ALLIAS":" ","GLOBALID":"a9780544-5314-4fa9-907f-050981ef222e","Shape_Length":915.93815443389769,"Shape_Area":43921.627577356121}},{"type":"Feature","id":386,"geometry":{"type":"Polygon","coordinates":[[[-75.039246371088183,40.042212971718904],[-75.039309254579464,40.042282861814677],[-75.039981840985135,40.043106295621641],[-75.040456159126308,40.043158269542253],[-75.040515668581634,40.042924990750294],[-75.040166697361244,40.042865321089302],[-75.039588668788866,40.042152457652598],[-75.039511838075413,40.042086348293708],[-75.039246371088183,40.042212971718904]]]},"properties":{"OBJECTID_1":386,"OBJECTID":329,"ASSET_NAME":"Lincoln Pool","SITE_NAME":"Lincoln Pool","CHILD_OF":"Lincoln Pool","ADDRESS":"7437 ROWLAND AVE","TYPE":"Land","USE_":"Pool","ACREAGE":0.99831199999999998,"ZIPCODE":"19136","ALLIAS":" ","GLOBALID":"8e2c1360-09d7-43bf-a748-ce4d15d1386c","Shape_Length":1131.7199115608657,"Shape_Area":43486.340379554684}},{"type":"Feature","id":387,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.203004004092207,40.066640243943361],[-75.203042120167495,40.066718511827652],[-75.203083881116257,40.066832227485641],[-75.203122989095476,40.066966912791699],[-75.203161944398047,40.067155361042047],[-75.203158980256845,40.067300584492571],[-75.203164292889838,40.067391029411695],[-75.203169001678333,40.067431279685302],[-75.203174846126643,40.067474422114493],[-75.203181276910499,40.067518533500511],[-75.203189822940132,40.067556000932036],[-75.203196250107027,40.067583623914999],[-75.203203380153766,40.067609111785742],[-75.203213259059453,40.067644219300476],[-75.203223353116371,40.067673596710058],[-75.203234483074937,40.067708492283145],[-75.203243584937766,40.067731156866003],[-75.203251534435836,40.067751405552414],[-75.203262321270955,40.067778886387075],[-75.203273174261881,40.067806666918074],[-75.203287394911783,40.067837987333569],[-75.203297668337228,40.067862588899196],[-75.203317219514361,40.067901017413504],[-75.203336811070002,40.067938371023466],[-75.203356043842106,40.067972849692772],[-75.203372601888077,40.068004042597252],[-75.203380244032317,40.068011738922159],[-75.203624808774578,40.067765130577691],[-75.203625114709439,40.067764822006701],[-75.203255553485448,40.067542535339143],[-75.203233490142068,40.067380334662907],[-75.203232310872835,40.067327629691071],[-75.203232620122023,40.0672703238601],[-75.203234468931086,40.06724560081792],[-75.203251112138815,40.067243846921897],[-75.203265215034875,40.067234446689348],[-75.203274885296196,40.067223854400702],[-75.203281805257106,40.067211271212912],[-75.203283255921278,40.067197152239125],[-75.203282734239394,40.0671865277845],[-75.203275328378282,40.067163014205576],[-75.20332030098244,40.067118019307095],[-75.203350233430143,40.06708118210689],[-75.203380323930929,40.067040102884896],[-75.203395029276308,40.067016372050858],[-75.20340810501051,40.066986944110063],[-75.203428261031974,40.06694069190921],[-75.203437868666498,40.066905527018257],[-75.203326670983543,40.066874760422238],[-75.203232912563891,40.06660027287122],[-75.202964035265595,40.066578184535118],[-75.203004004092207,40.066640243943361]]],[[[-75.202438515987311,40.066934240773477],[-75.202390508283131,40.06697863375426],[-75.202408289677564,40.066991161761081],[-75.202809594546878,40.067268112309591],[-75.202808888036856,40.067286926674797],[-75.202877907894504,40.067325332778694],[-75.202877527661229,40.067284709915619],[-75.20287695902995,40.067223839179505],[-75.202876911772435,40.067218820455864],[-75.20287639143119,40.067173777778571],[-75.20287609423724,40.067122792537923],[-75.202873831397085,40.067094704120152],[-75.20286557649267,40.067049489995973],[-75.202857757093199,40.067022128053203],[-75.202849055911443,40.066988799054116],[-75.20284009967682,40.06696226245537],[-75.202831398511407,40.066928933454861],[-75.202823451625079,40.066904967259958],[-75.202815377229527,40.066884396814892],[-75.202803265645287,40.066853541146173],[-75.202788912324493,40.06682348542747],[-75.202778851235124,40.066796923430324],[-75.202760333238402,40.066759978234202],[-75.202746829853126,40.066736738504225],[-75.202730266717211,40.066706633790879],[-75.202701081980592,40.06665925729677],[-75.202438515987311,40.066934240773477]]]]},"properties":{"OBJECTID_1":387,"OBJECTID":330,"ASSET_NAME":"Woodward Pines","SITE_NAME":"Woodward Pines","CHILD_OF":"Woodward Pines","ADDRESS":"7930-34 LINCOLN DR","TYPE":"Land","USE_":"Park- Community","ACREAGE":0.982908,"ZIPCODE":"19118","ALLIAS":" ","GLOBALID":"4463e718-a6e8-4da6-8836-b8942f5f8c72","Shape_Length":1832.2170739480423,"Shape_Area":42815.310288272864}},{"type":"Feature","id":388,"geometry":{"type":"Polygon","coordinates":[[[-75.190408112933667,39.96530556394908],[-75.190411351292411,39.965323353628165],[-75.190412173895538,39.9653278752209],[-75.190415003756499,39.965336616866757],[-75.190421771301331,39.965343965997583],[-75.190431557876352,39.965348913712603],[-75.190450302387958,39.965349848142758],[-75.190463552781893,39.965348234492794],[-75.190479321118133,39.965346361657645],[-75.190493446291271,39.965344683724652],[-75.19123960725085,39.96526166664075],[-75.191373398385096,39.96524703372571],[-75.191365054934153,39.965210173016892],[-75.191316222986586,39.964937611987168],[-75.190838825299195,39.964989621840047],[-75.190804102670825,39.964798571443922],[-75.190801701307393,39.964783552127123],[-75.190757788375521,39.96478853281269],[-75.190388988532675,39.964831390488676],[-75.190363665688423,39.964834157499332],[-75.190350179468723,39.964835630723258],[-75.190336026154455,39.964838586540054],[-75.190329588331224,39.964843402971695],[-75.190326315436067,39.964849838844046],[-75.19032680141315,39.964856736997291],[-75.190328671584851,39.964867640380632],[-75.190408112933667,39.96530556394908]]]},"properties":{"OBJECTID_1":388,"OBJECTID":331,"ASSET_NAME":"33rd & Wallace Playground","SITE_NAME":"33rd & Wallace Playground","CHILD_OF":"33rd & Wallace Playground","ADDRESS":"3300-26 WALLACE ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.942469,"ZIPCODE":"19104","ALLIAS":" ","GLOBALID":"db70e911-0abe-4b38-9897-8ae470a752c1","Shape_Length":914.27797133776926,"Shape_Area":41053.800209442816}},{"type":"Feature","id":389,"geometry":{"type":"Polygon","coordinates":[[[-75.229903201622349,39.963713111167522],[-75.230011761784624,39.963199606191772],[-75.230016614015895,39.963174320860496],[-75.22951530582236,39.963112639858693],[-75.229511259343084,39.96313712656994],[-75.229482462491376,39.963260550484001],[-75.229476438117445,39.963286337130675],[-75.229399140545794,39.963294746401694],[-75.229281278289804,39.963280244047418],[-75.229248736235292,39.963275362883458],[-75.22917551089148,39.963627198266273],[-75.229174235977709,39.96363672263049],[-75.229175567314499,39.963643412054147],[-75.229176971531984,39.963650472487977],[-75.229184167894459,39.963657857497637],[-75.22919182431464,39.963662436997566],[-75.229201585230825,39.963666343737927],[-75.229897509096787,39.963751135258725],[-75.229903201622349,39.963713111167522]]]},"properties":{"OBJECTID_1":389,"OBJECTID":332,"ASSET_NAME":"Nichols Park","SITE_NAME":"Nichols Park","CHILD_OF":"Nichols Park","ADDRESS":"5430-46 RACE ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.90676000000000001,"ZIPCODE":"19139","ALLIAS":" ","GLOBALID":"224efba0-66b7-4657-8894-59a545523b99","Shape_Length":828.95711590429926,"Shape_Area":39498.36948183168}},{"type":"Feature","id":390,"geometry":{"type":"Polygon","coordinates":[[[-75.150527521583058,39.937674855064373],[-75.150522270181696,39.937675696528387],[-75.150516359493906,39.937677616888983],[-75.150510014943592,39.937681669143046],[-75.150505459434854,39.937686962106611],[-75.150503836754012,39.937694255135575],[-75.150499481863349,39.93771382662451],[-75.150383839460417,39.938233538315373],[-75.150378488176713,39.938257583312662],[-75.150376396170927,39.938266985805484],[-75.150374820079108,39.938274069951248],[-75.150376685754452,39.938278815570413],[-75.150380263704392,39.938283412588191],[-75.150382961358034,39.938286022723304],[-75.150392047431893,39.938289677780382],[-75.15040102077424,39.938291292171492],[-75.150424665987202,39.938295547531517],[-75.150889211377304,39.938379147874564],[-75.15090380888509,39.93838177538364],[-75.150909587067432,39.938382464059359],[-75.150915133259019,39.938382730304738],[-75.150919122997436,39.938382039533487],[-75.150923152808261,39.938381341560998],[-75.150926843773348,39.938379770929394],[-75.150930349096214,39.938378279885654],[-75.150934070549027,39.938375391750824],[-75.150936139329758,39.93837378706079],[-75.150938597204387,39.938370302647968],[-75.150941024408979,39.93836550835637],[-75.150946984791474,39.938348669991719],[-75.151140708088576,39.9378250327049],[-75.151147867090998,39.937808190857659],[-75.151150672267576,39.937801592272834],[-75.151150707622392,39.937795372424674],[-75.151147670705811,39.937789604650561],[-75.151142022161949,39.937785159863516],[-75.151130287128339,39.937781907063595],[-75.15111392855178,39.937778901791681],[-75.151100099166271,39.937776361992078],[-75.15055409124426,39.937678325220801],[-75.150540314659168,39.937675905484305],[-75.150532159608645,39.937674473635013],[-75.150527521583058,39.937674855064373]]]},"properties":{"OBJECTID_1":390,"OBJECTID":333,"ASSET_NAME":"Weccacoe Playground","SITE_NAME":"Weccacoe Playground","CHILD_OF":"Weccacoe Playground","ADDRESS":"405-25 QUEEN ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.90534300000000001,"ZIPCODE":"19147","ALLIAS":" ","GLOBALID":"32f340ba-e789-464e-a5bf-001630b45ecf","Shape_Length":791.083302180901,"Shape_Area":39436.633878082808}},{"type":"Feature","id":391,"geometry":{"type":"Polygon","coordinates":[[[-75.013557732268282,40.046938687294833],[-75.013529231149917,40.046958351575235],[-75.013525541088796,40.046960891161383],[-75.013497790388328,40.04698267548418],[-75.0139606059263,40.047357328954213],[-75.013982873901753,40.04737535791876],[-75.014003486934058,40.047380726315417],[-75.014022674731564,40.047380821099161],[-75.014047574395249,40.047372257577216],[-75.014062395334946,40.047360681441099],[-75.014469558694003,40.047048578272573],[-75.014469654203268,40.04704850666014],[-75.014510615552055,40.047017649461694],[-75.014481740481926,40.046994047890614],[-75.014419247253784,40.046943778998752],[-75.01437557251883,40.046910061970799],[-75.014332867761212,40.046875144386078],[-75.014288717919257,40.04684073841117],[-75.014244630963447,40.046805239128183],[-75.014206739311135,40.046774271933607],[-75.014160517196132,40.04673872086353],[-75.014115807018896,40.046701031526034],[-75.01407163415908,40.046667172758312],[-75.013946236485069,40.046760409326083],[-75.01387447582475,40.046701215146136],[-75.013557732268282,40.046938687294833]]]},"properties":{"OBJECTID_1":391,"OBJECTID":334,"ASSET_NAME":"Frankford & Pennypack Park","SITE_NAME":"Frankford & Pennypack Park","CHILD_OF":"Frankford & Pennypack Park","ADDRESS":"4400 PENNYPACK ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.90230500000000002,"ZIPCODE":"19136","ALLIAS":" ","GLOBALID":"bb3c158d-e051-45d7-859c-d6c75695b778","Shape_Length":802.01303434070303,"Shape_Area":39304.21925304857}},{"type":"Feature","id":392,"geometry":{"type":"Polygon","coordinates":[[[-75.109391713733928,39.982517834246146],[-75.10914773557225,39.982168950245473],[-75.109139246548594,39.982161982740173],[-75.109130541813556,39.982159207281079],[-75.109122691019081,39.982159170788655],[-75.109114411035179,39.982161014786215],[-75.109105571868767,39.982163353196952],[-75.108389882759226,39.982541131525529],[-75.108712187612497,39.982902076345049],[-75.109383365028819,39.98255172010834],[-75.109392250444898,39.982543343117356],[-75.109395647176029,39.982534335258848],[-75.109395439237673,39.982525524681947],[-75.109391713733928,39.982517834246146]]]},"properties":{"OBJECTID_1":392,"OBJECTID":335,"ASSET_NAME":"Powers Park","SITE_NAME":"Powers Park","CHILD_OF":"Powers Park","ADDRESS":"2987 ALMOND ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.89618299999999995,"ZIPCODE":"19134","ALLIAS":" ","GLOBALID":"f254f22a-31a7-44c0-8af7-8e6701402b01","Shape_Length":801.27741412788851,"Shape_Area":39037.605150447023}},{"type":"Feature","id":393,"geometry":{"type":"Polygon","coordinates":[[[-75.154989103272811,39.932542407888263],[-75.154981301510503,39.932544826286708],[-75.154974904948986,39.932549034371732],[-75.154970587111265,39.932554588765157],[-75.154968815393332,39.93256080445601],[-75.154851387577111,39.933057535750329],[-75.154831507255352,39.933152244400489],[-75.154876545227438,39.933157992119774],[-75.155035551068252,39.933179611428365],[-75.155025269005407,39.933208610561351],[-75.155096227270207,39.933218059528379],[-75.155358722341518,39.933253014222437],[-75.15537332392266,39.933254958303124],[-75.155382997411976,39.933255938522173],[-75.155392548761668,39.933254415647014],[-75.1554009217312,39.93325055679724],[-75.155407175205767,39.93324479389419],[-75.155410621115351,39.933237767313635],[-75.155413533144696,39.933224613432756],[-75.155418033895117,39.933204272920236],[-75.15554173150592,39.932650779973102],[-75.155543488471267,39.932642987156079],[-75.155544050967237,39.932636100772882],[-75.155541995856439,39.932629383129033],[-75.155537496400072,39.932623415697812],[-75.155530948728682,39.932618705704648],[-75.155522906148875,39.932615659412548],[-75.155496758290354,39.932611916990084],[-75.155014475139836,39.932544218201222],[-75.154997497998394,39.932542023894698],[-75.154989103272811,39.932542407888263]]]},"properties":{"OBJECTID_1":393,"OBJECTID":336,"ASSET_NAME":"Gold Star Park","SITE_NAME":"Gold Star Park","CHILD_OF":"Gold Star Park","ADDRESS":"613 WHARTON ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.88284899999999999,"ZIPCODE":"19147","ALLIAS":" ","GLOBALID":"4c537de3-9cf8-43e1-8e84-1522591044ef","Shape_Length":794.57642427638871,"Shape_Area":38456.746437172624}},{"type":"Feature","id":394,"geometry":{"type":"Polygon","coordinates":[[[-75.162459764995859,39.940395343690334],[-75.162458725768232,39.940395584243191],[-75.162456089914357,39.940396194233642],[-75.162451102804781,39.940397348553539],[-75.16244529542297,39.940400647710881],[-75.162445041758772,39.940400792458036],[-75.162443852511714,39.940401468421868],[-75.162443166981717,39.94040185751296],[-75.162442847509837,39.940402224227817],[-75.1624421939147,39.940402973545375],[-75.162439782519243,39.940405742932462],[-75.162438287993126,39.940407458090448],[-75.162437672298537,39.940408165014176],[-75.162437542602717,39.940408558535957],[-75.162436689404998,39.940411168456848],[-75.162435261550897,39.940415528704634],[-75.162431588874995,39.940432086741652],[-75.16242561423681,39.940459023025049],[-75.162419012416521,39.940488781562124],[-75.162411902943575,39.940520836152047],[-75.162405302280789,39.940550594714672],[-75.162399002722196,39.940578993226374],[-75.162393028023942,39.940605930408267],[-75.162385592456772,39.940639447199899],[-75.162379154238351,39.94066847419591],[-75.162375170694972,39.940686432607777],[-75.162372368459089,39.940699066527216],[-75.162370101204601,39.940709301393092],[-75.16236715387079,39.940722671774409],[-75.162364164906677,39.940736243945359],[-75.162361014608805,39.940750548607809],[-75.162356575195346,39.9407707033265],[-75.162351514375331,39.94079368223106],[-75.162350226395176,39.940799533213898],[-75.162350009886723,39.940800515844565],[-75.162349852988129,39.940801224108696],[-75.162350681562316,39.940803011499874],[-75.162351410629185,39.940804584005853],[-75.162353052638352,39.940808126009976],[-75.162354813629932,39.940811924785422],[-75.162356802883053,39.940816215260163],[-75.162357051651583,39.940816752473069],[-75.162357139322523,39.940816940060614],[-75.162357643396945,39.940818027248106],[-75.162357877094649,39.940818529882343],[-75.162358075385598,39.940818947923042],[-75.162358491545177,39.940819823189969],[-75.162358702979319,39.940820264953707],[-75.162359093880937,39.940821065767366],[-75.162359529339881,39.940821956786998],[-75.162361249632511,39.940823627341466],[-75.162361574120553,39.940824235641017],[-75.162362082098824,39.940825189565992],[-75.162362920924352,39.940825939215991],[-75.162363807327765,39.940826730485185],[-75.162364401761096,39.94082778096751],[-75.162364642982126,39.940828208986964],[-75.162366374282541,39.940829621197608],[-75.162367789215466,39.940830703706368],[-75.162368110077651,39.940830946110957],[-75.16236850627817,39.940831238870167],[-75.162369496590856,39.940831975719519],[-75.162369843941022,39.940832229533875],[-75.162370105011732,39.940832412924344],[-75.162371579822846,39.940833429207657],[-75.162374212588929,39.940834560816214],[-75.162375279453727,39.940835162437878],[-75.1623759602749,39.940835542709955],[-75.162376815883192,39.940836005313884],[-75.162377707130034,39.940836484940192],[-75.162380351311114,39.940837316767251],[-75.162382105883111,39.940838087077111],[-75.162384756611431,39.940838746957382],[-75.1623852069674,39.940838877854148],[-75.162386521021475,39.940839258897107],[-75.162388062154776,39.94083951711859],[-75.162389027521684,39.940839679456765],[-75.16238917994238,39.940839703618899],[-75.162389710919626,39.940839776867357],[-75.16239184328937,39.940840062843812],[-75.162392715809261,39.940840173531328],[-75.162432518320216,39.940845106254471],[-75.162528438639669,39.940856993092872],[-75.16264378607967,39.940871287723418],[-75.162753168539865,39.940884843098864],[-75.162851119625302,39.940896981807057],[-75.162972432233843,39.940912015241125],[-75.163087403539393,39.94092626309471],[-75.16310434563168,39.940928362555255],[-75.163113594947674,39.940929508226496],[-75.163115254093057,39.940929679899106],[-75.163115719333405,39.940929727334023],[-75.163116191522363,39.940929776727721],[-75.16311626035376,39.940929782785247],[-75.163116703955453,39.940929814414844],[-75.163118596279801,39.9409299489988],[-75.163118877624214,39.940929968859564],[-75.163118929015326,39.940929971820715],[-75.163119055325367,39.940929974669551],[-75.16311956992169,39.940929986275933],[-75.163121602577391,39.940930032121138],[-75.163122361122831,39.940930031209277],[-75.16312385482307,39.940930028857942],[-75.163125169412737,39.940930026971991],[-75.163125995958296,39.940929992454144],[-75.16312784948579,39.940929916225834],[-75.163137953048107,39.940929899928179],[-75.163140634796932,39.940929960412824],[-75.163144255684102,39.94093004207884],[-75.163148958088172,39.940929940903395],[-75.16315179396949,39.940929488581119],[-75.163154093033214,39.940929024151366],[-75.16315639997859,39.940928352665303],[-75.163158439099931,39.940927675138731],[-75.163160068018769,39.940927195594398],[-75.163161294616714,39.940926706976093],[-75.163162529533039,39.940925938329023],[-75.163164681776593,39.940924933581329],[-75.163166099922137,39.940923625753236],[-75.16316867623874,39.940921289856107],[-75.163171134645268,39.940918761184903],[-75.163173111766071,39.940915837825386],[-75.163174580902023,39.940913190433349],[-75.163175676955646,39.94091053462688],[-75.163176374431529,39.940908540187827],[-75.163177104667554,39.940905685115055],[-75.163177415666752,39.940904064891875],[-75.163177725530701,39.94090244374209],[-75.163178171398016,39.940900540037184],[-75.163178136131222,39.940897622648485],[-75.163178189040906,39.940896232670958],[-75.163178216112541,39.940895521477799],[-75.163178510537179,39.940894890197853],[-75.16317886985118,39.940894122525791],[-75.163179187280775,39.940893440406761],[-75.163179586791003,39.940891616747912],[-75.163180564939353,39.940887138227048],[-75.163189951931315,39.940844198414581],[-75.163199085290842,39.940802416995709],[-75.163211048917987,39.940747691421159],[-75.163221324468054,39.940700688236326],[-75.163231554902993,39.940653885861252],[-75.163240892295903,39.940611171082644],[-75.163248062507208,39.940578371777448],[-75.163254250584743,39.940550063517634],[-75.163258244540401,39.940531794464455],[-75.16325857890574,39.94053026757291],[-75.163259109069983,39.940527840475809],[-75.163259152280247,39.940526705267445],[-75.163259179282377,39.940525995874765],[-75.16325925107104,39.94052410986243],[-75.163259321249171,39.940522266161594],[-75.163259391427275,39.940520422460757],[-75.163259461571144,39.940518579660143],[-75.163258640567292,39.940516715860248],[-75.163258709134894,39.940514914470924],[-75.163257886520526,39.940513092982535],[-75.163257058243374,39.940511358765079],[-75.163256231067166,39.940509626374478],[-75.163255933883065,39.940509007881211],[-75.163255402383328,39.940507933594674],[-75.163254577970889,39.94050628235793],[-75.163253301154398,39.940505076832792],[-75.16325285598522,39.940504655928841],[-75.163252515528484,39.940504036459622],[-75.163252021926127,39.940503135122064],[-75.163250553165284,39.940501898237372],[-75.16324897892504,39.940500080520629],[-75.163247556541833,39.940498670785516],[-75.163246126277343,39.940497468106678],[-75.163244438641939,39.940495984812863],[-75.163240296666373,39.940493172126708],[-75.163235319906377,39.940489995523428],[-75.163229646924719,39.940487458257344],[-75.163224985264307,39.940485567303874],[-75.163177780044421,39.940480122802064],[-75.163130161088404,39.940474631106433],[-75.163069892688171,39.940467680959415],[-75.163009853909216,39.940460756683123],[-75.16298809790581,39.940458247685264],[-75.162960439076272,39.940455057721294],[-75.162914485551767,39.940449757574562],[-75.162912094109302,39.940449481982213],[-75.162854805751252,39.940442874651275],[-75.16279847419429,39.940436378075184],[-75.162740459778377,39.940429687633426],[-75.162718769048539,39.94042718636365],[-75.162712191433741,39.940426427996698],[-75.162710425973231,39.940426220582033],[-75.162707491173137,39.940425858844769],[-75.162700650162137,39.940425008938739],[-75.162689295878394,39.940423597701837],[-75.162638770177892,39.940417316712136],[-75.162593382225751,39.940411674193335],[-75.162550726232965,39.940406371702451],[-75.162510926857792,39.940401424669048],[-75.162478997210542,39.940397455267671],[-75.162462682316331,39.940395426625173],[-75.162462186017052,39.940395364971572],[-75.162461612803142,39.940395294374561],[-75.162460549137577,39.940395162255918],[-75.162459764995859,39.940395343690334]]]},"properties":{"OBJECTID_1":394,"OBJECTID":337,"ASSET_NAME":"Hawthorne Park","SITE_NAME":"Hawthorne Park","CHILD_OF":"Hawthorne Park","ADDRESS":"750 S 12TH ST","TYPE":"Land","USE_":"Park- Neighborhood","ACREAGE":0.87875800000000004,"ZIPCODE":"19147","ALLIAS":" ","GLOBALID":"5c7889cf-25b9-436d-86b6-4114d04562e8","Shape_Length":776.97938909137201,"Shape_Area":38278.471212815755}},{"type":"Feature","id":395,"geometry":{"type":"Polygon","coordinates":[[[-75.179718605650919,40.031606904263612],[-75.179674304530621,40.031580023198636],[-75.179385210550947,40.03140176907327],[-75.179069494650633,40.031688972873525],[-75.179048362209599,40.031710462836919],[-75.179043187295989,40.031715725122943],[-75.179037677692975,40.031725459738297],[-75.179035263330817,40.031735913270154],[-75.179036083113772,40.031746513082751],[-75.179040087807067,40.031756671516305],[-75.179047061514851,40.03176583772548],[-75.179054931988347,40.031770669427381],[-75.179075635175607,40.031783376697376],[-75.179097802240975,40.031796983503853],[-75.179688809646748,40.032137547594488],[-75.180028822056045,40.03180071126414],[-75.179718605650919,40.031606904263612]]]},"properties":{"OBJECTID_1":395,"OBJECTID":338,"ASSET_NAME":"Pickett Pool","SITE_NAME":"Pickett Pool","CHILD_OF":"Pickett Pool","ADDRESS":"5700 WAYNE AVE","TYPE":"Land","USE_":"Pool","ACREAGE":0.85903399999999996,"ZIPCODE":"19144","ALLIAS":" ","GLOBALID":"7980e167-77cf-42b3-ad20-e10faa939590","Shape_Length":780.38683926413194,"Shape_Area":37419.313359097832}},{"type":"Feature","id":396,"geometry":{"type":"Polygon","coordinates":[[[-75.163247671415249,39.926840735016171],[-75.163460740979019,39.926868313538648],[-75.163473009674078,39.926870208498613],[-75.163474608011342,39.926854623609998],[-75.163481987913173,39.926822454353811],[-75.163472756875606,39.926821278446525],[-75.163486494496681,39.926752985738588],[-75.163487790923753,39.926747179991182],[-75.163495373910493,39.92671194915264],[-75.163496086349809,39.926708019666613],[-75.163546885728309,39.926714254422066],[-75.163553724326178,39.926682008079744],[-75.163557832405871,39.926662930690526],[-75.163599011899123,39.926472050896216],[-75.163601772817813,39.926459251144067],[-75.163615769119119,39.926461076033299],[-75.163747235945536,39.926478215074248],[-75.163758610906541,39.926479698806567],[-75.163791197662974,39.926483452158045],[-75.163795166957371,39.926465436634494],[-75.163800599042403,39.926441271319987],[-75.163851812769749,39.926213454393121],[-75.163855547395158,39.926196838261831],[-75.163855910181738,39.92619305496244],[-75.163855505626259,39.926188923683917],[-75.163855112782571,39.926184915207912],[-75.163853406601845,39.926181160031888],[-75.163850958639216,39.926175769899274],[-75.163846051072397,39.926170217074286],[-75.163837348728009,39.92616342175922],[-75.163827836200284,39.92615900397665],[-75.163809200894136,39.926155519331459],[-75.163361302720801,39.926099399231909],[-75.163311036080302,39.926092924115807],[-75.163310882351666,39.92609290442973],[-75.163309363740211,39.926092708891325],[-75.163301059579837,39.92613538838112],[-75.163264520013456,39.92630282555735],[-75.163262744717912,39.926310973958145],[-75.163154655884881,39.92629691341795],[-75.1631517899648,39.926313546424375],[-75.163109714750604,39.926513847641679],[-75.16310738463811,39.926525103748382],[-75.16309940166785,39.926562660078723],[-75.163108680797137,39.926563739792002],[-75.163109887864664,39.926563880550745],[-75.163102442481261,39.926599949715524],[-75.163086811671036,39.92660411029231],[-75.163089519252154,39.926608151168537],[-75.16308908992211,39.926608423501655],[-75.163247671415249,39.926840735016171]]]},"properties":{"OBJECTID_1":396,"OBJECTID":339,"ASSET_NAME":"Tolentine Community Park","SITE_NAME":"Tolentine Community Park","CHILD_OF":"Tolentine Community Park","ADDRESS":"1025-33 MIFFLIN ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.85058800000000001,"ZIPCODE":"19148","ALLIAS":" ","GLOBALID":"b32dc989-0565-4139-a728-844198c5ea23","Shape_Length":886.54029586587899,"Shape_Area":37051.46256045661}},{"type":"Feature","id":397,"geometry":{"type":"Polygon","coordinates":[[[-75.107018224685959,39.981873807873995],[-75.107002748503291,39.981881909459368],[-75.106987726599726,39.981889774621756],[-75.106580711502176,39.982100821031288],[-75.106561915202178,39.982110473351931],[-75.106549888288711,39.982116649528614],[-75.106543978994566,39.982121169055056],[-75.10654052382435,39.982127004754304],[-75.106542399728312,39.982139535388015],[-75.106553525932227,39.982151204158761],[-75.106565650737437,39.982164420478696],[-75.106906070611288,39.982546985603058],[-75.106944522174388,39.982591870424564],[-75.106952164254125,39.982600792754951],[-75.106958152713815,39.982607783029458],[-75.106966324698078,39.98261133568996],[-75.106975561208571,39.982612605319233],[-75.106984827526873,39.98261145365646],[-75.10698933150519,39.982609095759244],[-75.10699937846411,39.982603836241303],[-75.107031339066495,39.982587105749921],[-75.107415688152386,39.982383608157789],[-75.107429544984711,39.982376066613071],[-75.107440838649708,39.982369920314987],[-75.107451003882659,39.982364388667321],[-75.107457351707353,39.982358591616148],[-75.107460341770647,39.982343846576654],[-75.107456584269272,39.982336833814053],[-75.107444407402213,39.982323294725404],[-75.107429708902558,39.982306953024441],[-75.107075956792755,39.981906126664391],[-75.107064540001957,39.981892954636734],[-75.107053489904274,39.981880502869011],[-75.107037143039904,39.981873145199827],[-75.107027621784241,39.981872423151074],[-75.107018224685959,39.981873807873995]]]},"properties":{"OBJECTID_1":397,"OBJECTID":340,"ASSET_NAME":"Stokely Playground","SITE_NAME":"Stokely Playground","CHILD_OF":"Stokely Playground","ADDRESS":"3000 EDGEMONT ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.84941800000000001,"ZIPCODE":"19134","ALLIAS":" ","GLOBALID":"968fe55c-5576-4ce6-aba9-8f601fe61ddb","Shape_Length":763.25760742345915,"Shape_Area":37000.543921564771}},{"type":"Feature","id":398,"geometry":{"type":"Polygon","coordinates":[[[-75.223198919276967,39.948025114386041],[-75.223176469980174,39.948027536407629],[-75.221976797294033,39.948155731373419],[-75.221942585175057,39.948159414807087],[-75.221900975389133,39.948163894756966],[-75.221877646635633,39.948170286771493],[-75.221861883277271,39.948179491756278],[-75.221846349289592,39.948196533285532],[-75.221839964102358,39.948214984691219],[-75.221840152058292,39.948229377802441],[-75.221842812376153,39.948240845797081],[-75.22185449970668,39.948255581549311],[-75.221875409575276,39.948268990662037],[-75.221900581764999,39.948276295730594],[-75.221936874296986,39.948281860069962],[-75.223074535450777,39.948422129883696],[-75.223133394395774,39.948429339726061],[-75.223146210799001,39.948430909578271],[-75.223156430809951,39.948432161846405],[-75.22317117591831,39.948428740297302],[-75.22317758757417,39.948425402774198],[-75.223184744185602,39.948418433513545],[-75.223188204417156,39.948409183489204],[-75.22319619269021,39.948372450909481],[-75.223258335457331,39.948075760117725],[-75.223261606101701,39.948059613269358],[-75.223262552421886,39.948049243787978],[-75.223260581130162,39.9480423788983],[-75.223256490502109,39.948036093519754],[-75.223245290945172,39.948027531497168],[-75.223231669319716,39.948024132908223],[-75.223219010841021,39.948022945863443],[-75.223198919276967,39.948025114386041]]]},"properties":{"OBJECTID_1":398,"OBJECTID":341,"ASSET_NAME":"Cedar Park","SITE_NAME":"Cedar Park","CHILD_OF":"Cedar Park","ADDRESS":"4917-53 BALTIMORE AVE","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.83721599999999996,"ZIPCODE":"19143","ALLIAS":" ","GLOBALID":"84c20926-0643-447b-b067-a5eec770dc46","Shape_Length":950.88503188715322,"Shape_Area":36468.994230463701}},{"type":"Feature","id":399,"geometry":{"type":"Polygon","coordinates":[[[-75.132561864973539,39.988407646999363],[-75.13259952904825,39.988413791336285],[-75.132781485479697,39.988437977644075],[-75.132796223960895,39.988440006751965],[-75.132702507498081,39.988883918740477],[-75.133076216363264,39.988931303953549],[-75.133218172131123,39.98824514533807],[-75.133240478512306,39.988248184885649],[-75.133274649750206,39.988090165458139],[-75.133279170042996,39.988069645849151],[-75.133244403557086,39.988064913025404],[-75.133132304041951,39.988049953685184],[-75.133123348128507,39.988048759262227],[-75.133119664719203,39.988048958201695],[-75.133113682991379,39.988049281339734],[-75.13310752217447,39.988050269856032],[-75.133103235384226,39.988051505633223],[-75.133092695789415,39.988065540270462],[-75.133092655035753,39.988065533935114],[-75.133091806800365,39.98806672377097],[-75.133090317495927,39.988073667354286],[-75.133090163347148,39.988074384659896],[-75.133083433864442,39.988105754496587],[-75.133083371060522,39.988106046798876],[-75.13306962539184,39.988170116154912],[-75.133068889870998,39.9881735485096],[-75.133059453373107,39.988217532247972],[-75.133020399271857,39.988211835711823],[-75.133028447101808,39.988172822805822],[-75.133028517432152,39.988172456791062],[-75.133041543984859,39.988104859746798],[-75.133041558914513,39.988104776291848],[-75.133048335090137,39.988068578025995],[-75.133048420627404,39.988068121354381],[-75.133049314442488,39.988063347378294],[-75.133048442844384,39.988059550406874],[-75.133047371548741,39.98805488660097],[-75.13304449121523,39.988046982006388],[-75.133039588901084,39.988041970453388],[-75.133026875765509,39.988035504052753],[-75.133023412453795,39.988056163085083],[-75.132986529598526,39.988225806921349],[-75.132648650625725,39.988180526872199],[-75.132611628422666,39.988175450484945],[-75.132561864973539,39.988407646999363]]]},"properties":{"OBJECTID_1":399,"OBJECTID":342,"ASSET_NAME":"Waterloo Playground","SITE_NAME":"Waterloo Playground","CHILD_OF":"Waterloo Playground","ADDRESS":"2502-12 N HOWARD ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.83373699999999995,"ZIPCODE":"19133","ALLIAS":" ","GLOBALID":"76c09add-1c3c-4bea-8488-881080547bb2","Shape_Length":1115.3597485848034,"Shape_Area":36317.45497709397}},{"type":"Feature","id":400,"geometry":{"type":"Polygon","coordinates":[[[-75.243107410782926,39.909651783477379],[-75.243082190370686,39.909654747668618],[-75.243063489609881,39.909666644520065],[-75.242574699712449,39.910209287305236],[-75.242561432858693,39.910226969279272],[-75.242560842201499,39.910242985051603],[-75.242568139884668,39.910267430965071],[-75.242687220558295,39.910646402310157],[-75.24273531903394,39.910585037828469],[-75.242831677891346,39.910478629358366],[-75.242945747756025,39.910350040010862],[-75.243080956379217,39.910197621990278],[-75.243130706472527,39.910141548972121],[-75.243183275087816,39.91008229939029],[-75.243381914825079,39.909858681203367],[-75.243425868345014,39.909806416872804],[-75.243141237350557,39.909663071085511],[-75.243121096615411,39.90965208273974],[-75.243107410782926,39.909651783477379]]]},"properties":{"OBJECTID_1":400,"OBJECTID":343,"ASSET_NAME":"75th & Chelwynde Park","SITE_NAME":"75th & Chelwynde Park","CHILD_OF":"75th & Chelwynde Park","ADDRESS":"2604 ISLAND AVE","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.82594199999999995,"ZIPCODE":"19153","ALLIAS":" ","GLOBALID":"b3958d6f-a773-4f7a-9c29-a0d52a82dddb","Shape_Length":894.75979386419544,"Shape_Area":35977.793907185849}},{"type":"Feature","id":401,"geometry":{"type":"Polygon","coordinates":[[[-75.136847458969754,39.967109484039284],[-75.136892309814016,39.967117483033007],[-75.13712065536582,39.96716348342833],[-75.137136720544618,39.967114554209246],[-75.137289861827142,39.967145702931163],[-75.137310215983845,39.967150062441917],[-75.137328957816038,39.967090449429861],[-75.137503318699672,39.966543439463571],[-75.137507457156474,39.966530676973278],[-75.13751189854321,39.966516979809647],[-75.137513964723624,39.966504846804639],[-75.137510065425346,39.966493852019418],[-75.137499363203744,39.966487776005991],[-75.137472138400781,39.966475729319882],[-75.137150000173591,39.966333178061326],[-75.137141046955136,39.96632921600095],[-75.137131837692706,39.966327100615842],[-75.137111172390533,39.966325844319137],[-75.137095714123674,39.966330290247924],[-75.137089599170906,39.966335314765473],[-75.137081420860696,39.966347708628298],[-75.136928946667453,39.966844424808755],[-75.136847458969754,39.967109484039284]]]},"properties":{"OBJECTID_1":401,"OBJECTID":344,"ASSET_NAME":"Tip Top Playground","SITE_NAME":"Tip Top Playground","CHILD_OF":"Tip Top Playground","ADDRESS":"1036-66 N FRONT ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.82138100000000003,"ZIPCODE":"19123","ALLIAS":" ","GLOBALID":"da10dd85-7de4-4634-ae49-e45b0a65f945","Shape_Length":819.26360041129237,"Shape_Area":35779.115942103941}},{"type":"Feature","id":402,"geometry":{"type":"Polygon","coordinates":[[[-75.132712941272459,39.974522946182795],[-75.132647701543291,39.974543660333815],[-75.13259065569612,39.974561773572155],[-75.132516022035304,39.974585471120903],[-75.132428372328008,39.974613302061343],[-75.132359123738809,39.974635289661322],[-75.132340305208245,39.974665242076895],[-75.132307214584415,39.974717910854984],[-75.132271995519531,39.974773963979381],[-75.132243960371113,39.974818585673006],[-75.132202661216624,39.974884317656404],[-75.132168543641981,39.974938618156344],[-75.132137137185438,39.97498860421333],[-75.132115881162065,39.975023088112607],[-75.13211396293157,39.975026579977325],[-75.132110853218848,39.9750322404606],[-75.132107756096914,39.975037695797091],[-75.132107010046951,39.975043621944636],[-75.132108684496501,39.975049433018057],[-75.132112623482683,39.975054556911907],[-75.132118434140025,39.975058490901063],[-75.132127761436308,39.975061946479784],[-75.132148659479171,39.975069690004375],[-75.132167418001231,39.975076639567973],[-75.132188373830147,39.975084403324914],[-75.132227777531924,39.975099003223654],[-75.132266377641642,39.975113304557759],[-75.132318574988204,39.975132643736487],[-75.132364527963077,39.975149669878256],[-75.132383010549489,39.975156517602414],[-75.132405585245095,39.975164881387691],[-75.132425147430084,39.975172129459139],[-75.132464284544994,39.975186629486629],[-75.132499897665895,39.975199823723102],[-75.132561876235641,39.975222787269331],[-75.132582813675725,39.975230544225575],[-75.132602382815108,39.975237795127669],[-75.132612645431394,39.9752415972699],[-75.132623507303464,39.975243099245205],[-75.13263452858827,39.975242682967391],[-75.132645144109361,39.975240366180387],[-75.132654811579329,39.975236271669402],[-75.132663033355669,39.975230609736521],[-75.132691738784345,39.975177586749282],[-75.132711001352405,39.975142006686021],[-75.132734224471264,39.975099107816789],[-75.132759725756898,39.975053920939338],[-75.132798284565666,39.97498604669812],[-75.132824368074438,39.974940853264492],[-75.132843337647913,39.974908983230868],[-75.132865953623821,39.974870986487872],[-75.132885923632784,39.974837436326077],[-75.132896194743068,39.974820196082149],[-75.132900167193824,39.974813540700353],[-75.132900797815665,39.974806231545337],[-75.132897999076619,39.974799233421365],[-75.132890522339437,39.974785074477168],[-75.132874938060837,39.974755560054589],[-75.132853646274668,39.974715240105077],[-75.132829866073124,39.974670203291758],[-75.132804036040014,39.974621285856486],[-75.132789531265985,39.974593817042091],[-75.132781811227332,39.974579195720466],[-75.132774382519671,39.97456512886653],[-75.132764438038734,39.974546294970793],[-75.132757246879947,39.974532993098293],[-75.132754042792882,39.974528035558777],[-75.132747781464047,39.974522789340284],[-75.132739871254515,39.974519091319095],[-75.132730945210426,39.974517228944279],[-75.132712941272459,39.974522946182795]]]},"properties":{"OBJECTID_1":402,"OBJECTID":345,"ASSET_NAME":"Palmer Park","SITE_NAME":"Palmer Park","CHILD_OF":"Palmer Park","ADDRESS":"1701-21 FRANKFORD AVE","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.82025800000000004,"ZIPCODE":"19125","ALLIAS":" ","GLOBALID":"69a47826-6ca8-4111-bb3e-5084f15bf8e1","Shape_Length":738.93435109525456,"Shape_Area":35730.262550686188}},{"type":"Feature","id":403,"geometry":{"type":"Polygon","coordinates":[[[-75.116478257799116,39.985828489362042],[-75.116181280761111,39.985991902620668],[-75.116147050839885,39.986011684010293],[-75.116173104706974,39.986041014876569],[-75.116682140048951,39.986616469207519],[-75.116691201170454,39.986626569517767],[-75.116699789562603,39.986636143591618],[-75.116710553170378,39.986640037920488],[-75.116722120567459,39.986642173858321],[-75.116734005671859,39.9866424600608],[-75.116751932736094,39.986637365173451],[-75.116769102306662,39.986627638727676],[-75.117040031052838,39.986475315416754],[-75.117051270935804,39.986469039899305],[-75.117057171473434,39.986461625529998],[-75.117061843148932,39.986444727558123],[-75.117060373534244,39.986436106124799],[-75.117052074023192,39.986423098572153],[-75.117043772343166,39.986413832947633],[-75.116528979961984,39.985830243398965],[-75.116510715066937,39.985809408751038],[-75.116478257799116,39.985828489362042]]]},"properties":{"OBJECTID_1":403,"OBJECTID":346,"ASSET_NAME":"Trenton & Auburn Playground","SITE_NAME":"Trenton & Auburn Playground","CHILD_OF":"Trenton & Auburn Playground","ADDRESS":"2222 E AUBURN ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.815917,"ZIPCODE":"19134","ALLIAS":" ","GLOBALID":"6bd9bb97-76e8-41bf-8897-2f9a3cfb1f00","Shape_Length":808.29376199541355,"Shape_Area":35541.252898567371}},{"type":"Feature","id":404,"geometry":{"type":"Polygon","coordinates":[[[-75.156862891514365,39.923112303817696],[-75.156852872191919,39.923154875659932],[-75.156849843796152,39.923171067872616],[-75.156887060119303,39.923175781193031],[-75.157628922991947,39.923271030921583],[-75.157702133987414,39.923280552860888],[-75.15770550630107,39.923263039401853],[-75.15773462688604,39.923123099989439],[-75.157790770932635,39.923130414176441],[-75.157827867072584,39.922958420182113],[-75.157835363035858,39.922919768323858],[-75.15775343605371,39.922909153804689],[-75.156988560696092,39.922811515682355],[-75.156925856884726,39.922803735590755],[-75.156915785345348,39.922853599107938],[-75.156906666178372,39.922897270731333],[-75.156897907474928,39.922939161982271],[-75.156890050831962,39.922982653119782],[-75.156880997041739,39.923025714428064],[-75.156862891514365,39.923112303817696]]]},"properties":{"OBJECTID_1":404,"OBJECTID":347,"ASSET_NAME":"Ford Recreation Center","SITE_NAME":"Ford Recreation Center","CHILD_OF":"Ford Recreation Center","ADDRESS":"609-39 SNYDER AVE","TYPE":"Land","USE_":"Recreation Center","ACREAGE":0.78316799999999998,"ZIPCODE":"19148","ALLIAS":" ","GLOBALID":"88654980-ee1e-45a0-932f-8b6f4a6f7883","Shape_Length":788.23188066219643,"Shape_Area":34114.639945168674}},{"type":"Feature","id":405,"geometry":{"type":"Polygon","coordinates":[[[-75.221195530833,39.953589780910931],[-75.221134536514128,39.953891504834623],[-75.221132646287742,39.953904922304588],[-75.221134325233891,39.953915583006527],[-75.221137702898446,39.953922438389931],[-75.221144923650925,39.953928142318034],[-75.221153046381161,39.953933077753746],[-75.221157267388435,39.953935015147991],[-75.221167917716599,39.953937906970481],[-75.221191734343606,39.953940889903365],[-75.221955371449596,39.95403563006186],[-75.221975528064675,39.954037992476579],[-75.221985325810593,39.95403831290168],[-75.221994823902051,39.954036429184214],[-75.222003201501963,39.954032502534929],[-75.222009737625683,39.95402687386207],[-75.222013863984813,39.954020027994808],[-75.222017568628758,39.954001042674733],[-75.222075730359862,39.953717733650763],[-75.222084308640021,39.953676629862379],[-75.222041071117516,39.953670835107062],[-75.221600203864114,39.953615935875654],[-75.221246058740704,39.953572635051309],[-75.22120060879358,39.953566207359337],[-75.221195530833,39.953589780910931]]]},"properties":{"OBJECTID_1":405,"OBJECTID":348,"ASSET_NAME":"Ben Barkan Park","SITE_NAME":"Ben Barkan Park","CHILD_OF":"Ben Barkan Park","ADDRESS":"4936-58 SPRUCE ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.77639899999999995,"ZIPCODE":"19143","ALLIAS":" ","GLOBALID":"cdf42a38-3d91-4ee7-98ef-c78efaf56582","Shape_Length":762.50188335488235,"Shape_Area":33819.855246979758}},{"type":"Feature","id":406,"geometry":{"type":"Polygon","coordinates":[[[-75.23129427241247,39.976965753174227],[-75.230957740968549,39.977002279273165],[-75.230940432171607,39.977005831277602],[-75.23093328276785,39.977010052283113],[-75.23092457109189,39.977022040724123],[-75.230923640809024,39.977028935452324],[-75.231056087782676,39.97773247298516],[-75.231058793505809,39.977747115905331],[-75.231061499230123,39.977761758825437],[-75.231063823463955,39.97777434090176],[-75.231070574310337,39.977781058246514],[-75.231075925989089,39.977782397465162],[-75.231087849935946,39.977780774305657],[-75.231116134850851,39.977775140423908],[-75.23142977965523,39.977712216861498],[-75.231477883195609,39.977702463303466],[-75.231473945193883,39.977681380959631],[-75.231455123622112,39.977585460472362],[-75.231443660684334,39.977527307266563],[-75.231432887981725,39.977468637619509],[-75.231420663772795,39.977406696131922],[-75.231410152079391,39.977347178966284],[-75.231399271219075,39.977286942810935],[-75.23134311911771,39.976999299865902],[-75.231338187638343,39.976960890271194],[-75.23129427241247,39.976965753174227]]]},"properties":{"OBJECTID_1":406,"OBJECTID":349,"ASSET_NAME":"Baker Playground","SITE_NAME":"Baker Playground","CHILD_OF":"Baker Playground","ADDRESS":"5433 LANSDOWNE AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.75911399999999996,"ZIPCODE":"19131","ALLIAS":" ","GLOBALID":"0685764b-0f74-4782-be3c-3901da7aacdf","Shape_Length":791.13860436435323,"Shape_Area":33066.91193458395}},{"type":"Feature","id":407,"geometry":{"type":"Polygon","coordinates":[[[-75.14733706275554,39.98276498445265],[-75.147200611858182,39.983394762731812],[-75.14719737380544,39.983409571463255],[-75.147193205348643,39.98342863894468],[-75.147193250104948,39.983439145867067],[-75.147199088395524,39.98345043742156],[-75.147214495954401,39.983459775436316],[-75.147224095508477,39.983461646516957],[-75.14723313009921,39.983462764144669],[-75.147539595101463,39.98350171823666],[-75.147553667568133,39.983503564574256],[-75.147564723948761,39.983505014546253],[-75.14758573952146,39.983503413334766],[-75.147595956821931,39.983498364133418],[-75.147604126622497,39.983491452945685],[-75.147609688601335,39.983483150013782],[-75.147611279533606,39.983476752798282],[-75.147613952124757,39.983466000246381],[-75.147616816978925,39.983454478977869],[-75.147693183508551,39.983134027984512],[-75.147767658891766,39.982797467065552],[-75.147735097294444,39.982794113086136],[-75.147387505547286,39.982746865453613],[-75.147342127193895,39.982741331266212],[-75.14733706275554,39.98276498445265]]]},"properties":{"OBJECTID_1":407,"OBJECTID":350,"ASSET_NAME":"8th & Diamond Playground","SITE_NAME":"8th & Diamond Playground","CHILD_OF":"8th & Diamond Playground","ADDRESS":"2032-62 N 08TH ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.72586600000000001,"ZIPCODE":"19122","ALLIAS":" ","GLOBALID":"cffc6780-dc54-4e1b-af06-e8e9d872fd8e","Shape_Length":757.91006238831824,"Shape_Area":31618.644475349527}},{"type":"Feature","id":408,"geometry":{"type":"Polygon","coordinates":[[[-75.138072554780194,39.988691112523121],[-75.138064074631515,39.988695665233948],[-75.138056305630059,39.988706092584508],[-75.138053805180334,39.988713969196532],[-75.138051549618297,39.988723336268606],[-75.137916049640296,39.989331070194368],[-75.137903832640362,39.989385050012928],[-75.137903762071986,39.989385361963244],[-75.13790297000925,39.989388839008853],[-75.13794651606942,39.989393626038165],[-75.138313329340221,39.989441366029318],[-75.138330793199515,39.989444024978404],[-75.138345461008981,39.989376292700015],[-75.138480762980137,39.988779610310047],[-75.138482481347992,39.988772026748158],[-75.138484217289744,39.988764199408671],[-75.138485263244959,39.98875948021886],[-75.138486146799451,39.988753958125898],[-75.13848443719688,39.98874855092788],[-75.138474418822781,39.988740773299796],[-75.138467405588116,39.988739408155652],[-75.13845806894409,39.988737936084064],[-75.138105220700979,39.98869087377512],[-75.138092811848011,39.988689272293044],[-75.138082486226466,39.988688905766587],[-75.138072554780194,39.988691112523121]]]},"properties":{"OBJECTID_1":408,"OBJECTID":351,"ASSET_NAME":"Nelson Playground","SITE_NAME":"Nelson Playground","CHILD_OF":"Nelson Playground","ADDRESS":"2500-34 N 03RD ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.72470100000000004,"ZIPCODE":"19133","ALLIAS":" ","GLOBALID":"b5f20825-ddcf-4087-a347-c8a3eda734cf","Shape_Length":756.73842437877033,"Shape_Area":31567.789483844819}},{"type":"Feature","id":409,"geometry":{"type":"Polygon","coordinates":[[[-75.179382749810372,39.947389612544455],[-75.179368861148248,39.947394845223556],[-75.179355867590743,39.947401296307412],[-75.179345637962342,39.947415822936136],[-75.179341252923564,39.947423367953121],[-75.179338185231714,39.947438608306605],[-75.179293968946908,39.947658271728869],[-75.179291939221713,39.947668354521788],[-75.179293806403123,39.947677390273682],[-75.179303652647306,39.94769134867461],[-75.17931449783984,39.947699077336509],[-75.179323417453205,39.947704481480081],[-75.179333532829816,39.947708448275499],[-75.179360568399019,39.947712859132906],[-75.180117778542197,39.947808509627329],[-75.180137400943948,39.947810988232483],[-75.180153707687708,39.947811619359996],[-75.180165507477014,39.947810391639415],[-75.180180630458793,39.947806911954558],[-75.180194281506829,39.947801617089631],[-75.180202974296606,39.947796584162219],[-75.180214355045194,39.947786409008053],[-75.18021970130053,39.947778363807394],[-75.180221672369186,39.947769921331279],[-75.180224161848869,39.947759255057768],[-75.18026745598047,39.94757380374147],[-75.180275535856694,39.947539193967955],[-75.180270930047897,39.94752413128105],[-75.180259878775232,39.947508136713942],[-75.180240722859281,39.9474953682072],[-75.180214227317208,39.947486429454294],[-75.180193119512438,39.947483144513953],[-75.180173850884401,39.947480754933117],[-75.179421889667637,39.947388640797755],[-75.179397335418656,39.947385668613002],[-75.179382749810372,39.947389612544455]]]},"properties":{"OBJECTID_1":409,"OBJECTID":352,"ASSET_NAME":"Fitler Square","SITE_NAME":"Fitler Square","CHILD_OF":"Fitler Square","ADDRESS":"2301-23 PINE ST","TYPE":"Land","USE_":"Park- Square\\Plaza","ACREAGE":0.72002999999999995,"ZIPCODE":"19103","ALLIAS":" ","GLOBALID":"f4369e18-9986-47b0-8d18-c176e6077a74","Shape_Length":736.23870032067327,"Shape_Area":31364.316905276377}},{"type":"Feature","id":410,"geometry":{"type":"Polygon","coordinates":[[[-75.165366545892169,40.002280526291095],[-75.165359091777361,40.002312052576031],[-75.165446384598539,40.002323456925012],[-75.165963883903885,40.002390515377506],[-75.165985006366498,40.002393263183507],[-75.165997940066845,40.002394945473839],[-75.16600794550007,40.002394607549611],[-75.166017431136751,40.002392135133277],[-75.166025647628615,40.0023877312059],[-75.166031939920941,40.002381737825424],[-75.166035809396888,40.002374634822097],[-75.166038055019868,40.002364946296851],[-75.166043415107225,40.002341826163978],[-75.166165815040841,40.001785065266766],[-75.166171069848687,40.001760614663837],[-75.166174187604199,40.001746110018914],[-75.166172784833392,40.001737161101019],[-75.166168331370642,40.001728824686801],[-75.166161149962889,40.001721701809061],[-75.166151759928852,40.00171630782318],[-75.166134914497718,40.001714161779518],[-75.166072716511195,40.001706238470625],[-75.165866032439453,40.001679908634642],[-75.165824758354489,40.001674651062366],[-75.165817465058169,40.00170691531892],[-75.165780391991532,40.001872289222653],[-75.16581049377595,40.001877950351151],[-75.165781527887205,40.002016701555618],[-75.165748847945395,40.002012995251334],[-75.165711376694972,40.002180141481695],[-75.165395607094084,40.002142066542781],[-75.165366545892169,40.002280526291095]]]},"properties":{"OBJECTID_1":410,"OBJECTID":353,"ASSET_NAME":"Panati Playground","SITE_NAME":"Panati Playground","CHILD_OF":"Panati Playground","ADDRESS":"3101-27 N 22ND ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.70142499999999997,"ZIPCODE":"19132","ALLIAS":" ","GLOBALID":"c100a3cf-16aa-40fe-876a-e63cd5397153","Shape_Length":890.0282161529874,"Shape_Area":30553.960573589502}},{"type":"Feature","id":411,"geometry":{"type":"Polygon","coordinates":[[[-75.15805147692862,39.986377027441684],[-75.158895075238135,39.986482487770182],[-75.158975676019921,39.986154370964186],[-75.158129279792419,39.986033137805371],[-75.15805147692862,39.986377027441684]]]},"properties":{"OBJECTID_1":411,"OBJECTID":354,"ASSET_NAME":"Duckrey Playground","SITE_NAME":"Duckrey Playground","CHILD_OF":"Duckrey Playground","ADDRESS":"1501-43 DIAMOND ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.68638100000000002,"ZIPCODE":"19121","ALLIAS":" ","GLOBALID":"c42524b0-5c2a-4ecb-916f-2aaf4f6779f4","Shape_Length":729.54125340768974,"Shape_Area":29898.568430059928}},{"type":"Feature","id":412,"geometry":{"type":"Polygon","coordinates":[[[-75.145899711747418,39.989341156673611],[-75.145854934045502,39.989548945241602],[-75.145849682556232,39.989572959050186],[-75.145845487753874,39.989592143932057],[-75.145846627358196,39.989606718581399],[-75.145859145973205,39.989619089814845],[-75.145868123297589,39.989622943535515],[-75.145878102160097,39.989624842236786],[-75.145899880345851,39.989627567277346],[-75.14592554645553,39.989630778774696],[-75.146657242188923,39.989724510908744],[-75.14667490814773,39.989726643362964],[-75.14669013132584,39.98972848163833],[-75.146711087523357,39.989728785757279],[-75.146720325023537,39.989725793044947],[-75.146734228541561,39.989714876261232],[-75.146737923729589,39.989707709554324],[-75.146741261680376,39.989692383206382],[-75.146745132869611,39.989674605560829],[-75.146769934432029,39.989560724877464],[-75.14679937386515,39.989427336851975],[-75.146787200134312,39.989424910908568],[-75.145954012297423,39.989317452884215],[-75.145906223836079,39.989312005007378],[-75.145899711747418,39.989341156673611]]]},"properties":{"OBJECTID_1":412,"OBJECTID":355,"ASSET_NAME":"Veterans Playground","SITE_NAME":"Veterans Playground","CHILD_OF":"Veterans Playground","ADDRESS":"800 W CUMBERLAND ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.66129099999999996,"ZIPCODE":"19133","ALLIAS":" ","GLOBALID":"00297eaa-785d-4913-83c6-1d9fd5825efd","Shape_Length":725.30976787923635,"Shape_Area":28805.701673394069}},{"type":"Feature","id":413,"geometry":{"type":"Polygon","coordinates":[[[-75.155391551339974,40.000357798696264],[-75.155356884969294,40.000532174009003],[-75.155338489557195,40.000623028674973],[-75.155321685186053,40.000706247129898],[-75.155286709753739,40.000873892944668],[-75.155358671958737,40.000883079905513],[-75.155351622771477,40.000914499465701],[-75.155757602178625,40.000968326492931],[-75.155797684106204,40.000774536687345],[-75.155870989823271,40.00041992799683],[-75.155876826261817,40.000394975543756],[-75.155396948378268,40.000330798229136],[-75.155391551339974,40.000357798696264]]]},"properties":{"OBJECTID_1":413,"OBJECTID":356,"ASSET_NAME":"Heritage Park Playground","SITE_NAME":"Heritage Park Playground","CHILD_OF":"Heritage Park Playground","ADDRESS":"1517-33 W CLEARFIELD ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.65439800000000004,"ZIPCODE":"19132","ALLIAS":" ","GLOBALID":"ec7ff641-3406-4566-9db0-92ce900eafd0","Shape_Length":695.68080093513538,"Shape_Area":28505.491765444272}},{"type":"Feature","id":414,"geometry":{"type":"Polygon","coordinates":[[[-75.101477217504296,39.986153098953835],[-75.101054233819639,39.986373682222897],[-75.101011204009097,39.98639612229335],[-75.101005406665195,39.986400154872953],[-75.100999438327918,39.986404306947414],[-75.100994865586628,39.986410878075233],[-75.100993484950294,39.986418255420944],[-75.100995457435289,39.986425554280494],[-75.100999609076254,39.986430319267818],[-75.101006152141906,39.986437829040753],[-75.101263696180496,39.986728078449708],[-75.101275164000029,39.986741316210569],[-75.101286380806684,39.986754262549098],[-75.101292295753836,39.986761090141385],[-75.101298396190685,39.986764693605537],[-75.101305578821467,39.986766829029214],[-75.10131325307654,39.986767321497716],[-75.10132079747828,39.986766127835573],[-75.101358237128352,39.986748778335084],[-75.101776467928843,39.986530169244432],[-75.101819129641669,39.986507732111235],[-75.101795385346577,39.986482766196211],[-75.101643446837258,39.98631093434885],[-75.101511730076382,39.986161717270434],[-75.1014966422307,39.986142969060275],[-75.101477217504296,39.986153098953835]]]},"properties":{"OBJECTID_1":414,"OBJECTID":357,"ASSET_NAME":"Glavin Playground","SITE_NAME":"Glavin Playground","CHILD_OF":"Glavin Playground","ADDRESS":"3267-81 ALMOND ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.640158,"ZIPCODE":"19134","ALLIAS":" ","GLOBALID":"eb41245a-7c8d-4b72-b252-0a8dd9cdbe0a","Shape_Length":662.53748232502801,"Shape_Area":27885.170008735418}},{"type":"Feature","id":415,"geometry":{"type":"Polygon","coordinates":[[[-75.157389640091495,39.989043164443871],[-75.157402261638026,39.989045250677471],[-75.157418963107062,39.989048011124893],[-75.157428697894744,39.989049619483012],[-75.157473578502049,39.989055586131471],[-75.157622567170606,39.989075393101622],[-75.157722871780891,39.989089019498728],[-75.157761253645234,39.989094802315037],[-75.157799639209273,39.988918206572066],[-75.157916199322216,39.988934702056895],[-75.157925863418683,39.988873133010415],[-75.15808948167296,39.988893721179664],[-75.158137818561087,39.988900372906038],[-75.158185415347106,39.988684903418687],[-75.158135270946971,39.988679056046529],[-75.157960644757679,39.988654783753333],[-75.157845018387889,39.988639615866859],[-75.157855522325235,39.988593944430313],[-75.157541399495386,39.988551239694296],[-75.157525412516208,39.988548636860237],[-75.157499230111512,39.988544373819494],[-75.157389640091495,39.989043164443871]]]},"properties":{"OBJECTID_1":415,"OBJECTID":358,"ASSET_NAME":"Winchester Playground","SITE_NAME":"Winchester Playground","CHILD_OF":"Winchester Playground","ADDRESS":"2326 N 15TH ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.63114599999999998,"ZIPCODE":"19132","ALLIAS":" ","GLOBALID":"6756c7b3-1c44-4d40-9770-e8c7fc65954f","Shape_Length":766.11586959697433,"Shape_Area":27492.636330408306}},{"type":"Feature","id":416,"geometry":{"type":"Polygon","coordinates":[[[-75.231508401477441,39.98311375847468],[-75.231523608010562,39.983158001319445],[-75.231539916356937,39.983203074731307],[-75.23155429558355,39.983246445272265],[-75.231569163435708,39.983291389761625],[-75.231584076033855,39.983332790711238],[-75.231597269355589,39.983369735446459],[-75.231612197378368,39.983410184376964],[-75.231628755589526,39.983456987762843],[-75.231641983989533,39.983498673402501],[-75.231658951493657,39.983545179425249],[-75.231672608539441,39.98358655100845],[-75.231687605167636,39.983630806339256],[-75.231701345202907,39.983669972298465],[-75.231716244354516,39.983667138523671],[-75.231772311479702,39.983656037707505],[-75.231830686168763,39.983643730605259],[-75.231885704100861,39.983632622030996],[-75.23193685006467,39.983621413162112],[-75.231991504211379,39.983609974900773],[-75.232046138477997,39.983598535276634],[-75.232101809221732,39.983586812928309],[-75.232159414032949,39.983574923051428],[-75.232214198702124,39.98356337402361],[-75.232266978294774,39.98355220084818],[-75.232325750739463,39.983539901322793],[-75.232382864997248,39.983528193387464],[-75.232438944415534,39.98351678618161],[-75.232488391643642,39.9835061524849],[-75.232539745240672,39.983495624554081],[-75.232577822118699,39.983487609280523],[-75.232569371388976,39.983482684677618],[-75.232515640664573,39.983464129487537],[-75.232465174003607,39.983446275667298],[-75.232408422823767,39.983426073823068],[-75.232353677219436,39.983407189052954],[-75.232303631871503,39.983388714605752],[-75.232256593369485,39.983372192784586],[-75.232207547158296,39.98335501332032],[-75.232157025017358,39.983338091575803],[-75.232107573009756,39.983320580608627],[-75.232059319271002,39.983304047360498],[-75.232009400583777,39.983287783901886],[-75.231956434243102,39.98326785858054],[-75.231906930182006,39.983248879560819],[-75.231855265034383,39.983230063034789],[-75.231805056465717,39.983210311675428],[-75.231756212022958,39.983192813883662],[-75.231708064178434,39.983173429352533],[-75.231650930875873,39.983152268187986],[-75.231605581000466,39.983134847011051],[-75.231552475185893,39.983114709406379],[-75.231503647934275,39.983097856994675],[-75.231508401477441,39.98311375847468]]]},"properties":{"OBJECTID_1":416,"OBJECTID":359,"ASSET_NAME":"Triangle Park","SITE_NAME":"Triangle Park","CHILD_OF":"Triangle Park","ADDRESS":"5425R-65 UPLAND WAY","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.62562499999999999,"ZIPCODE":"19131","ALLIAS":" ","GLOBALID":"502c4e8d-a09a-4f16-af58-437849742c77","Shape_Length":803.06150295306838,"Shape_Area":27252.090866567985}},{"type":"Feature","id":417,"geometry":{"type":"Polygon","coordinates":[[[-75.155042076199734,39.940490427244882],[-75.154994941044563,39.940655927837888],[-75.154965958254991,39.940758470398137],[-75.154957964766112,39.940783725331372],[-75.154975042908845,39.940786577824611],[-75.155686856061266,39.940900681905077],[-75.155703338966958,39.940903398286075],[-75.155720982615918,39.940908517809156],[-75.155732398074676,39.940912189076016],[-75.155739087271272,39.94091367298541],[-75.155750855147915,39.940915624967033],[-75.155758133742509,39.940914793070959],[-75.155769584329391,39.9409079466257],[-75.155772430271014,39.940902724714512],[-75.15577377890682,39.94089671027799],[-75.155775864127648,39.940887406660956],[-75.155833935424653,39.940628340783242],[-75.15583603751567,39.940618962762386],[-75.155835982455685,39.940611727230731],[-75.155832893345604,39.940604890704044],[-75.155827106211362,39.940599187004182],[-75.155819233323243,39.940595227355061],[-75.155810124736433,39.940593434639844],[-75.155795859613576,39.940591067573727],[-75.155115092844881,39.940477804363418],[-75.155112045392045,39.940477297521184],[-75.155047482253011,39.940466503139227],[-75.155042076199734,39.940490427244882]]]},"properties":{"OBJECTID_1":417,"OBJECTID":360,"ASSET_NAME":"Cianfrani Park","SITE_NAME":"Cianfrani Park","CHILD_OF":"Cianfrani Park","ADDRESS":"721 S 08TH ST","TYPE":"Land","USE_":"Park- Square\\Plaza","ACREAGE":0.61936800000000003,"ZIPCODE":"19147","ALLIAS":" ","GLOBALID":"96c91623-8f11-42bd-be4c-98afde3c0d58","Shape_Length":690.9139397644733,"Shape_Area":26979.535209833284}},{"type":"Feature","id":418,"geometry":{"type":"Polygon","coordinates":[[[-75.216268238379627,39.953012689370944],[-75.216214829906804,39.953267796001541],[-75.216207572213463,39.953302463911278],[-75.21623292736588,39.953325743585673],[-75.216252893549353,39.953328210928767],[-75.216824961794856,39.953399068261014],[-75.216943014780853,39.953413808804846],[-75.216949817541405,39.953381473414765],[-75.216995626008014,39.953162273879485],[-75.216710147779978,39.95312792368815],[-75.216724663834029,39.953048757907005],[-75.21673351912851,39.953000466070179],[-75.216690695151499,39.952995313617336],[-75.216378453023083,39.952957748733539],[-75.216327996208761,39.952951678834182],[-75.216281704415209,39.952945809024051],[-75.216268238379627,39.953012689370944]]]},"properties":{"OBJECTID_1":418,"OBJECTID":361,"ASSET_NAME":"Garden Court","SITE_NAME":"Garden Court","CHILD_OF":"Garden Court","ADDRESS":"4700-10 SPRUCE ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.58269700000000002,"ZIPCODE":"19143","ALLIAS":" ","GLOBALID":"bda0f80f-b4e9-4feb-90f8-ffb2ced8d22f","Shape_Length":693.2145057428877,"Shape_Area":25382.151405315137}},{"type":"Feature","id":419,"geometry":{"type":"Polygon","coordinates":[[[-75.199125273639709,39.973213860213122],[-75.198631356649599,39.973270904603204],[-75.198714275970303,39.973716780241062],[-75.199216181963962,39.97365910751072],[-75.199257264428269,39.97365347850991],[-75.199176009128735,39.973210194682935],[-75.199125273639709,39.973213860213122]]]},"properties":{"OBJECTID_1":419,"OBJECTID":362,"ASSET_NAME":"Clayborn & Lewis Playground","SITE_NAME":"Clayborn & Lewis Playground","CHILD_OF":"Clayborn & Lewis Playground","ADDRESS":"1101 N 38TH ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.58040700000000001,"ZIPCODE":"19104","ALLIAS":" ","GLOBALID":"27dcd8ca-9de9-49c2-b319-5fe5cf112d49","Shape_Length":635.3447982937389,"Shape_Area":25282.471145240459}},{"type":"Feature","id":420,"geometry":{"type":"Polygon","coordinates":[[[-75.102215950467354,40.00392771136935],[-75.102196082490792,40.003929401193638],[-75.102190068240986,40.003930577087317],[-75.102163010873895,40.003936927025634],[-75.102160136413261,40.003938169028785],[-75.102142445079323,40.003945814425883],[-75.102140919998234,40.003946735247432],[-75.102125197484114,40.003956231725134],[-75.102117146792239,40.003962667736218],[-75.102105554588448,40.003973449743491],[-75.102096864068244,40.003983733729306],[-75.102090230492081,40.003993338924978],[-75.102083389329934,40.004007785995455],[-75.102081509882069,40.004016200653808],[-75.102061975014294,40.004103648667993],[-75.102060461021026,40.00411317732452],[-75.102059336494591,40.004123625008887],[-75.102059840388321,40.00412981141924],[-75.102060623489876,40.004139443517353],[-75.102063795526163,40.004151030097638],[-75.102068069407153,40.004161642845347],[-75.102076686788749,40.004176487019379],[-75.10208897307399,40.004191109465232],[-75.10210158837485,40.004202132658406],[-75.102114184891306,40.004210723525411],[-75.102130571869168,40.004219250443789],[-75.102149542028911,40.004226283557102],[-75.102162836067279,40.004229997890832],[-75.102170374704968,40.004231194439967],[-75.102183020646109,40.004233200780028],[-75.102666362282974,40.004293701892706],[-75.102691550681882,40.004296613714025],[-75.102715466516344,40.004299379050316],[-75.102742072079607,40.004302455090929],[-75.102761615544978,40.004300856800683],[-75.102780694263316,40.004297234880475],[-75.102798957790654,40.00429165243132],[-75.102816064709131,40.004284211507048],[-75.10283169891089,40.004275056192931],[-75.102848869413165,40.004260995932235],[-75.102860484155485,40.004248101446578],[-75.102870355097451,40.004232632141928],[-75.102878394967021,40.004207721028344],[-75.102882661603232,40.004189944697409],[-75.102898526972865,40.004123833137953],[-75.102899049277369,40.004115305181145],[-75.102898956598594,40.00410310754895],[-75.102897603434883,40.004091745844903],[-75.102894444945107,40.004081340858747],[-75.102889036767934,40.004068474633627],[-75.102880275950085,40.004054059713198],[-75.10287518869049,40.004046996337884],[-75.102862623929994,40.004034133584767],[-75.102847877089758,40.004022725241093],[-75.102831225512631,40.004012990345267],[-75.102812986680135,40.004005110116807],[-75.102793509526663,40.003999240370732],[-75.102772536574861,40.003996455509018],[-75.102750577509724,40.003993539779984],[-75.102277680618386,40.00393325554046],[-75.102260673163656,40.003931176548519],[-75.102245548923676,40.003929328403572],[-75.102235935656111,40.003928153388834],[-75.102215950467354,40.00392771136935]]]},"properties":{"OBJECTID_1":420,"OBJECTID":363,"ASSET_NAME":"Merritt Square","SITE_NAME":"Merritt Square","CHILD_OF":"Merritt Square","ADDRESS":"1321 STEINBER ST","TYPE":"Land","USE_":"Park- Square\\Plaza","ACREAGE":0.56397699999999995,"ZIPCODE":"19124","ALLIAS":" ","GLOBALID":"f5a3ae97-917f-4dd4-9908-ff3ea5ea5b1b","Shape_Length":618.89312003506052,"Shape_Area":24566.7542484244}},{"type":"Feature","id":421,"geometry":{"type":"Polygon","coordinates":[[[-75.132928323665908,39.991279185356902],[-75.13291926725752,39.991284295813387],[-75.132912290562928,39.991291066523921],[-75.132907895966937,39.991299015181781],[-75.132905533739248,39.991310156559898],[-75.132902811891725,39.991322999884233],[-75.132901171345395,39.991330734722261],[-75.132800819907899,39.991804560050909],[-75.132786985217081,39.991869149953104],[-75.132828195925043,39.991875630029895],[-75.13300849536131,39.991899222948255],[-75.133024480887769,39.991901346216657],[-75.133154152628236,39.991918335193191],[-75.133177827112121,39.991920922966415],[-75.133185895918189,39.991881769964593],[-75.133289770235365,39.991390721385251],[-75.133295319437508,39.991364208183526],[-75.13329936978478,39.991344854596427],[-75.133296924630486,39.991331610547491],[-75.13329179177677,39.991326099994133],[-75.133284665074527,39.991322111769222],[-75.133276267917168,39.991320055211098],[-75.13326297288701,39.991317486035214],[-75.133177440310902,39.991302592815735],[-75.132975883962146,39.991278227135524],[-75.132949993703576,39.991275266227255],[-75.132928323665908,39.991279185356902]]]},"properties":{"OBJECTID_1":421,"OBJECTID":364,"ASSET_NAME":"Maguire Playground","SITE_NAME":"Maguire Playground","CHILD_OF":"Maguire Playground","ADDRESS":"155-59 W LEHIGH AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.56352599999999997,"ZIPCODE":"19133","ALLIAS":" ","GLOBALID":"3fb4767d-6c2c-46e9-8d4d-f67f3adb0741","Shape_Length":655.03993767615907,"Shape_Area":24547.100852660136}},{"type":"Feature","id":422,"geometry":{"type":"Polygon","coordinates":[[[-75.210388541507939,40.017591618363298],[-75.210537088197171,40.017811635916019],[-75.210685589180642,40.018032869495173],[-75.210920520408379,40.017933351129415],[-75.211063484569181,40.017879285211478],[-75.210847473949585,40.017515318379829],[-75.210782939724155,40.017420136737286],[-75.210388541507939,40.017591618363298]]]},"properties":{"OBJECTID_1":422,"OBJECTID":365,"ASSET_NAME":"La Noce Park","SITE_NAME":"La Noce Park","CHILD_OF":"La Noce Park","ADDRESS":"5119 ROCHELLE AVE","TYPE":"Land","USE_":"Park- Neighborhood","ACREAGE":0.51856000000000002,"ZIPCODE":"19128","ALLIAS":" ","GLOBALID":"9daf0ffe-8878-46fb-89aa-2336885e5d2c","Shape_Length":612.4923495859374,"Shape_Area":22588.399102429375}},{"type":"Feature","id":423,"geometry":{"type":"Polygon","coordinates":[[[-75.147175396339847,39.937103771471108],[-75.14717437452417,39.937108049761484],[-75.14716715020424,39.937138308823698],[-75.147145666456382,39.937228301006925],[-75.147140747756694,39.937249519277181],[-75.14705205806321,39.937632100585859],[-75.147046427221724,39.93765638598898],[-75.147045791147747,39.937658782688466],[-75.147036772217362,39.937692742960429],[-75.1470654039056,39.937698114130718],[-75.147352030179476,39.937750018698118],[-75.147381421695059,39.93775505022635],[-75.147389643942944,39.937718354369345],[-75.147401231178378,39.937665983202464],[-75.147447010665488,39.9374590769444],[-75.147509152586082,39.937180541287297],[-75.147509430889201,39.9371792951817],[-75.147512831603507,39.937164061280576],[-75.147518796761915,39.937134310636694],[-75.147470261796272,39.937125684848844],[-75.147468914383523,39.937125445235978],[-75.147233019767796,39.937083400609232],[-75.147181703903357,39.937074161062597],[-75.147175396339847,39.937103771471108]]]},"properties":{"OBJECTID_1":423,"OBJECTID":366,"ASSET_NAME":"Mario Lanza Park","SITE_NAME":"Mario Lanza Park","CHILD_OF":"Mario Lanza Park","ADDRESS":"214 CATHARINE ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.51528700000000005,"ZIPCODE":"19147","ALLIAS":" ","GLOBALID":"a205ec15-f065-405e-ac64-e0b2a8026d40","Shape_Length":654.67270961301051,"Shape_Area":22445.79305910521}},{"type":"Feature","id":424,"geometry":{"type":"Polygon","coordinates":[[[-75.196119764297819,39.964105930905767],[-75.196122427556091,39.964118686278368],[-75.196125310014452,39.964132494401298],[-75.196130568582518,39.964146917641855],[-75.196135356191945,39.964151567085963],[-75.196145757795563,39.964156544216273],[-75.196157735617206,39.964158527244031],[-75.196166278485165,39.964157567710139],[-75.196180824268822,39.964155934488232],[-75.19620358598057,39.964153379501113],[-75.19686403656641,39.964080532547221],[-75.19690109991555,39.964076731519491],[-75.196895780618746,39.964048653107724],[-75.196855127996557,39.963831035605665],[-75.19673104073631,39.963844055418754],[-75.196614141337534,39.963856493533385],[-75.196489195682275,39.963870074232261],[-75.196420152584622,39.963877757612927],[-75.19637197542194,39.963882666241467],[-75.196305910093372,39.963889722954868],[-75.19629384944254,39.96382101041403],[-75.19623739382547,39.963827104258691],[-75.196173604431038,39.963834389051051],[-75.196116803290479,39.96384076527039],[-75.19607043948335,39.96384556006344],[-75.196073545800004,39.96386294386258],[-75.196119764297819,39.964105930905767]]]},"properties":{"OBJECTID_1":424,"OBJECTID":367,"ASSET_NAME":"37th & Mt Vernon Playground","SITE_NAME":"37th & Mt Vernon Playground","CHILD_OF":"37th & Mt Vernon Playground","ADDRESS":"608-16 N 37TH ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.49123800000000001,"ZIPCODE":"19104","ALLIAS":" ","GLOBALID":"f0e5cb55-ee2c-4a8d-8bfd-beda9dd9f76e","Shape_Length":665.00138139430021,"Shape_Area":21398.272523489024}},{"type":"Feature","id":425,"geometry":{"type":"Polygon","coordinates":[[[-75.190898274031099,39.964091050081812],[-75.190898519340905,39.964097033745922],[-75.19092647776155,39.964094170434642],[-75.191470644141532,39.964034156255053],[-75.19148792703578,39.964031980085245],[-75.19150253101067,39.96403014152002],[-75.191513398713141,39.964027272677704],[-75.191518629984586,39.964023646540696],[-75.191523523588501,39.964018726233761],[-75.191526775652832,39.964013336837887],[-75.191527141247064,39.964004499789894],[-75.191524799824577,39.963991367638265],[-75.191490377523735,39.963796284952295],[-75.191484756725046,39.963763928735581],[-75.191439681715764,39.963768817979073],[-75.191172315533905,39.963796013476106],[-75.191168344106856,39.963778502101412],[-75.191125719772444,39.963784480235482],[-75.191083875235705,39.963788625073917],[-75.191034612028631,39.963793973969686],[-75.190988903096169,39.963798966930824],[-75.190941523039442,39.963803809974905],[-75.190909437795682,39.963642316545737],[-75.190902404106907,39.963605387696354],[-75.190725812685201,39.963624537121412],[-75.19073040934444,39.963662373900661],[-75.190752021715667,39.963780997150067],[-75.190841779705252,39.96377339178099],[-75.190898274031099,39.964091050081812]]]},"properties":{"OBJECTID_1":425,"OBJECTID":368,"ASSET_NAME":"Wright Recreation Center","SITE_NAME":"James L Wright Recreation Center","CHILD_OF":"James L Wright Recreation Center","ADDRESS":"3320-50 HAVERFORD AVE","TYPE":"Land","USE_":"Recreation Center","ACREAGE":0.48986200000000002,"ZIPCODE":"19104","ALLIAS":"Mantua Recreation Center","GLOBALID":"d81142df-e420-4f97-989d-1f7fa512bc75","Shape_Length":756.28399804077662,"Shape_Area":21338.342402518094}},{"type":"Feature","id":426,"geometry":{"type":"Polygon","coordinates":[[[-75.128093593447133,39.983362887019254],[-75.127857420313788,39.983490627012479],[-75.127823086411468,39.983508432549307],[-75.127829423019833,39.983515593625143],[-75.127836890876949,39.983524004141906],[-75.128049609030825,39.983763582516453],[-75.128068951114997,39.983785261607245],[-75.128100053131561,39.983767131676096],[-75.128154445123855,39.9837379880383],[-75.128202074681639,39.9837130751893],[-75.128242789053346,39.983691404825244],[-75.128281974251095,39.983670812283258],[-75.128322135152345,39.983648822899667],[-75.128368256012095,39.983625486556534],[-75.12841029483512,39.983602637211973],[-75.128455133860356,39.983578885915144],[-75.128500692036752,39.98355385985689],[-75.128543360558282,39.983530413051881],[-75.128576820434589,39.983514975961953],[-75.128568653496316,39.983505708869366],[-75.128442043429985,39.983360535691787],[-75.128430613899098,39.983347430473152],[-75.128329560970457,39.98323541307213],[-75.128298540964465,39.983251972640325],[-75.128158589215587,39.983327815403207],[-75.128122116021004,39.983347580542706],[-75.128093364089892,39.983313974034949],[-75.128063625630347,39.983329252726172],[-75.128093593447133,39.983362887019254]]]},"properties":{"OBJECTID_1":426,"OBJECTID":369,"ASSET_NAME":"Hagert Playground","SITE_NAME":"Hagert Playground","CHILD_OF":"Hagert Playground","ADDRESS":"2024-40 E HAGERT ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.489757,"ZIPCODE":"19125","ALLIAS":" ","GLOBALID":"4d6bdf9b-066c-4684-bd1f-0f7cc85a4981","Shape_Length":621.5093596675124,"Shape_Area":21333.694484702071}},{"type":"Feature","id":427,"geometry":{"type":"Polygon","coordinates":[[[-75.168694784705934,39.91583577090006],[-75.168724744302921,39.915692559447166],[-75.168724882436507,39.915683466799784],[-75.168722192501988,39.915675666510992],[-75.168715589745787,39.915668081771685],[-75.168705877899711,39.915658774570474],[-75.168691624915212,39.915653503495705],[-75.167823233489898,39.91554422683086],[-75.16780583664854,39.915542156429098],[-75.167788825423344,39.915544227671603],[-75.167775445885709,39.915548371050178],[-75.167766189393717,39.915554557987882],[-75.167760461262645,39.915561686664319],[-75.167756025792286,39.915572150283239],[-75.16772822909401,39.915712214336814],[-75.167729767914423,39.91572348557014],[-75.167735427468543,39.915731501435552],[-75.167741995278448,39.915738709722667],[-75.167754849830487,39.915744815297657],[-75.167768055168111,39.91574938713255],[-75.168636798741701,39.915862430224522],[-75.168655138749614,39.915864070323579],[-75.168668132683806,39.915861084075381],[-75.168678542454288,39.915856725964133],[-75.168688881297115,39.915846315932029],[-75.168694784705934,39.91583577090006]]]},"properties":{"OBJECTID_1":427,"OBJECTID":370,"ASSET_NAME":"Mollbore Terrace Park","SITE_NAME":"Mollbore Terrace Park","CHILD_OF":"Mollbore Terrace Park","ADDRESS":"1226 MOLLBORE TER","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.48216900000000001,"ZIPCODE":"19148","ALLIAS":" ","GLOBALID":"b63c5fd2-ad2d-4af4-9798-09a2f6773d63","Shape_Length":681.32398984061058,"Shape_Area":21003.202124665597}},{"type":"Feature","id":428,"geometry":{"type":"Polygon","coordinates":[[[-75.112408991474084,40.001223632533488],[-75.112288506757054,40.001208032590874],[-75.112207979869055,40.001580090412425],[-75.112208522122017,40.001600662603082],[-75.112219528884665,40.00161762333736],[-75.112234671071533,40.001626842824336],[-75.112256679195781,40.001634516221415],[-75.112976642011176,40.00172421070679],[-75.11301991419927,40.0015102421441],[-75.112367708114959,40.001427376651208],[-75.112408991474084,40.001223632533488]]]},"properties":{"OBJECTID_1":428,"OBJECTID":371,"ASSET_NAME":"Ramblers Playground","SITE_NAME":"Ramblers Playground","CHILD_OF":"Ramblers Playground","ADDRESS":"851 E TIOGA ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.45942,"ZIPCODE":"19134","ALLIAS":" ","GLOBALID":"26e07181-2a54-4880-b765-f009bf5b9768","Shape_Length":741.73215942065019,"Shape_Area":20012.262652630132}},{"type":"Feature","id":429,"geometry":{"type":"Polygon","coordinates":[[[-75.151440050138959,39.950302006998044],[-75.151773238487294,39.950346481695085],[-75.152052687563071,39.950382613984914],[-75.152089807060975,39.950387119102089],[-75.152124633086359,39.95022691977529],[-75.152125177351536,39.950224258773432],[-75.152088985310272,39.950219228651846],[-75.15201197954292,39.950209315086191],[-75.151963795161549,39.950203112299171],[-75.151948033109164,39.950201083015877],[-75.15180467758168,39.950182629583054],[-75.151853412581957,39.949963051845906],[-75.151853579255459,39.949961815816621],[-75.151859432864356,39.94993346173068],[-75.151857445328631,39.949933208578038],[-75.151828022850381,39.949948558709806],[-75.151760772172025,39.949940531004707],[-75.15154589922966,39.949914880894532],[-75.151544737573403,39.949912991269485],[-75.151532619549556,39.949893279047558],[-75.151527712931809,39.949892702973912],[-75.151522651261445,39.949921498465166],[-75.151440050138959,39.950302006998044]]]},"properties":{"OBJECTID_1":429,"OBJECTID":372,"ASSET_NAME":"Atwater Kent Museum","SITE_NAME":"Atwater Kent Museum","CHILD_OF":"Atwater Kent Museum","ADDRESS":"13-17 S 07TH ST","TYPE":"Land","USE_":"Museum","ACREAGE":0.43907600000000002,"ZIPCODE":"19106","ALLIAS":" ","GLOBALID":"182f0020-2d9b-4be2-92cb-ca4ec5ca3a45","Shape_Length":679.91727280036537,"Shape_Area":19126.06447666747}},{"type":"Feature","id":430,"geometry":{"type":"Polygon","coordinates":[[[-75.185508383408347,39.969023700962694],[-75.185429078247267,39.968964002537909],[-75.185473141310382,39.968878575980298],[-75.18518421836886,39.968657156022978],[-75.18516176929856,39.968675227648482],[-75.185100854136138,39.968721075335601],[-75.184963196992214,39.968795443584582],[-75.184921185248811,39.968856301115622],[-75.184875419985275,39.968890746298413],[-75.185262606201633,39.969198865589206],[-75.185273697169379,39.96921052118288],[-75.185508383408347,39.969023700962694]]]},"properties":{"OBJECTID_1":430,"OBJECTID":373,"ASSET_NAME":"Lloyd Hall","SITE_NAME":"East Fairmount Park","CHILD_OF":"East Fairmount Park","ADDRESS":"1 JOHN B KELLY DR","TYPE":"Land","USE_":"Recreation Center","ACREAGE":0.43001200000000001,"ZIPCODE":"19130","ALLIAS":" ","GLOBALID":"19ddd1d3-93d7-4795-b85e-f0d621766c3f","Shape_Length":558.0966759180335,"Shape_Area":18731.286593258432}},{"type":"Feature","id":431,"geometry":{"type":"Polygon","coordinates":[[[-75.080699799434271,40.014208319384622],[-75.080721937300694,40.014218225593432],[-75.080874242679656,40.014048633181666],[-75.080876157839256,40.014046358424949],[-75.080877591087969,40.014043882345746],[-75.080878508372805,40.014041266324384],[-75.080878888519322,40.014038572040299],[-75.080878720748316,40.014035865018975],[-75.080878010706712,40.014033210266483],[-75.080876774578186,40.014030673034028],[-75.08087504167284,40.014028312570503],[-75.080276691803789,40.013687793010405],[-75.080273745588343,40.013686160298192],[-75.08027048958121,40.013684925850839],[-75.080267012691493,40.013684123272071],[-75.080263410177821,40.013683773698652],[-75.080259782441971,40.013683886673618],[-75.080256230310724,40.013684460937128],[-75.080252849394213,40.013685478889485],[-75.080249734521374,40.013686913001344],[-75.080246971615196,40.013688723822831],[-75.080244636451482,40.013690861756551],[-75.080080687734338,40.013870594127923],[-75.080098915462472,40.013881471863158],[-75.080699799434271,40.014208319384622]]]},"properties":{"OBJECTID_1":431,"OBJECTID":374,"ASSET_NAME":"Wilmot Park Playground","SITE_NAME":"Wilmot Park Playground","CHILD_OF":"Wilmot Park Playground","ADDRESS":"1801 MEADOW ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.42354999999999998,"ZIPCODE":"19124","ALLIAS":" ","GLOBALID":"55900259-eab9-4aad-a92d-f7c4c42283de","Shape_Length":601.4322640843086,"Shape_Area":18449.50081101742}},{"type":"Feature","id":432,"geometry":{"type":"Polygon","coordinates":[[[-75.147074970234684,39.999255791903899],[-75.146422268216497,39.999172947752996],[-75.146410595969158,39.999172644275774],[-75.146400230570976,39.999173211991263],[-75.146391474922737,39.999177933882052],[-75.146383110418981,39.99918687601572],[-75.146375791958476,39.999198510698164],[-75.146301044736859,39.999551378810374],[-75.146301216511901,39.999559853204751],[-75.146302521029384,39.999567323424337],[-75.146306788616698,39.999573688622206],[-75.146316020168584,39.999580724141317],[-75.146325601080051,39.999584912247983],[-75.146336707043943,39.999585717371254],[-75.146346246133859,39.999582838721203],[-75.147100904689722,39.999304175506559],[-75.147106056685018,39.999299604314722],[-75.1471074274871,39.999292511926946],[-75.147106827176671,39.999272262290205],[-75.147105281614927,39.999267441023093],[-75.147101137823185,39.999263529439474],[-75.147093133107106,39.999258595952185],[-75.147088168317808,39.999256969662355],[-75.14708373754182,39.999256388050703],[-75.147074970234684,39.999255791903899]]]},"properties":{"OBJECTID_1":432,"OBJECTID":375,"ASSET_NAME":"Ross Park","SITE_NAME":"Ross Park","CHILD_OF":"Ross Park","ADDRESS":"1000 W GLENWOOD AVE","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.41761300000000001,"ZIPCODE":"19133","ALLIAS":" ","GLOBALID":"9ae5d3d1-ef3a-4aec-bdf2-0b88f37bf2ca","Shape_Length":613.12801671851093,"Shape_Area":18191.152576249115}},{"type":"Feature","id":433,"geometry":{"type":"Polygon","coordinates":[[[-75.156921483682268,39.921094699969316],[-75.156917761343209,39.921087304915851],[-75.156909722173339,39.921082485561662],[-75.156897312325057,39.921079659530427],[-75.156887546329045,39.921080781188813],[-75.1560660296132,39.921236406148495],[-75.156055614966476,39.921238732142619],[-75.156043257948085,39.921244672334659],[-75.156036202006575,39.921251071233662],[-75.156029551107594,39.921260624755575],[-75.156026583147408,39.921269556998013],[-75.156025394915929,39.921281314555031],[-75.156028685186541,39.921292240872681],[-75.156034187170619,39.921302461269477],[-75.156043252008928,39.921310147507675],[-75.156054258052691,39.921314219519644],[-75.156068233344598,39.92131754418017],[-75.156822874677246,39.921415218697511],[-75.156833558698509,39.921415800909891],[-75.156843270861771,39.921414097780918],[-75.156852012301059,39.921410110237581],[-75.156859621438741,39.921402092054123],[-75.156864748289337,39.921391872404755],[-75.156867285124008,39.921378287439119],[-75.156921483682268,39.921094699969316]]]},"properties":{"OBJECTID_1":433,"OBJECTID":376,"ASSET_NAME":"Weinberg Park","SITE_NAME":"Weinberg Park","CHILD_OF":"Weinberg Park","ADDRESS":"2201-09 S 06TH ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.416493,"ZIPCODE":"19148","ALLIAS":" ","GLOBALID":"dd719cf6-8370-4077-a22e-13d3e9fc6244","Shape_Length":630.96493837909168,"Shape_Area":18142.403372242145}},{"type":"Feature","id":434,"geometry":{"type":"Polygon","coordinates":[[[-75.133076942571805,40.002772885070378],[-75.133110034330713,40.002776548822588],[-75.133251103773745,40.002796078417894],[-75.133258489091489,40.002760556265663],[-75.133397049625358,40.002778851754918],[-75.133429811681978,40.002782254711725],[-75.133472755864901,40.002583434877685],[-75.133474268878103,40.002576430557312],[-75.133520449813219,40.002363051841009],[-75.133525234203574,40.002340961438691],[-75.133527694003675,40.002329606023736],[-75.133523779409416,40.002314988679792],[-75.133518348732693,40.002308732529848],[-75.133511032245323,40.002303740785095],[-75.133502302322086,40.002300342273344],[-75.133486518733918,40.002298235444314],[-75.133471840175332,40.002296275437715],[-75.133241210837724,40.002265484477263],[-75.133225916828351,40.002263442833147],[-75.133214421002421,40.002264658471638],[-75.133203664460709,40.002268002061911],[-75.133194301655834,40.002273273177387],[-75.133186898252006,40.002280143224311],[-75.133181912897939,40.002288202780242],[-75.133179643657499,40.002296953164908],[-75.133176400342762,40.002311977707222],[-75.13310060735003,40.002663108443997],[-75.133099071229765,40.00267022486171],[-75.133076942571805,40.002772885070378]]]},"properties":{"OBJECTID_1":434,"OBJECTID":377,"ASSET_NAME":"Reed Playground","SITE_NAME":"Reed Playground","CHILD_OF":"Reed Playground","ADDRESS":"213 W ONTARIO ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.41163300000000003,"ZIPCODE":"19140","ALLIAS":" ","GLOBALID":"13ac3056-8a26-4fab-9074-ca362984a1c6","Shape_Length":565.92449668863196,"Shape_Area":17930.666471439832}},{"type":"Feature","id":435,"geometry":{"type":"Polygon","coordinates":[[[-75.213215416602878,40.021383804666385],[-75.213205479925847,40.021388321712578],[-75.21287538208118,40.021537351656754],[-75.2128531634593,40.021547299746985],[-75.212839154391148,40.021553571134078],[-75.212827089219772,40.021558972755329],[-75.212817901633443,40.021570598995197],[-75.212813627265575,40.021584185345652],[-75.212814501241724,40.021593410177118],[-75.212822185041361,40.021603235067374],[-75.212825088532952,40.021606948270147],[-75.212922915640149,40.021732255693486],[-75.213015703001446,40.021856990371305],[-75.213036959711161,40.021846254245688],[-75.213430886783314,40.021673208437001],[-75.21347247065637,40.021656878232456],[-75.213277081689654,40.021404239273799],[-75.213268033127562,40.021392800307844],[-75.213260600643693,40.021386942698392],[-75.213241328506371,40.02138029735648],[-75.213230694371816,40.021379927288635],[-75.213215416602878,40.021383804666385]]]},"properties":{"OBJECTID_1":435,"OBJECTID":378,"ASSET_NAME":"Wissahickon Neighbors Playground","SITE_NAME":"Wissahickon Neighbors Playground","CHILD_OF":"Wissahickon Neighbors Playground","ADDRESS":"3901 TERRACE ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.40509600000000001,"ZIPCODE":"19128","ALLIAS":" ","GLOBALID":"2580038b-844d-41e1-903e-8f9e2823f32d","Shape_Length":526.45284449494488,"Shape_Area":17645.867958351595}},{"type":"Feature","id":436,"geometry":{"type":"Polygon","coordinates":[[[-75.159853739046284,39.944960172730724],[-75.159843981158659,39.944964187168651],[-75.159829008190016,39.944976585849354],[-75.159824518377647,39.94498436927298],[-75.159822066989548,39.944995182900321],[-75.159769494118876,39.945227095450633],[-75.159751448167512,39.945311050279912],[-75.159767603071472,39.945312790948186],[-75.159912013565489,39.945330923260741],[-75.159917857450623,39.945331656199741],[-75.16011448413623,39.945356343703217],[-75.160464516411622,39.945399971046371],[-75.160481553817803,39.945401962197252],[-75.160484229526077,39.94538934527877],[-75.160466745935196,39.94538818830911],[-75.160213754820589,39.945355701843752],[-75.160261538735227,39.945136989937716],[-75.160276780727841,39.945068415187713],[-75.160284979610196,39.945031527005781],[-75.160286980821994,39.945009455796296],[-75.160167848969706,39.944994491439758],[-75.15988686543254,39.944960561263009],[-75.159864402234206,39.944957897877821],[-75.159853739046284,39.944960172730724]]]},"properties":{"OBJECTID_1":436,"OBJECTID":379,"ASSET_NAME":"Louis Kahn Park","SITE_NAME":"Louis Kahn Park","CHILD_OF":"Louis Kahn Park","ADDRESS":"328-38 S 11TH ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.40307900000000002,"ZIPCODE":"19107","ALLIAS":" ","GLOBALID":"6d7b4f2e-b663-4941-af65-ad4b5f79f2aa","Shape_Length":672.88878619661637,"Shape_Area":17558.022603676753}},{"type":"Feature","id":437,"geometry":{"type":"Polygon","coordinates":[[[-75.143219157171401,39.973670573122121],[-75.143250283814652,39.973518308197214],[-75.143209397379621,39.973513930267401],[-75.143035111780435,39.973491191750817],[-75.143060574333191,39.973366017183785],[-75.142667993690125,39.973310446318791],[-75.142643587820757,39.973438674964825],[-75.142467746085472,39.973416060601416],[-75.142424808562893,39.973410568970237],[-75.142401312653078,39.973523317956143],[-75.14244527273182,39.973529905048125],[-75.142620529833877,39.973553021540212],[-75.142613427377555,39.973591209491175],[-75.143177946465968,39.973665243544936],[-75.143219157171401,39.973670573122121]]]},"properties":{"OBJECTID_1":437,"OBJECTID":380,"ASSET_NAME":"Benson Park","SITE_NAME":"Benson Park","CHILD_OF":"Benson Park","ADDRESS":"1440R-44 N 04TH ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.40099800000000002,"ZIPCODE":"19122","ALLIAS":" ","GLOBALID":"c1389b03-d471-4b86-8cc8-b1d1490e6a22","Shape_Length":674.91750653305098,"Shape_Area":17467.378070660525}},{"type":"Feature","id":438,"geometry":{"type":"Polygon","coordinates":[[[-75.143621180589818,39.950894879641808],[-75.143592538241265,39.951014108171179],[-75.144051459259941,39.951073232130732],[-75.144080164349461,39.950956681869123],[-75.143621180589818,39.950894879641808]]]},"properties":{"OBJECTID_1":438,"OBJECTID":381,"ASSET_NAME":"Christ Church Park","SITE_NAME":"Christ Church Park","CHILD_OF":"Christ Church Park","ADDRESS":"201-17 MARKET ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.13092200000000001,"ZIPCODE":"19106","ALLIAS":" ","GLOBALID":"abace4bd-1faa-485a-8249-9622ca64a003","Shape_Length":348.47285766387489,"Shape_Area":5702.9241511211967}},{"type":"Feature","id":439,"geometry":{"type":"Polygon","coordinates":[[[-75.129172088368122,40.001745660189428],[-75.129165133903101,40.001750330017458],[-75.129160962106042,40.00175666629908],[-75.129159253372421,40.001763418322135],[-75.129156587890051,40.001773952634515],[-75.129154020668338,40.001784096342824],[-75.129115410105626,40.001951767099236],[-75.129106066692358,40.001996652843687],[-75.129140896249851,40.002001660311826],[-75.129316271156057,40.002026232644504],[-75.12929794289424,40.002110089901137],[-75.129279318044112,40.00219619655401],[-75.129471320724662,40.002222809721999],[-75.129517518497977,40.002227029584922],[-75.129529467706647,40.002167138140742],[-75.129597066416693,40.001847531206465],[-75.129600174474362,40.001832206321403],[-75.129602957099536,40.001818483240292],[-75.129601745672488,40.001810741904784],[-75.129597295886015,40.001803730364777],[-75.129590101176603,40.001798232963395],[-75.129580960667695,40.001794854509214],[-75.129568777132121,40.001793337491144],[-75.12955602805846,40.001791750797821],[-75.129541711921007,40.001789967949421],[-75.12952817814589,40.001788283149416],[-75.1292345210382,40.001749567838147],[-75.129213424892157,40.001746782298696],[-75.129200697042762,40.001745101442346],[-75.129190094179904,40.001743701562432],[-75.129172088368122,40.001745660189428]]]},"properties":{"OBJECTID_1":439,"OBJECTID":382,"ASSET_NAME":"Schmidt Playground","SITE_NAME":"Schmidt Playground","CHILD_OF":"Schmidt Playground","ADDRESS":"113-23 W ONTARIO ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.37391600000000003,"ZIPCODE":"19140","ALLIAS":" ","GLOBALID":"8a9cb95d-8b93-4770-b15a-b44cceeba529","Shape_Length":562.55026722949867,"Shape_Area":16287.756364388511}},{"type":"Feature","id":440,"geometry":{"type":"Polygon","coordinates":[[[-75.183123272759588,39.94589096677079],[-75.183116256703485,39.94589553646945],[-75.183112426437773,39.945905112299549],[-75.183107183082129,39.945927459878448],[-75.183056493439409,39.946144927096135],[-75.183047022907076,39.946185899486629],[-75.183086035028026,39.946191728085957],[-75.183505024845005,39.946242806058919],[-75.183557785755767,39.946248827692798],[-75.183561802999407,39.94622837992587],[-75.183610550223335,39.945980195034778],[-75.183612606845358,39.945969722644541],[-75.183611679794467,39.945962250540013],[-75.183608209162912,39.945955238705984],[-75.183600762860124,39.945948698349163],[-75.183591981323929,39.945943603072543],[-75.18358582833379,39.945941594004459],[-75.183577701952359,39.945940662541922],[-75.18356713482936,39.945939452117074],[-75.183567006611952,39.945939437535159],[-75.18355945602282,39.945938572113938],[-75.183542628639543,39.945936643167997],[-75.183542519068183,39.945936630805242],[-75.183173372064289,39.945892197815766],[-75.183156438730606,39.945890068219249],[-75.18314608348976,39.945888765187568],[-75.183135353649959,39.945888298920757],[-75.183123272759588,39.94589096677079]]]},"properties":{"OBJECTID_1":440,"OBJECTID":383,"ASSET_NAME":"OConnor Pool","SITE_NAME":"OConnor Pool","CHILD_OF":"OConnor Pool","ADDRESS":"2601-13 SOUTH ST","TYPE":"Land","USE_":"Pool","ACREAGE":0.36727500000000002,"ZIPCODE":"19146","ALLIAS":" ","GLOBALID":"43152d1d-dded-41a9-aa9b-4fd917bb8ad5","Shape_Length":502.93144694232399,"Shape_Area":15998.400029844937}},{"type":"Feature","id":441,"geometry":{"type":"Polygon","coordinates":[[[-75.14762781668037,39.944036038269516],[-75.147598426589084,39.94417242320408],[-75.147568785228046,39.944310414360778],[-75.147565177129621,39.944327111328924],[-75.147591642928745,39.944330362612611],[-75.147839338945317,39.944361133364801],[-75.148029599966875,39.944385100850852],[-75.148032910754523,39.944370418118233],[-75.148092639389134,39.944096893793265],[-75.148098128320129,39.944068155873047],[-75.147979461313739,39.944053564132453],[-75.147659657693168,39.944012942172236],[-75.147632901487754,39.944009543753211],[-75.14762781668037,39.944036038269516]]]},"properties":{"OBJECTID_1":441,"OBJECTID":384,"ASSET_NAME":"Delancey Park","SITE_NAME":"Delancey Park","CHILD_OF":"Delancey Park","ADDRESS":"311-19 DELANCEY ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.35488599999999998,"ZIPCODE":"19106","ALLIAS":" ","GLOBALID":"77d196b0-8bb9-4ce8-8daa-8d3e39aff1a2","Shape_Length":498.38454339684648,"Shape_Area":15458.779393823022}},{"type":"Feature","id":442,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.150205160464168,39.940791156606998],[-75.15055687807839,39.940835141385094],[-75.150572715524362,39.940858062794526],[-75.150682839005839,39.940873217007031],[-75.150698339311631,39.940872055472823],[-75.150713384606405,39.940868957241626],[-75.150727571259367,39.940864008674595],[-75.150740516070783,39.940857343449188],[-75.15074894588345,39.940848449492456],[-75.150754954908194,39.940838456391248],[-75.150758315106614,39.940827756328339],[-75.15075967512378,39.940818120093802],[-75.150758849941468,39.940808447853158],[-75.150755869441397,39.940799029511261],[-75.150750823426606,39.940790149122634],[-75.150739636630846,39.940780078077509],[-75.150726185935625,39.940771814532155],[-75.150710945917879,39.940765651260527],[-75.150579898724445,39.940745917809792],[-75.150574810602748,39.940747044100689],[-75.150571775328743,39.940750381169664],[-75.150572140778209,39.940754444948489],[-75.150613702700099,39.940799383757856],[-75.150210934488683,39.940750652328369],[-75.149699827764863,39.940684683872348],[-75.149645809429899,39.940629532148172],[-75.149530758851157,39.940614125555662],[-75.149512516986377,39.940616821381617],[-75.149495397671188,39.94062236195284],[-75.149480135621602,39.940630512543478],[-75.149470870094717,39.940640288483074],[-75.149463667007126,39.940651044643168],[-75.149458688457287,39.940662521601183],[-75.149457399566984,39.940673934449535],[-75.149459196653453,39.940685305541372],[-75.149464001250109,39.940696146545896],[-75.14946842920763,39.940704288560283],[-75.149475009703423,39.940711515286914],[-75.149483435823853,39.940717496299968],[-75.149493329448134,39.940721957224504],[-75.149504227900849,39.940724692048114],[-75.149584212913879,39.94073513732144],[-75.149655050725187,39.940744068673609],[-75.149689127894106,39.940725889176854],[-75.150205160464168,39.940791156606998]]],[[[-75.149163562229319,39.940659243614434],[-75.149194153262201,39.940678693864669],[-75.149209620971405,39.940679270764505],[-75.149224818247092,39.940676973578285],[-75.149238851559176,39.940671935218596],[-75.149250420921206,39.940662766566632],[-75.149259318073831,39.940651973146863],[-75.149265169876543,39.940640006920823],[-75.149266951094546,39.940626986101861],[-75.149265617482243,39.940613935199174],[-75.149261213182129,39.940601291308006],[-75.149254262926974,39.940592043301699],[-75.149245219150274,39.940583942577845],[-75.149234385018346,39.940577264515021],[-75.149222140234926,39.940572242076925],[-75.149151237771136,39.940563537845513],[-75.149145706720489,39.940564859462192],[-75.149141297974666,39.94056774727536],[-75.149138715204813,39.940571737898473],[-75.149138374046075,39.940576186615068],[-75.149179374774661,39.940617227136173],[-75.148614953916038,39.940546646178952],[-75.148071433717377,39.940484513315013],[-75.148021660479273,39.940428096552488],[-75.14801888605723,39.940427216384364],[-75.148015892079201,39.940427148462192],[-75.148013055131344,39.940427901329301],[-75.148000744486893,39.940435149182989],[-75.147990218450147,39.940443907088763],[-75.147981796940826,39.940453921008583],[-75.147975717121085,39.940464897184007],[-75.14797217200389,39.940475891218107],[-75.14797207654739,39.9404872194036],[-75.147975443427597,39.940498245005564],[-75.147981967833474,39.940508705218214],[-75.147991058517945,39.940517961318527],[-75.148002344288656,39.940525649882254],[-75.148010133844807,39.940528350361113],[-75.148018082101828,39.94053075800359],[-75.148026176401586,39.940532867116247],[-75.148045226162722,39.94051353536436],[-75.148679866808109,39.94059828013296],[-75.149163562229319,39.940659243614434]]],[[[-75.149314722845247,39.940585336581421],[-75.149309704735387,39.940587263610048],[-75.149306071849324,39.940590554659224],[-75.149304414555061,39.940594678898698],[-75.149304999269319,39.940598975613511],[-75.14930785736837,39.940614339766746],[-75.149308890067843,39.940629840030333],[-75.149308079934215,39.940645350767049],[-75.14930429921391,39.940655961066277],[-75.149298735161238,39.940666097536969],[-75.149291485785497,39.940675584900021],[-75.149288567234379,39.940681192454392],[-75.149288653315125,39.940687232151738],[-75.149291737994574,39.940692791120341],[-75.149299473258537,39.940696300297432],[-75.149308391080112,39.940697079162369],[-75.149316951505611,39.940694992783399],[-75.149326962636877,39.940685218444564],[-75.1493347799329,39.940674318540715],[-75.149340196576787,39.940662589323914],[-75.149343061441215,39.940650340022309],[-75.149347045013826,39.940636569933879],[-75.149348076817589,39.940622485134334],[-75.149346127456667,39.940608456178062],[-75.149341252772942,39.940594859155922],[-75.149336441958781,39.940590145852184],[-75.149329983303318,39.940586801678435],[-75.149322504857892,39.940585146321695],[-75.149314722845247,39.940585336581421]]],[[[-75.147934472556898,39.940408540516813],[-75.14792839254919,39.940411053386192],[-75.147924020263574,39.940415158360423],[-75.147917292541223,39.940423734828677],[-75.14791205762738,39.940430406164957],[-75.147906973062007,39.940439692974714],[-75.147901877068662,39.940450348177407],[-75.147898411940488,39.940460597977982],[-75.14789724358225,39.940464056624123],[-75.147896406888904,39.940474352541422],[-75.147896590226679,39.940484666194337],[-75.147897787615534,39.940494939781743],[-75.147899373795667,39.940499736768025],[-75.147901878003537,39.940507307203909],[-75.147905121429446,39.940512202156839],[-75.1479105408647,39.940515783230921],[-75.147917321330553,39.940517507541564],[-75.147921234410632,39.940517294475612],[-75.147924443707979,39.940517119504094],[-75.147930840558075,39.940514677795456],[-75.14793555211746,39.940510547180146],[-75.147935009318871,39.940496751031674],[-75.147934971171168,39.940482951014786],[-75.147935428007614,39.940469155019407],[-75.147941102441564,39.940456201817042],[-75.147946947138735,39.940443295726233],[-75.147952950541637,39.940430432880675],[-75.147956074757204,39.940424775962526],[-75.147956196600816,39.940418628350855],[-75.147953294089504,39.940412900480098],[-75.147947945708182,39.940409542671318],[-75.147942143288432,39.940408199157815],[-75.147934472556898,39.940408540516813]]]]},"properties":{"OBJECTID_1":442,"OBJECTID":385,"ASSET_NAME":"Bainbridge Green","SITE_NAME":"Bainbridge Green","CHILD_OF":"Bainbridge Green","ADDRESS":"300-400 BAINBRIDGE ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.34839799999999999,"ZIPCODE":"19147","ALLIAS":" ","GLOBALID":"c8e82539-5353-4469-8c57-59c0dad73d1f","Shape_Length":1859.4036068482992,"Shape_Area":15176.182650606444}},{"type":"Feature","id":443,"geometry":{"type":"Polygon","coordinates":[[[-75.171920311209007,40.034220236212342],[-75.172444500541303,40.034535249460667],[-75.172454928621946,40.034536189880299],[-75.172463362510015,40.034536862094754],[-75.172474069678813,40.034535515700803],[-75.172484148455155,40.034532691059432],[-75.172490691447635,40.034528924800391],[-75.172612434095115,40.034411472673369],[-75.172617770090838,40.03440232731181],[-75.172620323180283,40.034392724857092],[-75.172620671757514,40.034385892197797],[-75.172617556728085,40.034378871890063],[-75.172613110800839,40.034373439032201],[-75.172608547621763,40.034369704653216],[-75.172088167591653,40.034066188956572],[-75.172080433983737,40.034062450069243],[-75.172069481249281,40.034061159958327],[-75.17206017256602,40.034061671830322],[-75.172049394471202,40.034062264247282],[-75.172039386739058,40.034065842789012],[-75.172032039933967,40.034071546175845],[-75.171915561089236,40.034179769656149],[-75.171911608001878,40.034184907692925],[-75.171908319354301,40.034191901411653],[-75.171906920071294,40.034198034726408],[-75.171909580141175,40.034205458407527],[-75.171913766453656,40.034213403795185],[-75.171920311209007,40.034220236212342]]]},"properties":{"OBJECTID_1":443,"OBJECTID":386,"ASSET_NAME":"Market Square","SITE_NAME":"Market Square","CHILD_OF":"Market Square","ADDRESS":"5501 GERMANTOWN AVE","TYPE":"Land","USE_":"Park- Square\\Plaza","ACREAGE":0.347354,"ZIPCODE":"19144","ALLIAS":" ","GLOBALID":"1a5d2bb0-8c07-452a-a711-56ee0e0ad40e","Shape_Length":538.85403825467995,"Shape_Area":15130.71341350215}},{"type":"Feature","id":444,"geometry":{"type":"Polygon","coordinates":[[[-75.085377385155155,40.07625682062946],[-75.085367839066009,40.076257949944882],[-75.085362590821248,40.076259399664629],[-75.085356161665601,40.076261172506179],[-75.085352496997885,40.076265125980036],[-75.085352472499977,40.076265152443092],[-75.085343303444063,40.076275044966309],[-75.085216232535018,40.076412134917632],[-75.085212133065042,40.076416556755554],[-75.085207677131365,40.076421364080652],[-75.085201488365755,40.076427764804023],[-75.085197357381418,40.076435078237068],[-75.085195853786146,40.076448509358734],[-75.085197067410505,40.07645810019752],[-75.085226199991908,40.076656348627274],[-75.08527545644742,40.076651275396777],[-75.085280308757774,40.076650798629231],[-75.085321791129417,40.076646143409846],[-75.085518517737398,40.076649883807363],[-75.085522587059685,40.076649961034157],[-75.085722075967482,40.076434369149609],[-75.085421953006659,40.076266350750799],[-75.085410261225675,40.076261013140446],[-75.085395928450779,40.076257486647854],[-75.085392498533921,40.076256868302011],[-75.085380101347482,40.076256498865149],[-75.085377385155155,40.07625682062946]]]},"properties":{"OBJECTID_1":444,"OBJECTID":387,"ASSET_NAME":"Barnes & Loney Park","SITE_NAME":"Barnes & Loney Park","CHILD_OF":"Barnes & Loney Park","ADDRESS":"7966 OXFORD AVE","TYPE":"Land","USE_":"Park- Square\\Plaza","ACREAGE":0.32619799999999999,"ZIPCODE":"19111","ALLIAS":" ","GLOBALID":"b840a65d-29a8-4b3d-8a1a-89a96c0cc324","Shape_Length":461.46200733235088,"Shape_Area":14209.111022793291}},{"type":"Feature","id":445,"geometry":{"type":"Polygon","coordinates":[[[-75.082795216806318,40.014057764454698],[-75.08319784260182,40.014276196708288],[-75.083398979555298,40.014053136769292],[-75.083240014214539,40.01396729513624],[-75.083446981260266,40.013740085201377],[-75.083401157117123,40.013714873089],[-75.0833552763265,40.013690029969197],[-75.083306990755588,40.013663969537383],[-75.083299953874374,40.013671786609088],[-75.083101348322018,40.013892414683617],[-75.083026371583543,40.013851926631737],[-75.082996142819823,40.013847279719435],[-75.082784337195932,40.014048467082816],[-75.082795216806318,40.014057764454698]]]},"properties":{"OBJECTID_1":445,"OBJECTID":388,"ASSET_NAME":"Hedge Street Park","SITE_NAME":"Hedge Street Park","CHILD_OF":"Hedge Street Park","ADDRESS":"4610 HEDGE ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.42525800000000002,"ZIPCODE":"19124","ALLIAS":"Plum","GLOBALID":"ffe5aae2-dc19-47b3-9020-f1cc95e46972","Shape_Length":674.74102161279257,"Shape_Area":18524.148526931123}},{"type":"Feature","id":446,"geometry":{"type":"Polygon","coordinates":[[[-75.174002309217656,40.005691986972451],[-75.173992643884077,40.005695238999643],[-75.173984291845841,40.005700192773091],[-75.173977755084863,40.00570655681652],[-75.17397584697737,40.005710804623583],[-75.173974049838165,40.00571867428765],[-75.17394346102779,40.005852610004915],[-75.173941096885798,40.005868814826748],[-75.173942939996451,40.005877180637711],[-75.173947213767775,40.005885004518468],[-75.173953696166649,40.005891869724046],[-75.17396204587331,40.005897415398508],[-75.173971820499261,40.005901350499087],[-75.173984691246801,40.005905238839247],[-75.174355726413836,40.006017330437246],[-75.174361711771297,40.006019138798287],[-75.174370409028398,40.006021423366263],[-75.174386426467663,40.006025631835634],[-75.174397362164299,40.006027499895374],[-75.1744051525408,40.006027437701405],[-75.174419452682741,40.006025367228112],[-75.174429449209029,40.006021477469623],[-75.174438034137864,40.006015944131342],[-75.17444476308809,40.006009053677417],[-75.174449282531512,40.006001168493157],[-75.174452123659492,40.005988818082884],[-75.174501640068812,40.005787878708261],[-75.174503522093005,40.005780240699643],[-75.174502047966484,40.005772493162112],[-75.174498061140326,40.005765288428847],[-75.17448717517523,40.005756365665839],[-75.174474342628571,40.005751315933047],[-75.174458795724448,40.005749252528794],[-75.174444323693905,40.005747331268893],[-75.174433101865858,40.005745841525737],[-75.174052402529412,40.005694630961806],[-75.174049032506474,40.005694176921509],[-75.174034250526958,40.005692736102588],[-75.174012709710439,40.005690635456951],[-75.174002309217656,40.005691986972451]]]},"properties":{"OBJECTID_1":446,"OBJECTID":389,"ASSET_NAME":"Etting Square","SITE_NAME":"Etting Square","CHILD_OF":"Etting Square","ADDRESS":"3255 N MARSTON ST","TYPE":"Land","USE_":"Park- Square\\Plaza","ACREAGE":0.30886599999999997,"ZIPCODE":"19129","ALLIAS":" ","GLOBALID":"04191e04-ffef-4c2e-87c5-193d39710bbb","Shape_Length":461.22363556049032,"Shape_Area":13454.115579614312}},{"type":"Feature","id":447,"geometry":{"type":"Polygon","coordinates":[[[-75.126983127607801,39.972175884095783],[-75.126924362830906,39.972195820342471],[-75.126862077370731,39.972221860730485],[-75.126952034211413,39.972383187266381],[-75.126969252712399,39.972417156760578],[-75.127018333185617,39.972400179744412],[-75.127471307650865,39.972242607859201],[-75.12749114242537,39.972235693475433],[-75.127500357033696,39.972231678252662],[-75.127507906310498,39.972225965276287],[-75.127513277373765,39.972218947386374],[-75.127516107700629,39.972211096545657],[-75.127516204369627,39.972202950763645],[-75.127510215393386,39.972191727647129],[-75.127498235454297,39.972169272357334],[-75.127428315666904,39.972036106315215],[-75.12711079541198,39.972148926119011],[-75.127101627535325,39.972134747027994],[-75.126983127607801,39.972175884095783]]]},"properties":{"OBJECTID_1":447,"OBJECTID":390,"ASSET_NAME":"Lederer Pool","SITE_NAME":"Lederer Pool","CHILD_OF":"Lederer Pool","ADDRESS":"1219-25 E MONTGOMERY AVE","TYPE":"Land","USE_":"Pool","ACREAGE":0.29687200000000002,"ZIPCODE":"19125","ALLIAS":" ","GLOBALID":"9bdfbc39-c6cc-4573-8b4c-7d300b011ad3","Shape_Length":496.26393955777809,"Shape_Area":12931.718412052256}},{"type":"Feature","id":448,"geometry":{"type":"Polygon","coordinates":[[[-75.062649164101785,40.055025973469199],[-75.062581336975782,40.055097749904739],[-75.062561746678043,40.055118482407451],[-75.062558661363809,40.055121746802385],[-75.062509529603091,40.05517374108809],[-75.062571815352612,40.055208970138771],[-75.062687401601764,40.055273808090583],[-75.062690332335436,40.055275452569823],[-75.062727902185017,40.055296527365769],[-75.06277335412581,40.055323636993506],[-75.062784340187477,40.055328185633456],[-75.062792802085454,40.05533168948952],[-75.062893098022371,40.055389408146262],[-75.062934183165567,40.05534568360158],[-75.062972359966608,40.055305550162053],[-75.063013230331947,40.055263545166532],[-75.063062679989244,40.055208845064158],[-75.063093094572864,40.055175574409773],[-75.062779010455998,40.054996118967772],[-75.062714753908608,40.054956563967814],[-75.062649164101785,40.055025973469199]]]},"properties":{"OBJECTID_1":448,"OBJECTID":391,"ASSET_NAME":"Northeast Older Adult Center","SITE_NAME":"Northeast Older Adult Center","CHILD_OF":"Northeast Older Adult Center","ADDRESS":"7522-24 CASTOR AVE","TYPE":"Land","USE_":"Older Adult Center","ACREAGE":0.29466700000000001,"ZIPCODE":"19111","ALLIAS":" ","GLOBALID":"691f8d31-1fb0-4a53-b156-09b50f8195b4","Shape_Length":459.43137118445605,"Shape_Area":12835.629673803569}},{"type":"Feature","id":449,"geometry":{"type":"Polygon","coordinates":[[[-75.187155109314247,39.995135041294581],[-75.187130473631569,39.995053683367864],[-75.187064584416248,39.994898655982134],[-75.186996062535258,39.994760624066139],[-75.186766188460055,39.994834042002317],[-75.186780299497912,39.994862696542931],[-75.186732067116566,39.994861760052629],[-75.186712002641229,39.994893933032543],[-75.186816173870525,39.995196546597519],[-75.187155109314247,39.995135041294581]]]},"properties":{"OBJECTID_1":449,"OBJECTID":392,"ASSET_NAME":"Strawberry Mansion Playground","SITE_NAME":"Strawberry Mansion Playground","CHILD_OF":"East Fairmount Park","ADDRESS":"3369 RIDGE AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.29375299999999999,"ZIPCODE":"19132","ALLIAS":" ","GLOBALID":"5e3e16c4-36d4-46bf-a992-f4bafefb7fec","Shape_Length":462.69097011731685,"Shape_Area":12795.809609018497}},{"type":"Feature","id":450,"geometry":{"type":"Polygon","coordinates":[[[-75.22742817070835,39.966135000305748],[-75.227298752987821,39.966352025487929],[-75.227280818982607,39.966378566518664],[-75.227283384672162,39.966405365448765],[-75.227289976748736,39.966449931384631],[-75.227378015905728,39.966440891048066],[-75.227801617911126,39.9663992789798],[-75.227812718868464,39.966398198531927],[-75.22782168203041,39.96639625658878],[-75.227829201801924,39.966392033125402],[-75.227834341549922,39.96638606076619],[-75.227835820143198,39.966375283096568],[-75.227834022277165,39.966366180440033],[-75.227818125531542,39.966266545552507],[-75.227817224625667,39.9662576950697],[-75.227814593541325,39.966251859135006],[-75.227809696911734,39.96624696269506],[-75.227799146353433,39.966242081625523],[-75.227789728961866,39.966238628317818],[-75.227782691316179,39.966236048130042],[-75.227774524580852,39.966231141973637],[-75.227490779419085,39.966125216091662],[-75.22744348316813,39.966107504225782],[-75.22742817070835,39.966135000305748]]]},"properties":{"OBJECTID_1":450,"OBJECTID":393,"ASSET_NAME":"Southern Grounds HQs","SITE_NAME":"Southern Grounds HQs","CHILD_OF":"Southern Grounds HQs","ADDRESS":"5331-41 HAVERFORD AVE","TYPE":"Land","USE_":"Multi-Use Bldg","ACREAGE":0.28661599999999998,"ZIPCODE":"19139","ALLIAS":" ","GLOBALID":"0955fb1f-4f11-4933-b606-252e4e54e3e0","Shape_Length":456.67885621475506,"Shape_Area":12484.94615736159}},{"type":"Feature","id":451,"geometry":{"type":"Polygon","coordinates":[[[-75.179139967630547,39.941073034288287],[-75.179135346025774,39.941099033933988],[-75.179384943970462,39.941134789689137],[-75.179393117698709,39.941134267388762],[-75.179402563767454,39.941130930008178],[-75.17940727829945,39.941128124499713],[-75.179413020658387,39.941125347433008],[-75.17941787396731,39.94112069885972],[-75.179421079381925,39.941115827744902],[-75.179502876349986,39.94074531482697],[-75.179502649318408,39.940738505292238],[-75.179499181357571,39.940731812335997],[-75.179492918674867,39.940725136935704],[-75.179485219353239,39.940721566663207],[-75.179474853660267,39.940719386361408],[-75.179216967310367,39.940687286910219],[-75.179210876458512,39.940718183066188],[-75.179139967630547,39.941073034288287]]]},"properties":{"OBJECTID_1":451,"OBJECTID":394,"ASSET_NAME":"Julian Abele Park","SITE_NAME":"Julian Abele Park","CHILD_OF":"Julian Abele Park","ADDRESS":"923 S 22ND ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.284196,"ZIPCODE":"19146","ALLIAS":" ","GLOBALID":"5ea455b8-db8a-43b3-9ac8-31613adc4989","Shape_Length":459.66478321094013,"Shape_Area":12379.521138419075}},{"type":"Feature","id":452,"geometry":{"type":"Polygon","coordinates":[[[-75.177642402140123,39.931422667256392],[-75.17760351637277,39.931610252741805],[-75.177596798411813,39.931644546885622],[-75.177833748398356,39.93167778228996],[-75.177849467909866,39.931676231021655],[-75.177869520748331,39.931669066320929],[-75.177880707480611,39.93165662645437],[-75.177882713872634,39.931647153152014],[-75.177950999782908,39.931323796473706],[-75.177948864793564,39.931314864600346],[-75.177940844788196,39.931308974104837],[-75.17792701295599,39.931304221885682],[-75.177914683637653,39.931303311045482],[-75.177585665973638,39.931263568619954],[-75.177583445131958,39.931285262956152],[-75.177556085349295,39.931411769591797],[-75.177642402140123,39.931422667256392]]]},"properties":{"OBJECTID_1":452,"OBJECTID":395,"ASSET_NAME":"Ralph Brooks Park","SITE_NAME":"Ralph Brooks Park","CHILD_OF":"Ralph Brooks Park","ADDRESS":"1601-13 S 20TH ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.28099299999999999,"ZIPCODE":"19145","ALLIAS":" ","GLOBALID":"f3cb4fd1-8943-42d5-aa91-1b9007d1ae72","Shape_Length":475.08346120827082,"Shape_Area":12240.033267092966}},{"type":"Feature","id":453,"geometry":{"type":"Polygon","coordinates":[[[-75.166887256653737,40.030969596013755],[-75.167118618993143,40.03072824613016],[-75.166828243419587,40.030564330755354],[-75.166805165652391,40.030547316825071],[-75.166598264423044,40.030770249986148],[-75.166593474128348,40.030778439667856],[-75.16659122041419,40.030788318143728],[-75.166593926549211,40.030800363399784],[-75.166600296090849,40.030809159112202],[-75.166607285082804,40.030816091946569],[-75.166887256653737,40.030969596013755]]]},"properties":{"OBJECTID_1":453,"OBJECTID":396,"ASSET_NAME":"Gilbert Stuart Park","SITE_NAME":"Gilbert Stuart Park","CHILD_OF":"Gilbert Stuart Park","ADDRESS":"5132 GERMANTOWN AVE","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.27414500000000003,"ZIPCODE":"19144","ALLIAS":" ","GLOBALID":"49869f4b-95df-41bf-9b2e-1b71c7ee510c","Shape_Length":433.35142107270781,"Shape_Area":11941.73615704905}},{"type":"Feature","id":454,"geometry":{"type":"Polygon","coordinates":[[[-75.157338547254227,40.020996339113829],[-75.157088660640454,40.020753445591438],[-75.157019087355536,40.020748780488361],[-75.156842551020333,40.020743246044404],[-75.156804649153173,40.020942841187349],[-75.156797965839829,40.020977653325481],[-75.157289456112764,40.021040684318855],[-75.157312693106533,40.021040897221383],[-75.157331462963924,40.021034660694568],[-75.15734088284232,40.021021499583789],[-75.157342671292525,40.021009500575794],[-75.157338547254227,40.020996339113829]]]},"properties":{"OBJECTID_1":454,"OBJECTID":397,"ASSET_NAME":"Nicetown Park","SITE_NAME":"Nicetown Park","CHILD_OF":"Nicetown Park","ADDRESS":"4369-71 GERMANTOWN AVE","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.248449,"ZIPCODE":"19140","ALLIAS":" ","GLOBALID":"c212f8be-fea3-47af-b111-eeb259cbce79","Shape_Length":434.75206104610498,"Shape_Area":10822.392168615756}},{"type":"Feature","id":455,"geometry":{"type":"Polygon","coordinates":[[[-75.154295073832898,40.064559746927522],[-75.154525226095402,40.064322277069252],[-75.154238747868632,40.064158234239933],[-75.154007256442682,40.06439667160739],[-75.154295073832898,40.064559746927522]]]},"properties":{"OBJECTID_1":455,"OBJECTID":398,"ASSET_NAME":"West Oak Lane Senior Center","SITE_NAME":"West Oak Lane Senior Center","CHILD_OF":"West Oak Lane Senior Center","ADDRESS":"7210 OGONTZ AVE","TYPE":"Land","USE_":"Older Adult Center","ACREAGE":0.248305,"ZIPCODE":"19138","ALLIAS":" ","GLOBALID":"46c24049-c56a-46ee-9f31-259327db5ddf","Shape_Length":416.31599992063468,"Shape_Area":10816.117608784019}},{"type":"Feature","id":456,"geometry":{"type":"Polygon","coordinates":[[[-75.147638363734742,39.933670259983856],[-75.147731843077196,39.933296925237222],[-75.147515299828626,39.933237747357389],[-75.147473807851597,39.93322554119073],[-75.147386086252496,39.933609771837922],[-75.147387240496286,39.933628532987832],[-75.147418540393105,39.93364221351947],[-75.147448411533375,39.933644332138464],[-75.147638363734742,39.933670259983856]]]},"properties":{"OBJECTID_1":456,"OBJECTID":399,"ASSET_NAME":"Mummers Museum","SITE_NAME":"Mummers Museum","CHILD_OF":"Mummers Museum","ADDRESS":"200-10 WASHINGTON AVE","TYPE":"Land","USE_":"Museum","ACREAGE":0.24798100000000001,"ZIPCODE":"19147","ALLIAS":" ","GLOBALID":"6e5e8248-ec52-4d9f-abe3-1cd079c72a76","Shape_Length":436.95984608725723,"Shape_Area":10802.015145523677}},{"type":"Feature","id":457,"geometry":{"type":"Polygon","coordinates":[[[-75.162637883472385,39.98516797826251],[-75.162584258861543,39.98541214588311],[-75.162576567238446,39.985451673071893],[-75.162889685468954,39.985490309593715],[-75.162899467081402,39.985489325426919],[-75.162908546295739,39.985487039675824],[-75.162915314356027,39.98548488112985],[-75.162921257464916,39.985480087436336],[-75.162927572238701,39.985473039668044],[-75.162932153362647,39.985466087072346],[-75.162986803528653,39.985216581386013],[-75.162984921625608,39.985208822661789],[-75.162981578521922,39.985204092654641],[-75.162975346807485,39.985199520987607],[-75.162966350206531,39.985196441250416],[-75.162955809118955,39.985195501751747],[-75.162641512249323,39.98515666220996],[-75.162637883472385,39.98516797826251]]]},"properties":{"OBJECTID_1":457,"OBJECTID":400,"ASSET_NAME":"Diamond Park","SITE_NAME":"Diamond Park","CHILD_OF":"Diamond Park","ADDRESS":"1736-44 DIAMOND ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.24762600000000001,"ZIPCODE":"19121","ALLIAS":" ","GLOBALID":"04b682c9-fcbb-48b7-8a9f-126974f9bee7","Shape_Length":408.09639765405086,"Shape_Area":10786.51792521782}},{"type":"Feature","id":458,"geometry":{"type":"Polygon","coordinates":[[[-75.196675950933951,40.048675997703633],[-75.196331577653908,40.048994411045683],[-75.196314420958146,40.049010544170216],[-75.196465346483365,40.049109047769363],[-75.196479863060745,40.049113814193994],[-75.196497363428634,40.049113968926427],[-75.196510843812646,40.049111596184936],[-75.196522189130675,40.04910604950085],[-75.196851664090957,40.048787336022428],[-75.19682320316339,40.048771104402235],[-75.196675950933951,40.048675997703633]]]},"properties":{"OBJECTID_1":458,"OBJECTID":401,"ASSET_NAME":"Wolf Park","SITE_NAME":"Wolf Park","CHILD_OF":"Wolf Park","ADDRESS":"7018 MC CALLUM ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.23769899999999999,"ZIPCODE":"19119","ALLIAS":" ","GLOBALID":"9e80c5af-11f2-420a-81d0-ed28713e08d4","Shape_Length":442.86225184959022,"Shape_Area":10354.158131372986}},{"type":"Feature","id":459,"geometry":{"type":"Polygon","coordinates":[[[-75.144526941284383,39.952498757516167],[-75.144614300406872,39.952509253603992],[-75.144720814410604,39.952521666834684],[-75.144732935587541,39.952467214899549],[-75.144796351759055,39.952474473924127],[-75.144795221556834,39.952483217910654],[-75.144854303206031,39.952491007377958],[-75.144908861417548,39.952237100182323],[-75.144917749386281,39.952199152723338],[-75.144611702856324,39.952160661890602],[-75.144603421223565,39.952197020181352],[-75.1445647539596,39.952390435805093],[-75.144552670988233,39.952392015676253],[-75.144526941284383,39.952498757516167]]]},"properties":{"OBJECTID_1":459,"OBJECTID":402,"ASSET_NAME":"Betsy Ross House","SITE_NAME":"Betsy Ross House","CHILD_OF":"Betsy Ross House","ADDRESS":"239 ARCH ST","TYPE":"Land","USE_":"Historic House","ACREAGE":0.23618900000000001,"ZIPCODE":"19106","ALLIAS":" ","GLOBALID":"13b1fca4-4a40-4a4e-b7a9-7fe8d7d92f80","Shape_Length":435.5504975569894,"Shape_Area":10288.36804994526}},{"type":"Feature","id":460,"geometry":{"type":"Polygon","coordinates":[[[-75.160024220438288,39.938049486087976],[-75.160036826189042,39.938015068031454],[-75.16013903371794,39.937784395238239],[-75.160143460339512,39.937772390015894],[-75.159833889864913,39.937688234954663],[-75.159825593674512,39.937685864424751],[-75.159816045195754,39.937685824478535],[-75.159805922908177,39.937687511439115],[-75.159799035115171,39.937692411497217],[-75.159794181896416,39.937703415952775],[-75.159734542812856,39.937936394193201],[-75.159733602827998,39.937948526801883],[-75.159735686908675,39.937957631809255],[-75.159738914682634,39.937965720168307],[-75.159742876764639,39.937972815069699],[-75.159749627030692,39.937978802518415],[-75.159761308396284,39.937984518400995],[-75.160024220438288,39.938049486087976]]]},"properties":{"OBJECTID_1":460,"OBJECTID":403,"ASSET_NAME":"Bardascino Park","SITE_NAME":"Bardascino Park","CHILD_OF":"Bardascino Park","ADDRESS":"1000 S 10TH ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.233517,"ZIPCODE":"19147","ALLIAS":" ","GLOBALID":"b165eba4-8b43-409b-89ce-f69c8e132634","Shape_Length":397.73789618733508,"Shape_Area":10171.990989114844}},{"type":"Feature","id":461,"geometry":{"type":"Polygon","coordinates":[[[-75.149463376125922,39.929194457452262],[-75.149509269279278,39.928969093960596],[-75.149518207869164,39.928949437242707],[-75.149620430967062,39.928730476109358],[-75.149642139661054,39.928685198280697],[-75.149474142120013,39.928640184921811],[-75.149454433674464,39.928683437534062],[-75.149338316885732,39.928930542212839],[-75.149287766465164,39.929170921874473],[-75.149284621798472,39.929190312626226],[-75.149460542521538,39.929213152464904],[-75.149463376125922,39.929194457452262]]]},"properties":{"OBJECTID_1":461,"OBJECTID":404,"ASSET_NAME":"Donnelly Park","SITE_NAME":"Donnelly Park","CHILD_OF":"Donnelly Park","ADDRESS":"230-34 DICKINSON ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.233046,"ZIPCODE":"19147","ALLIAS":" ","GLOBALID":"26868cb8-b7a7-43e3-8a78-7a0620a8eded","Shape_Length":508.05181768357863,"Shape_Area":10151.434525995299}},{"type":"Feature","id":462,"geometry":{"type":"Polygon","coordinates":[[[-75.139173444280331,39.980958481157323],[-75.139164112428247,39.980962182905969],[-75.139156636447566,39.980967848758404],[-75.139151687119764,39.980974969579535],[-75.139148650987977,39.980988413159992],[-75.139118429410132,39.981122197997095],[-75.139111442772716,39.98115312707025],[-75.139142605337753,39.981157563558675],[-75.139555443847541,39.98121038063325],[-75.139598454803121,39.981216035282138],[-75.13960263746975,39.981196650291743],[-75.139632445710987,39.981058511211167],[-75.139634992403117,39.981046707162548],[-75.139635656340587,39.981038148124156],[-75.139633100674772,39.981029798774799],[-75.139627541823913,39.981022366835198],[-75.139619446789652,39.981016470217163],[-75.139609495611751,39.981012608238018],[-75.139595367464352,39.981010765950487],[-75.139573967260404,39.981007974358455],[-75.139210434133446,39.98096055976945],[-75.139199358209368,39.980959114841824],[-75.139183779185529,39.980957082718199],[-75.139173444280331,39.980958481157323]]]},"properties":{"OBJECTID_1":462,"OBJECTID":405,"ASSET_NAME":"3rd & Norris Playground","SITE_NAME":"3rd & Norris Playground","CHILD_OF":"3rd & Norris Playground","ADDRESS":"253-73 W NORRIS ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.23280999999999999,"ZIPCODE":"19122","ALLIAS":" ","GLOBALID":"34b37a9f-48d7-441b-8abc-658441f001df","Shape_Length":415.18030333473507,"Shape_Area":10141.188193625978}},{"type":"Feature","id":463,"geometry":{"type":"Polygon","coordinates":[[[-75.142089989802841,39.971555379867027],[-75.142090622890962,39.971557771154409],[-75.142134664290509,39.971724024231634],[-75.14216765893643,39.97172846108576],[-75.14263117986502,39.971784371815374],[-75.142665234936658,39.971788306423434],[-75.142700128114541,39.971623960704001],[-75.142663439021703,39.971619699550082],[-75.142117693317829,39.971552102660567],[-75.142088274027145,39.971548856208599],[-75.142089989802841,39.971555379867027]]]},"properties":{"OBJECTID_1":463,"OBJECTID":406,"ASSET_NAME":"Hart Playground","SITE_NAME":"Hart Playground","CHILD_OF":"Hart Playground","ADDRESS":"1315-21 N 04TH ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.226794,"ZIPCODE":"19122","ALLIAS":" ","GLOBALID":"26b849bf-a9bf-48e4-a24a-c2c43edb8a95","Shape_Length":449.98334016481402,"Shape_Area":9879.048157651765}},{"type":"Feature","id":464,"geometry":{"type":"Polygon","coordinates":[[[-75.171434905534838,39.982057180229106],[-75.171424824875857,39.982059795532741],[-75.171416202539902,39.982064597926083],[-75.171409828151312,39.982071150138992],[-75.171406265162943,39.982078863855399],[-75.171404863244277,39.982085587258489],[-75.171402926965939,39.98209487825833],[-75.171375194709967,39.98222399666632],[-75.171365664624958,39.982266341934498],[-75.17140907576254,39.982272699075367],[-75.171760917569358,39.982320322329244],[-75.171802573158544,39.98213436532123],[-75.171810144312275,39.982104184754022],[-75.17176295124473,39.982098014006205],[-75.171476318867931,39.982060933580705],[-75.171445544456816,39.982056982274074],[-75.171434905534838,39.982057180229106]]]},"properties":{"OBJECTID_1":464,"OBJECTID":407,"ASSET_NAME":"Montgomery & Croskey Playground","SITE_NAME":"Montgomery & Croskey Playground","CHILD_OF":"Montgomery & Croskey Playground","ADDRESS":"2225-37 W MONTGOMERY AVE","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.205181,"ZIPCODE":"19121","ALLIAS":" ","GLOBALID":"3a61d968-d9d2-467b-82b3-9c0f12007579","Shape_Length":380.18924428445064,"Shape_Area":8937.6545214585149}},{"type":"Feature","id":465,"geometry":{"type":"Polygon","coordinates":[[[-75.155732521062035,39.939398366249968],[-75.155777499516731,39.939178476133989],[-75.155782414263641,39.939145120728249],[-75.155448521233339,39.939102303821564],[-75.155442220041465,39.939137539816514],[-75.155399609913957,39.939356258015138],[-75.155732521062035,39.939398366249968]]]},"properties":{"OBJECTID_1":465,"OBJECTID":408,"ASSET_NAME":"Palumbo Park","SITE_NAME":"Palumbo Park","CHILD_OF":"Palumbo Park","ADDRESS":"723 CATHARINE ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.20354,"ZIPCODE":"19147","ALLIAS":" ","GLOBALID":"e6c7aa8f-72b4-4707-bda0-b14e127eaade","Shape_Length":376.36166768577311,"Shape_Area":8866.1537820297526}},{"type":"Feature","id":466,"geometry":{"type":"Polygon","coordinates":[[[-75.138507012000773,40.008950027911347],[-75.138501084276868,40.008933487250786],[-75.138492478614069,40.008922565725591],[-75.138480399867177,40.008916611829243],[-75.13846569169506,40.008915015836976],[-75.138449223306068,40.008916534285198],[-75.13806661807341,40.009093333265824],[-75.138053884447373,40.009104400971495],[-75.138046841107325,40.009116859563498],[-75.138043099940361,40.009128763465121],[-75.138050813296402,40.009141557774456],[-75.138061180328236,40.009149364922877],[-75.138079841599207,40.009154837898876],[-75.138408000677003,40.009198898962879],[-75.138422757392036,40.009199234633137],[-75.138441060004567,40.009192710378727],[-75.138452106117555,40.009182865678227],[-75.138457534681876,40.009169738715187],[-75.138507012000773,40.008950027911347]]]},"properties":{"OBJECTID_1":466,"OBJECTID":409,"ASSET_NAME":"Hamilton Park","SITE_NAME":"Hamilton Park","CHILD_OF":"Hamilton Park","ADDRESS":"547 RISING SUN AVE","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.17832999999999999,"ZIPCODE":"19140","ALLIAS":" ","GLOBALID":"7f786068-2432-45b6-a1ed-f8a8f98ce762","Shape_Length":372.44160430244654,"Shape_Area":7768.02895769107}},{"type":"Feature","id":467,"geometry":{"type":"Polygon","coordinates":[[[-75.202688380692791,40.07345554939716],[-75.202726214454472,40.07342347804196],[-75.202649725075091,40.073329196631413],[-75.202637656613916,40.073320896695471],[-75.202628687177125,40.073315894639919],[-75.202618874169502,40.073314211192539],[-75.202608684350253,40.073313660960096],[-75.202599593968657,40.073314533451082],[-75.202591671456688,40.073317567201634],[-75.202295909916643,40.073603503679486],[-75.202436255554659,40.073718391324661],[-75.202688380692791,40.07345554939716]]]},"properties":{"OBJECTID_1":467,"OBJECTID":410,"ASSET_NAME":"Buckley Park","SITE_NAME":"Buckley Park","CHILD_OF":"Buckley Park","ADDRESS":"8199 GERMANTOWN AVE","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.17308799999999999,"ZIPCODE":"19118","ALLIAS":" ","GLOBALID":"4e2bd333-97e3-4b42-befc-eec607410083","Shape_Length":383.96397482418837,"Shape_Area":7539.6856936307468}},{"type":"Feature","id":468,"geometry":{"type":"Polygon","coordinates":[[[-75.233260031219558,39.994980853112068],[-75.23308965581073,39.995019293102594],[-75.233233795336304,39.995383653529949],[-75.233401213655085,39.995344770960543],[-75.233260031219558,39.994980853112068]]]},"properties":{"OBJECTID_1":468,"OBJECTID":411,"ASSET_NAME":"John C. Anderson Cultural Center","SITE_NAME":"John C. Anderson Cultural Center","CHILD_OF":"John C. Anderson Cultural Center","ADDRESS":"5323 OVERBROOK AVE","TYPE":"Land","USE_":"Other","ACREAGE":0.157028,"ZIPCODE":"19131","ALLIAS":" ","GLOBALID":"df90bd71-cd79-44f4-a989-2b94a7a38afa","Shape_Length":375.82902336487359,"Shape_Area":6840.1116455884785}},{"type":"Feature","id":469,"geometry":{"type":"Polygon","coordinates":[[[-75.191640140984617,39.963522606723089],[-75.191616386829494,39.963524775568054],[-75.191602516007379,39.963528354122701],[-75.19159623703716,39.963531601002153],[-75.191589692355279,39.963538576636473],[-75.191586692898952,39.963546866606613],[-75.191587219822566,39.963551778941437],[-75.191587612327609,39.963555441283148],[-75.191621962299749,39.96372238202823],[-75.191666677615586,39.963717186459924],[-75.191957912163957,39.963679737807972],[-75.191927131590745,39.963518579245282],[-75.19192392142476,39.963493657861228],[-75.191640140984617,39.963522606723089]]]},"properties":{"OBJECTID_1":469,"OBJECTID":412,"ASSET_NAME":"Mantua Community Garden","SITE_NAME":"Mantua Community Garden","CHILD_OF":"Mantua Community Garden","ADDRESS":"520 N 34TH ST","TYPE":"Land","USE_":"Other","ACREAGE":0.153751,"ZIPCODE":"19104","ALLIAS":" ","GLOBALID":"aa0d3c04-6353-46c5-b3d4-e7aefffbd66a","Shape_Length":328.04836923840855,"Shape_Area":6697.3813958055271}},{"type":"Feature","id":470,"geometry":{"type":"Polygon","coordinates":[[[-75.174392727553979,40.027200209476739],[-75.174283781552333,40.02730448456041],[-75.174264706247598,40.027323091501984],[-75.174332326547997,40.027364099442288],[-75.174364723589918,40.027383745476541],[-75.174453601817575,40.027437644242049],[-75.174454178138276,40.027437992343415],[-75.1745604591692,40.027502351916475],[-75.174577489713158,40.027486111079156],[-75.174579895398722,40.027483869251078],[-75.17469101572739,40.027380386885447],[-75.174633952447749,40.027345998671692],[-75.174528846079269,40.027282593547383],[-75.17452085548102,40.027277737197309],[-75.174478496857546,40.027252144576899],[-75.174438213358201,40.027226474139439],[-75.174394159010859,40.027198839606648],[-75.174392727553979,40.027200209476739]]]},"properties":{"OBJECTID_1":470,"OBJECTID":413,"ASSET_NAME":"Newhall Park","SITE_NAME":"Newhall Park","CHILD_OF":"Newhall Park","ADDRESS":"5322 NEWHALL ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.13977400000000001,"ZIPCODE":"19144","ALLIAS":" ","GLOBALID":"723ca9ba-2702-4a66-80e9-fed2d75a20bf","Shape_Length":327.23994025486098,"Shape_Area":6088.5189906079358}},{"type":"Feature","id":471,"geometry":{"type":"Polygon","coordinates":[[[-75.14093025618287,39.960748290037792],[-75.140911795252705,39.960790015593872],[-75.140902730413629,39.960810254574561],[-75.140953156877714,39.960823770589791],[-75.141285021664672,39.960898938883446],[-75.141300257961049,39.960902490268197],[-75.141307565309162,39.960903928667719],[-75.141315105935547,39.960903865859677],[-75.14132237138918,39.960902309204378],[-75.141330019534934,39.96089819603614],[-75.141336454227883,39.960892995672602],[-75.141341420328843,39.96088691855838],[-75.141342579215433,39.960881742398769],[-75.141343821607933,39.96087619060895],[-75.141362901169032,39.960790933488184],[-75.141364140699991,39.960785395148534],[-75.141363501993823,39.960778701338434],[-75.141360687673696,39.960772345500388],[-75.141355880821081,39.960766743564825],[-75.141347555928164,39.960761067944354],[-75.141339828069619,39.960756066348686],[-75.141332608316873,39.960753200919214],[-75.141321538044679,39.960750229916286],[-75.14130873512282,39.960748410668486],[-75.140986467976504,39.96071399864114],[-75.140946891398229,39.960709772952782],[-75.14093025618287,39.960748290037792]]]},"properties":{"OBJECTID_1":471,"OBJECTID":414,"ASSET_NAME":"Madison War Memorial","SITE_NAME":"Madison War Memorial","CHILD_OF":"Madison War Memorial","ADDRESS":"563-65 N 02ND ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.13469100000000001,"ZIPCODE":"19123","ALLIAS":" ","GLOBALID":"2e9c46da-8fe5-41fc-be00-844fb73f3c28","Shape_Length":331.66655023688816,"Shape_Area":5867.1405716968247}},{"type":"Feature","id":472,"geometry":{"type":"Polygon","coordinates":[[[-75.165289062049226,40.006566250529922],[-75.165640746372844,40.006610727259883],[-75.165667918108042,40.006487249327584],[-75.165315044091031,40.006442616136376],[-75.165289062049226,40.006566250529922]]]},"properties":{"OBJECTID_1":472,"OBJECTID":415,"ASSET_NAME":"22nd & Ontario Playground","SITE_NAME":"22nd & Ontario Playground","CHILD_OF":"22nd & Ontario Playground","ADDRESS":"3400-02 N 22ND ST","TYPE":"Land","USE_":"Recreation Site","ACREAGE":0.104744,"ZIPCODE":"19140","ALLIAS":" ","GLOBALID":"6cb795db-bf7c-48e2-b457-efcc9088327a","Shape_Length":291.26439928646141,"Shape_Area":4562.5922011962093}},{"type":"Feature","id":473,"geometry":{"type":"Polygon","coordinates":[[[-75.229771791045323,40.029470377111302],[-75.229757238236473,40.029479171326436],[-75.22974277415706,40.02948791162521],[-75.229809381002198,40.02954025335459],[-75.22985607505845,40.029577440334009],[-75.229916141749243,40.02962527676651],[-75.229929503437745,40.029615576122325],[-75.230133425832264,40.029375643047061],[-75.230136394638492,40.029359353323642],[-75.230141191914853,40.029336337245809],[-75.230106228489774,40.029312354166422],[-75.23010043733386,40.029315608534937],[-75.230078085353099,40.029328172616516],[-75.230074512613058,40.0293389151757],[-75.230072585588047,40.029356029641896],[-75.230066699714513,40.02937023172376],[-75.230059053774781,40.029374954560041],[-75.230052074801975,40.029379264958571],[-75.229852332074898,40.029465783467501],[-75.229813529123717,40.029460390071058],[-75.229771791045323,40.029470377111302]]]},"properties":{"OBJECTID_1":473,"OBJECTID":416,"ASSET_NAME":"Leverington Park","SITE_NAME":"Leverington Park","CHILD_OF":"Leverington Park","ADDRESS":"4605 UMBRIA ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.100815,"ZIPCODE":"19127","ALLIAS":" ","GLOBALID":"abf5f1c7-aeb6-4c68-8f65-e833e01ea38b","Shape_Length":335.44659845070998,"Shape_Area":4391.4672936471088}},{"type":"Feature","id":474,"geometry":{"type":"Polygon","coordinates":[[[-75.15720523069389,39.932402620787478],[-75.156670325433183,39.932262470391265],[-75.156651017185567,39.932351982537313],[-75.156646648778747,39.932367730882291],[-75.157186593404703,39.93243771579904],[-75.15719546284592,39.932437404548317],[-75.157203773885314,39.932433108078015],[-75.157208508910216,39.932427718913232],[-75.157210910003514,39.932422824800881],[-75.157212297612205,39.93241725363486],[-75.157210742336702,39.932410744648344],[-75.15720523069389,39.932402620787478]]]},"properties":{"OBJECTID_1":474,"OBJECTID":417,"ASSET_NAME":"Paolone Park","SITE_NAME":"Paolone Park","CHILD_OF":"Paolone Park","ADDRESS":"732 SEARS ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.094558000000000003,"ZIPCODE":"19147","ALLIAS":" ","GLOBALID":"9b47bcdb-be38-46da-9120-62e29e07f9b1","Shape_Length":368.32086410629529,"Shape_Area":4118.9309690001346}},{"type":"Feature","id":475,"geometry":{"type":"Polygon","coordinates":[[[-75.146755329319845,39.930186260605069],[-75.14671860506617,39.930358585435435],[-75.146884344633349,39.930380144757997],[-75.146928493623861,39.9303859088133],[-75.146960342353992,39.930237248537217],[-75.146960543678745,39.930230769349734],[-75.146958697417048,39.930223786865923],[-75.146953182838132,39.930216081389247],[-75.146945536402512,39.930211264854286],[-75.146938570448256,39.930209491200436],[-75.146755329319845,39.930186260605069]]]},"properties":{"OBJECTID_1":475,"OBJECTID":418,"ASSET_NAME":"Howard & Reed Park","SITE_NAME":"Howard & Reed Park","CHILD_OF":"Howard & Reed Park","ADDRESS":"105 REED ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.087021000000000001,"ZIPCODE":"19147","ALLIAS":" ","GLOBALID":"72c1f11b-6815-49df-b1db-f1a680aaf169","Shape_Length":243.26994668036389,"Shape_Area":3790.60336634019}},{"type":"Feature","id":476,"geometry":{"type":"Polygon","coordinates":[[[-75.150514319313189,39.999694150090264],[-75.150242883032092,39.999665849806689],[-75.15023283259076,39.999665228447647],[-75.15022379973145,39.999666853850009],[-75.150215758539431,39.999671249820658],[-75.150210457955197,39.999677472956051],[-75.150207375993048,39.999683857162658],[-75.150207740493286,39.99969174753889],[-75.150228183638362,39.999813235499211],[-75.150233481852084,39.999822832414623],[-75.150239510603427,39.999828434534159],[-75.150246532481944,39.999832852679177],[-75.150256634871951,39.999834841158957],[-75.150267651380418,39.999834802321637],[-75.15027634468521,39.999833478275335],[-75.150525510044559,39.999743540609998],[-75.150533980860885,39.999738051498461],[-75.150538642659939,39.999730672291783],[-75.150539757718732,39.999722110823924],[-75.150538279860569,39.999714871904061],[-75.150534088425488,39.999707914825095],[-75.150529798045227,39.999702624193866],[-75.150522307610899,39.999697102519072],[-75.150514319313189,39.999694150090264]]]},"properties":{"OBJECTID_1":476,"OBJECTID":419,"ASSET_NAME":"Daly Park","SITE_NAME":"Daly Park","CHILD_OF":"Daly Park","ADDRESS":"1240 W SEDGELY AVE","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.085342000000000001,"ZIPCODE":"19133","ALLIAS":" ","GLOBALID":"376bdc68-cf8d-47eb-bb91-246cb6689aeb","Shape_Length":254.5635876752211,"Shape_Area":3717.5070846695021}},{"type":"Feature","id":477,"geometry":{"type":"Polygon","coordinates":[[[-75.146591432851878,39.936580321252123],[-75.146639576075245,39.93658709143493],[-75.146649529857044,39.936537191701916],[-75.14664708735819,39.93652969831831],[-75.146642905385491,39.936522300602761],[-75.146633463622777,39.936514742044707],[-75.146620583181729,39.936507820840539],[-75.146610311573667,39.936503897990242],[-75.146296853913626,39.936448403516813],[-75.146284552231833,39.936447732291128],[-75.146272415051172,39.93644884702136],[-75.14626106561343,39.936452161009946],[-75.14625220071774,39.936457134323042],[-75.146242256790359,39.936469344478859],[-75.146229575256925,39.936496062917129],[-75.146226007851766,39.936514205106633],[-75.146242874312705,39.936517536173817],[-75.146591432851878,39.936580321252123]]]},"properties":{"OBJECTID_1":477,"OBJECTID":420,"ASSET_NAME":"Beck Park","SITE_NAME":"Beck Park","CHILD_OF":"Beck Park","ADDRESS":"839 S 02ND ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.074275999999999995,"ZIPCODE":"19147","ALLIAS":" ","GLOBALID":"0203b698-a789-4acd-b145-40245b73f49f","Shape_Length":280.43192749032181,"Shape_Area":3235.4236084574859}},{"type":"Feature","id":478,"geometry":{"type":"Polygon","coordinates":[[[-75.175442386072916,39.95684589147573],[-75.175547801133092,39.956859395435686],[-75.175604302368512,39.95657505291743],[-75.175495766233865,39.956562108767379],[-75.175442386072916,39.95684589147573]]]},"properties":{"OBJECTID_1":478,"OBJECTID":421,"ASSET_NAME":"Coxe Park","SITE_NAME":"Coxe Park","CHILD_OF":"Coxe Park","ADDRESS":"2132-34 CHERRY ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.072944999999999996,"ZIPCODE":"19103","ALLIAS":" ","GLOBALID":"acd5b48f-4a43-448d-9fc1-306b53f43c45","Shape_Length":269.98804109019704,"Shape_Area":3177.4671768728281}},{"type":"Feature","id":479,"geometry":{"type":"Polygon","coordinates":[[[-75.165364724368146,40.033429572976786],[-75.16535374755712,40.033439846193204],[-75.165322181531948,40.033468879196491],[-75.165312331890391,40.033478209185432],[-75.165291005132389,40.033500915029656],[-75.165335922934517,40.033529435639522],[-75.165521980662547,40.033640831523115],[-75.165549089890177,40.033614361574024],[-75.165565115817998,40.033598713879705],[-75.165566727664071,40.033597140037941],[-75.165572730647909,40.033591279771521],[-75.165579023271292,40.03358557018462],[-75.165582184770344,40.033582701316526],[-75.16558512705555,40.033577124473865],[-75.165586280135301,40.033572915655085],[-75.165586858656127,40.033567850558541],[-75.165585681164629,40.033563127978006],[-75.165585239646262,40.033562348577057],[-75.165583904065443,40.033559992105779],[-75.165582447784971,40.033557419378198],[-75.165582176317557,40.033557191620183],[-75.165577988381543,40.033553679836956],[-75.165572026535713,40.033549626271999],[-75.165539734627032,40.033530315315588],[-75.165492390559749,40.033502098792994],[-75.165472225684582,40.033490080509047],[-75.165452126096838,40.033478102434174],[-75.165440209846636,40.033471000989245],[-75.165436566322938,40.033468829546258],[-75.165367058037845,40.033427389177014],[-75.165364724368146,40.033429572976786]]]},"properties":{"OBJECTID_1":479,"OBJECTID":422,"ASSET_NAME":"Bringhurst Park","SITE_NAME":"Bringhurst Park","CHILD_OF":"Bringhurst Park","ADDRESS":"200 E BRINGHURST ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.065420000000000006,"ZIPCODE":"19144","ALLIAS":" ","GLOBALID":"26bd57b7-798e-410c-a97c-86611548265d","Shape_Length":230.00867997893508,"Shape_Area":2849.6656660694903}},{"type":"Feature","id":480,"geometry":{"type":"Polygon","coordinates":[[[-75.149841979449874,39.931028823087367],[-75.149855538198963,39.931029130510659],[-75.149861741385507,39.931024628193647],[-75.149863603658048,39.931015383588566],[-75.149902917881946,39.930815448079308],[-75.149887010135217,39.930797674259374],[-75.149869109329046,39.930792625426037],[-75.149855506269333,39.930793477514342],[-75.149840218406354,39.930798935265599],[-75.149824753073389,39.930809031955057],[-75.149761069681688,39.930975911441905],[-75.149751187448715,39.930997743476702],[-75.149762973828388,39.931004975620525],[-75.149841979449874,39.931028823087367]]]},"properties":{"OBJECTID_1":480,"OBJECTID":423,"ASSET_NAME":"Greble Post (War Memorial)","SITE_NAME":"Greble Post (War Memorial)","CHILD_OF":"Greble Post (War Memorial)","ADDRESS":"1327 S 03RD ST","TYPE":"Land","USE_":"Statue\\Monument\\Sculpture","ACREAGE":0.049971000000000002,"ZIPCODE":"19147","ALLIAS":" ","GLOBALID":"fc9c6bd2-0a07-4990-a650-e38dbd7df755","Shape_Length":210.52338967981251,"Shape_Area":2176.7413332362489}},{"type":"Feature","id":481,"geometry":{"type":"Polygon","coordinates":[[[-75.081831144583518,40.076731900245669],[-75.081693065511601,40.076652625220206],[-75.081594032573477,40.076746116898583],[-75.081735776123438,40.076825476220648],[-75.081831144583518,40.076731900245669]]]},"properties":{"OBJECTID_1":481,"OBJECTID":424,"ASSET_NAME":"Jeanes & Rhawn War Memorial","SITE_NAME":"Jeanes & Rhawn War Memorial","CHILD_OF":"Jeanes & Rhawn War Memorial","ADDRESS":"501 RHAWN ST","TYPE":"Land","USE_":"Statue\\Monument\\Sculpture","ACREAGE":0.048668999999999997,"ZIPCODE":"19111","ALLIAS":" ","GLOBALID":"9c42f566-7d8b-4750-8bc7-b6b343c3159b","Shape_Length":184.52414232032453,"Shape_Area":2120.0096474398715}},{"type":"Feature","id":482,"geometry":{"type":"Polygon","coordinates":[[[-75.176433976845004,39.924029078277862],[-75.176425286731643,39.924029507641031],[-75.176416821396657,39.924031078226697],[-75.176408830766164,39.924033741583472],[-75.176403709632964,39.924036619812121],[-75.176399206289744,39.924040057019631],[-75.176395424325747,39.924043975340695],[-75.176392449031098,39.924048285687341],[-75.176390347260735,39.924052891349668],[-75.176387009190776,39.924096084909301],[-75.176388152110022,39.924100299373869],[-75.176390179218657,39.924104311132886],[-75.176393034907022,39.924108012618618],[-75.176396643483415,39.924111301218581],[-75.176400904156424,39.924114088173333],[-75.176405144790863,39.924116600769949],[-75.176409815193352,39.924118611236338],[-75.176414816307712,39.92412007770465],[-75.176420041687393,39.924120968052264],[-75.176425378562286,39.924121262628901],[-75.176537512159427,39.924095561335349],[-75.176541305189104,39.924093854345529],[-75.17654467912854,39.92409168744323],[-75.176547540424281,39.924089120698838],[-75.176549811517603,39.924086224452786],[-75.17655142850596,39.924083079263227],[-75.176552348362904,39.924079770661869],[-75.17655348632367,39.924074966767677],[-75.176553686352577,39.924070085059867],[-75.17655294432582,39.924065234468515],[-75.176551277234296,39.924060522595575],[-75.176548720981529,39.924056052061367],[-75.176545233371797,39.924052226473933],[-75.176541074485399,39.92404882191159],[-75.176536329460077,39.924045907861057],[-75.176531093230523,39.9240435423158],[-75.176433976845004,39.924029078277862]]]},"properties":{"OBJECTID_1":482,"OBJECTID":425,"ASSET_NAME":"18th and Jackson War Memorial","SITE_NAME":"18th and Jackson War Memorial","CHILD_OF":"18th and Jackson War Memorial","ADDRESS":"1800 W PASSYUNK AVE","TYPE":"Land","USE_":"Statue\\Monument\\Sculpture","ACREAGE":0.027116000000000001,"ZIPCODE":"19145","ALLIAS":" ","GLOBALID":"b066b9c9-8985-47ad-9bb8-1e238e15c138","Shape_Length":130.98414251179429,"Shape_Area":1179.9640248937853}},{"type":"Feature","id":483,"geometry":{"type":"Polygon","coordinates":[[[-75.179339368063864,39.942360363464196],[-75.179393442650863,39.942369167323143],[-75.179425427852635,39.942207332498519],[-75.179373065258261,39.942200371749401],[-75.179339368063864,39.942360363464196]]]},"properties":{"OBJECTID_1":483,"OBJECTID":426,"ASSET_NAME":"22nd & Catherine Park","SITE_NAME":"22nd & Catherine Park","CHILD_OF":"22nd & Catherine Park","ADDRESS":"2200 CATHARINE ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.020688000000000002,"ZIPCODE":"19146","ALLIAS":" ","GLOBALID":"a2e998a1-7d83-4272-8c43-0558a57ad64a","Shape_Length":149.07243099893364,"Shape_Area":901.15972021997413}},{"type":"Feature","id":484,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.219013752903663,40.026099505362566],[-75.219226202017182,40.026323318253503],[-75.219258081883993,40.026356371135435],[-75.219591491512787,40.026159453527214],[-75.219605444063944,40.026149141791201],[-75.219613456202751,40.026143220373172],[-75.219615523139055,40.026117863170697],[-75.219602061781856,40.026104405683469],[-75.219558041856757,40.026060396857929],[-75.219281799843841,40.025785988804877],[-75.219181236892481,40.025680814685721],[-75.219153563099667,40.025667514252412],[-75.219130680698484,40.025664011445834],[-75.219103018648312,40.025667620296296],[-75.219080060074489,40.025671063399805],[-75.219071674425706,40.025671569657298],[-75.219056742582495,40.025672471342141],[-75.219033364385126,40.025671829972396],[-75.219010238280745,40.025669142580341],[-75.218965919447527,40.025657807040147],[-75.218945310742214,40.02564930601325],[-75.218926091696744,40.025639053435569],[-75.218900270344008,40.025618475857726],[-75.218881073061624,40.02559821185654],[-75.218861893635804,40.025579166395431],[-75.218463069857265,40.025183129806472],[-75.218460937461117,40.025181479923056],[-75.218386855750836,40.025124171420146],[-75.218356194534167,40.025103813179022],[-75.218306469878357,40.025070797303087],[-75.21825949903031,40.025049008191694],[-75.218218239297613,40.02502966774437],[-75.218182778754638,40.025016258467225],[-75.21814609185266,40.025004967419363],[-75.218108389294116,40.024995864116917],[-75.218045808440877,40.025001645499799],[-75.217900796579841,40.025015042806821],[-75.218172870122714,40.025148772443842],[-75.218298506362203,40.025283543048644],[-75.21828116530537,40.025291160721672],[-75.218587378503884,40.025624386930801],[-75.218587347167883,40.025624535805811],[-75.219013752903663,40.026099505362566]]],[[[-75.216707187373302,40.024830150852566],[-75.216890543933971,40.024852699288296],[-75.217573825730753,40.02486425334876],[-75.21764331824582,40.024802541059991],[-75.217701867462409,40.024731262084181],[-75.217533546906722,40.024729173036945],[-75.217329327133044,40.024593682089169],[-75.217471132915861,40.024487374083236],[-75.217360759303759,40.02437394409273],[-75.216941465840321,40.024667484183382],[-75.216707187373302,40.024830150852566]]]]},"properties":{"OBJECTID_1":484,"OBJECTID":427,"ASSET_NAME":"Boone Park","SITE_NAME":"Boone Park","CHILD_OF":"Boone Park","ADDRESS":"4200 BOONE ST","TYPE":"Land","USE_":"Park- Watershed\\Conservation","ACREAGE":1.736837,"ZIPCODE":"19128","ALLIAS":" ","GLOBALID":"35820ad0-7b03-43c0-98f2-c1618e865d00","Shape_Length":2215.3763901640959,"Shape_Area":75656.310104007163}},{"type":"Feature","id":485,"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.143655632399131,39.941090437402231],[-75.143634122754506,39.941223343303136],[-75.14359484504574,39.941466032467169],[-75.14357638014495,39.941572376908297],[-75.143573092754806,39.941591311091251],[-75.143554130891133,39.941707742004581],[-75.143532257744795,39.941842057843949],[-75.143516474332444,39.941974467648379],[-75.143487581739194,39.942239387671286],[-75.143473756097563,39.94236039446276],[-75.143468783619298,39.942403910810945],[-75.143430300735588,39.942732810793053],[-75.143426660164465,39.942757959414223],[-75.143425767196319,39.942764119239754],[-75.143423020044011,39.942783065697469],[-75.143420194737487,39.942796114983679],[-75.143417601505249,39.942808088315914],[-75.143414438234274,39.942825553945902],[-75.143413074622259,39.942833088849497],[-75.143391425465865,39.942933106005206],[-75.14337513151952,39.943008377518161],[-75.143339582269405,39.943176642142063],[-75.143301019388247,39.943359167243067],[-75.14328610922017,39.943425427525646],[-75.143321533906331,39.943429571792883],[-75.143374624984901,39.943435796139056],[-75.143402479209968,39.9434390619341],[-75.143467408317335,39.943446664421288],[-75.143562861940964,39.943001077271362],[-75.14356488669101,39.942991625596342],[-75.143581056204056,39.942916143998289],[-75.143672437661451,39.942489556030274],[-75.143706020695475,39.942334894447576],[-75.143707051658808,39.94233127053247],[-75.143710476330824,39.942315502056914],[-75.143734135864676,39.942206541929387],[-75.14377227705225,39.942026021825804],[-75.143775714248008,39.942011970983657],[-75.143787086946702,39.94196546900146],[-75.143849348673555,39.941667705298556],[-75.143861002950842,39.941613827626355],[-75.143899223293459,39.941437117016214],[-75.143922564690456,39.941327401783937],[-75.143960157082532,39.941150696714161],[-75.143967829057772,39.941113452441648],[-75.143971329564906,39.941096893684453],[-75.143980902683793,39.941051616737347],[-75.143994186492264,39.94105273578959],[-75.143994240497847,39.941052731610505],[-75.143994862256136,39.941052390734455],[-75.144000618525766,39.941049229184799],[-75.144001476290768,39.941045877946593],[-75.144001667577939,39.941045132641591],[-75.144028900800166,39.940916459993232],[-75.144017383525863,39.940914360222671],[-75.144017696352975,39.940906263528312],[-75.144017954954833,39.940899519839668],[-75.144016657550281,39.940898371290608],[-75.144012778887898,39.940894938565521],[-75.144012525639766,39.940895010299428],[-75.143995744155731,39.940899724291263],[-75.143986758252453,39.940902247517563],[-75.143986630424394,39.940902284258129],[-75.143982882542659,39.940898615732372],[-75.143975454501202,39.940891344191847],[-75.144015136690555,39.94070472938764],[-75.144035305641367,39.940609875616786],[-75.14409291940747,39.940353101885101],[-75.144126749526194,39.940202322935065],[-75.144188060577378,39.940185087270351],[-75.144188093979736,39.940185070909791],[-75.144191795055931,39.940180801253675],[-75.1441921993205,39.940180118452716],[-75.144194656009688,39.940175973698267],[-75.144195744004421,39.940170891418255],[-75.144223995198757,39.940038852216965],[-75.144225124266086,39.940032698652445],[-75.144223467370566,39.940029356055938],[-75.144220715754386,39.940027424818688],[-75.144219994402548,39.940026913768207],[-75.144215650893315,39.940025805939797],[-75.144215577869744,39.940025787161311],[-75.144178934600376,39.940035762408471],[-75.144178622327644,39.940035847218049],[-75.144167017282825,39.940012839926894],[-75.144234698599675,39.939713183627049],[-75.144296963299368,39.939694387384499],[-75.144301426762084,39.939693465227464],[-75.144301459784458,39.939693458769518],[-75.144301481081371,39.939693422311429],[-75.144306221447223,39.939685491980505],[-75.144333744409195,39.939549324847547],[-75.144334663204816,39.939546670583908],[-75.14433474623776,39.939546428293042],[-75.144334894176723,39.939542569869168],[-75.144332350538235,39.939539122432222],[-75.144331399242702,39.939538625079834],[-75.144327979938666,39.93953682914659],[-75.144323542000933,39.93953626159221],[-75.144323438256023,39.939536280859784],[-75.144287612059657,39.939542690428468],[-75.144274891307148,39.939525673029181],[-75.144401257642414,39.938974859832349],[-75.144458947036085,39.938959091530883],[-75.144464440280032,39.938955396888502],[-75.144465335135195,39.938954221560046],[-75.14446819721978,39.938950461737313],[-75.144470204705314,39.938944629068502],[-75.144495680190857,39.938815229832194],[-75.144496244941209,39.938813749666764],[-75.144496670439452,39.938812634856276],[-75.144495603878951,39.938811419474234],[-75.14449325209489,39.938808738664349],[-75.144488891688042,39.938806150079884],[-75.144483572513877,39.938805304818388],[-75.144449380524307,39.938812880535771],[-75.144448580306573,39.938811618043694],[-75.144439295626853,39.938796998855011],[-75.144480642753479,39.938621633193058],[-75.144519180102222,39.938458183691729],[-75.144601520610124,39.938427527297236],[-75.144605394197939,39.93841954843348],[-75.14460660917878,39.938411121734987],[-75.144606041827345,39.938402655448805],[-75.144583688847007,39.93838082134706],[-75.144670192503739,39.93798564160636],[-75.14480081816437,39.937416687242795],[-75.144873604398526,39.937090313270076],[-75.144913905458381,39.936909599589804],[-75.144956945972211,39.936717476300394],[-75.144959063461982,39.936708770959783],[-75.144958512053918,39.936699918499059],[-75.144955268467967,39.936691434675573],[-75.144949314888095,39.936683875916529],[-75.144938897465806,39.936676430207356],[-75.144926614350496,39.936670876615111],[-75.144913373657531,39.93666752499518],[-75.144913023920893,39.936667518853127],[-75.144683888967947,39.936663682568259],[-75.144683405464704,39.936663685100037],[-75.144675477826794,39.936684478123304],[-75.144624032562561,39.936816634724636],[-75.14451047347093,39.93712653513964],[-75.144498846229922,39.937160690072588],[-75.144439111047163,39.937336164174106],[-75.144371619535164,39.937537902557338],[-75.144362098477814,39.937568194889529],[-75.144320827639476,39.937699511218376],[-75.144276242093625,39.937838818185192],[-75.144236675920155,39.93796352096642],[-75.144227506926242,39.937995373751662],[-75.144202719528536,39.938081484495896],[-75.144166356592905,39.938215746008623],[-75.144126047987641,39.938359739015944],[-75.144123495486156,39.938367757792278],[-75.144121991845012,39.938372477426306],[-75.144125846024764,39.938374072408543],[-75.144127259823804,39.938374656858478],[-75.144117313571343,39.938418596322144],[-75.144089676153442,39.938540685021167],[-75.144070433777202,39.938630074413503],[-75.14405386310942,39.938707053447033],[-75.144021603013641,39.938873802634809],[-75.14400535210568,39.938972171110017],[-75.143982110089553,39.939112865777588],[-75.143904008012967,39.939591183313986],[-75.143866949356337,39.93981326519836],[-75.143844141221237,39.939949925915634],[-75.143792834596439,39.940257343405797],[-75.143767018985571,39.940418789598652],[-75.143755311685823,39.940491969576193],[-75.143755298087399,39.940492049458221],[-75.143741210528177,39.940580107104125],[-75.143713618873775,39.940741341737258],[-75.143706248159418,39.940782723131548],[-75.143685201226234,39.940900883495274],[-75.143673387208068,39.94097635324578],[-75.143655632399131,39.941090437402231]]],[[[-75.142879124892374,39.94528730576706],[-75.142874029804958,39.94531005072421],[-75.142860880740429,39.94536874005238],[-75.142789214600015,39.945725420172721],[-75.142722001634468,39.946060508445832],[-75.142623761200753,39.946550277401982],[-75.142594222327077,39.94669241455734],[-75.142489703993476,39.947219498077281],[-75.142595642510358,39.947232223864695],[-75.14260410588237,39.947233212752408],[-75.142728679094986,39.946675431217358],[-75.142835829132181,39.946184430267962],[-75.14295136702259,39.945660672172323],[-75.142951911192853,39.945658266193846],[-75.143015875815934,39.945374365911114],[-75.143015536408413,39.945364508209593],[-75.143015454554131,39.945362125845442],[-75.143012346834951,39.945350126564101],[-75.143006542432033,39.945338665172095],[-75.142998922604335,39.945328022094294],[-75.142986841680226,39.94531740556728],[-75.142982836776426,39.945315091717099],[-75.142972005228359,39.945308830299119],[-75.142959573857567,39.945303961541278],[-75.142956187802668,39.945302634860973],[-75.142921765523312,39.945293055787857],[-75.142879178559241,39.945287066413684],[-75.142879124892374,39.94528730576706]]],[[[-75.144637099268522,39.936475786224584],[-75.144782497364076,39.936498571070558],[-75.144922502813785,39.936522434302141],[-75.145145059309655,39.935602580365803],[-75.144981761940386,39.935558148654245],[-75.144637099268522,39.936475786224584]]],[[[-75.145411324820316,39.93391436153891],[-75.14535503265941,39.9341730831175],[-75.145255995129872,39.934546435071006],[-75.145173981979326,39.934847955750335],[-75.145026283327766,39.935397169514765],[-75.145184411130188,39.935436849796126],[-75.145543945159517,39.93375843030239],[-75.145446339528249,39.933745399553978],[-75.145411324820316,39.93391436153891]]]]},"properties":{"OBJECTID_1":485,"OBJECTID":428,"ASSET_NAME":"I-95 Park","SITE_NAME":"I-95 Park","CHILD_OF":"I-95 Park","ADDRESS":"301-999 S FRONT ST","TYPE":"Land","USE_":"Park- Linear\\Parkway","ACREAGE":6.8426960000000001,"ZIPCODE":"19147","ALLIAS":" ","GLOBALID":"1181275d-5c51-44f0-a170-835cc79c4c39","Shape_Length":8861.4866384532579,"Shape_Area":298066.57462319336}},{"type":"Feature","id":486,"geometry":{"type":"Polygon","coordinates":[[[-75.096550279696132,39.977274952595927],[-75.096256713769279,39.977432184425439],[-75.097347783696975,39.978645924447122],[-75.097744356553463,39.978624510381294],[-75.097795367762998,39.978607473080586],[-75.097672266923695,39.978490029669949],[-75.0975894580816,39.97846077106707],[-75.096550279696132,39.977274952595927]]]},"properties":{"OBJECTID_1":486,"OBJECTID":429,"ASSET_NAME":"Pulaski Park","SITE_NAME":"Pulaski Park","CHILD_OF":"Pulaski Park","ADDRESS":"3001 E ALLEGHENY AVE","TYPE":"Land","USE_":"Park- Mini","ACREAGE":1.279909,"ZIPCODE":"19134","ALLIAS":" ","GLOBALID":"83ffa8b9-3911-43cf-ac56-bc8cc18adde8","Shape_Length":1366.2936240306283,"Shape_Area":55752.654955791826}},{"type":"Feature","id":487,"geometry":{"type":"Polygon","coordinates":[[[-75.151551821013953,39.93307668044811],[-75.151585130769249,39.9329196042261],[-75.151421386396677,39.932897645668199],[-75.151379808955809,39.932891948866001],[-75.151356775685514,39.93300094605226],[-75.151398255345725,39.93300644692615],[-75.151440545605666,39.933012144554347],[-75.151433720436529,39.93304439242192],[-75.151443761603673,39.933045764240234],[-75.151440428144838,39.933061196180887],[-75.151496133334703,39.933069260191061],[-75.151551821013953,39.93307668044811]]]},"properties":{"OBJECTID_1":487,"OBJECTID":430,"ASSET_NAME":"Manton Street Park","SITE_NAME":"Manton Street Park","CHILD_OF":"Manton Street Park","ADDRESS":"405-11 MANTON ST","TYPE":"Land","USE_":"Park- Mini","ACREAGE":0.06762,"ZIPCODE":"19147","ALLIAS":" ","GLOBALID":"a65390da-a99b-4e5c-87f4-deb07a6a2d2c","Shape_Length":232.70898105219567,"Shape_Area":2945.5004074189487}},{"type":"Feature","id":488,"geometry":{"type":"Polygon","coordinates":[[[-75.167163071955258,39.994292852478686],[-75.167777839899657,39.994373712233248],[-75.168115467377248,39.992822449856995],[-75.168115013524485,39.992809923653553],[-75.168112115235274,39.992800561791391],[-75.168103574303075,39.992792859717618],[-75.168090745049028,39.99278792280532],[-75.168075606078403,39.992782576234127],[-75.168061684505133,39.992781905379843],[-75.168050987213704,39.992782022456979],[-75.168041628413704,39.992783599551721],[-75.168029879530181,39.992786911396635],[-75.168016246025488,39.992790895351547],[-75.167354380799509,39.993134281118493],[-75.167301674646041,39.993398811713412],[-75.167353429014483,39.993407128454457],[-75.167163071955258,39.994292852478686]]]},"properties":{"OBJECTID_1":488,"OBJECTID":431,"ASSET_NAME":"Cecil B. Moore Recreation Center","SITE_NAME":"Cecil B. Moore Recreation Center","CHILD_OF":"Cecil B. Moore Recreation Center","ADDRESS":"2020-50 W LEHIGH AVE","TYPE":"Land","USE_":"Recreation Center","ACREAGE":2.1380680000000001,"ZIPCODE":"19132","ALLIAS":" ","GLOBALID":"aced494c-1fe9-4dc3-835c-c1b7f8ac173f","Shape_Length":1448.3643518016393,"Shape_Area":93133.915980212027}},{"type":"Feature","id":489,"geometry":{"type":"Polygon","coordinates":[[[-75.213082152642158,39.981568279737942],[-75.213124774265466,39.981572082571951],[-75.213244420773961,39.98155470251902],[-75.213295327580553,39.981535802982172],[-75.213318368241801,39.981516287495651],[-75.213357658934953,39.981459942336436],[-75.21338569614727,39.981406209113999],[-75.213390105612703,39.981387711703533],[-75.213390692770574,39.981371990490125],[-75.213389315950934,39.981359087448759],[-75.213382472007041,39.981343201988125],[-75.213382899019749,39.981331768705736],[-75.213377858876086,39.981317353904181],[-75.21334405630877,39.981276557247078],[-75.213281115401131,39.981219383229124],[-75.213210157524159,39.98117776525649],[-75.213133304413418,39.981144598064461],[-75.213030443750071,39.9811108568042],[-75.212980711655661,39.981098314701221],[-75.212855449983095,39.981066938755994],[-75.212772384922616,39.981050798970713],[-75.212622385727016,39.981034610059275],[-75.212475835174686,39.981025648454292],[-75.212345471157391,39.981031347982309],[-75.212416382243958,39.981522093293016],[-75.212462174918031,39.981590331360955],[-75.212609954710047,39.98156642275503],[-75.212705503014533,39.9815470796716],[-75.21274871187768,39.981535162335653],[-75.212789636450751,39.981534636304787],[-75.213082152642158,39.981568279737942]]]},"properties":{"OBJECTID_1":489,"OBJECTID":432,"ASSET_NAME":"Japanese Gardens","SITE_NAME":"Japanese Gardens","CHILD_OF":"West Fairmount Park","ADDRESS":"4301 LANSDOWNE DR","TYPE":"Land","USE_":"Gardens","ACREAGE":1.055985,"ZIPCODE":"19131","ALLIAS":" ","GLOBALID":"49adc5b6-9329-4a6e-81f6-9b6f8422fc7a","Shape_Length":855.82605023037809,"Shape_Area":45998.592631121188}},{"type":"Feature","id":490,"geometry":{"type":"Polygon","coordinates":[[[-75.24614052664046,39.946458336952475],[-75.246750232894129,39.946536849946348],[-75.246824923425351,39.946440179788567],[-75.247310261754066,39.946128946266299],[-75.248209095763357,39.94569084962702],[-75.24806468448628,39.94532296553151],[-75.247212247296943,39.944753693202735],[-75.246912943214994,39.943547339881306],[-75.246724520643866,39.943632554994551],[-75.24614052664046,39.946458336952475]]]},"properties":{"OBJECTID_1":490,"OBJECTID":433,"ASSET_NAME":"61st & Cobbs Creek","SITE_NAME":"61st & Cobbs Creek","CHILD_OF":"Cobbs Creek Park","ADDRESS":"61st & COBBS CREEK","TYPE":"Land","USE_":"Recreation Site","ACREAGE":6.6899119999999996,"ZIPCODE":"19143","ALLIAS":" ","GLOBALID":"4ff38e24-e2e3-4e72-a6f4-bed502db6969","Shape_Length":2697.1454388811244,"Shape_Area":291411.4602082668}}] -} \ No newline at end of file diff --git a/examples/philly-park-lead-levels/data/soil-lead-2023-7.json b/examples/philly-park-lead-levels/data/soil-lead-2023-7.json deleted file mode 100644 index 9f1d3b6..0000000 --- a/examples/philly-park-lead-levels/data/soil-lead-2023-7.json +++ /dev/null @@ -1,7 +0,0 @@ -{"type":"FeatureCollection", -"features":[{"type":"Feature","id":1,"geometry":{"type":"Point","coordinates":[-75.115734184666792,39.97664558691892]}, -"properties":{"OBJECTID":1,"FID":1,"Lead__ppm":455,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}}, -{"type":"Feature","id":2, -"geometry":{"type":"Point", -"coordinates":[-75.115862913247,39.976661970473735]}, -"properties":{"OBJECTID":2,"FID":2,"Lead__ppm":867,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3,"geometry":{"type":"Point","coordinates":[-75.115592161020388,39.976634916954595]},"properties":{"OBJECTID":3,"FID":3,"Lead__ppm":315,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":4,"geometry":{"type":"Point","coordinates":[-75.115841533343243,39.976735971775454]},"properties":{"OBJECTID":4,"FID":4,"Lead__ppm":705,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":5,"geometry":{"type":"Point","coordinates":[-75.116699963428744,39.980599967479073]},"properties":{"OBJECTID":5,"FID":5,"Lead__ppm":176,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":6,"geometry":{"type":"Point","coordinates":[-75.116900018242532,39.980199969083756]},"properties":{"OBJECTID":6,"FID":6,"Lead__ppm":183,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":7,"geometry":{"type":"Point","coordinates":[-75.1164999984465,39.977699977690676]},"properties":{"OBJECTID":7,"FID":7,"Lead__ppm":161,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":8,"geometry":{"type":"Point","coordinates":[-75.116599980937622,39.979199997269255]},"properties":{"OBJECTID":8,"FID":8,"Lead__ppm":227,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":9,"geometry":{"type":"Point","coordinates":[-75.116099978650482,39.979600001518207]},"properties":{"OBJECTID":9,"FID":9,"Lead__ppm":92,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":10,"geometry":{"type":"Point","coordinates":[-75.13047796393046,39.970948965789496]},"properties":{"OBJECTID":10,"FID":10,"Lead__ppm":168,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":11,"geometry":{"type":"Point","coordinates":[-75.130437988900312,39.970868968768421]},"properties":{"OBJECTID":11,"FID":11,"Lead__ppm":102,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":12,"geometry":{"type":"Point","coordinates":[-75.130378969586147,39.970892031602524]},"properties":{"OBJECTID":12,"FID":12,"Lead__ppm":56,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":13,"geometry":{"type":"Point","coordinates":[-75.126399971866661,39.972500008285095]},"properties":{"OBJECTID":13,"FID":13,"Lead__ppm":1760,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":14,"geometry":{"type":"Point","coordinates":[-75.126399971866661,39.972500008285095]},"properties":{"OBJECTID":14,"FID":14,"Lead__ppm":1966,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":15,"geometry":{"type":"Point","coordinates":[-75.126500044189328,39.972500008285095]},"properties":{"OBJECTID":15,"FID":15,"Lead__ppm":821,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":16,"geometry":{"type":"Point","coordinates":[-75.126500044189328,39.972500008285095]},"properties":{"OBJECTID":16,"FID":16,"Lead__ppm":1052,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":17,"geometry":{"type":"Point","coordinates":[-75.127600031254715,39.971800012638738]},"properties":{"OBJECTID":17,"FID":17,"Lead__ppm":137,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":18,"geometry":{"type":"Point","coordinates":[-75.127600031254715,39.971899973116727]},"properties":{"OBJECTID":18,"FID":18,"Lead__ppm":147,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":19,"geometry":{"type":"Point","coordinates":[-75.127799996236973,39.971800012638738]},"properties":{"OBJECTID":19,"FID":19,"Lead__ppm":69,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":20,"geometry":{"type":"Point","coordinates":[-75.127999961219217,39.971699983171121]},"properties":{"OBJECTID":20,"FID":20,"Lead__ppm":94,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":21,"geometry":{"type":"Point","coordinates":[-75.123037038769041,39.981730013965468]},"properties":{"OBJECTID":21,"FID":21,"Lead__ppm":517,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":22,"geometry":{"type":"Point","coordinates":[-75.123102975110896,39.981703031286145]},"properties":{"OBJECTID":22,"FID":22,"Lead__ppm":543,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":23,"geometry":{"type":"Point","coordinates":[-75.126676024153483,39.97885299461209]},"properties":{"OBJECTID":23,"FID":23,"Lead__ppm":98,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":24,"geometry":{"type":"Point","coordinates":[-75.126638025416966,39.978864008411271]},"properties":{"OBJECTID":24,"FID":24,"Lead__ppm":179,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":25,"geometry":{"type":"Point","coordinates":[-75.130022967239057,39.971182003049464]},"properties":{"OBJECTID":25,"FID":25,"Lead__ppm":458,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":26,"geometry":{"type":"Point","coordinates":[-75.130003024639748,39.971147994116286]},"properties":{"OBJECTID":26,"FID":26,"Lead__ppm":541,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":27,"geometry":{"type":"Point","coordinates":[-75.110999973287946,39.978699971456159]},"properties":{"OBJECTID":27,"FID":27,"Lead__ppm":70,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":28,"geometry":{"type":"Point","coordinates":[-75.110899990796838,39.979799968346938]},"properties":{"OBJECTID":28,"FID":28,"Lead__ppm":109,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":29,"geometry":{"type":"Point","coordinates":[-75.110899990796838,39.980400002991452]},"properties":{"OBJECTID":29,"FID":29,"Lead__ppm":68,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":30,"geometry":{"type":"Point","coordinates":[-75.112200032676,39.980000003425609]},"properties":{"OBJECTID":30,"FID":30,"Lead__ppm":46,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":31,"geometry":{"type":"Point","coordinates":[-75.112300015167136,39.979000028684773]},"properties":{"OBJECTID":31,"FID":31,"Lead__ppm":76,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":32,"geometry":{"type":"Point","coordinates":[-75.112200032676,39.979000028684773]},"properties":{"OBJECTID":32,"FID":32,"Lead__ppm":93,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":33,"geometry":{"type":"Point","coordinates":[-75.112399997658258,39.979099978632149]},"properties":{"OBJECTID":33,"FID":33,"Lead__ppm":65,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":34,"geometry":{"type":"Point","coordinates":[-75.112200032676,39.979000028684773]},"properties":{"OBJECTID":34,"FID":34,"Lead__ppm":217,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":35,"geometry":{"type":"Point","coordinates":[-75.11199997786224,39.978799990678766]},"properties":{"OBJECTID":35,"FID":35,"Lead__ppm":258,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":36,"geometry":{"type":"Point","coordinates":[-75.110200023527455,39.979000028684773]},"properties":{"OBJECTID":36,"FID":36,"Lead__ppm":47,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":37,"geometry":{"type":"Point","coordinates":[-75.110300006018562,39.979799968346938]},"properties":{"OBJECTID":37,"FID":37,"Lead__ppm":690,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":38,"geometry":{"type":"Point","coordinates":[-75.110300006018562,39.97970001942344]},"properties":{"OBJECTID":38,"FID":38,"Lead__ppm":429,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":39,"geometry":{"type":"Point","coordinates":[-75.110499971000806,39.97989998595947]},"properties":{"OBJECTID":39,"FID":39,"Lead__ppm":184,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":40,"geometry":{"type":"Point","coordinates":[-75.110600043323473,39.979799968346938]},"properties":{"OBJECTID":40,"FID":40,"Lead__ppm":238,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":41,"geometry":{"type":"Point","coordinates":[-75.110600043323473,39.979799968346938]},"properties":{"OBJECTID":41,"FID":41,"Lead__ppm":228,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":42,"geometry":{"type":"Point","coordinates":[-75.110700025814594,39.979799968346938]},"properties":{"OBJECTID":42,"FID":42,"Lead__ppm":127,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":43,"geometry":{"type":"Point","coordinates":[-75.110700025814594,39.97970001942344]},"properties":{"OBJECTID":43,"FID":43,"Lead__ppm":123,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":44,"geometry":{"type":"Point","coordinates":[-75.110800008305702,39.97970001942344]},"properties":{"OBJECTID":44,"FID":44,"Lead__ppm":103,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":45,"geometry":{"type":"Point","coordinates":[-75.112099960353376,39.979000028684773]},"properties":{"OBJECTID":45,"FID":45,"Lead__ppm":103,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":46,"geometry":{"type":"Point","coordinates":[-75.109800003731422,39.979300015759975]},"properties":{"OBJECTID":46,"FID":46,"Lead__ppm":149,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":47,"geometry":{"type":"Point","coordinates":[-75.109600038749178,39.979499983466582]},"properties":{"OBJECTID":47,"FID":47,"Lead__ppm":160,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":48,"geometry":{"type":"Point","coordinates":[-75.108100031887759,39.979300015759975]},"properties":{"OBJECTID":48,"FID":48,"Lead__ppm":29,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":49,"geometry":{"type":"Point","coordinates":[-75.10820001437888,39.979499983466582]},"properties":{"OBJECTID":49,"FID":49,"Lead__ppm":25,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":50,"geometry":{"type":"Point","coordinates":[-75.108399979361138,39.97970001942344]},"properties":{"OBJECTID":50,"FID":50,"Lead__ppm":458,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":51,"geometry":{"type":"Point","coordinates":[-75.10849996185226,39.979600001518207]},"properties":{"OBJECTID":51,"FID":51,"Lead__ppm":468,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":52,"geometry":{"type":"Point","coordinates":[-75.10849996185226,39.979600001518207]},"properties":{"OBJECTID":52,"FID":52,"Lead__ppm":558,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":53,"geometry":{"type":"Point","coordinates":[-75.108399979361138,39.979499983466582]},"properties":{"OBJECTID":53,"FID":53,"Lead__ppm":389,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":54,"geometry":{"type":"Point","coordinates":[-75.106500042535217,39.981499972515465]},"properties":{"OBJECTID":54,"FID":54,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":55,"geometry":{"type":"Point","coordinates":[-75.106600025026353,39.981300010661712]},"properties":{"OBJECTID":55,"FID":55,"Lead__ppm":34,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":56,"geometry":{"type":"Point","coordinates":[-75.107299992295722,39.982200006477299]},"properties":{"OBJECTID":56,"FID":56,"Lead__ppm":255,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":57,"geometry":{"type":"Point","coordinates":[-75.107399974786844,39.982200006477299]},"properties":{"OBJECTID":57,"FID":57,"Lead__ppm":40,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":58,"geometry":{"type":"Point","coordinates":[-75.10849996185226,39.982499979503899]},"properties":{"OBJECTID":58,"FID":58,"Lead__ppm":218,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":59,"geometry":{"type":"Point","coordinates":[-75.10870001666602,39.982399965697176]},"properties":{"OBJECTID":59,"FID":59,"Lead__ppm":296,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":60,"geometry":{"type":"Point","coordinates":[-75.1089999641394,39.982300020576758]},"properties":{"OBJECTID":60,"FID":60,"Lead__ppm":111,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":61,"geometry":{"type":"Point","coordinates":[-75.10920001895316,39.982499979503899]},"properties":{"OBJECTID":61,"FID":61,"Lead__ppm":114,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":62,"geometry":{"type":"Point","coordinates":[-75.10870001666602,39.982800020045822]},"properties":{"OBJECTID":62,"FID":62,"Lead__ppm":94,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":63,"geometry":{"type":"Point","coordinates":[-75.110800008305702,39.980400002991452]},"properties":{"OBJECTID":63,"FID":63,"Lead__ppm":331,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":64,"geometry":{"type":"Point","coordinates":[-75.114599971789062,39.982300020576758]},"properties":{"OBJECTID":64,"FID":64,"Lead__ppm":654,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":65,"geometry":{"type":"Point","coordinates":[-75.11449998929794,39.982499979503899]},"properties":{"OBJECTID":65,"FID":65,"Lead__ppm":305,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":66,"geometry":{"type":"Point","coordinates":[-75.122100006096176,39.97709998817492]},"properties":{"OBJECTID":66,"FID":66,"Lead__ppm":460,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":67,"geometry":{"type":"Point","coordinates":[-75.11199997786224,39.977200009739356]},"properties":{"OBJECTID":67,"FID":67,"Lead__ppm":514,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":68,"geometry":{"type":"Point","coordinates":[-75.122000023605054,39.977200009739356]},"properties":{"OBJECTID":68,"FID":68,"Lead__ppm":857,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":69,"geometry":{"type":"Point","coordinates":[-75.122100006096176,39.977200009739356]},"properties":{"OBJECTID":69,"FID":69,"Lead__ppm":330,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":70,"geometry":{"type":"Point","coordinates":[-75.121900041113932,39.977200009739356]},"properties":{"OBJECTID":70,"FID":70,"Lead__ppm":807,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":71,"geometry":{"type":"Point","coordinates":[-75.124000032753614,39.972500008285095]},"properties":{"OBJECTID":71,"FID":71,"Lead__ppm":268,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":72,"geometry":{"type":"Point","coordinates":[-75.11909999237335,39.974199987534625]},"properties":{"OBJECTID":72,"FID":72,"Lead__ppm":686,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":73,"geometry":{"type":"Point","coordinates":[-75.118900027391092,39.974300013343466]},"properties":{"OBJECTID":73,"FID":73,"Lead__ppm":2332,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":74,"geometry":{"type":"Point","coordinates":[-75.118699972577318,39.974499995681349]},"properties":{"OBJECTID":74,"FID":74,"Lead__ppm":657,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":75,"geometry":{"type":"Point","coordinates":[-75.118500007595074,39.97460002105106]},"properties":{"OBJECTID":75,"FID":75,"Lead__ppm":547,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":76,"geometry":{"type":"Point","coordinates":[-75.118300042612816,39.97460002105106]},"properties":{"OBJECTID":76,"FID":76,"Lead__ppm":272,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":77,"geometry":{"type":"Point","coordinates":[-75.118099987799056,39.974699977434014]},"properties":{"OBJECTID":77,"FID":77,"Lead__ppm":137,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":78,"geometry":{"type":"Point","coordinates":[-75.117900022816812,39.974800002511088]},"properties":{"OBJECTID":78,"FID":78,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":79,"geometry":{"type":"Point","coordinates":[-75.11750000302078,39.974999983385892]},"properties":{"OBJECTID":79,"FID":79,"Lead__ppm":281,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":80,"geometry":{"type":"Point","coordinates":[-75.117300038038536,39.974699977434014]},"properties":{"OBJECTID":80,"FID":80,"Lead__ppm":308,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":81,"geometry":{"type":"Point","coordinates":[-75.121400038826792,39.976699969291715]},"properties":{"OBJECTID":81,"FID":81,"Lead__ppm":608,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":82,"geometry":{"type":"Point","coordinates":[-75.125100019819044,39.976600015833924]},"properties":{"OBJECTID":82,"FID":82,"Lead__ppm":126,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":83,"geometry":{"type":"Point","coordinates":[-75.124500035040754,39.976199994024135]},"properties":{"OBJECTID":83,"FID":83,"Lead__ppm":485,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":84,"geometry":{"type":"Point","coordinates":[-75.12460001753189,39.976199994024135]},"properties":{"OBJECTID":84,"FID":84,"Lead__ppm":545,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":85,"geometry":{"type":"Point","coordinates":[-75.123600012957596,39.974999983385892]},"properties":{"OBJECTID":85,"FID":85,"Lead__ppm":141,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":86,"geometry":{"type":"Point","coordinates":[-75.123600012957596,39.974999983385892]},"properties":{"OBJECTID":86,"FID":86,"Lead__ppm":374,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":87,"geometry":{"type":"Point","coordinates":[-75.123199993161577,39.973699993977498]},"properties":{"OBJECTID":87,"FID":87,"Lead__ppm":1042,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":88,"geometry":{"type":"Point","coordinates":[-75.12935695628741,39.968955965644803]},"properties":{"OBJECTID":88,"FID":88,"Lead__ppm":532,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":89,"geometry":{"type":"Point","coordinates":[-75.12933395941613,39.968915965979733]},"properties":{"OBJECTID":89,"FID":89,"Lead__ppm":323,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":90,"geometry":{"type":"Point","coordinates":[-75.130422987035061,39.97091798588712]},"properties":{"OBJECTID":90,"FID":90,"Lead__ppm":74,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":91,"geometry":{"type":"Point","coordinates":[-75.130415980175854,39.97096899945219]},"properties":{"OBJECTID":91,"FID":91,"Lead__ppm":137,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":92,"geometry":{"type":"Point","coordinates":[-75.12976299479584,39.971353011274886]},"properties":{"OBJECTID":92,"FID":92,"Lead__ppm":346,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":93,"geometry":{"type":"Point","coordinates":[-75.12975203534937,39.971374972445126]},"properties":{"OBJECTID":93,"FID":93,"Lead__ppm":340,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":94,"geometry":{"type":"Point","coordinates":[-75.129768025361415,39.971397966264739]},"properties":{"OBJECTID":94,"FID":94,"Lead__ppm":353,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":95,"geometry":{"type":"Point","coordinates":[-75.130700027468691,39.971100009823488]},"properties":{"OBJECTID":95,"FID":95,"Lead__ppm":91,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":96,"geometry":{"type":"Point","coordinates":[-75.12960004040329,39.971499992640425]},"properties":{"OBJECTID":96,"FID":96,"Lead__ppm":226,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":97,"geometry":{"type":"Point","coordinates":[-75.131099957433179,39.971600022400715]},"properties":{"OBJECTID":97,"FID":97,"Lead__ppm":79,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":98,"geometry":{"type":"Point","coordinates":[-75.131386969166471,39.969328009600801]},"properties":{"OBJECTID":98,"FID":98,"Lead__ppm":234,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":99,"geometry":{"type":"Point","coordinates":[-75.131437005327783,39.969314997734941]},"properties":{"OBJECTID":99,"FID":99,"Lead__ppm":570,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":100,"geometry":{"type":"Point","coordinates":[-75.131399994738075,39.969699982686436]},"properties":{"OBJECTID":100,"FID":100,"Lead__ppm":226,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":101,"geometry":{"type":"Point","coordinates":[-75.129899987876669,39.968899993645671]},"properties":{"OBJECTID":101,"FID":101,"Lead__ppm":54,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":102,"geometry":{"type":"Point","coordinates":[-75.127799996236973,39.971600022400715]},"properties":{"OBJECTID":102,"FID":102,"Lead__ppm":23,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":103,"geometry":{"type":"Point","coordinates":[-75.128399981015249,39.971499992640425]},"properties":{"OBJECTID":103,"FID":103,"Lead__ppm":99,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":104,"geometry":{"type":"Point","coordinates":[-75.130100042690444,39.969499986304001]},"properties":{"OBJECTID":104,"FID":104,"Lead__ppm":256,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":105,"geometry":{"type":"Point","coordinates":[-75.129499968080637,39.968499995614451]},"properties":{"OBJECTID":105,"FID":105,"Lead__ppm":159,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":106,"geometry":{"type":"Point","coordinates":[-75.126299989375553,39.970399999839373]},"properties":{"OBJECTID":106,"FID":106,"Lead__ppm":312,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":107,"geometry":{"type":"Point","coordinates":[-75.125799987088413,39.970500031209447]},"properties":{"OBJECTID":107,"FID":107,"Lead__ppm":383,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":108,"geometry":{"type":"Point","coordinates":[-75.125299984801273,39.970700024665931]},"properties":{"OBJECTID":108,"FID":108,"Lead__ppm":350,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":109,"geometry":{"type":"Point","coordinates":[-75.120000014456494,39.978399981746726]},"properties":{"OBJECTID":109,"FID":109,"Lead__ppm":758,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":110,"geometry":{"type":"Point","coordinates":[-75.120500016743634,39.977900018916792]},"properties":{"OBJECTID":110,"FID":110,"Lead__ppm":268,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":111,"geometry":{"type":"Point","coordinates":[-75.120400034252512,39.977999970473157]},"properties":{"OBJECTID":111,"FID":111,"Lead__ppm":1240,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":112,"geometry":{"type":"Point","coordinates":[-75.120400034252512,39.977999970473157]},"properties":{"OBJECTID":112,"FID":112,"Lead__ppm":689,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":113,"geometry":{"type":"Point","coordinates":[-75.120199979438738,39.978099990720331]},"properties":{"OBJECTID":113,"FID":113,"Lead__ppm":651,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":114,"geometry":{"type":"Point","coordinates":[-75.120299961929859,39.978099990720331]},"properties":{"OBJECTID":114,"FID":114,"Lead__ppm":49,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":115,"geometry":{"type":"Point","coordinates":[-75.120299961929859,39.978099990720331]},"properties":{"OBJECTID":115,"FID":115,"Lead__ppm":710,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":116,"geometry":{"type":"Point","coordinates":[-75.120199979438738,39.978099990720331]},"properties":{"OBJECTID":116,"FID":116,"Lead__ppm":878,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":117,"geometry":{"type":"Point","coordinates":[-75.120099996947602,39.978200010821055]},"properties":{"OBJECTID":117,"FID":117,"Lead__ppm":67,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":118,"geometry":{"type":"Point","coordinates":[-75.11199997786224,39.978799990678766]},"properties":{"OBJECTID":118,"FID":118,"Lead__ppm":299,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":119,"geometry":{"type":"Point","coordinates":[-75.111899995371118,39.978600020923651]},"properties":{"OBJECTID":119,"FID":119,"Lead__ppm":408,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":120,"geometry":{"type":"Point","coordinates":[-75.11170003038886,39.978399981746726]},"properties":{"OBJECTID":120,"FID":120,"Lead__ppm":106,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":121,"geometry":{"type":"Point","coordinates":[-75.11120002810172,39.978600020923651]},"properties":{"OBJECTID":121,"FID":121,"Lead__ppm":73,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":122,"geometry":{"type":"Point","coordinates":[-75.11199997786224,39.979600001518207]},"properties":{"OBJECTID":122,"FID":122,"Lead__ppm":310,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":123,"geometry":{"type":"Point","coordinates":[-75.113900004519678,39.981800017448727]},"properties":{"OBJECTID":123,"FID":123,"Lead__ppm":243,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":124,"geometry":{"type":"Point","coordinates":[-75.110999973287946,39.979600001518207]},"properties":{"OBJECTID":124,"FID":124,"Lead__ppm":121,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":125,"geometry":{"type":"Point","coordinates":[-75.111099955779082,39.979400034104295]},"properties":{"OBJECTID":125,"FID":125,"Lead__ppm":295,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":126,"geometry":{"type":"Point","coordinates":[-75.111099955779082,39.980299986110808]},"properties":{"OBJECTID":126,"FID":126,"Lead__ppm":87,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":127,"geometry":{"type":"Point","coordinates":[-75.110999973287946,39.980500019725703]},"properties":{"OBJECTID":127,"FID":127,"Lead__ppm":101,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":128,"geometry":{"type":"Point","coordinates":[-75.111399993083978,39.980299986110808]},"properties":{"OBJECTID":128,"FID":128,"Lead__ppm":209,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":129,"geometry":{"type":"Point","coordinates":[-75.11249998014938,39.980100020745354]},"properties":{"OBJECTID":129,"FID":129,"Lead__ppm":174,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":130,"geometry":{"type":"Point","coordinates":[-75.112399997658258,39.980400002991452]},"properties":{"OBJECTID":130,"FID":130,"Lead__ppm":61,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":131,"geometry":{"type":"Point","coordinates":[-75.112800017454276,39.98069998392058]},"properties":{"OBJECTID":131,"FID":131,"Lead__ppm":100,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":132,"geometry":{"type":"Point","coordinates":[-75.110899990796838,39.978200010821055]},"properties":{"OBJECTID":132,"FID":132,"Lead__ppm":68,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":133,"geometry":{"type":"Point","coordinates":[-75.110800008305702,39.977999970473157]},"properties":{"OBJECTID":133,"FID":133,"Lead__ppm":52,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":134,"geometry":{"type":"Point","coordinates":[-75.110999973287946,39.978399981746726]},"properties":{"OBJECTID":134,"FID":134,"Lead__ppm":72,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":135,"geometry":{"type":"Point","coordinates":[-75.113800022028556,39.98069998392058]},"properties":{"OBJECTID":135,"FID":135,"Lead__ppm":450,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":136,"geometry":{"type":"Point","coordinates":[-75.113400002232538,39.980400002991452]},"properties":{"OBJECTID":136,"FID":136,"Lead__ppm":439,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":137,"geometry":{"type":"Point","coordinates":[-75.113400002232538,39.980299986110808]},"properties":{"OBJECTID":137,"FID":137,"Lead__ppm":42,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":138,"geometry":{"type":"Point","coordinates":[-75.113200037250294,39.980100020745354]},"properties":{"OBJECTID":138,"FID":138,"Lead__ppm":807,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":139,"geometry":{"type":"Point","coordinates":[-75.113200037250294,39.980000003425609]},"properties":{"OBJECTID":139,"FID":139,"Lead__ppm":477,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":140,"geometry":{"type":"Point","coordinates":[-75.11299998243652,39.983699996103155]},"properties":{"OBJECTID":140,"FID":140,"Lead__ppm":263,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":141,"geometry":{"type":"Point","coordinates":[-75.113099964927628,39.983699996103155]},"properties":{"OBJECTID":141,"FID":141,"Lead__ppm":452,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":142,"geometry":{"type":"Point","coordinates":[-75.113200037250294,39.983900019764299]},"properties":{"OBJECTID":142,"FID":142,"Lead__ppm":96,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":143,"geometry":{"type":"Point","coordinates":[-75.113200037250294,39.984199985327102]},"properties":{"OBJECTID":143,"FID":143,"Lead__ppm":41,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":144,"geometry":{"type":"Point","coordinates":[-75.11299998243652,39.984199985327102]},"properties":{"OBJECTID":144,"FID":144,"Lead__ppm":80,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":145,"geometry":{"type":"Point","coordinates":[-75.112700034963154,39.984299996498954]},"properties":{"OBJECTID":145,"FID":145,"Lead__ppm":237,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":146,"geometry":{"type":"Point","coordinates":[-75.11249998014938,39.98450001840343]},"properties":{"OBJECTID":146,"FID":146,"Lead__ppm":260,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":147,"geometry":{"type":"Point","coordinates":[-75.112300015167136,39.984600029136089]},"properties":{"OBJECTID":147,"FID":147,"Lead__ppm":150,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":148,"geometry":{"type":"Point","coordinates":[-75.112099960353376,39.984699970891995]},"properties":{"OBJECTID":148,"FID":148,"Lead__ppm":233,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":149,"geometry":{"type":"Point","coordinates":[-75.111899995371118,39.984799981331953]},"properties":{"OBJECTID":149,"FID":149,"Lead__ppm":165,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":150,"geometry":{"type":"Point","coordinates":[-75.111599958066222,39.984899991625461]},"properties":{"OBJECTID":150,"FID":150,"Lead__ppm":172,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":151,"geometry":{"type":"Point","coordinates":[-75.111399993083978,39.985000001772619]},"properties":{"OBJECTID":151,"FID":151,"Lead__ppm":442,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":152,"geometry":{"type":"Point","coordinates":[-75.11120002810172,39.985100011773362]},"properties":{"OBJECTID":152,"FID":152,"Lead__ppm":306,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":153,"geometry":{"type":"Point","coordinates":[-75.108299996870016,39.979400034104295]},"properties":{"OBJECTID":153,"FID":153,"Lead__ppm":330,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":154,"geometry":{"type":"Point","coordinates":[-75.110800008305702,39.980400002991452]},"properties":{"OBJECTID":154,"FID":154,"Lead__ppm":142,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":155,"geometry":{"type":"Point","coordinates":[-75.109300001444282,39.979199997269255]},"properties":{"OBJECTID":155,"FID":155,"Lead__ppm":145,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":156,"geometry":{"type":"Point","coordinates":[-75.109499966426526,39.979099978632149]},"properties":{"OBJECTID":156,"FID":156,"Lead__ppm":51,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":157,"geometry":{"type":"Point","coordinates":[-75.109600038749178,39.979000028684773]},"properties":{"OBJECTID":157,"FID":157,"Lead__ppm":146,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":158,"geometry":{"type":"Point","coordinates":[-75.109800003731422,39.979000028684773]},"properties":{"OBJECTID":158,"FID":158,"Lead__ppm":273,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":159,"geometry":{"type":"Point","coordinates":[-75.109899986222558,39.978900009754966]},"properties":{"OBJECTID":159,"FID":159,"Lead__ppm":127,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":160,"geometry":{"type":"Point","coordinates":[-75.109999968713666,39.978799990678766]},"properties":{"OBJECTID":160,"FID":160,"Lead__ppm":103,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":161,"geometry":{"type":"Point","coordinates":[-75.110100041036333,39.978799990678766]},"properties":{"OBJECTID":161,"FID":161,"Lead__ppm":141,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":162,"geometry":{"type":"Point","coordinates":[-75.110399988509698,39.978699971456159]},"properties":{"OBJECTID":162,"FID":162,"Lead__ppm":365,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":163,"geometry":{"type":"Point","coordinates":[-75.110499971000806,39.978600020923651]},"properties":{"OBJECTID":163,"FID":163,"Lead__ppm":200,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":164,"geometry":{"type":"Point","coordinates":[-75.110600043323473,39.978300030775436]},"properties":{"OBJECTID":164,"FID":164,"Lead__ppm":54,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":165,"geometry":{"type":"Point","coordinates":[-75.109800003731422,39.978399981746726]},"properties":{"OBJECTID":165,"FID":165,"Lead__ppm":213,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":166,"geometry":{"type":"Point","coordinates":[-75.109399983935418,39.978500001408413]},"properties":{"OBJECTID":166,"FID":166,"Lead__ppm":141,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":167,"geometry":{"type":"Point","coordinates":[-75.114400006806818,39.982800020045822]},"properties":{"OBJECTID":167,"FID":167,"Lead__ppm":273,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":168,"geometry":{"type":"Point","coordinates":[-75.112899999945398,39.983599984052979]},"properties":{"OBJECTID":168,"FID":168,"Lead__ppm":448,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":169,"geometry":{"type":"Point","coordinates":[-75.112700034963154,39.983800008006931]},"properties":{"OBJECTID":169,"FID":169,"Lead__ppm":322,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":170,"geometry":{"type":"Point","coordinates":[-75.11249998014938,39.983900019764299]},"properties":{"OBJECTID":170,"FID":170,"Lead__ppm":319,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":171,"geometry":{"type":"Point","coordinates":[-75.112099960353376,39.983900019764299]},"properties":{"OBJECTID":171,"FID":171,"Lead__ppm":229,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":172,"geometry":{"type":"Point","coordinates":[-75.11199997786224,39.983800008006931]},"properties":{"OBJECTID":172,"FID":172,"Lead__ppm":139,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":173,"geometry":{"type":"Point","coordinates":[-75.111800012879982,39.983499971856418]},"properties":{"OBJECTID":173,"FID":173,"Lead__ppm":265,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":174,"geometry":{"type":"Point","coordinates":[-75.11199997786224,39.983400028345152]},"properties":{"OBJECTID":174,"FID":174,"Lead__ppm":97,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":175,"geometry":{"type":"Point","coordinates":[-75.112099960353376,39.983400028345152]},"properties":{"OBJECTID":175,"FID":175,"Lead__ppm":86,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":176,"geometry":{"type":"Point","coordinates":[-75.112300015167136,39.983200003220212]},"properties":{"OBJECTID":176,"FID":176,"Lead__ppm":106,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":177,"geometry":{"type":"Point","coordinates":[-75.109800003731422,39.983200003220212]},"properties":{"OBJECTID":177,"FID":177,"Lead__ppm":1322,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":178,"geometry":{"type":"Point","coordinates":[-75.109700021240315,39.982999977509657]},"properties":{"OBJECTID":178,"FID":178,"Lead__ppm":839,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":179,"geometry":{"type":"Point","coordinates":[-75.110600043323473,39.984199985327102]},"properties":{"OBJECTID":179,"FID":179,"Lead__ppm":42,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":180,"geometry":{"type":"Point","coordinates":[-75.110700025814594,39.98400003137521]},"properties":{"OBJECTID":180,"FID":180,"Lead__ppm":187,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":181,"geometry":{"type":"Point","coordinates":[-75.110999973287946,39.983800008006931]},"properties":{"OBJECTID":181,"FID":181,"Lead__ppm":98,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":182,"geometry":{"type":"Point","coordinates":[-75.111300010592842,39.983699996103155]},"properties":{"OBJECTID":182,"FID":182,"Lead__ppm":197,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":183,"geometry":{"type":"Point","coordinates":[-75.11170003038886,39.983800008006931]},"properties":{"OBJECTID":183,"FID":183,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":184,"geometry":{"type":"Point","coordinates":[-75.1114999755751,39.984299996498954]},"properties":{"OBJECTID":184,"FID":184,"Lead__ppm":111,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":185,"geometry":{"type":"Point","coordinates":[-75.110700025814594,39.984299996498954]},"properties":{"OBJECTID":185,"FID":185,"Lead__ppm":206,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":186,"geometry":{"type":"Point","coordinates":[-75.110800008305702,39.98450001840343]},"properties":{"OBJECTID":186,"FID":186,"Lead__ppm":201,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":187,"geometry":{"type":"Point","coordinates":[-75.110999973287946,39.984799981331953]},"properties":{"OBJECTID":187,"FID":187,"Lead__ppm":72,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":188,"geometry":{"type":"Point","coordinates":[-75.111300010592842,39.984799981331953]},"properties":{"OBJECTID":188,"FID":188,"Lead__ppm":54,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":189,"geometry":{"type":"Point","coordinates":[-75.11199997786224,39.984299996498954]},"properties":{"OBJECTID":189,"FID":189,"Lead__ppm":74,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":190,"geometry":{"type":"Point","coordinates":[-75.112399997658258,39.98400003137521]},"properties":{"OBJECTID":190,"FID":190,"Lead__ppm":113,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":191,"geometry":{"type":"Point","coordinates":[-75.112300015167136,39.984099974008828]},"properties":{"OBJECTID":191,"FID":191,"Lead__ppm":81,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":192,"geometry":{"type":"Point","coordinates":[-75.111599958066222,39.983499971856418]},"properties":{"OBJECTID":192,"FID":192,"Lead__ppm":169,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":193,"geometry":{"type":"Point","coordinates":[-75.110899990796838,39.982599993164271]},"properties":{"OBJECTID":193,"FID":193,"Lead__ppm":20,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":194,"geometry":{"type":"Point","coordinates":[-75.108799999157142,39.980000003425609]},"properties":{"OBJECTID":194,"FID":194,"Lead__ppm":95,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":195,"geometry":{"type":"Point","coordinates":[-75.11170003038886,39.978200010821055]},"properties":{"OBJECTID":195,"FID":195,"Lead__ppm":290,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":196,"geometry":{"type":"Point","coordinates":[-75.112300015167136,39.977600025695565]},"properties":{"OBJECTID":196,"FID":196,"Lead__ppm":328,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":197,"geometry":{"type":"Point","coordinates":[-75.112399997658258,39.977600025695565]},"properties":{"OBJECTID":197,"FID":197,"Lead__ppm":469,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":198,"geometry":{"type":"Point","coordinates":[-75.11249998014938,39.977500004716617]},"properties":{"OBJECTID":198,"FID":198,"Lead__ppm":37,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":199,"geometry":{"type":"Point","coordinates":[-75.112599962640516,39.977500004716617]},"properties":{"OBJECTID":199,"FID":199,"Lead__ppm":141,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":200,"geometry":{"type":"Point","coordinates":[-75.112700034963154,39.977500004716617]},"properties":{"OBJECTID":200,"FID":200,"Lead__ppm":172,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":201,"geometry":{"type":"Point","coordinates":[-75.112800017454276,39.977399983591276]},"properties":{"OBJECTID":201,"FID":201,"Lead__ppm":435,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":202,"geometry":{"type":"Point","coordinates":[-75.113300019741416,39.977200009739356]},"properties":{"OBJECTID":202,"FID":202,"Lead__ppm":564,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":203,"geometry":{"type":"Point","coordinates":[-75.113800022028556,39.976799991441631]},"properties":{"OBJECTID":203,"FID":203,"Lead__ppm":415,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":204,"geometry":{"type":"Point","coordinates":[-75.114099969501908,39.976699969291715]},"properties":{"OBJECTID":204,"FID":204,"Lead__ppm":198,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":205,"geometry":{"type":"Point","coordinates":[-75.114400006806818,39.976699969291715]},"properties":{"OBJECTID":205,"FID":205,"Lead__ppm":1027,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":206,"geometry":{"type":"Point","coordinates":[-75.114599971789062,39.976499993391322]},"properties":{"OBJECTID":206,"FID":206,"Lead__ppm":221,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":207,"geometry":{"type":"Point","coordinates":[-75.115099974076202,39.976199994024135]},"properties":{"OBJECTID":207,"FID":207,"Lead__ppm":522,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":208,"geometry":{"type":"Point","coordinates":[-75.115800031177116,39.975899993340001]},"properties":{"OBJECTID":208,"FID":208,"Lead__ppm":324,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":209,"geometry":{"type":"Point","coordinates":[-75.1114999755751,39.978500001408413]},"properties":{"OBJECTID":209,"FID":209,"Lead__ppm":74,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":210,"geometry":{"type":"Point","coordinates":[-75.1114999755751,39.978500001408413]},"properties":{"OBJECTID":210,"FID":210,"Lead__ppm":46,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":211,"geometry":{"type":"Point","coordinates":[-75.125000037327894,39.975700015098752]},"properties":{"OBJECTID":211,"FID":211,"Lead__ppm":207,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":212,"geometry":{"type":"Point","coordinates":[-75.125100019819044,39.975599991338918]},"properties":{"OBJECTID":212,"FID":212,"Lead__ppm":42,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":213,"geometry":{"type":"Point","coordinates":[-75.124799982514133,39.975400012219772]},"properties":{"OBJECTID":213,"FID":213,"Lead__ppm":50,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":214,"geometry":{"type":"Point","coordinates":[-75.123799977939839,39.974800002511088]},"properties":{"OBJECTID":214,"FID":214,"Lead__ppm":99,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":215,"geometry":{"type":"Point","coordinates":[-75.123100010670456,39.974499995681349]},"properties":{"OBJECTID":215,"FID":215,"Lead__ppm":67,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":216,"geometry":{"type":"Point","coordinates":[-75.12410001524475,39.973800020518105]},"properties":{"OBJECTID":216,"FID":216,"Lead__ppm":223,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":217,"geometry":{"type":"Point","coordinates":[-75.124000032753614,39.973699993977498]},"properties":{"OBJECTID":217,"FID":217,"Lead__ppm":1513,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":218,"geometry":{"type":"Point","coordinates":[-75.123899960430961,39.973500009298753]},"properties":{"OBJECTID":218,"FID":218,"Lead__ppm":92,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":219,"geometry":{"type":"Point","coordinates":[-75.123199993161577,39.973699993977498]},"properties":{"OBJECTID":219,"FID":219,"Lead__ppm":171,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":220,"geometry":{"type":"Point","coordinates":[-75.122100006096176,39.976799991441631]},"properties":{"OBJECTID":220,"FID":220,"Lead__ppm":44,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":221,"geometry":{"type":"Point","coordinates":[-75.11199997786224,39.976699969291715]},"properties":{"OBJECTID":221,"FID":221,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":222,"geometry":{"type":"Point","coordinates":[-75.121699986300172,39.976799991441631]},"properties":{"OBJECTID":222,"FID":222,"Lead__ppm":370,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":223,"geometry":{"type":"Point","coordinates":[-75.121699986300172,39.976900013445139]},"properties":{"OBJECTID":223,"FID":223,"Lead__ppm":325,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":224,"geometry":{"type":"Point","coordinates":[-75.122100006096176,39.976900013445139]},"properties":{"OBJECTID":224,"FID":224,"Lead__ppm":89,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":225,"geometry":{"type":"Point","coordinates":[-75.121600003809036,39.976999966464099]},"properties":{"OBJECTID":225,"FID":225,"Lead__ppm":323,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":226,"geometry":{"type":"Point","coordinates":[-75.121400038826792,39.976900013445139]},"properties":{"OBJECTID":226,"FID":226,"Lead__ppm":600,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":227,"geometry":{"type":"Point","coordinates":[-75.121000019030774,39.976600015833924]},"properties":{"OBJECTID":227,"FID":227,"Lead__ppm":334,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":228,"geometry":{"type":"Point","coordinates":[-75.120299961929859,39.976699969291715]},"properties":{"OBJECTID":228,"FID":228,"Lead__ppm":64,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":229,"geometry":{"type":"Point","coordinates":[-75.120400034252512,39.976499993391322]},"properties":{"OBJECTID":229,"FID":229,"Lead__ppm":84,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":230,"geometry":{"type":"Point","coordinates":[-75.120500016743634,39.976199994024135]},"properties":{"OBJECTID":230,"FID":230,"Lead__ppm":166,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":231,"geometry":{"type":"Point","coordinates":[-75.125100019819044,39.973000010620837]},"properties":{"OBJECTID":231,"FID":231,"Lead__ppm":353,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":232,"geometry":{"type":"Point","coordinates":[-75.125100019819044,39.973000010620837]},"properties":{"OBJECTID":232,"FID":232,"Lead__ppm":292,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":233,"geometry":{"type":"Point","coordinates":[-75.123000028179334,39.973800020518105]},"properties":{"OBJECTID":233,"FID":233,"Lead__ppm":383,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":234,"geometry":{"type":"Point","coordinates":[-75.122899955856695,39.973800020518105]},"properties":{"OBJECTID":234,"FID":234,"Lead__ppm":338,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":235,"geometry":{"type":"Point","coordinates":[-75.11430002431571,39.976499993391322]},"properties":{"OBJECTID":235,"FID":235,"Lead__ppm":225,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":236,"geometry":{"type":"Point","coordinates":[-75.122199988587312,39.974399970165194]},"properties":{"OBJECTID":236,"FID":236,"Lead__ppm":280,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":237,"geometry":{"type":"Point","coordinates":[-75.123399958143835,39.975200032515502]},"properties":{"OBJECTID":237,"FID":237,"Lead__ppm":466,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":238,"geometry":{"type":"Point","coordinates":[-75.12410001524475,39.975700015098752]},"properties":{"OBJECTID":238,"FID":238,"Lead__ppm":79,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":239,"geometry":{"type":"Point","coordinates":[-75.124500035040754,39.975899993340001]},"properties":{"OBJECTID":239,"FID":239,"Lead__ppm":64,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":240,"geometry":{"type":"Point","coordinates":[-75.123500030466474,39.974499995681349]},"properties":{"OBJECTID":240,"FID":240,"Lead__ppm":449,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":241,"geometry":{"type":"Point","coordinates":[-75.125899969579521,39.977399983591276]},"properties":{"OBJECTID":241,"FID":241,"Lead__ppm":182,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":242,"geometry":{"type":"Point","coordinates":[-75.125500039615048,39.977699977690676]},"properties":{"OBJECTID":242,"FID":242,"Lead__ppm":131,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":243,"geometry":{"type":"Point","coordinates":[-75.120000014456494,39.977500004716617]},"properties":{"OBJECTID":243,"FID":243,"Lead__ppm":461,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":244,"geometry":{"type":"Point","coordinates":[-75.119199974864458,39.979400034104295]},"properties":{"OBJECTID":244,"FID":244,"Lead__ppm":736,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":245,"geometry":{"type":"Point","coordinates":[-75.11909999237335,39.979199997269255]},"properties":{"OBJECTID":245,"FID":245,"Lead__ppm":118,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":246,"geometry":{"type":"Point","coordinates":[-75.11929995735558,39.978900009754966]},"properties":{"OBJECTID":246,"FID":246,"Lead__ppm":25,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":247,"geometry":{"type":"Point","coordinates":[-75.119699977151598,39.978300030775436]},"properties":{"OBJECTID":247,"FID":247,"Lead__ppm":645,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":248,"geometry":{"type":"Point","coordinates":[-75.119900031965372,39.978300030775436]},"properties":{"OBJECTID":248,"FID":248,"Lead__ppm":3226,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":249,"geometry":{"type":"Point","coordinates":[-75.120099996947602,39.978200010821055]},"properties":{"OBJECTID":249,"FID":249,"Lead__ppm":1900,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":250,"geometry":{"type":"Point","coordinates":[-75.120299961929859,39.978200010821055]},"properties":{"OBJECTID":250,"FID":250,"Lead__ppm":466,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":251,"geometry":{"type":"Point","coordinates":[-75.117300038038536,39.975400012219772]},"properties":{"OBJECTID":251,"FID":251,"Lead__ppm":105,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":252,"geometry":{"type":"Point","coordinates":[-75.117800040325676,39.975100008023901]},"properties":{"OBJECTID":252,"FID":252,"Lead__ppm":171,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":253,"geometry":{"type":"Point","coordinates":[-75.118500007595074,39.975100008023901]},"properties":{"OBJECTID":253,"FID":253,"Lead__ppm":330,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":254,"geometry":{"type":"Point","coordinates":[-75.117800040325676,39.975599991338918]},"properties":{"OBJECTID":254,"FID":254,"Lead__ppm":125,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":255,"geometry":{"type":"Point","coordinates":[-75.11800000530792,39.976199994024135]},"properties":{"OBJECTID":255,"FID":255,"Lead__ppm":215,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":256,"geometry":{"type":"Point","coordinates":[-75.118500007595074,39.976600015833924]},"properties":{"OBJECTID":256,"FID":256,"Lead__ppm":995,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":257,"geometry":{"type":"Point","coordinates":[-75.11859999008621,39.976699969291715]},"properties":{"OBJECTID":257,"FID":257,"Lead__ppm":37,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":258,"geometry":{"type":"Point","coordinates":[-75.119000009882214,39.976199994024135]},"properties":{"OBJECTID":258,"FID":258,"Lead__ppm":790,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":259,"geometry":{"type":"Point","coordinates":[-75.11909999237335,39.975700015098752]},"properties":{"OBJECTID":259,"FID":259,"Lead__ppm":188,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":260,"geometry":{"type":"Point","coordinates":[-75.118800044899956,39.975200032515502]},"properties":{"OBJECTID":260,"FID":260,"Lead__ppm":239,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":261,"geometry":{"type":"Point","coordinates":[-75.118800044899956,39.975100008023901]},"properties":{"OBJECTID":261,"FID":261,"Lead__ppm":351,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":262,"geometry":{"type":"Point","coordinates":[-75.118800044899956,39.974900027441777]},"properties":{"OBJECTID":262,"FID":262,"Lead__ppm":249,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":263,"geometry":{"type":"Point","coordinates":[-75.120500016743634,39.973599967290511]},"properties":{"OBJECTID":263,"FID":263,"Lead__ppm":341,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":264,"geometry":{"type":"Point","coordinates":[-75.120599999234742,39.973500009298753]},"properties":{"OBJECTID":264,"FID":264,"Lead__ppm":278,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":265,"geometry":{"type":"Point","coordinates":[-75.120699981725878,39.973500009298753]},"properties":{"OBJECTID":265,"FID":265,"Lead__ppm":274,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":266,"geometry":{"type":"Point","coordinates":[-75.120799964216999,39.973500009298753]},"properties":{"OBJECTID":266,"FID":266,"Lead__ppm":319,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":267,"geometry":{"type":"Point","coordinates":[-75.121000019030774,39.973500009298753]},"properties":{"OBJECTID":267,"FID":267,"Lead__ppm":1101,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":268,"geometry":{"type":"Point","coordinates":[-75.121100001521896,39.973399982319137]},"properties":{"OBJECTID":268,"FID":268,"Lead__ppm":334,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":269,"geometry":{"type":"Point","coordinates":[-75.121199984013032,39.973399982319137]},"properties":{"OBJECTID":269,"FID":269,"Lead__ppm":818,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":270,"geometry":{"type":"Point","coordinates":[-75.121500021317914,39.973399982319137]},"properties":{"OBJECTID":270,"FID":270,"Lead__ppm":286,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":271,"geometry":{"type":"Point","coordinates":[-75.121600003809036,39.973399982319137]},"properties":{"OBJECTID":271,"FID":271,"Lead__ppm":250,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":272,"geometry":{"type":"Point","coordinates":[-75.121600003809036,39.973699993977498]},"properties":{"OBJECTID":272,"FID":272,"Lead__ppm":296,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":273,"geometry":{"type":"Point","coordinates":[-75.121600003809036,39.974300013343466]},"properties":{"OBJECTID":273,"FID":273,"Lead__ppm":403,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":274,"geometry":{"type":"Point","coordinates":[-75.121600003809036,39.974399970165194]},"properties":{"OBJECTID":274,"FID":274,"Lead__ppm":390,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":275,"geometry":{"type":"Point","coordinates":[-75.121500021317914,39.97460002105106]},"properties":{"OBJECTID":275,"FID":275,"Lead__ppm":437,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":276,"geometry":{"type":"Point","coordinates":[-75.121400038826792,39.974699977434014]},"properties":{"OBJECTID":276,"FID":276,"Lead__ppm":212,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":277,"geometry":{"type":"Point","coordinates":[-75.121799968791279,39.976000016660755]},"properties":{"OBJECTID":277,"FID":277,"Lead__ppm":1138,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":278,"geometry":{"type":"Point","coordinates":[-75.121699986300172,39.976000016660755]},"properties":{"OBJECTID":278,"FID":278,"Lead__ppm":291,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":279,"geometry":{"type":"Point","coordinates":[-75.121600003809036,39.976000016660755]},"properties":{"OBJECTID":279,"FID":279,"Lead__ppm":161,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":280,"geometry":{"type":"Point","coordinates":[-75.121500021317914,39.976199994024135]},"properties":{"OBJECTID":280,"FID":280,"Lead__ppm":327,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":281,"geometry":{"type":"Point","coordinates":[-75.121500021317914,39.976199994024135]},"properties":{"OBJECTID":281,"FID":281,"Lead__ppm":235,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":282,"geometry":{"type":"Point","coordinates":[-75.121500021317914,39.97630001690581]},"properties":{"OBJECTID":282,"FID":282,"Lead__ppm":489,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":283,"geometry":{"type":"Point","coordinates":[-75.121600003809036,39.97630001690581]},"properties":{"OBJECTID":283,"FID":283,"Lead__ppm":1186,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":284,"geometry":{"type":"Point","coordinates":[-75.122400043401086,39.976699969291715]},"properties":{"OBJECTID":284,"FID":284,"Lead__ppm":22,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":285,"geometry":{"type":"Point","coordinates":[-75.120599999234742,39.97609997099606]},"properties":{"OBJECTID":285,"FID":285,"Lead__ppm":150,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":286,"geometry":{"type":"Point","coordinates":[-75.120599999234742,39.976000016660755]},"properties":{"OBJECTID":286,"FID":286,"Lead__ppm":224,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":287,"geometry":{"type":"Point","coordinates":[-75.120699981725878,39.975899993340001]},"properties":{"OBJECTID":287,"FID":287,"Lead__ppm":180,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":288,"geometry":{"type":"Point","coordinates":[-75.120699981725878,39.975799969872838]},"properties":{"OBJECTID":288,"FID":288,"Lead__ppm":83,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":289,"geometry":{"type":"Point","coordinates":[-75.120299961929859,39.976699969291715]},"properties":{"OBJECTID":289,"FID":289,"Lead__ppm":82,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":290,"geometry":{"type":"Point","coordinates":[-75.120199979438738,39.976699969291715]},"properties":{"OBJECTID":290,"FID":290,"Lead__ppm":98,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":291,"geometry":{"type":"Point","coordinates":[-75.119000009882214,39.97970001942344]},"properties":{"OBJECTID":291,"FID":291,"Lead__ppm":66,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":292,"geometry":{"type":"Point","coordinates":[-75.119000009882214,39.979400034104295]},"properties":{"OBJECTID":292,"FID":292,"Lead__ppm":142,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":293,"geometry":{"type":"Point","coordinates":[-75.118900027391092,39.979499983466582]},"properties":{"OBJECTID":293,"FID":293,"Lead__ppm":20,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":294,"geometry":{"type":"Point","coordinates":[-75.118699972577318,39.979400034104295]},"properties":{"OBJECTID":294,"FID":294,"Lead__ppm":64,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":295,"geometry":{"type":"Point","coordinates":[-75.118500007595074,39.979300015759975]},"properties":{"OBJECTID":295,"FID":295,"Lead__ppm":180,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":296,"geometry":{"type":"Point","coordinates":[-75.118500007595074,39.979499983466582]},"properties":{"OBJECTID":296,"FID":296,"Lead__ppm":147,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":297,"geometry":{"type":"Point","coordinates":[-75.118300042612816,39.97970001942344]},"properties":{"OBJECTID":297,"FID":297,"Lead__ppm":304,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":298,"geometry":{"type":"Point","coordinates":[-75.118199970290178,39.97989998595947]},"properties":{"OBJECTID":298,"FID":298,"Lead__ppm":325,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":299,"geometry":{"type":"Point","coordinates":[-75.11800000530792,39.980400002991452]},"properties":{"OBJECTID":299,"FID":299,"Lead__ppm":170,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":300,"geometry":{"type":"Point","coordinates":[-75.117900022816812,39.980599967479073]},"properties":{"OBJECTID":300,"FID":300,"Lead__ppm":167,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":301,"geometry":{"type":"Point","coordinates":[-75.117800040325676,39.98080000021573]},"properties":{"OBJECTID":301,"FID":301,"Lead__ppm":211,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":302,"geometry":{"type":"Point","coordinates":[-75.117699968003038,39.98100003236685]},"properties":{"OBJECTID":302,"FID":302,"Lead__ppm":873,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":303,"geometry":{"type":"Point","coordinates":[-75.117599985511902,39.981300010661712]},"properties":{"OBJECTID":303,"FID":303,"Lead__ppm":777,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":304,"geometry":{"type":"Point","coordinates":[-75.117699968003038,39.981599987639584]},"properties":{"OBJECTID":304,"FID":304,"Lead__ppm":270,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":305,"geometry":{"type":"Point","coordinates":[-75.117900022816812,39.981700002617352]},"properties":{"OBJECTID":305,"FID":305,"Lead__ppm":216,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":306,"geometry":{"type":"Point","coordinates":[-75.118199970290178,39.98109997938878]},"properties":{"OBJECTID":306,"FID":306,"Lead__ppm":242,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":307,"geometry":{"type":"Point","coordinates":[-75.118400025103938,39.98109997938878]},"properties":{"OBJECTID":307,"FID":307,"Lead__ppm":220,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":308,"geometry":{"type":"Point","coordinates":[-75.11909999237335,39.980599967479073]},"properties":{"OBJECTID":308,"FID":308,"Lead__ppm":249,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":309,"geometry":{"type":"Point","coordinates":[-75.11929995735558,39.980500019725703]},"properties":{"OBJECTID":309,"FID":309,"Lead__ppm":97,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":310,"geometry":{"type":"Point","coordinates":[-75.119199974864458,39.980400002991452]},"properties":{"OBJECTID":310,"FID":310,"Lead__ppm":25,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":311,"geometry":{"type":"Point","coordinates":[-75.129200020607271,39.969099991783608]},"properties":{"OBJECTID":311,"FID":311,"Lead__ppm":465,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":312,"geometry":{"type":"Point","coordinates":[-75.131499977229211,39.969400022316194]},"properties":{"OBJECTID":312,"FID":312,"Lead__ppm":319,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":313,"geometry":{"type":"Point","coordinates":[-75.131499977229211,39.969600018991116]},"properties":{"OBJECTID":313,"FID":313,"Lead__ppm":175,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":314,"geometry":{"type":"Point","coordinates":[-75.131200029755846,39.969800015080928]},"properties":{"OBJECTID":314,"FID":314,"Lead__ppm":84,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":315,"geometry":{"type":"Point","coordinates":[-75.129499968080637,39.968600029764943]},"properties":{"OBJECTID":315,"FID":315,"Lead__ppm":275,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":316,"geometry":{"type":"Point","coordinates":[-75.127600031254715,39.969400022316194]},"properties":{"OBJECTID":316,"FID":316,"Lead__ppm":386,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":317,"geometry":{"type":"Point","coordinates":[-75.129540032942316,39.968764022116218]},"properties":{"OBJECTID":317,"FID":317,"Lead__ppm":660,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":318,"geometry":{"type":"Point","coordinates":[-75.129480025481342,39.968781027177982]},"properties":{"OBJECTID":318,"FID":318,"Lead__ppm":612,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":319,"geometry":{"type":"Point","coordinates":[-75.129397021149089,39.968802989174613]},"properties":{"OBJECTID":319,"FID":319,"Lead__ppm":801,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":320,"geometry":{"type":"Point","coordinates":[-75.129260028068259,39.96881496844253]},"properties":{"OBJECTID":320,"FID":320,"Lead__ppm":642,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":321,"geometry":{"type":"Point","coordinates":[-75.126999956644951,39.969499986304001]},"properties":{"OBJECTID":321,"FID":321,"Lead__ppm":425,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":322,"geometry":{"type":"Point","coordinates":[-75.127200011458712,39.970000010585551]},"properties":{"OBJECTID":322,"FID":322,"Lead__ppm":147,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":323,"geometry":{"type":"Point","coordinates":[-75.130100042690444,39.970799986752588]},"properties":{"OBJECTID":323,"FID":323,"Lead__ppm":497,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":324,"geometry":{"type":"Point","coordinates":[-75.130700027468691,39.971100009823488]},"properties":{"OBJECTID":324,"FID":324,"Lead__ppm":83,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":325,"geometry":{"type":"Point","coordinates":[-75.130300007672673,39.971199971325191]},"properties":{"OBJECTID":325,"FID":325,"Lead__ppm":173,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":326,"geometry":{"type":"Point","coordinates":[-75.129999970367791,39.971300001524504]},"properties":{"OBJECTID":326,"FID":326,"Lead__ppm":203,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":327,"geometry":{"type":"Point","coordinates":[-75.129605969284171,39.971944996590032]},"properties":{"OBJECTID":327,"FID":327,"Lead__ppm":617,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":328,"geometry":{"type":"Point","coordinates":[-75.129564017960405,39.971866033384053]},"properties":{"OBJECTID":328,"FID":328,"Lead__ppm":867,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":329,"geometry":{"type":"Point","coordinates":[-75.129497991787019,39.971927992315379]},"properties":{"OBJECTID":329,"FID":329,"Lead__ppm":522,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":330,"geometry":{"type":"Point","coordinates":[-75.129408968742368,39.971954978854527]},"properties":{"OBJECTID":330,"FID":330,"Lead__ppm":312,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":331,"geometry":{"type":"Point","coordinates":[-75.129429989320002,39.971996009388604]},"properties":{"OBJECTID":331,"FID":331,"Lead__ppm":427,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":332,"geometry":{"type":"Point","coordinates":[-75.110600043323473,39.980299986110808]},"properties":{"OBJECTID":332,"FID":332,"Lead__ppm":62,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":333,"geometry":{"type":"Point","coordinates":[-75.209587021448101,39.949022974943247]},"properties":{"OBJECTID":333,"FID":333,"Lead__ppm":33,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":334,"geometry":{"type":"Point","coordinates":[-75.209201015370525,39.949029999304486]},"properties":{"OBJECTID":334,"FID":334,"Lead__ppm":171,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":335,"geometry":{"type":"Point","coordinates":[-75.210394966214636,39.948780978370465]},"properties":{"OBJECTID":335,"FID":335,"Lead__ppm":130,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":336,"geometry":{"type":"Point","coordinates":[-75.209921015070734,39.947622977798268]},"properties":{"OBJECTID":336,"FID":336,"Lead__ppm":134,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":337,"geometry":{"type":"Point","coordinates":[-75.209780967717947,39.947119002114192]},"properties":{"OBJECTID":337,"FID":337,"Lead__ppm":378,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":338,"geometry":{"type":"Point","coordinates":[-75.209359029029002,39.947872002947783]},"properties":{"OBJECTID":338,"FID":338,"Lead__ppm":168,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":339,"geometry":{"type":"Point","coordinates":[-75.209816002014023,39.947758027224467]},"properties":{"OBJECTID":339,"FID":339,"Lead__ppm":321,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":340,"geometry":{"type":"Point","coordinates":[-75.209631038897029,39.947468989448048]},"properties":{"OBJECTID":340,"FID":340,"Lead__ppm":191,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":341,"geometry":{"type":"Point","coordinates":[-75.209104985466652,39.947099030331202]},"properties":{"OBJECTID":341,"FID":341,"Lead__ppm":232,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":342,"geometry":{"type":"Point","coordinates":[-75.210052977585988,39.946909986786011]},"properties":{"OBJECTID":342,"FID":342,"Lead__ppm":269.33333329999999,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":343,"geometry":{"type":"Point","coordinates":[-75.217044026453095,39.942399025586191]},"properties":{"OBJECTID":343,"FID":343,"Lead__ppm":76,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":344,"geometry":{"type":"Point","coordinates":[-75.217044026453095,39.942365966558128]},"properties":{"OBJECTID":344,"FID":344,"Lead__ppm":109,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":345,"geometry":{"type":"Point","coordinates":[-75.217147961531481,39.942105006294476]},"properties":{"OBJECTID":345,"FID":345,"Lead__ppm":45,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":346,"geometry":{"type":"Point","coordinates":[-75.217258005153781,39.942043984563789]},"properties":{"OBJECTID":346,"FID":346,"Lead__ppm":150,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":347,"geometry":{"type":"Point","coordinates":[-75.217587956357647,39.942193990481393]},"properties":{"OBJECTID":347,"FID":347,"Lead__ppm":28,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":348,"geometry":{"type":"Point","coordinates":[-75.217766990593759,39.942376986235885]},"properties":{"OBJECTID":348,"FID":348,"Lead__ppm":20,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":349,"geometry":{"type":"Point","coordinates":[-75.218244984156456,39.942873971859875]},"properties":{"OBJECTID":349,"FID":349,"Lead__ppm":243,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":350,"geometry":{"type":"Point","coordinates":[-75.216636999797885,39.94326702597688]},"properties":{"OBJECTID":350,"FID":350,"Lead__ppm":131,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":351,"geometry":{"type":"Point","coordinates":[-75.210094030594462,39.942395030954494]},"properties":{"OBJECTID":351,"FID":351,"Lead__ppm":277,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":352,"geometry":{"type":"Point","coordinates":[-75.209742968981431,39.941968981481644]},"properties":{"OBJECTID":352,"FID":352,"Lead__ppm":187.66666670000001,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":353,"geometry":{"type":"Point","coordinates":[-75.210187994373186,39.941978003895287]},"properties":{"OBJECTID":353,"FID":353,"Lead__ppm":274,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":354,"geometry":{"type":"Point","coordinates":[-75.210859035890408,39.942001971828169]},"properties":{"OBJECTID":354,"FID":354,"Lead__ppm":212,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":355,"geometry":{"type":"Point","coordinates":[-75.20995101880122,39.941490998475658]},"properties":{"OBJECTID":355,"FID":355,"Lead__ppm":177,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":356,"geometry":{"type":"Point","coordinates":[-75.149899989530766,39.996842976108347]},"properties":{"OBJECTID":356,"FID":356,"Lead__ppm":30,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":357,"geometry":{"type":"Point","coordinates":[-75.149756977737525,39.996913032923352]},"properties":{"OBJECTID":357,"FID":357,"Lead__ppm":67,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":358,"geometry":{"type":"Point","coordinates":[-75.149248980444369,39.996755989943324]},"properties":{"OBJECTID":358,"FID":358,"Lead__ppm":19,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":359,"geometry":{"type":"Point","coordinates":[-75.148961968711092,39.996755989943324]},"properties":{"OBJECTID":359,"FID":359,"Lead__ppm":59,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":360,"geometry":{"type":"Point","coordinates":[-75.151884008667281,39.985947991581092]},"properties":{"OBJECTID":360,"FID":360,"Lead__ppm":147,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":361,"geometry":{"type":"Point","coordinates":[-75.151739020580408,39.985996997884598]},"properties":{"OBJECTID":361,"FID":361,"Lead__ppm":196,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":362,"geometry":{"type":"Point","coordinates":[-75.151548038751017,39.986163013359445]},"properties":{"OBJECTID":362,"FID":362,"Lead__ppm":32,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":363,"geometry":{"type":"Point","coordinates":[-75.151636971964152,39.986257997156173]},"properties":{"OBJECTID":363,"FID":363,"Lead__ppm":138,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":364,"geometry":{"type":"Point","coordinates":[-75.152111012939571,39.986384022555072]},"properties":{"OBJECTID":364,"FID":364,"Lead__ppm":201,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":365,"geometry":{"type":"Point","coordinates":[-75.100079962862665,40.046631997457183]},"properties":{"OBJECTID":365,"FID":365,"Lead__ppm":134,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":366,"geometry":{"type":"Point","coordinates":[-75.100508998242361,40.046236030596681]},"properties":{"OBJECTID":366,"FID":366,"Lead__ppm":104,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":367,"geometry":{"type":"Point","coordinates":[-75.100909018038379,40.045981999933886]},"properties":{"OBJECTID":367,"FID":367,"Lead__ppm":79,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":368,"geometry":{"type":"Point","coordinates":[-75.10090398747279,40.045736014277963]},"properties":{"OBJECTID":368,"FID":368,"Lead__ppm":68,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":369,"geometry":{"type":"Point","coordinates":[-75.101195041624834,40.045928979337752]},"properties":{"OBJECTID":369,"FID":369,"Lead__ppm":75,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":370,"geometry":{"type":"Point","coordinates":[-75.102231966957305,40.046609028966436]},"properties":{"OBJECTID":370,"FID":370,"Lead__ppm":117,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":371,"geometry":{"type":"Point","coordinates":[-75.103093002157138,40.047165015557816]},"properties":{"OBJECTID":371,"FID":371,"Lead__ppm":112,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":372,"geometry":{"type":"Point","coordinates":[-75.102355036151238,40.047464978240008]},"properties":{"OBJECTID":372,"FID":372,"Lead__ppm":51,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":373,"geometry":{"type":"Point","coordinates":[-75.10170501521165,40.047615027853084]},"properties":{"OBJECTID":373,"FID":373,"Lead__ppm":16,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":374,"geometry":{"type":"Point","coordinates":[-75.101244987954644,40.047381013578274]},"properties":{"OBJECTID":374,"FID":374,"Lead__ppm":68.333333330000002,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":375,"geometry":{"type":"Point","coordinates":[-75.198013037495969,39.960359010815168]},"properties":{"OBJECTID":375,"FID":375,"Lead__ppm":84,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":376,"geometry":{"type":"Point","coordinates":[-75.198387994295572,39.960661971601958]},"properties":{"OBJECTID":376,"FID":376,"Lead__ppm":1072,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":377,"geometry":{"type":"Point","coordinates":[-75.198988967220657,39.960538997226266]},"properties":{"OBJECTID":377,"FID":377,"Lead__ppm":55,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":378,"geometry":{"type":"Point","coordinates":[-75.199123984007855,39.960332019698114]},"properties":{"OBJECTID":378,"FID":378,"Lead__ppm":49,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":379,"geometry":{"type":"Point","coordinates":[-75.199046998387999,39.959698000802874]},"properties":{"OBJECTID":379,"FID":379,"Lead__ppm":102,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":380,"geometry":{"type":"Point","coordinates":[-75.198730971071043,39.959533022724209]},"properties":{"OBJECTID":380,"FID":380,"Lead__ppm":320,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":381,"geometry":{"type":"Point","coordinates":[-75.198791966678854,39.95973800586134]},"properties":{"OBJECTID":381,"FID":381,"Lead__ppm":68,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":382,"geometry":{"type":"Point","coordinates":[-75.199082032684075,39.959694007181312]},"properties":{"OBJECTID":382,"FID":382,"Lead__ppm":114,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":383,"geometry":{"type":"Point","coordinates":[-75.199539005669124,39.959956966007532]},"properties":{"OBJECTID":383,"FID":383,"Lead__ppm":541,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":384,"geometry":{"type":"Point","coordinates":[-75.198775976666781,39.959914000298276]},"properties":{"OBJECTID":384,"FID":384,"Lead__ppm":92,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":385,"geometry":{"type":"Point","coordinates":[-75.198834007834137,39.960045031856055]},"properties":{"OBJECTID":385,"FID":385,"Lead__ppm":100,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":386,"geometry":{"type":"Point","coordinates":[-75.198817029675268,39.959965022075032]},"properties":{"OBJECTID":386,"FID":386,"Lead__ppm":48,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":387,"geometry":{"type":"Point","coordinates":[-75.178895989934631,39.955447966946679]},"properties":{"OBJECTID":387,"FID":387,"Lead__ppm":128,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":388,"geometry":{"type":"Point","coordinates":[-75.173840002021024,39.95496697939992]},"properties":{"OBJECTID":388,"FID":388,"Lead__ppm":89.333333330000002,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":389,"geometry":{"type":"Point","coordinates":[-75.173840002021024,39.938083034397877]},"properties":{"OBJECTID":389,"FID":389,"Lead__ppm":208,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":390,"geometry":{"type":"Point","coordinates":[-75.198074033103779,39.941810021509568]},"properties":{"OBJECTID":390,"FID":390,"Lead__ppm":144,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":391,"geometry":{"type":"Point","coordinates":[-75.198152995017239,39.942388005911923]},"properties":{"OBJECTID":391,"FID":391,"Lead__ppm":60,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":392,"geometry":{"type":"Point","coordinates":[-75.19872099977141,39.94251197714496]},"properties":{"OBJECTID":392,"FID":392,"Lead__ppm":106,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":393,"geometry":{"type":"Point","coordinates":[-75.199636023719805,39.942823970420811]},"properties":{"OBJECTID":393,"FID":393,"Lead__ppm":49,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":394,"geometry":{"type":"Point","coordinates":[-75.199653990025482,39.942792977774928]},"properties":{"OBJECTID":394,"FID":394,"Lead__ppm":143,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":395,"geometry":{"type":"Point","coordinates":[-75.203513960969829,39.942058998945008]},"properties":{"OBJECTID":395,"FID":395,"Lead__ppm":75,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":396,"geometry":{"type":"Point","coordinates":[-75.20206902083531,39.942992983402618]},"properties":{"OBJECTID":396,"FID":396,"Lead__ppm":173,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":397,"geometry":{"type":"Point","coordinates":[-75.204276989972143,39.940899989223027]},"properties":{"OBJECTID":397,"FID":397,"Lead__ppm":82,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":398,"geometry":{"type":"Point","coordinates":[-75.20343598720315,39.948599032745392]},"properties":{"OBJECTID":398,"FID":398,"Lead__ppm":198,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":399,"geometry":{"type":"Point","coordinates":[-75.204391974328516,39.948217992137522]},"properties":{"OBJECTID":399,"FID":399,"Lead__ppm":70,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":400,"geometry":{"type":"Point","coordinates":[-75.205393955196428,39.94716700323783]},"properties":{"OBJECTID":400,"FID":400,"Lead__ppm":228,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":401,"geometry":{"type":"Point","coordinates":[-75.204846971019919,39.946119992606036]},"properties":{"OBJECTID":401,"FID":401,"Lead__ppm":542,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":402,"geometry":{"type":"Point","coordinates":[-75.204450993642681,39.945204990124537]},"properties":{"OBJECTID":402,"FID":402,"Lead__ppm":249,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":403,"geometry":{"type":"Point","coordinates":[-75.202259014517907,39.944791010496573]},"properties":{"OBJECTID":403,"FID":403,"Lead__ppm":158,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":404,"geometry":{"type":"Point","coordinates":[-75.200465977210811,39.945516971120192]},"properties":{"OBJECTID":404,"FID":404,"Lead__ppm":211,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":405,"geometry":{"type":"Point","coordinates":[-75.20029601595904,39.946686026325246]},"properties":{"OBJECTID":405,"FID":405,"Lead__ppm":139,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":406,"geometry":{"type":"Point","coordinates":[-75.200662977752614,39.947443990412182]},"properties":{"OBJECTID":406,"FID":406,"Lead__ppm":32,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":407,"geometry":{"type":"Point","coordinates":[-75.201633966743202,39.949110021879029]},"properties":{"OBJECTID":407,"FID":407,"Lead__ppm":140.66666670000001,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":408,"geometry":{"type":"Point","coordinates":[-75.197493002778018,39.959948014820363]},"properties":{"OBJECTID":408,"FID":408,"Lead__ppm":78,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":409,"geometry":{"type":"Point","coordinates":[-75.198264026786376,39.959518012178108]},"properties":{"OBJECTID":409,"FID":409,"Lead__ppm":231,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":410,"geometry":{"type":"Point","coordinates":[-75.161727028898426,40.00629297758649]},"properties":{"OBJECTID":410,"FID":410,"Lead__ppm":143,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":411,"geometry":{"type":"Point","coordinates":[-75.161832041955137,40.00617297528143]},"properties":{"OBJECTID":411,"FID":411,"Lead__ppm":146,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":412,"geometry":{"type":"Point","coordinates":[-75.161055987381189,40.006521008908329]},"properties":{"OBJECTID":412,"FID":412,"Lead__ppm":71,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":413,"geometry":{"type":"Point","coordinates":[-75.161646989006613,40.007415993521192]},"properties":{"OBJECTID":413,"FID":413,"Lead__ppm":84,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":414,"geometry":{"type":"Point","coordinates":[-75.162039013796601,40.007800970223357]},"properties":{"OBJECTID":414,"FID":414,"Lead__ppm":216,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":415,"geometry":{"type":"Point","coordinates":[-75.161671962171511,40.008017024114885]},"properties":{"OBJECTID":415,"FID":415,"Lead__ppm":1513,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":416,"geometry":{"type":"Point","coordinates":[-75.161743018910499,40.008092986849292]},"properties":{"OBJECTID":416,"FID":416,"Lead__ppm":289,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":417,"geometry":{"type":"Point","coordinates":[-75.162299974386656,40.008028033212078]},"properties":{"OBJECTID":417,"FID":417,"Lead__ppm":84,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":418,"geometry":{"type":"Point","coordinates":[-75.165392963741397,40.006442016852915]},"properties":{"OBJECTID":418,"FID":418,"Lead__ppm":621,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":419,"geometry":{"type":"Point","coordinates":[-75.165732976076427,40.002163992644711]},"properties":{"OBJECTID":419,"FID":419,"Lead__ppm":36,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":420,"geometry":{"type":"Point","coordinates":[-75.165640988591349,40.001848967092421]},"properties":{"OBJECTID":420,"FID":420,"Lead__ppm":89,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":421,"geometry":{"type":"Point","coordinates":[-75.167542003395596,39.994093980789934]},"properties":{"OBJECTID":421,"FID":421,"Lead__ppm":195,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":422,"geometry":{"type":"Point","coordinates":[-75.167353986006631,39.993729986107006]},"properties":{"OBJECTID":422,"FID":422,"Lead__ppm":66,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":423,"geometry":{"type":"Point","coordinates":[-75.167353986006631,39.993729986107006]},"properties":{"OBJECTID":423,"FID":423,"Lead__ppm":147,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":424,"geometry":{"type":"Point","coordinates":[-75.117758987317202,39.977291013403047]},"properties":{"OBJECTID":424,"FID":424,"Lead__ppm":702,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":425,"geometry":{"type":"Point","coordinates":[-75.117815042190927,39.977215980133892]},"properties":{"OBJECTID":425,"FID":425,"Lead__ppm":128,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":426,"geometry":{"type":"Point","coordinates":[-75.119333015358038,39.97711499486082]},"properties":{"OBJECTID":426,"FID":426,"Lead__ppm":1083,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":427,"geometry":{"type":"Point","coordinates":[-75.119428955430379,39.976856989545539]},"properties":{"OBJECTID":427,"FID":427,"Lead__ppm":3029,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":428,"geometry":{"type":"Point","coordinates":[-75.118298964634477,39.980853002597748]},"properties":{"OBJECTID":428,"FID":428,"Lead__ppm":10,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":429,"geometry":{"type":"Point","coordinates":[-75.118385023238687,39.980843021632829]},"properties":{"OBJECTID":429,"FID":429,"Lead__ppm":81,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":430,"geometry":{"type":"Point","coordinates":[-75.118556960784076,39.980424989980087]},"properties":{"OBJECTID":430,"FID":430,"Lead__ppm":119,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":431,"geometry":{"type":"Point","coordinates":[-75.118806961927646,39.979717985459722]},"properties":{"OBJECTID":431,"FID":431,"Lead__ppm":154,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":432,"geometry":{"type":"Point","coordinates":[-75.119316037199155,39.980709001225058]},"properties":{"OBJECTID":432,"FID":432,"Lead__ppm":19,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":433,"geometry":{"type":"Point","coordinates":[-75.118705003142907,39.980925966848559]},"properties":{"OBJECTID":433,"FID":433,"Lead__ppm":817,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":434,"geometry":{"type":"Point","coordinates":[-75.128025024215646,39.96646196586056]},"properties":{"OBJECTID":434,"FID":434,"Lead__ppm":99,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":435,"geometry":{"type":"Point","coordinates":[-75.127899978728095,39.966604000644963]},"properties":{"OBJECTID":435,"FID":435,"Lead__ppm":218,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":436,"geometry":{"type":"Point","coordinates":[-75.128231007910287,39.966756982036109]},"properties":{"OBJECTID":436,"FID":436,"Lead__ppm":237,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":437,"geometry":{"type":"Point","coordinates":[-75.128253016634758,39.966278965688801]},"properties":{"OBJECTID":437,"FID":437,"Lead__ppm":60.666666669999998,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":438,"geometry":{"type":"Point","coordinates":[-75.128501041484711,39.966043020049092]},"properties":{"OBJECTID":438,"FID":438,"Lead__ppm":118,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":439,"geometry":{"type":"Point","coordinates":[-75.128746012062678,39.9659599879203]},"properties":{"OBJECTID":439,"FID":439,"Lead__ppm":226,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":440,"geometry":{"type":"Point","coordinates":[-75.129877979152198,39.96600997244775]},"properties":{"OBJECTID":440,"FID":440,"Lead__ppm":142,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":441,"geometry":{"type":"Point","coordinates":[-75.129292996239187,39.966285024393038]},"properties":{"OBJECTID":441,"FID":441,"Lead__ppm":158.33333329999999,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":442,"geometry":{"type":"Point","coordinates":[-75.137052014842695,39.967069002426172]},"properties":{"OBJECTID":442,"FID":442,"Lead__ppm":191,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":443,"geometry":{"type":"Point","coordinates":[-75.178199975252497,39.978228991153259]},"properties":{"OBJECTID":443,"FID":443,"Lead__ppm":106,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":444,"geometry":{"type":"Point","coordinates":[-75.17855301315916,39.978059996406422]},"properties":{"OBJECTID":444,"FID":444,"Lead__ppm":50,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":445,"geometry":{"type":"Point","coordinates":[-75.1786660212219,39.978120022286973]},"properties":{"OBJECTID":445,"FID":445,"Lead__ppm":98,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":446,"geometry":{"type":"Point","coordinates":[-75.178619039332531,39.978135028748866]},"properties":{"OBJECTID":446,"FID":446,"Lead__ppm":104,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":447,"geometry":{"type":"Point","coordinates":[-75.179075024170757,39.977883979844904]},"properties":{"OBJECTID":447,"FID":447,"Lead__ppm":52,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":448,"geometry":{"type":"Point","coordinates":[-75.178834994326849,39.977319030391605]},"properties":{"OBJECTID":448,"FID":448,"Lead__ppm":32,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":449,"geometry":{"type":"Point","coordinates":[-75.178655960090708,39.97762102113365]},"properties":{"OBJECTID":449,"FID":449,"Lead__ppm":176,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":450,"geometry":{"type":"Point","coordinates":[-75.179693963401519,39.977431029393252]},"properties":{"OBJECTID":450,"FID":450,"Lead__ppm":179,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":451,"geometry":{"type":"Point","coordinates":[-75.179969027541517,39.977549980805591]},"properties":{"OBJECTID":451,"FID":451,"Lead__ppm":132,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":452,"geometry":{"type":"Point","coordinates":[-75.179684980248666,39.97818300810264]},"properties":{"OBJECTID":452,"FID":452,"Lead__ppm":254,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":453,"geometry":{"type":"Point","coordinates":[-75.187534010043663,39.977016005743472]},"properties":{"OBJECTID":453,"FID":453,"Lead__ppm":60,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":454,"geometry":{"type":"Point","coordinates":[-75.187906002402826,39.976847007996938]},"properties":{"OBJECTID":454,"FID":454,"Lead__ppm":107,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":455,"geometry":{"type":"Point","coordinates":[-75.187813026770925,39.97716497123136]},"properties":{"OBJECTID":455,"FID":455,"Lead__ppm":54,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":456,"geometry":{"type":"Point","coordinates":[-75.187871956253559,39.977131997844971]},"properties":{"OBJECTID":456,"FID":456,"Lead__ppm":107,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":457,"geometry":{"type":"Point","coordinates":[-75.120128024384485,39.978264992831512]},"properties":{"OBJECTID":457,"FID":457,"Lead__ppm":84,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":458,"geometry":{"type":"Point","coordinates":[-75.120169975708251,39.978247990129255]},"properties":{"OBJECTID":458,"FID":458,"Lead__ppm":914,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":459,"geometry":{"type":"Point","coordinates":[-75.118302018906462,39.976811969307946]},"properties":{"OBJECTID":459,"FID":459,"Lead__ppm":54,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":460,"geometry":{"type":"Point","coordinates":[-75.118576005068107,39.976689023982161]},"properties":{"OBJECTID":460,"FID":460,"Lead__ppm":34,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":461,"geometry":{"type":"Point","coordinates":[-75.151043994045082,39.966342031266045]},"properties":{"OBJECTID":461,"FID":461,"Lead__ppm":162,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":462,"geometry":{"type":"Point","coordinates":[-75.151382030086509,39.966474014387423]},"properties":{"OBJECTID":462,"FID":462,"Lead__ppm":178,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":463,"geometry":{"type":"Point","coordinates":[-75.151273962757841,39.966441999725689]},"properties":{"OBJECTID":463,"FID":463,"Lead__ppm":233,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":464,"geometry":{"type":"Point","coordinates":[-75.151319956500373,39.966552019941311]},"properties":{"OBJECTID":464,"FID":464,"Lead__ppm":155,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":465,"geometry":{"type":"Point","coordinates":[-75.151434042541453,39.966396972627678]},"properties":{"OBJECTID":465,"FID":465,"Lead__ppm":475.33333329999999,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":466,"geometry":{"type":"Point","coordinates":[-75.151422993263466,39.966426026813572]},"properties":{"OBJECTID":466,"FID":466,"Lead__ppm":212.66666670000001,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":467,"geometry":{"type":"Point","coordinates":[-75.151307020760285,39.96634802111592]},"properties":{"OBJECTID":467,"FID":467,"Lead__ppm":165.33333329999999,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":468,"geometry":{"type":"Point","coordinates":[-75.1512220401344,39.966062022412629]},"properties":{"OBJECTID":468,"FID":468,"Lead__ppm":237,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":469,"geometry":{"type":"Point","coordinates":[-75.149957032551299,39.968958994878356]},"properties":{"OBJECTID":469,"FID":469,"Lead__ppm":116,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":470,"geometry":{"type":"Point","coordinates":[-75.038618039606973,40.024121984754203]},"properties":{"OBJECTID":470,"FID":470,"Lead__ppm":86,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":471,"geometry":{"type":"Point","coordinates":[-75.174400011769151,40.070900002782224]},"properties":{"OBJECTID":471,"FID":471,"Lead__ppm":139,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":472,"geometry":{"type":"Point","coordinates":[-75.149178013536925,40.033532993981055]},"properties":{"OBJECTID":472,"FID":472,"Lead__ppm":129,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":473,"geometry":{"type":"Point","coordinates":[-75.148700019974228,40.055500007207655]},"properties":{"OBJECTID":473,"FID":473,"Lead__ppm":221,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":474,"geometry":{"type":"Point","coordinates":[-75.173425968506564,40.062751974514875]},"properties":{"OBJECTID":474,"FID":474,"Lead__ppm":961,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":475,"geometry":{"type":"Point","coordinates":[-75.103257034528013,40.050089010907776]},"properties":{"OBJECTID":475,"FID":475,"Lead__ppm":61,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":476,"geometry":{"type":"Point","coordinates":[-75.154757988755762,40.06719903053245]},"properties":{"OBJECTID":476,"FID":476,"Lead__ppm":406,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":477,"geometry":{"type":"Point","coordinates":[-75.174300029278029,40.071000024410445]},"properties":{"OBJECTID":477,"FID":477,"Lead__ppm":1866,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":478,"geometry":{"type":"Point","coordinates":[-75.105649966781868,40.042639971316156]},"properties":{"OBJECTID":478,"FID":478,"Lead__ppm":142,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":479,"geometry":{"type":"Point","coordinates":[-75.151990009870801,40.068770022808863]},"properties":{"OBJECTID":479,"FID":479,"Lead__ppm":505,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":480,"geometry":{"type":"Point","coordinates":[-75.156599984245844,40.05179998616034]},"properties":{"OBJECTID":480,"FID":480,"Lead__ppm":96,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":481,"geometry":{"type":"Point","coordinates":[-75.17280002241661,40.046299985108121]},"properties":{"OBJECTID":481,"FID":481,"Lead__ppm":1869,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":482,"geometry":{"type":"Point","coordinates":[-75.10595000408675,40.042639971316156]},"properties":{"OBJECTID":482,"FID":482,"Lead__ppm":277,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":483,"geometry":{"type":"Point","coordinates":[-75.10595000408675,40.042600014800549]},"properties":{"OBJECTID":483,"FID":483,"Lead__ppm":189,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":484,"geometry":{"type":"Point","coordinates":[-75.15290000325362,40.061899998610315]},"properties":{"OBJECTID":484,"FID":484,"Lead__ppm":291,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":485,"geometry":{"type":"Point","coordinates":[-75.179900036927691,40.072099977657871]},"properties":{"OBJECTID":485,"FID":485,"Lead__ppm":67,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":486,"geometry":{"type":"Point","coordinates":[-75.174684957377281,40.07086899948478]},"properties":{"OBJECTID":486,"FID":486,"Lead__ppm":113,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":487,"geometry":{"type":"Point","coordinates":[-75.210113973193771,39.953700006892682]},"properties":{"OBJECTID":487,"FID":487,"Lead__ppm":175,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":488,"geometry":{"type":"Point","coordinates":[-75.10595000408675,40.042639971316156]},"properties":{"OBJECTID":488,"FID":488,"Lead__ppm":153,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":489,"geometry":{"type":"Point","coordinates":[-75.15265000211005,40.070047028867755]},"properties":{"OBJECTID":489,"FID":489,"Lead__ppm":280,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":490,"geometry":{"type":"Point","coordinates":[-75.13411398487446,40.031531020829327]},"properties":{"OBJECTID":490,"FID":490,"Lead__ppm":1917,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":491,"geometry":{"type":"Point","coordinates":[-75.169659961340955,40.056497005096503]},"properties":{"OBJECTID":491,"FID":491,"Lead__ppm":72,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":492,"geometry":{"type":"Point","coordinates":[-75.086399968558453,40.033000006868782]},"properties":{"OBJECTID":492,"FID":492,"Lead__ppm":970,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":493,"geometry":{"type":"Point","coordinates":[-75.166799994970916,40.020999988301782]},"properties":{"OBJECTID":493,"FID":493,"Lead__ppm":510,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":494,"geometry":{"type":"Point","coordinates":[-75.170999978250279,40.072099977657871]},"properties":{"OBJECTID":494,"FID":494,"Lead__ppm":106,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":495,"geometry":{"type":"Point","coordinates":[-75.166200998339463,40.067371998199519]},"properties":{"OBJECTID":495,"FID":495,"Lead__ppm":290,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":496,"geometry":{"type":"Point","coordinates":[-75.164330975412511,40.032571977165951]},"properties":{"OBJECTID":496,"FID":496,"Lead__ppm":214,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":497,"geometry":{"type":"Point","coordinates":[-75.154099972810144,40.041699989801934]},"properties":{"OBJECTID":497,"FID":497,"Lead__ppm":307,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":498,"geometry":{"type":"Point","coordinates":[-75.098894007024583,40.053315018135102]},"properties":{"OBJECTID":498,"FID":498,"Lead__ppm":61,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":499,"geometry":{"type":"Point","coordinates":[-75.10595000408675,40.042639971316156]},"properties":{"OBJECTID":499,"FID":499,"Lead__ppm":218,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":500,"geometry":{"type":"Point","coordinates":[-75.147625994220562,40.048440982482077]},"properties":{"OBJECTID":500,"FID":500,"Lead__ppm":150,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":501,"geometry":{"type":"Point","coordinates":[-75.178900032353411,40.067800015665654]},"properties":{"OBJECTID":501,"FID":501,"Lead__ppm":661,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":502,"geometry":{"type":"Point","coordinates":[-75.103299973998588,40.010500012218003]},"properties":{"OBJECTID":502,"FID":502,"Lead__ppm":125,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":503,"geometry":{"type":"Point","coordinates":[-75.142232958412336,40.025203020892029]},"properties":{"OBJECTID":503,"FID":503,"Lead__ppm":60,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":504,"geometry":{"type":"Point","coordinates":[-75.171260040525041,40.025730015499022]},"properties":{"OBJECTID":504,"FID":504,"Lead__ppm":116,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":505,"geometry":{"type":"Point","coordinates":[-75.202012965961572,40.065078009738727]},"properties":{"OBJECTID":505,"FID":505,"Lead__ppm":4685,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":506,"geometry":{"type":"Point","coordinates":[-75.180900041501971,40.071900006227587]},"properties":{"OBJECTID":506,"FID":506,"Lead__ppm":50,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":507,"geometry":{"type":"Point","coordinates":[-75.17929897417109,39.975178003734314]},"properties":{"OBJECTID":507,"FID":507,"Lead__ppm":158,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":508,"geometry":{"type":"Point","coordinates":[-75.171900000333451,40.059500012116295]},"properties":{"OBJECTID":508,"FID":508,"Lead__ppm":109,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":509,"geometry":{"type":"Point","coordinates":[-75.208409958931327,40.024225996102857]},"properties":{"OBJECTID":509,"FID":509,"Lead__ppm":345,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":510,"geometry":{"type":"Point","coordinates":[-75.149097973645112,40.038982993491388]},"properties":{"OBJECTID":510,"FID":510,"Lead__ppm":155,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":511,"geometry":{"type":"Point","coordinates":[-75.124613043103508,39.988841023994638]},"properties":{"OBJECTID":511,"FID":511,"Lead__ppm":221,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":512,"geometry":{"type":"Point","coordinates":[-75.184922966838855,40.024481002091662]},"properties":{"OBJECTID":512,"FID":512,"Lead__ppm":89,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":513,"geometry":{"type":"Point","coordinates":[-75.123767997915721,39.988063008336624]},"properties":{"OBJECTID":513,"FID":513,"Lead__ppm":77,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":514,"geometry":{"type":"Point","coordinates":[-75.125220034740977,39.989425975260623]},"properties":{"OBJECTID":514,"FID":514,"Lead__ppm":361,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":515,"geometry":{"type":"Point","coordinates":[-75.087061038776042,40.019943995687456]},"properties":{"OBJECTID":515,"FID":515,"Lead__ppm":263,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":516,"geometry":{"type":"Point","coordinates":[-75.16620001019264,40.068900020590398]},"properties":{"OBJECTID":516,"FID":516,"Lead__ppm":115,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":517,"geometry":{"type":"Point","coordinates":[-75.070550003853924,40.001987969372017]},"properties":{"OBJECTID":517,"FID":517,"Lead__ppm":140,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":518,"geometry":{"type":"Point","coordinates":[-75.208409958931327,40.044225971616775]},"properties":{"OBJECTID":518,"FID":518,"Lead__ppm":561,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":519,"geometry":{"type":"Point","coordinates":[-75.208411036909666,40.044225971616775]},"properties":{"OBJECTID":519,"FID":519,"Lead__ppm":1197,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":520,"geometry":{"type":"Point","coordinates":[-75.089153035409694,40.017289013592809]},"properties":{"OBJECTID":520,"FID":520,"Lead__ppm":707,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":521,"geometry":{"type":"Point","coordinates":[-75.172526036254951,39.923838965891555]},"properties":{"OBJECTID":521,"FID":521,"Lead__ppm":206,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":522,"geometry":{"type":"Point","coordinates":[-75.208409958931327,40.044225971616775]},"properties":{"OBJECTID":522,"FID":522,"Lead__ppm":277,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":523,"geometry":{"type":"Point","coordinates":[-75.128964033182143,40.052693001639007]},"properties":{"OBJECTID":523,"FID":523,"Lead__ppm":100,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":524,"geometry":{"type":"Point","coordinates":[-75.175199961529657,40.052799994931618]},"properties":{"OBJECTID":524,"FID":524,"Lead__ppm":297,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":525,"geometry":{"type":"Point","coordinates":[-75.208409958931327,40.044225971616775]},"properties":{"OBJECTID":525,"FID":525,"Lead__ppm":456,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":526,"geometry":{"type":"Point","coordinates":[-75.087872037814535,40.017360975756802]},"properties":{"OBJECTID":526,"FID":526,"Lead__ppm":104,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":527,"geometry":{"type":"Point","coordinates":[-75.110568961614632,39.983830982069939]},"properties":{"OBJECTID":527,"FID":527,"Lead__ppm":289,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":528,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":528,"FID":528,"Lead__ppm":18064,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":529,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":529,"FID":529,"Lead__ppm":15069,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":530,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":530,"FID":530,"Lead__ppm":14988,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":531,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":531,"FID":531,"Lead__ppm":11241,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":532,"geometry":{"type":"Point","coordinates":[-75.12970496362847,39.973230011843803]},"properties":{"OBJECTID":532,"FID":532,"Lead__ppm":9883,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":533,"geometry":{"type":"Point","coordinates":[-75.12769004244619,39.975100008023901]},"properties":{"OBJECTID":533,"FID":533,"Lead__ppm":7700,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":534,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":534,"FID":534,"Lead__ppm":7665,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":535,"geometry":{"type":"Point","coordinates":[-75.069986041518547,40.03900699618562]},"properties":{"OBJECTID":535,"FID":535,"Lead__ppm":7373,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":536,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":536,"FID":536,"Lead__ppm":7015,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":537,"geometry":{"type":"Point","coordinates":[-75.220964993005239,39.949688977596246]},"properties":{"OBJECTID":537,"FID":537,"Lead__ppm":5341,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":538,"geometry":{"type":"Point","coordinates":[-75.12982201410999,39.9775139787507]},"properties":{"OBJECTID":538,"FID":538,"Lead__ppm":4805,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":539,"geometry":{"type":"Point","coordinates":[-75.069986041518547,40.03900699618562]},"properties":{"OBJECTID":539,"FID":539,"Lead__ppm":4507,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":540,"geometry":{"type":"Point","coordinates":[-75.212259958575999,39.946494984442545]},"properties":{"OBJECTID":540,"FID":540,"Lead__ppm":4448,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":541,"geometry":{"type":"Point","coordinates":[-75.126722017896029,39.986153996774803]},"properties":{"OBJECTID":541,"FID":541,"Lead__ppm":4422,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":542,"geometry":{"type":"Point","coordinates":[-75.203450989068386,39.969467973059317]},"properties":{"OBJECTID":542,"FID":542,"Lead__ppm":4312,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":543,"geometry":{"type":"Point","coordinates":[-75.134143988604961,40.052595978655837]},"properties":{"OBJECTID":543,"FID":543,"Lead__ppm":3600,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":544,"geometry":{"type":"Point","coordinates":[-75.132539956833625,39.971178010098683]},"properties":{"OBJECTID":544,"FID":544,"Lead__ppm":3573,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":545,"geometry":{"type":"Point","coordinates":[-75.126132004417414,39.970466985762691]},"properties":{"OBJECTID":545,"FID":545,"Lead__ppm":3425,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":546,"geometry":{"type":"Point","coordinates":[-75.212259958575999,39.946494984442545]},"properties":{"OBJECTID":546,"FID":546,"Lead__ppm":3392,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":547,"geometry":{"type":"Point","coordinates":[-75.126132004417414,39.970466985762691]},"properties":{"OBJECTID":547,"FID":547,"Lead__ppm":3208,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":548,"geometry":{"type":"Point","coordinates":[-75.176088036019536,39.964306002705108]},"properties":{"OBJECTID":548,"FID":548,"Lead__ppm":3200,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":549,"geometry":{"type":"Point","coordinates":[-75.191260042179138,39.962151004356876]},"properties":{"OBJECTID":549,"FID":549,"Lead__ppm":3100,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":550,"geometry":{"type":"Point","coordinates":[-75.117212991287516,39.978477009978135]},"properties":{"OBJECTID":550,"FID":550,"Lead__ppm":3018,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":551,"geometry":{"type":"Point","coordinates":[-75.117204008134678,39.977289017106131]},"properties":{"OBJECTID":551,"FID":551,"Lead__ppm":2904,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":552,"geometry":{"type":"Point","coordinates":[-75.194299042785318,39.961822987533658]},"properties":{"OBJECTID":552,"FID":552,"Lead__ppm":2900,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":553,"geometry":{"type":"Point","coordinates":[-75.121003971618023,39.977739008492073]},"properties":{"OBJECTID":553,"FID":553,"Lead__ppm":2774,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":554,"geometry":{"type":"Point","coordinates":[-75.117212991287516,39.978477009978135]},"properties":{"OBJECTID":554,"FID":554,"Lead__ppm":2765,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":555,"geometry":{"type":"Point","coordinates":[-75.116713977147185,39.976740033239949]},"properties":{"OBJECTID":555,"FID":555,"Lead__ppm":2763,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":556,"geometry":{"type":"Point","coordinates":[-75.220964993005239,39.949688977596246]},"properties":{"OBJECTID":556,"FID":556,"Lead__ppm":2744,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":557,"geometry":{"type":"Point","coordinates":[-75.191296962937315,40.058052980241335]},"properties":{"OBJECTID":557,"FID":557,"Lead__ppm":2500,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":558,"geometry":{"type":"Point","coordinates":[-75.119001986175846,39.975618991045771]},"properties":{"OBJECTID":558,"FID":558,"Lead__ppm":2500,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":559,"geometry":{"type":"Point","coordinates":[-75.187376984532008,39.981379995473461]},"properties":{"OBJECTID":559,"FID":559,"Lead__ppm":2400,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":560,"geometry":{"type":"Point","coordinates":[-75.122155971138383,39.981853019055016]},"properties":{"OBJECTID":560,"FID":560,"Lead__ppm":2400,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":561,"geometry":{"type":"Point","coordinates":[-75.120946030282212,39.978666998810446]},"properties":{"OBJECTID":561,"FID":561,"Lead__ppm":2357,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":562,"geometry":{"type":"Point","coordinates":[-75.120501993037252,39.978150998924882]},"properties":{"OBJECTID":562,"FID":562,"Lead__ppm":2354,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":563,"geometry":{"type":"Point","coordinates":[-75.091047043354735,40.01639202568164]},"properties":{"OBJECTID":563,"FID":563,"Lead__ppm":2323,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":564,"geometry":{"type":"Point","coordinates":[-75.167315987270115,39.935465991239504]},"properties":{"OBJECTID":564,"FID":564,"Lead__ppm":2300,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":565,"geometry":{"type":"Point","coordinates":[-75.128534997802447,39.982397969549467]},"properties":{"OBJECTID":565,"FID":565,"Lead__ppm":2300,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":566,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":566,"FID":566,"Lead__ppm":2279,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":567,"geometry":{"type":"Point","coordinates":[-75.117212991287516,39.978477009978135]},"properties":{"OBJECTID":567,"FID":567,"Lead__ppm":2278,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":568,"geometry":{"type":"Point","coordinates":[-75.175335966463649,39.990301018314725]},"properties":{"OBJECTID":568,"FID":568,"Lead__ppm":2200,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":569,"geometry":{"type":"Point","coordinates":[-75.213338026748474,40.021445976886142]},"properties":{"OBJECTID":569,"FID":569,"Lead__ppm":2200,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":570,"geometry":{"type":"Point","coordinates":[-75.121003971618023,39.977739008492073]},"properties":{"OBJECTID":570,"FID":570,"Lead__ppm":2144,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":571,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":571,"FID":571,"Lead__ppm":2141,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":572,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":572,"FID":572,"Lead__ppm":2109,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":573,"geometry":{"type":"Point","coordinates":[-75.132529985533978,39.97110400277883]},"properties":{"OBJECTID":573,"FID":573,"Lead__ppm":2100,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":574,"geometry":{"type":"Point","coordinates":[-75.155004037312082,39.922920014174643]},"properties":{"OBJECTID":574,"FID":574,"Lead__ppm":2051,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":575,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":575,"FID":575,"Lead__ppm":2006,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":576,"geometry":{"type":"Point","coordinates":[-75.178675004374739,39.978625008570503]},"properties":{"OBJECTID":576,"FID":576,"Lead__ppm":2000,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":577,"geometry":{"type":"Point","coordinates":[-75.128170012302505,39.982058967763379]},"properties":{"OBJECTID":577,"FID":577,"Lead__ppm":1982,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":578,"geometry":{"type":"Point","coordinates":[-75.146769001439495,39.96323598246164]},"properties":{"OBJECTID":578,"FID":578,"Lead__ppm":1900,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":579,"geometry":{"type":"Point","coordinates":[-75.206321016569632,40.077562978247549]},"properties":{"OBJECTID":579,"FID":579,"Lead__ppm":1900,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":580,"geometry":{"type":"Point","coordinates":[-75.116501974740132,39.97765798685657]},"properties":{"OBJECTID":580,"FID":580,"Lead__ppm":1819,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":581,"geometry":{"type":"Point","coordinates":[-75.128170012302505,39.982058967763379]},"properties":{"OBJECTID":581,"FID":581,"Lead__ppm":1808,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":582,"geometry":{"type":"Point","coordinates":[-75.192921027139477,39.961967028700201]},"properties":{"OBJECTID":582,"FID":582,"Lead__ppm":1800,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":583,"geometry":{"type":"Point","coordinates":[-75.116575995919547,39.976843979112964]},"properties":{"OBJECTID":583,"FID":583,"Lead__ppm":1800,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":584,"geometry":{"type":"Point","coordinates":[-75.219192976275778,40.02997499052929]},"properties":{"OBJECTID":584,"FID":584,"Lead__ppm":1800,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":585,"geometry":{"type":"Point","coordinates":[-75.122450977877676,39.979404026574734]},"properties":{"OBJECTID":585,"FID":585,"Lead__ppm":1783,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":586,"geometry":{"type":"Point","coordinates":[-75.123827017229885,39.980923970657841]},"properties":{"OBJECTID":586,"FID":586,"Lead__ppm":1718,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":587,"geometry":{"type":"Point","coordinates":[-75.217581039329971,39.94502000469452]},"properties":{"OBJECTID":587,"FID":587,"Lead__ppm":1713,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":588,"geometry":{"type":"Point","coordinates":[-75.132539956833625,39.971178010098683]},"properties":{"OBJECTID":588,"FID":588,"Lead__ppm":1701,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":589,"geometry":{"type":"Point","coordinates":[-75.146769001439495,39.96323598246164]},"properties":{"OBJECTID":589,"FID":589,"Lead__ppm":1700,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":590,"geometry":{"type":"Point","coordinates":[-75.131870981441537,39.969889032085199]},"properties":{"OBJECTID":590,"FID":590,"Lead__ppm":1700,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":591,"geometry":{"type":"Point","coordinates":[-75.125336007244172,39.970763981141786]},"properties":{"OBJECTID":591,"FID":591,"Lead__ppm":1691,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":592,"geometry":{"type":"Point","coordinates":[-75.210631043471309,39.962504013147282]},"properties":{"OBJECTID":592,"FID":592,"Lead__ppm":1647,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":593,"geometry":{"type":"Point","coordinates":[-75.130497008214476,39.976317020092736]},"properties":{"OBJECTID":593,"FID":593,"Lead__ppm":1632,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":594,"geometry":{"type":"Point","coordinates":[-75.212003040404753,39.954006027077348]},"properties":{"OBJECTID":594,"FID":594,"Lead__ppm":1600,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":595,"geometry":{"type":"Point","coordinates":[-75.145887035493558,39.966827000857464]},"properties":{"OBJECTID":595,"FID":595,"Lead__ppm":1600,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":596,"geometry":{"type":"Point","coordinates":[-75.132529985533978,39.97110400277883]},"properties":{"OBJECTID":596,"FID":596,"Lead__ppm":1600,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":597,"geometry":{"type":"Point","coordinates":[-75.123827017229885,39.980923970657841]},"properties":{"OBJECTID":597,"FID":597,"Lead__ppm":1593,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":598,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":598,"FID":598,"Lead__ppm":1536,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":599,"geometry":{"type":"Point","coordinates":[-75.188512994040309,40.035000011071261]},"properties":{"OBJECTID":599,"FID":599,"Lead__ppm":1523,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":600,"geometry":{"type":"Point","coordinates":[-75.148443011971466,39.944960982804631]},"properties":{"OBJECTID":600,"FID":600,"Lead__ppm":1500,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":601,"geometry":{"type":"Point","coordinates":[-75.123827017229885,39.980923970657841]},"properties":{"OBJECTID":601,"FID":601,"Lead__ppm":1500,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":602,"geometry":{"type":"Point","coordinates":[-75.130497008214476,39.976317020092736]},"properties":{"OBJECTID":602,"FID":602,"Lead__ppm":1499,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":603,"geometry":{"type":"Point","coordinates":[-75.223117985246688,39.947626007977028]},"properties":{"OBJECTID":603,"FID":603,"Lead__ppm":1493,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":604,"geometry":{"type":"Point","coordinates":[-75.117861035933473,39.979215003493991]},"properties":{"OBJECTID":604,"FID":604,"Lead__ppm":1478,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":605,"geometry":{"type":"Point","coordinates":[-75.1179129585569,39.978192989456097]},"properties":{"OBJECTID":605,"FID":605,"Lead__ppm":1468,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":606,"geometry":{"type":"Point","coordinates":[-75.223117985246688,39.947626007977028]},"properties":{"OBJECTID":606,"FID":606,"Lead__ppm":1460,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":607,"geometry":{"type":"Point","coordinates":[-75.165017018794984,40.025799010836714]},"properties":{"OBJECTID":607,"FID":607,"Lead__ppm":1448,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":608,"geometry":{"type":"Point","coordinates":[-75.123269971922213,39.980339979113694]},"properties":{"OBJECTID":608,"FID":608,"Lead__ppm":1445,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":609,"geometry":{"type":"Point","coordinates":[-75.157835976245266,40.002210028367109]},"properties":{"OBJECTID":609,"FID":609,"Lead__ppm":1442,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":610,"geometry":{"type":"Point","coordinates":[-75.163441014460531,39.95152601220704]},"properties":{"OBJECTID":610,"FID":610,"Lead__ppm":1439,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":611,"geometry":{"type":"Point","coordinates":[-75.15590396956371,39.962867003706762]},"properties":{"OBJECTID":611,"FID":611,"Lead__ppm":1400,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":612,"geometry":{"type":"Point","coordinates":[-75.14291397122922,39.97113202230377]},"properties":{"OBJECTID":612,"FID":612,"Lead__ppm":1400,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":613,"geometry":{"type":"Point","coordinates":[-75.133132036437388,39.974613995678133]},"properties":{"OBJECTID":613,"FID":613,"Lead__ppm":1400,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":614,"geometry":{"type":"Point","coordinates":[-75.129456040463239,39.978147970098703]},"properties":{"OBJECTID":614,"FID":614,"Lead__ppm":1400,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":615,"geometry":{"type":"Point","coordinates":[-75.12736098955763,39.979061981148739]},"properties":{"OBJECTID":615,"FID":615,"Lead__ppm":1400,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":616,"geometry":{"type":"Point","coordinates":[-75.122419986000381,39.979497987234204]},"properties":{"OBJECTID":616,"FID":616,"Lead__ppm":1400,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":617,"geometry":{"type":"Point","coordinates":[-75.117861035933473,39.979215003493991]},"properties":{"OBJECTID":617,"FID":617,"Lead__ppm":1372,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":618,"geometry":{"type":"Point","coordinates":[-75.11628098918024,39.977405972472162]},"properties":{"OBJECTID":618,"FID":618,"Lead__ppm":1371,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":619,"geometry":{"type":"Point","coordinates":[-75.14308896304658,40.006804980464217]},"properties":{"OBJECTID":619,"FID":619,"Lead__ppm":1364,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":620,"geometry":{"type":"Point","coordinates":[-75.135030985116501,40.050933983075154]},"properties":{"OBJECTID":620,"FID":620,"Lead__ppm":1349,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":621,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":621,"FID":621,"Lead__ppm":1339,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":622,"geometry":{"type":"Point","coordinates":[-75.163441014460531,39.95152601220704]},"properties":{"OBJECTID":622,"FID":622,"Lead__ppm":1323,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":623,"geometry":{"type":"Point","coordinates":[-75.210631043471309,39.962504013147282]},"properties":{"OBJECTID":623,"FID":623,"Lead__ppm":1322,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":624,"geometry":{"type":"Point","coordinates":[-75.132652964896366,39.975371994444473]},"properties":{"OBJECTID":624,"FID":624,"Lead__ppm":1321,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":625,"geometry":{"type":"Point","coordinates":[-75.163441014460531,39.95152601220704]},"properties":{"OBJECTID":625,"FID":625,"Lead__ppm":1318,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":626,"geometry":{"type":"Point","coordinates":[-75.128170012302505,39.982058967763379]},"properties":{"OBJECTID":626,"FID":626,"Lead__ppm":1313,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":627,"geometry":{"type":"Point","coordinates":[-75.210631043471309,39.962504013147282]},"properties":{"OBJECTID":627,"FID":627,"Lead__ppm":1312,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":628,"geometry":{"type":"Point","coordinates":[-75.148019995304168,39.953629974628228]},"properties":{"OBJECTID":628,"FID":628,"Lead__ppm":1300,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":629,"geometry":{"type":"Point","coordinates":[-75.180145007505686,40.039116968306978]},"properties":{"OBJECTID":629,"FID":629,"Lead__ppm":1300,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":630,"geometry":{"type":"Point","coordinates":[-75.140904978927821,39.98454799328799]},"properties":{"OBJECTID":630,"FID":630,"Lead__ppm":1300,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":631,"geometry":{"type":"Point","coordinates":[-75.120946030282212,39.978666998810446]},"properties":{"OBJECTID":631,"FID":631,"Lead__ppm":1285,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":632,"geometry":{"type":"Point","coordinates":[-75.169965029211454,39.992758980023929]},"properties":{"OBJECTID":632,"FID":632,"Lead__ppm":1284,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":633,"geometry":{"type":"Point","coordinates":[-75.121003971618023,39.977739008492073]},"properties":{"OBJECTID":633,"FID":633,"Lead__ppm":1280,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":634,"geometry":{"type":"Point","coordinates":[-75.089623033966348,39.989087971910294]},"properties":{"OBJECTID":634,"FID":634,"Lead__ppm":1278,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":635,"geometry":{"type":"Point","coordinates":[-75.122450977877676,39.979404026574734]},"properties":{"OBJECTID":635,"FID":635,"Lead__ppm":1275,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":636,"geometry":{"type":"Point","coordinates":[-75.198425004885294,40.044914978289775]},"properties":{"OBJECTID":636,"FID":636,"Lead__ppm":1269,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":637,"geometry":{"type":"Point","coordinates":[-75.131730035773472,39.9697200167152]},"properties":{"OBJECTID":637,"FID":637,"Lead__ppm":1260,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":638,"geometry":{"type":"Point","coordinates":[-75.1179129585569,39.978192989456097]},"properties":{"OBJECTID":638,"FID":638,"Lead__ppm":1247,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":639,"geometry":{"type":"Point","coordinates":[-75.116501974740132,39.97765798685657]},"properties":{"OBJECTID":639,"FID":639,"Lead__ppm":1235,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":640,"geometry":{"type":"Point","coordinates":[-75.220229003292957,39.964742034078007]},"properties":{"OBJECTID":640,"FID":640,"Lead__ppm":1221,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":641,"geometry":{"type":"Point","coordinates":[-75.125541990938814,39.986774968244383]},"properties":{"OBJECTID":641,"FID":641,"Lead__ppm":1205,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":642,"geometry":{"type":"Point","coordinates":[-75.117212991287516,39.978477009978135]},"properties":{"OBJECTID":642,"FID":642,"Lead__ppm":1204,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":643,"geometry":{"type":"Point","coordinates":[-75.171945994075983,39.929584011820822]},"properties":{"OBJECTID":643,"FID":643,"Lead__ppm":1200,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":644,"geometry":{"type":"Point","coordinates":[-75.152844038211413,39.962321002381081]},"properties":{"OBJECTID":644,"FID":644,"Lead__ppm":1200,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":645,"geometry":{"type":"Point","coordinates":[-75.13611399402302,39.965774989771603]},"properties":{"OBJECTID":645,"FID":645,"Lead__ppm":1200,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":646,"geometry":{"type":"Point","coordinates":[-75.14291397122922,39.97113202230377]},"properties":{"OBJECTID":646,"FID":646,"Lead__ppm":1200,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":647,"geometry":{"type":"Point","coordinates":[-75.144725962988829,39.975525025052669]},"properties":{"OBJECTID":647,"FID":647,"Lead__ppm":1200,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":648,"geometry":{"type":"Point","coordinates":[-75.127481004479577,39.972209973586629]},"properties":{"OBJECTID":648,"FID":648,"Lead__ppm":1200,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":649,"geometry":{"type":"Point","coordinates":[-75.11628098918024,39.977405972472162]},"properties":{"OBJECTID":649,"FID":649,"Lead__ppm":1197,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":650,"geometry":{"type":"Point","coordinates":[-75.127332962120747,39.983084985066597]},"properties":{"OBJECTID":650,"FID":650,"Lead__ppm":1196,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":651,"geometry":{"type":"Point","coordinates":[-75.220940019840342,39.954581980344891]},"properties":{"OBJECTID":651,"FID":651,"Lead__ppm":1187,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":652,"geometry":{"type":"Point","coordinates":[-75.157968028592038,39.986424011996753]},"properties":{"OBJECTID":652,"FID":652,"Lead__ppm":1162,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":653,"geometry":{"type":"Point","coordinates":[-75.222063003777009,39.954077987070413]},"properties":{"OBJECTID":653,"FID":653,"Lead__ppm":1133,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":654,"geometry":{"type":"Point","coordinates":[-75.122450977877676,39.979404026574734]},"properties":{"OBJECTID":654,"FID":654,"Lead__ppm":1129,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":655,"geometry":{"type":"Point","coordinates":[-75.120373983109275,39.978955009859007]},"properties":{"OBJECTID":655,"FID":655,"Lead__ppm":1116,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":656,"geometry":{"type":"Point","coordinates":[-75.18797696931027,40.052018995043326]},"properties":{"OBJECTID":656,"FID":656,"Lead__ppm":1112,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":657,"geometry":{"type":"Point","coordinates":[-75.120373983109275,39.978955009859007]},"properties":{"OBJECTID":657,"FID":657,"Lead__ppm":1109,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":658,"geometry":{"type":"Point","coordinates":[-75.069986041518547,40.03900699618562]},"properties":{"OBJECTID":658,"FID":658,"Lead__ppm":1108,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":659,"geometry":{"type":"Point","coordinates":[-75.131730035773472,39.9697200167152]},"properties":{"OBJECTID":659,"FID":659,"Lead__ppm":1107,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":660,"geometry":{"type":"Point","coordinates":[-75.132193027470905,39.976146024287345]},"properties":{"OBJECTID":660,"FID":660,"Lead__ppm":1104,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":661,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":661,"FID":661,"Lead__ppm":1100,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":662,"geometry":{"type":"Point","coordinates":[-75.16686296687233,39.92767998027346]},"properties":{"OBJECTID":662,"FID":662,"Lead__ppm":1100,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":663,"geometry":{"type":"Point","coordinates":[-75.174381955631944,39.964704992518882]},"properties":{"OBJECTID":663,"FID":663,"Lead__ppm":1100,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":664,"geometry":{"type":"Point","coordinates":[-75.141061016292682,39.962842974231918]},"properties":{"OBJECTID":664,"FID":664,"Lead__ppm":1100,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":665,"geometry":{"type":"Point","coordinates":[-75.12769004244619,39.975100008023901]},"properties":{"OBJECTID":665,"FID":665,"Lead__ppm":1100,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":666,"geometry":{"type":"Point","coordinates":[-75.122419986000381,39.979497987234204]},"properties":{"OBJECTID":666,"FID":666,"Lead__ppm":1100,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":667,"geometry":{"type":"Point","coordinates":[-75.123827017229885,39.980923970657841]},"properties":{"OBJECTID":667,"FID":667,"Lead__ppm":1100,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":668,"geometry":{"type":"Point","coordinates":[-75.127900966874904,39.969855986343049]},"properties":{"OBJECTID":668,"FID":668,"Lead__ppm":1100,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":669,"geometry":{"type":"Point","coordinates":[-75.125450991600516,39.970919018550745]},"properties":{"OBJECTID":669,"FID":669,"Lead__ppm":1100,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":670,"geometry":{"type":"Point","coordinates":[-75.116575995919547,39.976843979112964]},"properties":{"OBJECTID":670,"FID":670,"Lead__ppm":1100,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":671,"geometry":{"type":"Point","coordinates":[-75.143230986692998,39.984653992196016]},"properties":{"OBJECTID":671,"FID":671,"Lead__ppm":1100,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":672,"geometry":{"type":"Point","coordinates":[-75.147154019370277,39.988197014319162]},"properties":{"OBJECTID":672,"FID":672,"Lead__ppm":1100,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":673,"geometry":{"type":"Point","coordinates":[-75.230711983332526,39.9508819951932]},"properties":{"OBJECTID":673,"FID":673,"Lead__ppm":1098,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":674,"geometry":{"type":"Point","coordinates":[-75.117861035933473,39.979215003493991]},"properties":{"OBJECTID":674,"FID":674,"Lead__ppm":1097,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":675,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":675,"FID":675,"Lead__ppm":1095,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":676,"geometry":{"type":"Point","coordinates":[-75.069986041518547,40.03900699618562]},"properties":{"OBJECTID":676,"FID":676,"Lead__ppm":1093,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":677,"geometry":{"type":"Point","coordinates":[-75.126703961758821,39.973220993552459]},"properties":{"OBJECTID":677,"FID":677,"Lead__ppm":1092,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":678,"geometry":{"type":"Point","coordinates":[-75.129835039681623,39.96904498374824]},"properties":{"OBJECTID":678,"FID":678,"Lead__ppm":1087,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":679,"geometry":{"type":"Point","coordinates":[-75.116501974740132,39.97765798685657]},"properties":{"OBJECTID":679,"FID":679,"Lead__ppm":1072,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":680,"geometry":{"type":"Point","coordinates":[-75.132414013030797,39.966849032330146]},"properties":{"OBJECTID":680,"FID":680,"Lead__ppm":1071,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":681,"geometry":{"type":"Point","coordinates":[-75.132539956833625,39.971178010098683]},"properties":{"OBJECTID":681,"FID":681,"Lead__ppm":1059,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":682,"geometry":{"type":"Point","coordinates":[-75.217781004312201,39.947134979536408]},"properties":{"OBJECTID":682,"FID":682,"Lead__ppm":1058,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":683,"geometry":{"type":"Point","coordinates":[-75.165335022405557,40.024050992790237]},"properties":{"OBJECTID":683,"FID":683,"Lead__ppm":1055,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":684,"geometry":{"type":"Point","coordinates":[-75.165335022405557,40.024050992790237]},"properties":{"OBJECTID":684,"FID":684,"Lead__ppm":1053,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":685,"geometry":{"type":"Point","coordinates":[-75.123873010972432,39.974724002741191]},"properties":{"OBJECTID":685,"FID":685,"Lead__ppm":1047,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":686,"geometry":{"type":"Point","coordinates":[-75.120942976010227,39.978756004266486]},"properties":{"OBJECTID":686,"FID":686,"Lead__ppm":1045,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":687,"geometry":{"type":"Point","coordinates":[-75.176626037043192,40.034085992079568]},"properties":{"OBJECTID":687,"FID":687,"Lead__ppm":1029,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":688,"geometry":{"type":"Point","coordinates":[-75.212030978010077,39.94624499011325]},"properties":{"OBJECTID":688,"FID":688,"Lead__ppm":1024,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":689,"geometry":{"type":"Point","coordinates":[-75.124452963319868,39.981662970247648]},"properties":{"OBJECTID":689,"FID":689,"Lead__ppm":1021,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":690,"geometry":{"type":"Point","coordinates":[-75.116501974740132,39.97765798685657]},"properties":{"OBJECTID":690,"FID":690,"Lead__ppm":1016,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":691,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":691,"FID":691,"Lead__ppm":1012,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":692,"geometry":{"type":"Point","coordinates":[-75.212672015796826,39.944777993961239]},"properties":{"OBJECTID":692,"FID":692,"Lead__ppm":1004,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":693,"geometry":{"type":"Point","coordinates":[-75.145887035493558,39.966827000857464]},"properties":{"OBJECTID":693,"FID":693,"Lead__ppm":1000,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":694,"geometry":{"type":"Point","coordinates":[-75.14605798489211,39.969436992485718]},"properties":{"OBJECTID":694,"FID":694,"Lead__ppm":1000,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":695,"geometry":{"type":"Point","coordinates":[-75.131870981441537,39.969889032085199]},"properties":{"OBJECTID":695,"FID":695,"Lead__ppm":1000,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":696,"geometry":{"type":"Point","coordinates":[-75.124753988771573,39.978300994490738]},"properties":{"OBJECTID":696,"FID":696,"Lead__ppm":1000,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":697,"geometry":{"type":"Point","coordinates":[-75.132652964896366,40.002071989919628]},"properties":{"OBJECTID":697,"FID":697,"Lead__ppm":1000,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":698,"geometry":{"type":"Point","coordinates":[-75.129874026564949,39.973171014297705]},"properties":{"OBJECTID":698,"FID":698,"Lead__ppm":1000,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":699,"geometry":{"type":"Point","coordinates":[-75.109469962696039,39.988119997045459]},"properties":{"OBJECTID":699,"FID":699,"Lead__ppm":1000,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":700,"geometry":{"type":"Point","coordinates":[-75.131852026989037,39.977828978878776]},"properties":{"OBJECTID":700,"FID":700,"Lead__ppm":992,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":701,"geometry":{"type":"Point","coordinates":[-75.202267997670745,39.955625969354436]},"properties":{"OBJECTID":701,"FID":701,"Lead__ppm":990,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":702,"geometry":{"type":"Point","coordinates":[-75.143464009677686,40.005132992341132]},"properties":{"OBJECTID":702,"FID":702,"Lead__ppm":990,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":703,"geometry":{"type":"Point","coordinates":[-75.12736098955763,39.979061981148739]},"properties":{"OBJECTID":703,"FID":703,"Lead__ppm":990,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":704,"geometry":{"type":"Point","coordinates":[-75.141500022972025,39.9659599879203]},"properties":{"OBJECTID":704,"FID":704,"Lead__ppm":990,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":705,"geometry":{"type":"Point","coordinates":[-75.141500022972025,39.9659599879203]},"properties":{"OBJECTID":705,"FID":705,"Lead__ppm":990,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":706,"geometry":{"type":"Point","coordinates":[-75.116151002958617,39.97609198566888]},"properties":{"OBJECTID":706,"FID":706,"Lead__ppm":988,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":707,"geometry":{"type":"Point","coordinates":[-75.120942976010227,39.978756004266486]},"properties":{"OBJECTID":707,"FID":707,"Lead__ppm":986,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":708,"geometry":{"type":"Point","coordinates":[-75.093272978797259,39.993201023841557]},"properties":{"OBJECTID":708,"FID":708,"Lead__ppm":979,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":709,"geometry":{"type":"Point","coordinates":[-75.132635986737498,39.969446011276389]},"properties":{"OBJECTID":709,"FID":709,"Lead__ppm":970,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":710,"geometry":{"type":"Point","coordinates":[-75.12736098955763,39.979061981148739]},"properties":{"OBJECTID":710,"FID":710,"Lead__ppm":970,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":711,"geometry":{"type":"Point","coordinates":[-75.131870981441537,39.969889032085199]},"properties":{"OBJECTID":711,"FID":711,"Lead__ppm":970,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":712,"geometry":{"type":"Point","coordinates":[-75.165612961154466,39.956469976785598]},"properties":{"OBJECTID":712,"FID":712,"Lead__ppm":960,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":713,"geometry":{"type":"Point","coordinates":[-75.126570022949949,39.973234968461455]},"properties":{"OBJECTID":713,"FID":713,"Lead__ppm":960,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":714,"geometry":{"type":"Point","coordinates":[-75.218737979584375,39.950920972443228]},"properties":{"OBJECTID":714,"FID":714,"Lead__ppm":959,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":715,"geometry":{"type":"Point","coordinates":[-75.117393013670451,39.981554970526808]},"properties":{"OBJECTID":715,"FID":715,"Lead__ppm":955,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":716,"geometry":{"type":"Point","coordinates":[-75.116501974740132,39.97765798685657]},"properties":{"OBJECTID":716,"FID":716,"Lead__ppm":954,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":717,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":717,"FID":717,"Lead__ppm":953,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":718,"geometry":{"type":"Point","coordinates":[-75.197552022092168,40.049838020249723]},"properties":{"OBJECTID":718,"FID":718,"Lead__ppm":947,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":719,"geometry":{"type":"Point","coordinates":[-75.202477035637358,39.969512034295406]},"properties":{"OBJECTID":719,"FID":719,"Lead__ppm":941,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":720,"geometry":{"type":"Point","coordinates":[-75.145887035493558,39.966827000857464]},"properties":{"OBJECTID":720,"FID":720,"Lead__ppm":940,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":721,"geometry":{"type":"Point","coordinates":[-75.127874017416389,39.98549798542566]},"properties":{"OBJECTID":721,"FID":721,"Lead__ppm":940,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":722,"geometry":{"type":"Point","coordinates":[-75.125526989073563,39.986706965880259]},"properties":{"OBJECTID":722,"FID":722,"Lead__ppm":940,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":723,"geometry":{"type":"Point","coordinates":[-75.167676032035985,40.036023032021745]},"properties":{"OBJECTID":723,"FID":723,"Lead__ppm":934,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":724,"geometry":{"type":"Point","coordinates":[-75.116034042308627,39.977118023732785]},"properties":{"OBJECTID":724,"FID":724,"Lead__ppm":934,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":725,"geometry":{"type":"Point","coordinates":[-75.129835039681623,39.96904498374824]},"properties":{"OBJECTID":725,"FID":725,"Lead__ppm":930,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":726,"geometry":{"type":"Point","coordinates":[-75.117861035933473,39.979215003493991]},"properties":{"OBJECTID":726,"FID":726,"Lead__ppm":924,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":727,"geometry":{"type":"Point","coordinates":[-75.219226034278236,39.948732014247192]},"properties":{"OBJECTID":727,"FID":727,"Lead__ppm":920,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":728,"geometry":{"type":"Point","coordinates":[-75.132529985533978,39.97110400277883]},"properties":{"OBJECTID":728,"FID":728,"Lead__ppm":920,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":729,"geometry":{"type":"Point","coordinates":[-75.124452963319868,39.981662970247648]},"properties":{"OBJECTID":729,"FID":729,"Lead__ppm":920,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":730,"geometry":{"type":"Point","coordinates":[-75.126132004417414,39.970466985762691]},"properties":{"OBJECTID":730,"FID":730,"Lead__ppm":915,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":731,"geometry":{"type":"Point","coordinates":[-75.130596002558789,39.967560025451675]},"properties":{"OBJECTID":731,"FID":731,"Lead__ppm":913,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":732,"geometry":{"type":"Point","coordinates":[-75.114232021848693,39.99009000140709]},"properties":{"OBJECTID":732,"FID":732,"Lead__ppm":907,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":733,"geometry":{"type":"Point","coordinates":[-75.217581039329971,39.94502000469452]},"properties":{"OBJECTID":733,"FID":733,"Lead__ppm":907,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":734,"geometry":{"type":"Point","coordinates":[-75.089623033966348,39.989087971910294]},"properties":{"OBJECTID":734,"FID":734,"Lead__ppm":903,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":735,"geometry":{"type":"Point","coordinates":[-75.194561979668975,39.963653017630847]},"properties":{"OBJECTID":735,"FID":735,"Lead__ppm":903,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":736,"geometry":{"type":"Point","coordinates":[-75.115732028710099,39.976775966864253]},"properties":{"OBJECTID":736,"FID":736,"Lead__ppm":902,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":737,"geometry":{"type":"Point","coordinates":[-75.14528498459012,39.969345014522261]},"properties":{"OBJECTID":737,"FID":737,"Lead__ppm":900,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":738,"geometry":{"type":"Point","coordinates":[-75.212030978010077,39.94624499011325]},"properties":{"OBJECTID":738,"FID":738,"Lead__ppm":899,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":739,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":739,"FID":739,"Lead__ppm":895,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":740,"geometry":{"type":"Point","coordinates":[-75.133823020553933,39.974777973600951]},"properties":{"OBJECTID":740,"FID":740,"Lead__ppm":891,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":741,"geometry":{"type":"Point","coordinates":[-75.211013995276929,39.95078400105492]},"properties":{"OBJECTID":741,"FID":741,"Lead__ppm":890,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":742,"geometry":{"type":"Point","coordinates":[-75.156277039901212,40.008746992220836]},"properties":{"OBJECTID":742,"FID":742,"Lead__ppm":882,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":743,"geometry":{"type":"Point","coordinates":[-75.098001979947441,39.986927973316092]},"properties":{"OBJECTID":743,"FID":743,"Lead__ppm":881,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":744,"geometry":{"type":"Point","coordinates":[-75.132635986737498,39.969446011276389]},"properties":{"OBJECTID":744,"FID":744,"Lead__ppm":880,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":745,"geometry":{"type":"Point","coordinates":[-75.12439295585888,39.981554970526808]},"properties":{"OBJECTID":745,"FID":745,"Lead__ppm":880,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":746,"geometry":{"type":"Point","coordinates":[-75.12439295585888,39.981554970526808]},"properties":{"OBJECTID":746,"FID":746,"Lead__ppm":880,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":747,"geometry":{"type":"Point","coordinates":[-75.132193027470905,39.976146024287345]},"properties":{"OBJECTID":747,"FID":747,"Lead__ppm":878,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":748,"geometry":{"type":"Point","coordinates":[-75.165763967953737,39.987513009791293]},"properties":{"OBJECTID":748,"FID":748,"Lead__ppm":870,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":749,"geometry":{"type":"Point","coordinates":[-75.167671001470396,40.03601402202117]},"properties":{"OBJECTID":749,"FID":749,"Lead__ppm":870,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":750,"geometry":{"type":"Point","coordinates":[-75.167671001470396,40.03601402202117]},"properties":{"OBJECTID":750,"FID":750,"Lead__ppm":870,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":751,"geometry":{"type":"Point","coordinates":[-75.130497008214476,39.976317020092736]},"properties":{"OBJECTID":751,"FID":751,"Lead__ppm":870,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":752,"geometry":{"type":"Point","coordinates":[-75.089623033966348,39.989087971910294]},"properties":{"OBJECTID":752,"FID":752,"Lead__ppm":869,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":753,"geometry":{"type":"Point","coordinates":[-75.126149970723091,39.986450992811683]},"properties":{"OBJECTID":753,"FID":753,"Lead__ppm":868,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":754,"geometry":{"type":"Point","coordinates":[-75.120942976010227,39.978756004266486]},"properties":{"OBJECTID":754,"FID":754,"Lead__ppm":867,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":755,"geometry":{"type":"Point","coordinates":[-75.154536015049047,39.932346003390656]},"properties":{"OBJECTID":755,"FID":755,"Lead__ppm":860,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":756,"geometry":{"type":"Point","coordinates":[-75.220154982113542,40.023750032820303]},"properties":{"OBJECTID":756,"FID":756,"Lead__ppm":860,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":757,"geometry":{"type":"Point","coordinates":[-75.12769004244619,39.975100008023901]},"properties":{"OBJECTID":757,"FID":757,"Lead__ppm":860,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":758,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":758,"FID":758,"Lead__ppm":850,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":759,"geometry":{"type":"Point","coordinates":[-75.092525041491697,40.023387984816118]},"properties":{"OBJECTID":759,"FID":759,"Lead__ppm":850,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":760,"geometry":{"type":"Point","coordinates":[-75.147898992235397,39.963159005904998]},"properties":{"OBJECTID":760,"FID":760,"Lead__ppm":850,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":761,"geometry":{"type":"Point","coordinates":[-75.123243022463697,39.981357005012178]},"properties":{"OBJECTID":761,"FID":761,"Lead__ppm":850,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":762,"geometry":{"type":"Point","coordinates":[-75.133823020553933,39.974777973600951]},"properties":{"OBJECTID":762,"FID":762,"Lead__ppm":842,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":763,"geometry":{"type":"Point","coordinates":[-75.089623033966348,39.989087971910294]},"properties":{"OBJECTID":763,"FID":763,"Lead__ppm":840,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":764,"geometry":{"type":"Point","coordinates":[-75.2063379947285,39.958877995231603]},"properties":{"OBJECTID":764,"FID":764,"Lead__ppm":840,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":765,"geometry":{"type":"Point","coordinates":[-75.143411997222742,39.965416971835666]},"properties":{"OBJECTID":765,"FID":765,"Lead__ppm":840,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":766,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":766,"FID":766,"Lead__ppm":840,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":767,"geometry":{"type":"Point","coordinates":[-75.089623033966348,39.989087971910294]},"properties":{"OBJECTID":767,"FID":767,"Lead__ppm":840,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":768,"geometry":{"type":"Point","coordinates":[-75.18797696931027,40.052018995043326]},"properties":{"OBJECTID":768,"FID":768,"Lead__ppm":839,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":769,"geometry":{"type":"Point","coordinates":[-75.131983001357469,39.968259031815322]},"properties":{"OBJECTID":769,"FID":769,"Lead__ppm":830,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":770,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":770,"FID":770,"Lead__ppm":820,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":771,"geometry":{"type":"Point","coordinates":[-75.148098957217627,39.970852033070372]},"properties":{"OBJECTID":771,"FID":771,"Lead__ppm":820,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":772,"geometry":{"type":"Point","coordinates":[-75.212630962788339,39.951006019899204]},"properties":{"OBJECTID":772,"FID":772,"Lead__ppm":814,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":773,"geometry":{"type":"Point","coordinates":[-75.12908395827256,39.975039015729372]},"properties":{"OBJECTID":773,"FID":773,"Lead__ppm":813,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":774,"geometry":{"type":"Point","coordinates":[-75.132563043536436,39.983169992517773]},"properties":{"OBJECTID":774,"FID":774,"Lead__ppm":810,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":775,"geometry":{"type":"Point","coordinates":[-75.148451995124304,39.98207700201246]},"properties":{"OBJECTID":775,"FID":775,"Lead__ppm":810,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":776,"geometry":{"type":"Point","coordinates":[-75.12769004244619,39.975100008023901]},"properties":{"OBJECTID":776,"FID":776,"Lead__ppm":810,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":777,"geometry":{"type":"Point","coordinates":[-75.110555037727735,39.985643009146351]},"properties":{"OBJECTID":777,"FID":777,"Lead__ppm":810,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":778,"geometry":{"type":"Point","coordinates":[-75.114678035387271,39.989623986220394]},"properties":{"OBJECTID":778,"FID":778,"Lead__ppm":810,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":779,"geometry":{"type":"Point","coordinates":[-75.171807024701522,39.937445985259281]},"properties":{"OBJECTID":779,"FID":779,"Lead__ppm":800,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":780,"geometry":{"type":"Point","coordinates":[-75.127900966874904,39.969855986343049]},"properties":{"OBJECTID":780,"FID":780,"Lead__ppm":800,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":781,"geometry":{"type":"Point","coordinates":[-75.117703022274981,39.981906020620151]},"properties":{"OBJECTID":781,"FID":781,"Lead__ppm":800,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":782,"geometry":{"type":"Point","coordinates":[-75.214386989505741,40.024618995223634]},"properties":{"OBJECTID":782,"FID":782,"Lead__ppm":798,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":783,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":783,"FID":783,"Lead__ppm":795,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":784,"geometry":{"type":"Point","coordinates":[-75.12503399364563,39.981338970573113]},"properties":{"OBJECTID":784,"FID":784,"Lead__ppm":794,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":785,"geometry":{"type":"Point","coordinates":[-75.220229003292957,39.964742034078007]},"properties":{"OBJECTID":785,"FID":785,"Lead__ppm":792,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":786,"geometry":{"type":"Point","coordinates":[-75.12908395827256,39.975039015729372]},"properties":{"OBJECTID":786,"FID":786,"Lead__ppm":790,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":787,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":787,"FID":787,"Lead__ppm":786,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":788,"geometry":{"type":"Point","coordinates":[-75.116501974740132,39.97765798685657]},"properties":{"OBJECTID":788,"FID":788,"Lead__ppm":784,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":789,"geometry":{"type":"Point","coordinates":[-75.119471984732485,39.980547033735313]},"properties":{"OBJECTID":789,"FID":789,"Lead__ppm":782,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":790,"geometry":{"type":"Point","coordinates":[-75.158197009157959,39.959873995342825]},"properties":{"OBJECTID":790,"FID":790,"Lead__ppm":780,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":791,"geometry":{"type":"Point","coordinates":[-75.172505015677302,40.027948975151325]},"properties":{"OBJECTID":791,"FID":791,"Lead__ppm":780,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":792,"geometry":{"type":"Point","coordinates":[-75.065375977311987,40.001351033831831]},"properties":{"OBJECTID":792,"FID":792,"Lead__ppm":778,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":793,"geometry":{"type":"Point","coordinates":[-75.129835039681623,39.96904498374824]},"properties":{"OBJECTID":793,"FID":793,"Lead__ppm":776,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":794,"geometry":{"type":"Point","coordinates":[-75.076376027629081,39.995751993663085]},"properties":{"OBJECTID":794,"FID":794,"Lead__ppm":769,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":795,"geometry":{"type":"Point","coordinates":[-75.207226967533671,39.949707984504762]},"properties":{"OBJECTID":795,"FID":795,"Lead__ppm":760,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":796,"geometry":{"type":"Point","coordinates":[-75.145337985191887,39.964216978430663]},"properties":{"OBJECTID":796,"FID":796,"Lead__ppm":760,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":797,"geometry":{"type":"Point","coordinates":[-75.138119033737183,39.973595010699334]},"properties":{"OBJECTID":797,"FID":797,"Lead__ppm":760,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":798,"geometry":{"type":"Point","coordinates":[-75.226391985131201,39.974220020244502]},"properties":{"OBJECTID":798,"FID":798,"Lead__ppm":756,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":799,"geometry":{"type":"Point","coordinates":[-75.125942998881655,39.98798998288057]},"properties":{"OBJECTID":799,"FID":799,"Lead__ppm":756,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":800,"geometry":{"type":"Point","coordinates":[-75.13611399402302,39.965774989771603]},"properties":{"OBJECTID":800,"FID":800,"Lead__ppm":750,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":801,"geometry":{"type":"Point","coordinates":[-75.119038008618745,39.983387019158343]},"properties":{"OBJECTID":801,"FID":801,"Lead__ppm":750,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":802,"geometry":{"type":"Point","coordinates":[-75.108503016124217,39.978630033633387]},"properties":{"OBJECTID":802,"FID":802,"Lead__ppm":748,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":803,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":803,"FID":803,"Lead__ppm":745,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":804,"geometry":{"type":"Point","coordinates":[-75.123873010972432,39.981023986625075]},"properties":{"OBJECTID":804,"FID":804,"Lead__ppm":744,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":805,"geometry":{"type":"Point","coordinates":[-75.096795991678505,39.987575986948492]},"properties":{"OBJECTID":805,"FID":805,"Lead__ppm":744,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":806,"geometry":{"type":"Point","coordinates":[-75.120946030282212,39.978666998810446]},"properties":{"OBJECTID":806,"FID":806,"Lead__ppm":743,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":807,"geometry":{"type":"Point","coordinates":[-75.221232960454486,39.94895100963182]},"properties":{"OBJECTID":807,"FID":807,"Lead__ppm":740,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":808,"geometry":{"type":"Point","coordinates":[-75.126192011878388,39.983790991110368]},"properties":{"OBJECTID":808,"FID":808,"Lead__ppm":740,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":809,"geometry":{"type":"Point","coordinates":[-75.206546044548304,40.043014020934891]},"properties":{"OBJECTID":809,"FID":809,"Lead__ppm":740,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":810,"geometry":{"type":"Point","coordinates":[-75.139069990296946,39.986499998754368]},"properties":{"OBJECTID":810,"FID":810,"Lead__ppm":740,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":811,"geometry":{"type":"Point","coordinates":[-75.114764992306775,39.97853999546475]},"properties":{"OBJECTID":811,"FID":811,"Lead__ppm":739,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":812,"geometry":{"type":"Point","coordinates":[-75.130497008214476,39.976317020092736]},"properties":{"OBJECTID":812,"FID":812,"Lead__ppm":738,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":813,"geometry":{"type":"Point","coordinates":[-75.116501974740132,39.97765798685657]},"properties":{"OBJECTID":813,"FID":813,"Lead__ppm":738,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":814,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":814,"FID":814,"Lead__ppm":736,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":815,"geometry":{"type":"Point","coordinates":[-75.117941974140578,39.978099027002202]},"properties":{"OBJECTID":815,"FID":815,"Lead__ppm":733,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":816,"geometry":{"type":"Point","coordinates":[-75.127332962120747,39.971771993387627]},"properties":{"OBJECTID":816,"FID":816,"Lead__ppm":732,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":817,"geometry":{"type":"Point","coordinates":[-75.116501974740132,39.97765798685657]},"properties":{"OBJECTID":817,"FID":817,"Lead__ppm":732,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":818,"geometry":{"type":"Point","coordinates":[-75.146518012149116,39.964306966617734]},"properties":{"OBJECTID":818,"FID":818,"Lead__ppm":730,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":819,"geometry":{"type":"Point","coordinates":[-75.12283797210209,39.975014026771284]},"properties":{"OBJECTID":819,"FID":819,"Lead__ppm":730,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":820,"geometry":{"type":"Point","coordinates":[-75.126222015608889,39.983696967522945]},"properties":{"OBJECTID":820,"FID":820,"Lead__ppm":726,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":821,"geometry":{"type":"Point","coordinates":[-75.133823020553933,39.974777973600951]},"properties":{"OBJECTID":821,"FID":821,"Lead__ppm":726,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":822,"geometry":{"type":"Point","coordinates":[-75.133823020553933,39.974777973600951]},"properties":{"OBJECTID":822,"FID":822,"Lead__ppm":725,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":823,"geometry":{"type":"Point","coordinates":[-75.123633969275332,39.984570019048618]},"properties":{"OBJECTID":823,"FID":823,"Lead__ppm":725,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":824,"geometry":{"type":"Point","coordinates":[-75.098001979947441,39.986927973316092]},"properties":{"OBJECTID":824,"FID":824,"Lead__ppm":717,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":825,"geometry":{"type":"Point","coordinates":[-75.130497008214476,39.976317020092736]},"properties":{"OBJECTID":825,"FID":825,"Lead__ppm":716,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":826,"geometry":{"type":"Point","coordinates":[-75.095473042759593,39.987855012911361]},"properties":{"OBJECTID":826,"FID":826,"Lead__ppm":716,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":827,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":827,"FID":827,"Lead__ppm":715,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":828,"geometry":{"type":"Point","coordinates":[-75.117703022274981,39.981906020620151]},"properties":{"OBJECTID":828,"FID":828,"Lead__ppm":713,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":829,"geometry":{"type":"Point","coordinates":[-75.124452963319868,39.981662970247648]},"properties":{"OBJECTID":829,"FID":829,"Lead__ppm":709,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":830,"geometry":{"type":"Point","coordinates":[-75.114218008130251,39.986689001681682]},"properties":{"OBJECTID":830,"FID":830,"Lead__ppm":709,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":831,"geometry":{"type":"Point","coordinates":[-75.133132036437388,39.974613995678133]},"properties":{"OBJECTID":831,"FID":831,"Lead__ppm":709,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":832,"geometry":{"type":"Point","coordinates":[-75.12446302445106,39.979727966588975]},"properties":{"OBJECTID":832,"FID":832,"Lead__ppm":707,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":833,"geometry":{"type":"Point","coordinates":[-75.123269971922213,39.980339979113694]},"properties":{"OBJECTID":833,"FID":833,"Lead__ppm":704,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":834,"geometry":{"type":"Point","coordinates":[-75.127307000809054,39.98585699944676]},"properties":{"OBJECTID":834,"FID":834,"Lead__ppm":701,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":835,"geometry":{"type":"Point","coordinates":[-75.219268973748825,39.948484989366513]},"properties":{"OBJECTID":835,"FID":835,"Lead__ppm":701,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":836,"geometry":{"type":"Point","coordinates":[-75.127900966874904,39.969855986343049]},"properties":{"OBJECTID":836,"FID":836,"Lead__ppm":700,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":837,"geometry":{"type":"Point","coordinates":[-75.125663982154393,39.973633011222553]},"properties":{"OBJECTID":837,"FID":837,"Lead__ppm":700,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":838,"geometry":{"type":"Point","coordinates":[-75.123827017229885,39.980923970657841]},"properties":{"OBJECTID":838,"FID":838,"Lead__ppm":698,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":839,"geometry":{"type":"Point","coordinates":[-75.132414013030797,39.966849032330146]},"properties":{"OBJECTID":839,"FID":839,"Lead__ppm":693,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":840,"geometry":{"type":"Point","coordinates":[-75.116843963368794,39.977486994406462]},"properties":{"OBJECTID":840,"FID":840,"Lead__ppm":692,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":841,"geometry":{"type":"Point","coordinates":[-75.125283006642405,39.984663972604181]},"properties":{"OBJECTID":841,"FID":841,"Lead__ppm":689,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":842,"geometry":{"type":"Point","coordinates":[-75.109146030204599,39.995717996957879]},"properties":{"OBJECTID":842,"FID":842,"Lead__ppm":688,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":843,"geometry":{"type":"Point","coordinates":[-75.098001979947441,39.986927973316092]},"properties":{"OBJECTID":843,"FID":843,"Lead__ppm":686,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":844,"geometry":{"type":"Point","coordinates":[-75.221025000466213,39.945875024377145]},"properties":{"OBJECTID":844,"FID":844,"Lead__ppm":683,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":845,"geometry":{"type":"Point","coordinates":[-75.208247004538777,39.967013992756463]},"properties":{"OBJECTID":845,"FID":845,"Lead__ppm":683,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":846,"geometry":{"type":"Point","coordinates":[-75.114764992306775,39.97853999546475]},"properties":{"OBJECTID":846,"FID":846,"Lead__ppm":680,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":847,"geometry":{"type":"Point","coordinates":[-75.143996980135768,39.965816987906607]},"properties":{"OBJECTID":847,"FID":847,"Lead__ppm":680,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":848,"geometry":{"type":"Point","coordinates":[-75.144093998186449,39.968080029586126]},"properties":{"OBJECTID":848,"FID":848,"Lead__ppm":680,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":849,"geometry":{"type":"Point","coordinates":[-75.124753988771573,39.978300994490738]},"properties":{"OBJECTID":849,"FID":849,"Lead__ppm":680,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":850,"geometry":{"type":"Point","coordinates":[-75.127874017416389,39.98549798542566]},"properties":{"OBJECTID":850,"FID":850,"Lead__ppm":680,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":851,"geometry":{"type":"Point","coordinates":[-75.121623000680302,39.977496012134935]},"properties":{"OBJECTID":851,"FID":851,"Lead__ppm":679,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":852,"geometry":{"type":"Point","coordinates":[-75.124452963319868,39.981662970247648]},"properties":{"OBJECTID":852,"FID":852,"Lead__ppm":679,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":853,"geometry":{"type":"Point","coordinates":[-75.126784989797443,39.978513011525713]},"properties":{"OBJECTID":853,"FID":853,"Lead__ppm":678,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":854,"geometry":{"type":"Point","coordinates":[-75.126149970723091,39.986450992811683]},"properties":{"OBJECTID":854,"FID":854,"Lead__ppm":677,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":855,"geometry":{"type":"Point","coordinates":[-75.126149970723091,39.986450992811683]},"properties":{"OBJECTID":855,"FID":855,"Lead__ppm":676,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":856,"geometry":{"type":"Point","coordinates":[-75.223117985246688,39.947626007977028]},"properties":{"OBJECTID":856,"FID":856,"Lead__ppm":674,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":857,"geometry":{"type":"Point","coordinates":[-75.179784962739802,39.970287025486947]},"properties":{"OBJECTID":857,"FID":857,"Lead__ppm":673,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":858,"geometry":{"type":"Point","coordinates":[-75.121888991835931,39.977211987535618]},"properties":{"OBJECTID":858,"FID":858,"Lead__ppm":672,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":859,"geometry":{"type":"Point","coordinates":[-75.252036011883902,39.969568005793334]},"properties":{"OBJECTID":859,"FID":859,"Lead__ppm":672,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":860,"geometry":{"type":"Point","coordinates":[-75.155004037312082,39.922920014174643]},"properties":{"OBJECTID":860,"FID":860,"Lead__ppm":671,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":861,"geometry":{"type":"Point","coordinates":[-75.138349990596723,39.962300002242991]},"properties":{"OBJECTID":861,"FID":861,"Lead__ppm":670,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":862,"geometry":{"type":"Point","coordinates":[-75.190567980084253,40.033195002636944]},"properties":{"OBJECTID":862,"FID":862,"Lead__ppm":670,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":863,"geometry":{"type":"Point","coordinates":[-75.096324016828248,39.9888090198098]},"properties":{"OBJECTID":863,"FID":863,"Lead__ppm":668,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":864,"geometry":{"type":"Point","coordinates":[-75.208247004538777,39.967013992756463]},"properties":{"OBJECTID":864,"FID":864,"Lead__ppm":668,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":865,"geometry":{"type":"Point","coordinates":[-75.116402980395819,39.976389025444789]},"properties":{"OBJECTID":865,"FID":865,"Lead__ppm":668,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":866,"geometry":{"type":"Point","coordinates":[-75.122424028419161,39.979323970614182]},"properties":{"OBJECTID":866,"FID":866,"Lead__ppm":667,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":867,"geometry":{"type":"Point","coordinates":[-75.131830018264594,39.990252978645493]},"properties":{"OBJECTID":867,"FID":867,"Lead__ppm":667,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":868,"geometry":{"type":"Point","coordinates":[-75.089623033966348,39.989087971910294]},"properties":{"OBJECTID":868,"FID":868,"Lead__ppm":664,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":869,"geometry":{"type":"Point","coordinates":[-75.133823020553933,39.974777973600951]},"properties":{"OBJECTID":869,"FID":869,"Lead__ppm":664,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":870,"geometry":{"type":"Point","coordinates":[-75.131983001357469,39.97143596800948]},"properties":{"OBJECTID":870,"FID":870,"Lead__ppm":660,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":871,"geometry":{"type":"Point","coordinates":[-75.205453962657401,39.961331992156801]},"properties":{"OBJECTID":871,"FID":871,"Lead__ppm":660,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":872,"geometry":{"type":"Point","coordinates":[-75.206339971022146,40.018452988842]},"properties":{"OBJECTID":872,"FID":872,"Lead__ppm":655,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":873,"geometry":{"type":"Point","coordinates":[-75.130500960801726,39.982779026198997]},"properties":{"OBJECTID":873,"FID":873,"Lead__ppm":654,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":874,"geometry":{"type":"Point","coordinates":[-75.12982201410999,39.9775139787507]},"properties":{"OBJECTID":874,"FID":874,"Lead__ppm":652,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":875,"geometry":{"type":"Point","coordinates":[-75.117204008134678,39.977289017106131]},"properties":{"OBJECTID":875,"FID":875,"Lead__ppm":652,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":876,"geometry":{"type":"Point","coordinates":[-75.12769004244619,39.975100008023901]},"properties":{"OBJECTID":876,"FID":876,"Lead__ppm":650,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":877,"geometry":{"type":"Point","coordinates":[-75.093129967004032,39.989145992152245]},"properties":{"OBJECTID":877,"FID":877,"Lead__ppm":650,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":878,"geometry":{"type":"Point","coordinates":[-75.126753009773338,39.980430014910553]},"properties":{"OBJECTID":878,"FID":878,"Lead__ppm":644,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":879,"geometry":{"type":"Point","coordinates":[-75.109146030204599,39.995717996957879]},"properties":{"OBJECTID":879,"FID":879,"Lead__ppm":644,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":880,"geometry":{"type":"Point","coordinates":[-75.143996980135768,39.965816987906607]},"properties":{"OBJECTID":880,"FID":880,"Lead__ppm":640,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":881,"geometry":{"type":"Point","coordinates":[-75.131983001357469,39.97143596800948]},"properties":{"OBJECTID":881,"FID":881,"Lead__ppm":640,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":882,"geometry":{"type":"Point","coordinates":[-75.20371698022403,40.074352004505101]},"properties":{"OBJECTID":882,"FID":882,"Lead__ppm":640,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":883,"geometry":{"type":"Point","coordinates":[-75.127900966874904,39.969855986343049]},"properties":{"OBJECTID":883,"FID":883,"Lead__ppm":640,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":884,"geometry":{"type":"Point","coordinates":[-75.096324016828248,39.9888090198098]},"properties":{"OBJECTID":884,"FID":884,"Lead__ppm":638,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":885,"geometry":{"type":"Point","coordinates":[-75.126222015608889,39.983696967522945]},"properties":{"OBJECTID":885,"FID":885,"Lead__ppm":636,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":886,"geometry":{"type":"Point","coordinates":[-75.126722017896029,39.986153996774803]},"properties":{"OBJECTID":886,"FID":886,"Lead__ppm":633,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":887,"geometry":{"type":"Point","coordinates":[-75.134566017125437,39.974334020708341]},"properties":{"OBJECTID":887,"FID":887,"Lead__ppm":630,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":888,"geometry":{"type":"Point","coordinates":[-75.109450020096745,39.982544995994111]},"properties":{"OBJECTID":888,"FID":888,"Lead__ppm":630,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":889,"geometry":{"type":"Point","coordinates":[-75.12503399364563,39.981338970573113]},"properties":{"OBJECTID":889,"FID":889,"Lead__ppm":629,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":890,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":890,"FID":890,"Lead__ppm":629,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":891,"geometry":{"type":"Point","coordinates":[-75.131796960262136,39.976803020327559]},"properties":{"OBJECTID":891,"FID":891,"Lead__ppm":625,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":892,"geometry":{"type":"Point","coordinates":[-75.123873010972432,39.981023986625075]},"properties":{"OBJECTID":892,"FID":892,"Lead__ppm":624,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":893,"geometry":{"type":"Point","coordinates":[-75.12970496362847,39.973230011843803]},"properties":{"OBJECTID":893,"FID":893,"Lead__ppm":623,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":894,"geometry":{"type":"Point","coordinates":[-75.108775025992244,39.987242998873626]},"properties":{"OBJECTID":894,"FID":894,"Lead__ppm":623,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":895,"geometry":{"type":"Point","coordinates":[-75.133823020553933,39.974777973600951]},"properties":{"OBJECTID":895,"FID":895,"Lead__ppm":621,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":896,"geometry":{"type":"Point","coordinates":[-75.172172998348287,39.943502017126697]},"properties":{"OBJECTID":896,"FID":896,"Lead__ppm":620,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":897,"geometry":{"type":"Point","coordinates":[-75.11929196234955,39.97962003264513]},"properties":{"OBJECTID":897,"FID":897,"Lead__ppm":620,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":898,"geometry":{"type":"Point","coordinates":[-75.121236994602725,39.979935986757361]},"properties":{"OBJECTID":898,"FID":898,"Lead__ppm":620,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":899,"geometry":{"type":"Point","coordinates":[-75.145887035493558,39.966827000857464]},"properties":{"OBJECTID":899,"FID":899,"Lead__ppm":620,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":900,"geometry":{"type":"Point","coordinates":[-75.093129967004032,39.989145992152245]},"properties":{"OBJECTID":900,"FID":900,"Lead__ppm":620,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":901,"geometry":{"type":"Point","coordinates":[-75.222677002273699,39.950647993497512]},"properties":{"OBJECTID":901,"FID":901,"Lead__ppm":614,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":902,"geometry":{"type":"Point","coordinates":[-75.172499985111699,40.028030968929571]},"properties":{"OBJECTID":902,"FID":902,"Lead__ppm":614,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":903,"geometry":{"type":"Point","coordinates":[-75.14129700371781,39.965391015462451]},"properties":{"OBJECTID":903,"FID":903,"Lead__ppm":614,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":904,"geometry":{"type":"Point","coordinates":[-75.117393013670451,39.981554970526808]},"properties":{"OBJECTID":904,"FID":904,"Lead__ppm":613,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":905,"geometry":{"type":"Point","coordinates":[-75.127887042988007,39.985541967497831]},"properties":{"OBJECTID":905,"FID":905,"Lead__ppm":613,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":906,"geometry":{"type":"Point","coordinates":[-75.123873010972432,39.974724002741191]},"properties":{"OBJECTID":906,"FID":906,"Lead__ppm":612,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":907,"geometry":{"type":"Point","coordinates":[-75.108775025992244,39.987242998873626]},"properties":{"OBJECTID":907,"FID":907,"Lead__ppm":611,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":908,"geometry":{"type":"Point","coordinates":[-75.145990970571916,39.964435993084813]},"properties":{"OBJECTID":908,"FID":908,"Lead__ppm":610,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":909,"geometry":{"type":"Point","coordinates":[-75.212483998407862,39.951762972030963]},"properties":{"OBJECTID":909,"FID":909,"Lead__ppm":608,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":910,"geometry":{"type":"Point","coordinates":[-75.095473042759593,39.987855012911361]},"properties":{"OBJECTID":910,"FID":910,"Lead__ppm":606,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":911,"geometry":{"type":"Point","coordinates":[-75.14308896304658,40.006804980464217]},"properties":{"OBJECTID":911,"FID":911,"Lead__ppm":604,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":912,"geometry":{"type":"Point","coordinates":[-75.131796960262136,39.976803020327559]},"properties":{"OBJECTID":912,"FID":912,"Lead__ppm":602,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":913,"geometry":{"type":"Point","coordinates":[-75.126784989797443,39.978513011525713]},"properties":{"OBJECTID":913,"FID":913,"Lead__ppm":602,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":914,"geometry":{"type":"Point","coordinates":[-75.15365000668433,39.9201369736844]},"properties":{"OBJECTID":914,"FID":914,"Lead__ppm":600,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":915,"geometry":{"type":"Point","coordinates":[-75.12769004244619,39.975100008023901]},"properties":{"OBJECTID":915,"FID":915,"Lead__ppm":600,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":916,"geometry":{"type":"Point","coordinates":[-75.140033972428341,39.972492986334494]},"properties":{"OBJECTID":916,"FID":916,"Lead__ppm":600,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":917,"geometry":{"type":"Point","coordinates":[-75.108377970636667,39.981834984746811]},"properties":{"OBJECTID":917,"FID":917,"Lead__ppm":600,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":918,"geometry":{"type":"Point","coordinates":[-75.138445032353786,39.981298978154932]},"properties":{"OBJECTID":918,"FID":918,"Lead__ppm":600,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":919,"geometry":{"type":"Point","coordinates":[-75.220250023870605,39.947265966710575]},"properties":{"OBJECTID":919,"FID":919,"Lead__ppm":599,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":920,"geometry":{"type":"Point","coordinates":[-75.131285010381731,39.983741983224434]},"properties":{"OBJECTID":920,"FID":920,"Lead__ppm":598,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":921,"geometry":{"type":"Point","coordinates":[-75.092679012731381,39.987513009791293]},"properties":{"OBJECTID":921,"FID":921,"Lead__ppm":595,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":922,"geometry":{"type":"Point","coordinates":[-75.130497008214476,39.976317020092736]},"properties":{"OBJECTID":922,"FID":922,"Lead__ppm":594,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":923,"geometry":{"type":"Point","coordinates":[-75.123827017229885,39.980923970657841]},"properties":{"OBJECTID":923,"FID":923,"Lead__ppm":593,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":924,"geometry":{"type":"Point","coordinates":[-75.108775025992244,39.987242998873626]},"properties":{"OBJECTID":924,"FID":924,"Lead__ppm":591,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":925,"geometry":{"type":"Point","coordinates":[-75.133823020553933,39.974777973600951]},"properties":{"OBJECTID":925,"FID":925,"Lead__ppm":591,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":926,"geometry":{"type":"Point","coordinates":[-75.219080956359846,39.948204976254218]},"properties":{"OBJECTID":926,"FID":926,"Lead__ppm":590,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":927,"geometry":{"type":"Point","coordinates":[-75.127332962120747,39.97823401624526]},"properties":{"OBJECTID":927,"FID":927,"Lead__ppm":590,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":928,"geometry":{"type":"Point","coordinates":[-75.12769004244619,39.975100008023901]},"properties":{"OBJECTID":928,"FID":928,"Lead__ppm":590,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":929,"geometry":{"type":"Point","coordinates":[-75.133823020553933,39.974777973600951]},"properties":{"OBJECTID":929,"FID":929,"Lead__ppm":586,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":930,"geometry":{"type":"Point","coordinates":[-75.190567980084253,40.033195002636944]},"properties":{"OBJECTID":930,"FID":930,"Lead__ppm":586,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":931,"geometry":{"type":"Point","coordinates":[-75.131984977651101,39.983319977066387]},"properties":{"OBJECTID":931,"FID":931,"Lead__ppm":585,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":932,"geometry":{"type":"Point","coordinates":[-75.188512994040309,40.035000011071261]},"properties":{"OBJECTID":932,"FID":932,"Lead__ppm":583,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":933,"geometry":{"type":"Point","coordinates":[-75.169719968801928,39.91919502981515]},"properties":{"OBJECTID":933,"FID":933,"Lead__ppm":580,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":934,"geometry":{"type":"Point","coordinates":[-75.145337985191887,39.964216978430663]},"properties":{"OBJECTID":934,"FID":934,"Lead__ppm":580,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":935,"geometry":{"type":"Point","coordinates":[-75.179784962739802,39.970287025486947]},"properties":{"OBJECTID":935,"FID":935,"Lead__ppm":580,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":936,"geometry":{"type":"Point","coordinates":[-75.131948955208216,39.973076012307821]},"properties":{"OBJECTID":936,"FID":936,"Lead__ppm":580,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":937,"geometry":{"type":"Point","coordinates":[-75.131879964594376,39.969985966169908]},"properties":{"OBJECTID":937,"FID":937,"Lead__ppm":579,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":938,"geometry":{"type":"Point","coordinates":[-75.133823020553933,39.974777973600951]},"properties":{"OBJECTID":938,"FID":938,"Lead__ppm":578,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":939,"geometry":{"type":"Point","coordinates":[-75.114764992306775,39.97853999546475]},"properties":{"OBJECTID":939,"FID":939,"Lead__ppm":577,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":940,"geometry":{"type":"Point","coordinates":[-75.122932025712331,39.989623022664802]},"properties":{"OBJECTID":940,"FID":940,"Lead__ppm":576,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":941,"geometry":{"type":"Point","coordinates":[-75.123226044304829,39.98218603340149]},"properties":{"OBJECTID":941,"FID":941,"Lead__ppm":574,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":942,"geometry":{"type":"Point","coordinates":[-75.124109986544397,39.984114015524142]},"properties":{"OBJECTID":942,"FID":942,"Lead__ppm":572,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":943,"geometry":{"type":"Point","coordinates":[-75.157835976245266,40.002210028367109]},"properties":{"OBJECTID":943,"FID":943,"Lead__ppm":571,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":944,"geometry":{"type":"Point","coordinates":[-75.126450008028002,39.97027002079983]},"properties":{"OBJECTID":944,"FID":944,"Lead__ppm":570,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":945,"geometry":{"type":"Point","coordinates":[-75.136217030786113,39.97586302666619]},"properties":{"OBJECTID":945,"FID":945,"Lead__ppm":570,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":946,"geometry":{"type":"Point","coordinates":[-75.123827017229885,39.980923970657841]},"properties":{"OBJECTID":946,"FID":946,"Lead__ppm":570,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":947,"geometry":{"type":"Point","coordinates":[-75.165335022405557,40.024050992790237]},"properties":{"OBJECTID":947,"FID":947,"Lead__ppm":570,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":948,"geometry":{"type":"Point","coordinates":[-75.222001020022404,40.03084696891441]},"properties":{"OBJECTID":948,"FID":948,"Lead__ppm":569,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":949,"geometry":{"type":"Point","coordinates":[-75.096324016828248,39.9888090198098]},"properties":{"OBJECTID":949,"FID":949,"Lead__ppm":561,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":950,"geometry":{"type":"Point","coordinates":[-75.208777010556418,39.946748972236072]},"properties":{"OBJECTID":950,"FID":950,"Lead__ppm":560,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":951,"geometry":{"type":"Point","coordinates":[-75.127572003817875,39.974731024462571]},"properties":{"OBJECTID":951,"FID":951,"Lead__ppm":560,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":952,"geometry":{"type":"Point","coordinates":[-75.127854973132358,39.985635988546157]},"properties":{"OBJECTID":952,"FID":952,"Lead__ppm":560,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":953,"geometry":{"type":"Point","coordinates":[-75.125411016570382,39.974085023072526]},"properties":{"OBJECTID":953,"FID":953,"Lead__ppm":560,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":954,"geometry":{"type":"Point","coordinates":[-75.145311035733371,39.984017032646243]},"properties":{"OBJECTID":954,"FID":954,"Lead__ppm":560,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":955,"geometry":{"type":"Point","coordinates":[-75.159627037258744,39.934382019090584]},"properties":{"OBJECTID":955,"FID":955,"Lead__ppm":550,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":956,"geometry":{"type":"Point","coordinates":[-75.154832998081986,39.960162016728859]},"properties":{"OBJECTID":956,"FID":956,"Lead__ppm":550,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":957,"geometry":{"type":"Point","coordinates":[-75.170061957430605,39.94325201186075]},"properties":{"OBJECTID":957,"FID":957,"Lead__ppm":550,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":958,"geometry":{"type":"Point","coordinates":[-75.126722017896029,39.986153996774803]},"properties":{"OBJECTID":958,"FID":958,"Lead__ppm":550,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":959,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":959,"FID":959,"Lead__ppm":548,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":960,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":960,"FID":960,"Lead__ppm":546,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":961,"geometry":{"type":"Point","coordinates":[-75.095972955215203,39.984525003892706]},"properties":{"OBJECTID":961,"FID":961,"Lead__ppm":546,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":962,"geometry":{"type":"Point","coordinates":[-75.230559000239637,40.067099965784436]},"properties":{"OBJECTID":962,"FID":962,"Lead__ppm":545,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":963,"geometry":{"type":"Point","coordinates":[-75.119522020893797,39.97609198566888]},"properties":{"OBJECTID":963,"FID":963,"Lead__ppm":543,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":964,"geometry":{"type":"Point","coordinates":[-75.113994956445211,39.977667004562434]},"properties":{"OBJECTID":964,"FID":964,"Lead__ppm":542,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":965,"geometry":{"type":"Point","coordinates":[-75.127332962120747,39.97823401624526]},"properties":{"OBJECTID":965,"FID":965,"Lead__ppm":542,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":966,"geometry":{"type":"Point","coordinates":[-75.229910955593667,39.977101020745145]},"properties":{"OBJECTID":966,"FID":966,"Lead__ppm":542,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":967,"geometry":{"type":"Point","coordinates":[-75.144956021533091,39.966142988945975]},"properties":{"OBJECTID":967,"FID":967,"Lead__ppm":540,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":968,"geometry":{"type":"Point","coordinates":[-75.131870981441537,39.969889032085199]},"properties":{"OBJECTID":968,"FID":968,"Lead__ppm":540,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":969,"geometry":{"type":"Point","coordinates":[-75.224698031999921,40.025946975677527]},"properties":{"OBJECTID":969,"FID":969,"Lead__ppm":540,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":970,"geometry":{"type":"Point","coordinates":[-75.132539956833625,39.971187028659649]},"properties":{"OBJECTID":970,"FID":970,"Lead__ppm":540,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":971,"geometry":{"type":"Point","coordinates":[-75.12769004244619,39.975100008023901]},"properties":{"OBJECTID":971,"FID":971,"Lead__ppm":540,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":972,"geometry":{"type":"Point","coordinates":[-75.092695990890263,39.987539026591136]},"properties":{"OBJECTID":972,"FID":972,"Lead__ppm":540,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":973,"geometry":{"type":"Point","coordinates":[-75.186382010523317,39.991779013117046]},"properties":{"OBJECTID":973,"FID":973,"Lead__ppm":539,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":974,"geometry":{"type":"Point","coordinates":[-75.222001020022404,40.03084696891441]},"properties":{"OBJECTID":974,"FID":974,"Lead__ppm":538,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":975,"geometry":{"type":"Point","coordinates":[-75.212259958575999,39.946494984442545]},"properties":{"OBJECTID":975,"FID":975,"Lead__ppm":537,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":976,"geometry":{"type":"Point","coordinates":[-75.123873010972432,39.981023986625075]},"properties":{"OBJECTID":976,"FID":976,"Lead__ppm":535,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":977,"geometry":{"type":"Point","coordinates":[-75.096795991678505,39.987575986948492]},"properties":{"OBJECTID":977,"FID":977,"Lead__ppm":535,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":978,"geometry":{"type":"Point","coordinates":[-75.212030978010077,39.94624499011325]},"properties":{"OBJECTID":978,"FID":978,"Lead__ppm":533,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":979,"geometry":{"type":"Point","coordinates":[-75.18797696931027,40.052018995043326]},"properties":{"OBJECTID":979,"FID":979,"Lead__ppm":531,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":980,"geometry":{"type":"Point","coordinates":[-75.1414139643678,39.966466991817718]},"properties":{"OBJECTID":980,"FID":980,"Lead__ppm":530,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":981,"geometry":{"type":"Point","coordinates":[-75.176476018390744,39.970004967437433]},"properties":{"OBJECTID":981,"FID":981,"Lead__ppm":530,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":982,"geometry":{"type":"Point","coordinates":[-75.131948955208216,39.973076012307821]},"properties":{"OBJECTID":982,"FID":982,"Lead__ppm":530,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":983,"geometry":{"type":"Point","coordinates":[-75.132430991189679,39.973965996787925]},"properties":{"OBJECTID":983,"FID":983,"Lead__ppm":530,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":984,"geometry":{"type":"Point","coordinates":[-75.149776022021555,39.976197033950392]},"properties":{"OBJECTID":984,"FID":984,"Lead__ppm":530,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":985,"geometry":{"type":"Point","coordinates":[-75.18643896371232,40.056217022058867]},"properties":{"OBJECTID":985,"FID":985,"Lead__ppm":530,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":986,"geometry":{"type":"Point","coordinates":[-75.108775025992244,39.987242998873626]},"properties":{"OBJECTID":986,"FID":986,"Lead__ppm":529,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":987,"geometry":{"type":"Point","coordinates":[-75.095972955215203,39.984525003892706]},"properties":{"OBJECTID":987,"FID":987,"Lead__ppm":528,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":988,"geometry":{"type":"Point","coordinates":[-75.123873010972432,39.981023986625075]},"properties":{"OBJECTID":988,"FID":988,"Lead__ppm":528,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":989,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":989,"FID":989,"Lead__ppm":527,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":990,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":990,"FID":990,"Lead__ppm":526,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":991,"geometry":{"type":"Point","coordinates":[-75.202477035637358,39.969512034295406]},"properties":{"OBJECTID":991,"FID":991,"Lead__ppm":526,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":992,"geometry":{"type":"Point","coordinates":[-75.125141971142796,39.986288970104809]},"properties":{"OBJECTID":992,"FID":992,"Lead__ppm":525,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":993,"geometry":{"type":"Point","coordinates":[-75.123873010972432,39.981023986625075]},"properties":{"OBJECTID":993,"FID":993,"Lead__ppm":524,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":994,"geometry":{"type":"Point","coordinates":[-75.206883990758186,39.962483977003735]},"properties":{"OBJECTID":994,"FID":994,"Lead__ppm":522,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":995,"geometry":{"type":"Point","coordinates":[-75.210105978187727,39.940689026404051]},"properties":{"OBJECTID":995,"FID":995,"Lead__ppm":521,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":996,"geometry":{"type":"Point","coordinates":[-75.215870018208292,39.947449981917465]},"properties":{"OBJECTID":996,"FID":996,"Lead__ppm":521,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":997,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":997,"FID":997,"Lead__ppm":521,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":998,"geometry":{"type":"Point","coordinates":[-75.160504960785914,39.93447397520081]},"properties":{"OBJECTID":998,"FID":998,"Lead__ppm":520,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":999,"geometry":{"type":"Point","coordinates":[-75.207025026257796,39.946707031258143]},"properties":{"OBJECTID":999,"FID":999,"Lead__ppm":520,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1000,"geometry":{"type":"Point","coordinates":[-75.130295965253893,39.972038003701684]},"properties":{"OBJECTID":1000,"FID":1000,"Lead__ppm":520,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1001,"geometry":{"type":"Point","coordinates":[-75.118233028292622,39.978553005574426]},"properties":{"OBJECTID":1001,"FID":1001,"Lead__ppm":520,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1002,"geometry":{"type":"Point","coordinates":[-75.109513980144968,40.019675970466558]},"properties":{"OBJECTID":1002,"FID":1002,"Lead__ppm":517,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1003,"geometry":{"type":"Point","coordinates":[-75.132414013030797,39.966849032330146]},"properties":{"OBJECTID":1003,"FID":1003,"Lead__ppm":517,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1004,"geometry":{"type":"Point","coordinates":[-75.123873010972432,39.981023986625075]},"properties":{"OBJECTID":1004,"FID":1004,"Lead__ppm":517,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1005,"geometry":{"type":"Point","coordinates":[-75.165832958567549,39.925015969397904]},"properties":{"OBJECTID":1005,"FID":1005,"Lead__ppm":510,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1006,"geometry":{"type":"Point","coordinates":[-75.179630991500105,40.057019976225696]},"properties":{"OBJECTID":1006,"FID":1006,"Lead__ppm":510,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1007,"geometry":{"type":"Point","coordinates":[-75.122419986000381,39.979497987234204]},"properties":{"OBJECTID":1007,"FID":1007,"Lead__ppm":510,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1008,"geometry":{"type":"Point","coordinates":[-75.128572008392155,39.974741970085717]},"properties":{"OBJECTID":1008,"FID":1008,"Lead__ppm":510,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1009,"geometry":{"type":"Point","coordinates":[-75.222001020022404,40.03084696891441]},"properties":{"OBJECTID":1009,"FID":1009,"Lead__ppm":506,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1010,"geometry":{"type":"Point","coordinates":[-75.12970496362847,39.973230011843803]},"properties":{"OBJECTID":1010,"FID":1010,"Lead__ppm":503,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1011,"geometry":{"type":"Point","coordinates":[-75.124480990756737,39.980709001225058]},"properties":{"OBJECTID":1011,"FID":1011,"Lead__ppm":502,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1012,"geometry":{"type":"Point","coordinates":[-75.229284021356889,39.949175031543604]},"properties":{"OBJECTID":1012,"FID":1012,"Lead__ppm":501,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1013,"geometry":{"type":"Point","coordinates":[-75.196938023595479,39.996676986589819]},"properties":{"OBJECTID":1013,"FID":1013,"Lead__ppm":500,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1014,"geometry":{"type":"Point","coordinates":[-75.13450502151764,39.9647909867397]},"properties":{"OBJECTID":1014,"FID":1014,"Lead__ppm":500,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1015,"geometry":{"type":"Point","coordinates":[-75.252036011883902,39.969568005793334]},"properties":{"OBJECTID":1015,"FID":1015,"Lead__ppm":497,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1016,"geometry":{"type":"Point","coordinates":[-75.13085696314883,39.981287001075046]},"properties":{"OBJECTID":1016,"FID":1016,"Lead__ppm":495,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1017,"geometry":{"type":"Point","coordinates":[-75.21405497217674,39.945852021973778]},"properties":{"OBJECTID":1017,"FID":1017,"Lead__ppm":494,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1018,"geometry":{"type":"Point","coordinates":[-75.192180006861605,40.014499974091912]},"properties":{"OBJECTID":1018,"FID":1018,"Lead__ppm":492,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1019,"geometry":{"type":"Point","coordinates":[-75.208247004538777,39.967013992756463]},"properties":{"OBJECTID":1019,"FID":1019,"Lead__ppm":491,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1020,"geometry":{"type":"Point","coordinates":[-75.143086986752948,39.970091023836602]},"properties":{"OBJECTID":1020,"FID":1020,"Lead__ppm":490,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1021,"geometry":{"type":"Point","coordinates":[-75.224698031999921,40.025946975677527]},"properties":{"OBJECTID":1021,"FID":1021,"Lead__ppm":490,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1022,"geometry":{"type":"Point","coordinates":[-75.132995043356559,40.0498900063359]},"properties":{"OBJECTID":1022,"FID":1022,"Lead__ppm":490,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1023,"geometry":{"type":"Point","coordinates":[-75.122419986000381,39.979497987234204]},"properties":{"OBJECTID":1023,"FID":1023,"Lead__ppm":490,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1024,"geometry":{"type":"Point","coordinates":[-75.127380033841646,39.976830968677902]},"properties":{"OBJECTID":1024,"FID":1024,"Lead__ppm":490,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1025,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":1025,"FID":1025,"Lead__ppm":490,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1026,"geometry":{"type":"Point","coordinates":[-75.109513980144968,40.019675970466558]},"properties":{"OBJECTID":1026,"FID":1026,"Lead__ppm":489,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1027,"geometry":{"type":"Point","coordinates":[-75.208709008089414,39.971530972279005]},"properties":{"OBJECTID":1027,"FID":1027,"Lead__ppm":488,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1028,"geometry":{"type":"Point","coordinates":[-75.208709008089414,39.971530972279005]},"properties":{"OBJECTID":1028,"FID":1028,"Lead__ppm":488,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1029,"geometry":{"type":"Point","coordinates":[-75.095982028199572,39.988376996260087]},"properties":{"OBJECTID":1029,"FID":1029,"Lead__ppm":486,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1030,"geometry":{"type":"Point","coordinates":[-75.109513980144968,40.019675970466558]},"properties":{"OBJECTID":1030,"FID":1030,"Lead__ppm":485,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1031,"geometry":{"type":"Point","coordinates":[-75.095982028199572,39.988376996260087]},"properties":{"OBJECTID":1031,"FID":1031,"Lead__ppm":484,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1032,"geometry":{"type":"Point","coordinates":[-75.12982201410999,39.9775139787507]},"properties":{"OBJECTID":1032,"FID":1032,"Lead__ppm":483,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1033,"geometry":{"type":"Point","coordinates":[-75.109513980144968,40.019675970466558]},"properties":{"OBJECTID":1033,"FID":1033,"Lead__ppm":481,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1034,"geometry":{"type":"Point","coordinates":[-75.095982028199572,39.988376996260087]},"properties":{"OBJECTID":1034,"FID":1034,"Lead__ppm":480,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1035,"geometry":{"type":"Point","coordinates":[-75.215103036618714,40.028307972349104]},"properties":{"OBJECTID":1035,"FID":1035,"Lead__ppm":480,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1036,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":1036,"FID":1036,"Lead__ppm":479,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1037,"geometry":{"type":"Point","coordinates":[-75.109513980144968,40.019675970466558]},"properties":{"OBJECTID":1037,"FID":1037,"Lead__ppm":479,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1038,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1038,"FID":1038,"Lead__ppm":477,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1039,"geometry":{"type":"Point","coordinates":[-75.168284011820262,40.029155965891661]},"properties":{"OBJECTID":1039,"FID":1039,"Lead__ppm":476,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1040,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1040,"FID":1040,"Lead__ppm":473,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1041,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1041,"FID":1041,"Lead__ppm":473,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1042,"geometry":{"type":"Point","coordinates":[-75.221025000466213,39.945875024377145]},"properties":{"OBJECTID":1042,"FID":1042,"Lead__ppm":472,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1043,"geometry":{"type":"Point","coordinates":[-75.252036011883902,39.969568005793334]},"properties":{"OBJECTID":1043,"FID":1043,"Lead__ppm":471,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1044,"geometry":{"type":"Point","coordinates":[-75.221736017013598,39.955219971696621]},"properties":{"OBJECTID":1044,"FID":1044,"Lead__ppm":470,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1045,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1045,"FID":1045,"Lead__ppm":470,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1046,"geometry":{"type":"Point","coordinates":[-75.14595602610737,39.974188009210515]},"properties":{"OBJECTID":1046,"FID":1046,"Lead__ppm":470,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1047,"geometry":{"type":"Point","coordinates":[-75.110456043383437,39.980860023689388]},"properties":{"OBJECTID":1047,"FID":1047,"Lead__ppm":470,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1048,"geometry":{"type":"Point","coordinates":[-75.13051704064533,39.976408024932283]},"properties":{"OBJECTID":1048,"FID":1048,"Lead__ppm":470,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1049,"geometry":{"type":"Point","coordinates":[-75.124480990756737,39.980709001225058]},"properties":{"OBJECTID":1049,"FID":1049,"Lead__ppm":466,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1050,"geometry":{"type":"Point","coordinates":[-75.095982028199572,39.988376996260087]},"properties":{"OBJECTID":1050,"FID":1050,"Lead__ppm":465,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1051,"geometry":{"type":"Point","coordinates":[-75.17097599323219,40.025760970544503]},"properties":{"OBJECTID":1051,"FID":1051,"Lead__ppm":463,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1052,"geometry":{"type":"Point","coordinates":[-75.097601960151437,39.982446014742685]},"properties":{"OBJECTID":1052,"FID":1052,"Lead__ppm":463,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1053,"geometry":{"type":"Point","coordinates":[-75.211383023195651,39.945714971566019]},"properties":{"OBJECTID":1053,"FID":1053,"Lead__ppm":462,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1054,"geometry":{"type":"Point","coordinates":[-75.16925697710451,39.964756010720578]},"properties":{"OBJECTID":1054,"FID":1054,"Lead__ppm":460,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1055,"geometry":{"type":"Point","coordinates":[-75.161626956575773,39.980822990864425]},"properties":{"OBJECTID":1055,"FID":1055,"Lead__ppm":460,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1056,"geometry":{"type":"Point","coordinates":[-75.217158022662673,39.949212012649376]},"properties":{"OBJECTID":1056,"FID":1056,"Lead__ppm":460,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1057,"geometry":{"type":"Point","coordinates":[-75.213878992212585,39.947802033583606]},"properties":{"OBJECTID":1057,"FID":1057,"Lead__ppm":458,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1058,"geometry":{"type":"Point","coordinates":[-75.133823020553933,39.974777973600951]},"properties":{"OBJECTID":1058,"FID":1058,"Lead__ppm":458,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1059,"geometry":{"type":"Point","coordinates":[-75.133823020553933,39.974777973600951]},"properties":{"OBJECTID":1059,"FID":1059,"Lead__ppm":458,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1060,"geometry":{"type":"Point","coordinates":[-75.119522020893797,39.97609198566888]},"properties":{"OBJECTID":1060,"FID":1060,"Lead__ppm":455,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1061,"geometry":{"type":"Point","coordinates":[-75.212695012668107,39.948699991278382]},"properties":{"OBJECTID":1061,"FID":1061,"Lead__ppm":454,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1062,"geometry":{"type":"Point","coordinates":[-75.12492799244211,39.984084968856912]},"properties":{"OBJECTID":1062,"FID":1062,"Lead__ppm":450,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1063,"geometry":{"type":"Point","coordinates":[-75.134597997149541,40.056094013430339]},"properties":{"OBJECTID":1063,"FID":1063,"Lead__ppm":450,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1064,"geometry":{"type":"Point","coordinates":[-75.132659971755587,39.974444028221995]},"properties":{"OBJECTID":1064,"FID":1064,"Lead__ppm":450,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1065,"geometry":{"type":"Point","coordinates":[-75.124234043885139,39.978414988147151]},"properties":{"OBJECTID":1065,"FID":1065,"Lead__ppm":449,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1066,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1066,"FID":1066,"Lead__ppm":449,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1067,"geometry":{"type":"Point","coordinates":[-75.130500960801726,39.982779026198997]},"properties":{"OBJECTID":1067,"FID":1067,"Lead__ppm":446,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1068,"geometry":{"type":"Point","coordinates":[-75.101413961059592,39.982976987593531]},"properties":{"OBJECTID":1068,"FID":1068,"Lead__ppm":444,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1069,"geometry":{"type":"Point","coordinates":[-75.186382010523317,39.991779013117046]},"properties":{"OBJECTID":1069,"FID":1069,"Lead__ppm":442,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1070,"geometry":{"type":"Point","coordinates":[-75.190567980084253,40.033195002636944]},"properties":{"OBJECTID":1070,"FID":1070,"Lead__ppm":442,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1071,"geometry":{"type":"Point","coordinates":[-75.224723005164819,39.95100002870538]},"properties":{"OBJECTID":1071,"FID":1071,"Lead__ppm":440,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1072,"geometry":{"type":"Point","coordinates":[-75.102620039160044,39.988280019433837]},"properties":{"OBJECTID":1072,"FID":1072,"Lead__ppm":440,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1073,"geometry":{"type":"Point","coordinates":[-75.217581039329971,39.94502000469452]},"properties":{"OBJECTID":1073,"FID":1073,"Lead__ppm":440,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1074,"geometry":{"type":"Point","coordinates":[-75.175110040169727,40.029539994541423]},"properties":{"OBJECTID":1074,"FID":1074,"Lead__ppm":438,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1075,"geometry":{"type":"Point","coordinates":[-75.127332962120747,39.983084985066597]},"properties":{"OBJECTID":1075,"FID":1075,"Lead__ppm":438,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1076,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":1076,"FID":1076,"Lead__ppm":437,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1077,"geometry":{"type":"Point","coordinates":[-75.208247004538777,39.967013992756463]},"properties":{"OBJECTID":1077,"FID":1077,"Lead__ppm":432,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1078,"geometry":{"type":"Point","coordinates":[-75.175110040169727,40.029539994541423]},"properties":{"OBJECTID":1078,"FID":1078,"Lead__ppm":431,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1079,"geometry":{"type":"Point","coordinates":[-75.148019995304168,39.953629974628228]},"properties":{"OBJECTID":1079,"FID":1079,"Lead__ppm":430,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1080,"geometry":{"type":"Point","coordinates":[-75.141500022972025,39.9659599879203]},"properties":{"OBJECTID":1080,"FID":1080,"Lead__ppm":430,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1081,"geometry":{"type":"Point","coordinates":[-75.130199037034743,39.984237979953299]},"properties":{"OBJECTID":1081,"FID":1081,"Lead__ppm":430,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1082,"geometry":{"type":"Point","coordinates":[-75.126722017896029,39.986153996774803]},"properties":{"OBJECTID":1082,"FID":1082,"Lead__ppm":427,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1083,"geometry":{"type":"Point","coordinates":[-75.12446302445106,39.979727966588975]},"properties":{"OBJECTID":1083,"FID":1083,"Lead__ppm":423,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1084,"geometry":{"type":"Point","coordinates":[-75.14308896304658,40.006804980464217]},"properties":{"OBJECTID":1084,"FID":1084,"Lead__ppm":423,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1085,"geometry":{"type":"Point","coordinates":[-75.109513980144968,40.019675970466558]},"properties":{"OBJECTID":1085,"FID":1085,"Lead__ppm":422,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1086,"geometry":{"type":"Point","coordinates":[-75.227433042713955,39.948198984815008]},"properties":{"OBJECTID":1086,"FID":1086,"Lead__ppm":421,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1087,"geometry":{"type":"Point","coordinates":[-75.12970496362847,39.973230011843803]},"properties":{"OBJECTID":1087,"FID":1087,"Lead__ppm":421,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1088,"geometry":{"type":"Point","coordinates":[-75.14291397122922,39.97113202230377]},"properties":{"OBJECTID":1088,"FID":1088,"Lead__ppm":420,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1089,"geometry":{"type":"Point","coordinates":[-75.135226009364672,39.980462023020763]},"properties":{"OBJECTID":1089,"FID":1089,"Lead__ppm":420,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1090,"geometry":{"type":"Point","coordinates":[-75.20371698022403,40.074352004505101]},"properties":{"OBJECTID":1090,"FID":1090,"Lead__ppm":420,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1091,"geometry":{"type":"Point","coordinates":[-75.126149970723091,39.986450992811683]},"properties":{"OBJECTID":1091,"FID":1091,"Lead__ppm":419,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1092,"geometry":{"type":"Point","coordinates":[-75.227021973639935,39.949686016374528]},"properties":{"OBJECTID":1092,"FID":1092,"Lead__ppm":418,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1093,"geometry":{"type":"Point","coordinates":[-75.188512994040309,40.035000011071261]},"properties":{"OBJECTID":1093,"FID":1093,"Lead__ppm":417,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1094,"geometry":{"type":"Point","coordinates":[-75.209333966032574,39.949809974383562]},"properties":{"OBJECTID":1094,"FID":1094,"Lead__ppm":417,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1095,"geometry":{"type":"Point","coordinates":[-75.252036011883902,39.969568005793334]},"properties":{"OBJECTID":1095,"FID":1095,"Lead__ppm":416,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1096,"geometry":{"type":"Point","coordinates":[-75.126132004417414,39.970466985762691]},"properties":{"OBJECTID":1096,"FID":1096,"Lead__ppm":415,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1097,"geometry":{"type":"Point","coordinates":[-75.131984977651101,39.983319977066387]},"properties":{"OBJECTID":1097,"FID":1097,"Lead__ppm":412,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1098,"geometry":{"type":"Point","coordinates":[-75.226873032965827,39.95044201900577]},"properties":{"OBJECTID":1098,"FID":1098,"Lead__ppm":411,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1099,"geometry":{"type":"Point","coordinates":[-75.205700999360531,39.968153971332974]},"properties":{"OBJECTID":1099,"FID":1099,"Lead__ppm":411,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1100,"geometry":{"type":"Point","coordinates":[-75.142858006187026,39.971261999704168]},"properties":{"OBJECTID":1100,"FID":1100,"Lead__ppm":410,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1101,"geometry":{"type":"Point","coordinates":[-75.217794029883805,40.030864027305981]},"properties":{"OBJECTID":1101,"FID":1101,"Lead__ppm":410,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1102,"geometry":{"type":"Point","coordinates":[-75.139069990296946,39.986499998754368]},"properties":{"OBJECTID":1102,"FID":1102,"Lead__ppm":410,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1103,"geometry":{"type":"Point","coordinates":[-75.220964993005239,39.949688977596246]},"properties":{"OBJECTID":1103,"FID":1103,"Lead__ppm":409,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1104,"geometry":{"type":"Point","coordinates":[-75.128170012302505,39.982058967763379]},"properties":{"OBJECTID":1104,"FID":1104,"Lead__ppm":408,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1105,"geometry":{"type":"Point","coordinates":[-75.175110040169727,40.029539994541423]},"properties":{"OBJECTID":1105,"FID":1105,"Lead__ppm":408,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1106,"geometry":{"type":"Point","coordinates":[-75.10229098627147,39.991779013117046]},"properties":{"OBJECTID":1106,"FID":1106,"Lead__ppm":406,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1107,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1107,"FID":1107,"Lead__ppm":406,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1108,"geometry":{"type":"Point","coordinates":[-75.119364007235333,39.981023986625075]},"properties":{"OBJECTID":1108,"FID":1108,"Lead__ppm":406,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1109,"geometry":{"type":"Point","coordinates":[-75.216753960447875,39.950709971658476]},"properties":{"OBJECTID":1109,"FID":1109,"Lead__ppm":405,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1110,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1110,"FID":1110,"Lead__ppm":403,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1111,"geometry":{"type":"Point","coordinates":[-75.125403021564352,39.97194300013696]},"properties":{"OBJECTID":1111,"FID":1111,"Lead__ppm":402,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1112,"geometry":{"type":"Point","coordinates":[-75.203253000379789,39.968433007763508]},"properties":{"OBJECTID":1112,"FID":1112,"Lead__ppm":402,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1113,"geometry":{"type":"Point","coordinates":[-75.068863955897172,40.016415004350236]},"properties":{"OBJECTID":1113,"FID":1113,"Lead__ppm":400,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1114,"geometry":{"type":"Point","coordinates":[-75.131983001357469,39.968259031815322]},"properties":{"OBJECTID":1114,"FID":1114,"Lead__ppm":400,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1115,"geometry":{"type":"Point","coordinates":[-75.121817036781678,39.979637998702501]},"properties":{"OBJECTID":1115,"FID":1115,"Lead__ppm":400,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1116,"geometry":{"type":"Point","coordinates":[-75.14308896304658,40.006804980464217]},"properties":{"OBJECTID":1116,"FID":1116,"Lead__ppm":398,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1117,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1117,"FID":1117,"Lead__ppm":391,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1118,"geometry":{"type":"Point","coordinates":[-75.150314023045212,39.929197009986247]},"properties":{"OBJECTID":1118,"FID":1118,"Lead__ppm":390,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1119,"geometry":{"type":"Point","coordinates":[-75.220394023810655,39.952736970892126]},"properties":{"OBJECTID":1119,"FID":1119,"Lead__ppm":390,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1120,"geometry":{"type":"Point","coordinates":[-75.141765025980831,39.95260702713427]},"properties":{"OBJECTID":1120,"FID":1120,"Lead__ppm":390,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1121,"geometry":{"type":"Point","coordinates":[-75.122686965302819,39.981573968578061]},"properties":{"OBJECTID":1121,"FID":1121,"Lead__ppm":390,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1122,"geometry":{"type":"Point","coordinates":[-75.213111022476198,40.057359980940298]},"properties":{"OBJECTID":1122,"FID":1122,"Lead__ppm":386,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1123,"geometry":{"type":"Point","coordinates":[-75.212030978010077,39.94624499011325]},"properties":{"OBJECTID":1123,"FID":1123,"Lead__ppm":386,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1124,"geometry":{"type":"Point","coordinates":[-75.120723966743967,39.980233009824673]},"properties":{"OBJECTID":1124,"FID":1124,"Lead__ppm":386,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1125,"geometry":{"type":"Point","coordinates":[-75.202477035637358,39.969512034295406]},"properties":{"OBJECTID":1125,"FID":1125,"Lead__ppm":380,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1126,"geometry":{"type":"Point","coordinates":[-75.131983001357469,39.97143596800948]},"properties":{"OBJECTID":1126,"FID":1126,"Lead__ppm":380,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1127,"geometry":{"type":"Point","coordinates":[-75.142382977064798,39.973686982943903]},"properties":{"OBJECTID":1127,"FID":1127,"Lead__ppm":380,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1128,"geometry":{"type":"Point","coordinates":[-75.139069990296946,39.986499998754368]},"properties":{"OBJECTID":1128,"FID":1128,"Lead__ppm":380,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1129,"geometry":{"type":"Point","coordinates":[-75.209287972290028,39.949467987464764]},"properties":{"OBJECTID":1129,"FID":1129,"Lead__ppm":378,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1130,"geometry":{"type":"Point","coordinates":[-75.196938023595479,39.996676986589819]},"properties":{"OBJECTID":1130,"FID":1130,"Lead__ppm":376,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1131,"geometry":{"type":"Point","coordinates":[-75.252036011883902,39.969568005793334]},"properties":{"OBJECTID":1131,"FID":1131,"Lead__ppm":376,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1132,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1132,"FID":1132,"Lead__ppm":373,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1133,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1133,"FID":1133,"Lead__ppm":372,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1134,"geometry":{"type":"Point","coordinates":[-75.212003040404753,39.954006027077348]},"properties":{"OBJECTID":1134,"FID":1134,"Lead__ppm":370,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1135,"geometry":{"type":"Point","coordinates":[-75.132073012548943,39.980100984435268]},"properties":{"OBJECTID":1135,"FID":1135,"Lead__ppm":370,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1136,"geometry":{"type":"Point","coordinates":[-75.252036011883902,39.969568005793334]},"properties":{"OBJECTID":1136,"FID":1136,"Lead__ppm":369,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1137,"geometry":{"type":"Point","coordinates":[-75.196938023595479,39.996676986589819]},"properties":{"OBJECTID":1137,"FID":1137,"Lead__ppm":369,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1138,"geometry":{"type":"Point","coordinates":[-75.182679963405946,39.983450000119056]},"properties":{"OBJECTID":1138,"FID":1138,"Lead__ppm":367,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1139,"geometry":{"type":"Point","coordinates":[-75.12446302445106,39.979727966588975]},"properties":{"OBJECTID":1139,"FID":1139,"Lead__ppm":366,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1140,"geometry":{"type":"Point","coordinates":[-75.161403006575441,39.985353030226804]},"properties":{"OBJECTID":1140,"FID":1140,"Lead__ppm":364,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1141,"geometry":{"type":"Point","coordinates":[-75.217581039329971,39.94502000469452]},"properties":{"OBJECTID":1141,"FID":1141,"Lead__ppm":363,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1142,"geometry":{"type":"Point","coordinates":[-75.175204992095246,39.929321969521958]},"properties":{"OBJECTID":1142,"FID":1142,"Lead__ppm":360,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1143,"geometry":{"type":"Point","coordinates":[-75.161455019030399,39.970491976383272]},"properties":{"OBJECTID":1143,"FID":1143,"Lead__ppm":360,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1144,"geometry":{"type":"Point","coordinates":[-75.183707007270272,39.973777991285644]},"properties":{"OBJECTID":1144,"FID":1144,"Lead__ppm":360,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1145,"geometry":{"type":"Point","coordinates":[-75.133871978736906,39.98657701785455]},"properties":{"OBJECTID":1145,"FID":1145,"Lead__ppm":360,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1146,"geometry":{"type":"Point","coordinates":[-75.125114033537443,39.986382990125072]},"properties":{"OBJECTID":1146,"FID":1146,"Lead__ppm":360,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1147,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":1147,"FID":1147,"Lead__ppm":360,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1148,"geometry":{"type":"Point","coordinates":[-75.12446302445106,39.979727966588975]},"properties":{"OBJECTID":1148,"FID":1148,"Lead__ppm":359,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1149,"geometry":{"type":"Point","coordinates":[-75.230711983332526,39.9508819951932]},"properties":{"OBJECTID":1149,"FID":1149,"Lead__ppm":354,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1150,"geometry":{"type":"Point","coordinates":[-75.130199037034743,39.984237979953299]},"properties":{"OBJECTID":1150,"FID":1150,"Lead__ppm":350,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1151,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1151,"FID":1151,"Lead__ppm":347,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1152,"geometry":{"type":"Point","coordinates":[-75.173436029637742,40.040154026262094]},"properties":{"OBJECTID":1152,"FID":1152,"Lead__ppm":347,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1153,"geometry":{"type":"Point","coordinates":[-75.169111000870842,40.023873031020969]},"properties":{"OBJECTID":1153,"FID":1153,"Lead__ppm":346,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1154,"geometry":{"type":"Point","coordinates":[-75.131984977651101,39.983319977066387]},"properties":{"OBJECTID":1154,"FID":1154,"Lead__ppm":345,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1155,"geometry":{"type":"Point","coordinates":[-75.196938023595479,39.996676986589819]},"properties":{"OBJECTID":1155,"FID":1155,"Lead__ppm":344,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1156,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1156,"FID":1156,"Lead__ppm":340,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1157,"geometry":{"type":"Point","coordinates":[-75.134805957137814,39.981823007760937]},"properties":{"OBJECTID":1157,"FID":1157,"Lead__ppm":340,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1158,"geometry":{"type":"Point","coordinates":[-75.130802974400268,39.98401200797953]},"properties":{"OBJECTID":1158,"FID":1158,"Lead__ppm":340,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1159,"geometry":{"type":"Point","coordinates":[-75.196727997482057,40.012980020322665]},"properties":{"OBJECTID":1159,"FID":1159,"Lead__ppm":340,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1160,"geometry":{"type":"Point","coordinates":[-75.175110040169727,40.029539994541423]},"properties":{"OBJECTID":1160,"FID":1160,"Lead__ppm":333,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1161,"geometry":{"type":"Point","coordinates":[-75.131879964594376,39.969985966169908]},"properties":{"OBJECTID":1161,"FID":1161,"Lead__ppm":333,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1162,"geometry":{"type":"Point","coordinates":[-75.222677002273699,39.950647993497512]},"properties":{"OBJECTID":1162,"FID":1162,"Lead__ppm":332,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1163,"geometry":{"type":"Point","coordinates":[-75.142228017678278,39.966666033194507]},"properties":{"OBJECTID":1163,"FID":1163,"Lead__ppm":332,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1164,"geometry":{"type":"Point","coordinates":[-75.143996980135768,39.965816987906607]},"properties":{"OBJECTID":1164,"FID":1164,"Lead__ppm":330,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1165,"geometry":{"type":"Point","coordinates":[-75.123972005316759,40.025173991701273]},"properties":{"OBJECTID":1165,"FID":1165,"Lead__ppm":330,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1166,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":1166,"FID":1166,"Lead__ppm":326,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1167,"geometry":{"type":"Point","coordinates":[-75.119471984732485,39.980547033735313]},"properties":{"OBJECTID":1167,"FID":1167,"Lead__ppm":323,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1168,"geometry":{"type":"Point","coordinates":[-75.219080956359846,39.948204976254218]},"properties":{"OBJECTID":1168,"FID":1168,"Lead__ppm":321,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1169,"geometry":{"type":"Point","coordinates":[-75.223147000830352,39.948388024798234]},"properties":{"OBJECTID":1169,"FID":1169,"Lead__ppm":321,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1170,"geometry":{"type":"Point","coordinates":[-75.252036011883902,39.969568005793334]},"properties":{"OBJECTID":1170,"FID":1170,"Lead__ppm":321,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1171,"geometry":{"type":"Point","coordinates":[-75.174732029098152,39.93883200208969]},"properties":{"OBJECTID":1171,"FID":1171,"Lead__ppm":320,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1172,"geometry":{"type":"Point","coordinates":[-75.134521999676508,39.970283996312233]},"properties":{"OBJECTID":1172,"FID":1172,"Lead__ppm":320,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1173,"geometry":{"type":"Point","coordinates":[-75.127874017416389,39.98549798542566]},"properties":{"OBJECTID":1173,"FID":1173,"Lead__ppm":320,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1174,"geometry":{"type":"Point","coordinates":[-75.230559000239637,40.067099965784436]},"properties":{"OBJECTID":1174,"FID":1174,"Lead__ppm":318,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1175,"geometry":{"type":"Point","coordinates":[-75.079435958981378,40.021398027921691]},"properties":{"OBJECTID":1175,"FID":1175,"Lead__ppm":314,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1176,"geometry":{"type":"Point","coordinates":[-75.115614978228592,39.98356198907198]},"properties":{"OBJECTID":1176,"FID":1176,"Lead__ppm":314,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1177,"geometry":{"type":"Point","coordinates":[-75.135030985116501,40.050933983075154]},"properties":{"OBJECTID":1177,"FID":1177,"Lead__ppm":314,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1178,"geometry":{"type":"Point","coordinates":[-75.252036011883902,39.969568005793334]},"properties":{"OBJECTID":1178,"FID":1178,"Lead__ppm":313,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1179,"geometry":{"type":"Point","coordinates":[-75.230559000239637,40.067099965784436]},"properties":{"OBJECTID":1179,"FID":1179,"Lead__ppm":313,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1180,"geometry":{"type":"Point","coordinates":[-75.222677002273699,39.950647993497512]},"properties":{"OBJECTID":1180,"FID":1180,"Lead__ppm":312,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1181,"geometry":{"type":"Point","coordinates":[-75.12446302445106,39.979727966588975]},"properties":{"OBJECTID":1181,"FID":1181,"Lead__ppm":312,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1182,"geometry":{"type":"Point","coordinates":[-75.215295994741737,39.946873968594083]},"properties":{"OBJECTID":1182,"FID":1182,"Lead__ppm":310,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1183,"geometry":{"type":"Point","coordinates":[-75.217758995587758,39.94510099614314]},"properties":{"OBJECTID":1183,"FID":1183,"Lead__ppm":310,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1184,"geometry":{"type":"Point","coordinates":[-75.122419986000381,39.979497987234204]},"properties":{"OBJECTID":1184,"FID":1184,"Lead__ppm":310,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1185,"geometry":{"type":"Point","coordinates":[-75.110733982132331,39.991435033759586]},"properties":{"OBJECTID":1185,"FID":1185,"Lead__ppm":310,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1186,"geometry":{"type":"Point","coordinates":[-75.100234023933893,40.008861967162431]},"properties":{"OBJECTID":1186,"FID":1186,"Lead__ppm":310,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1187,"geometry":{"type":"Point","coordinates":[-75.149174959264954,40.018633991779595]},"properties":{"OBJECTID":1187,"FID":1187,"Lead__ppm":310,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1188,"geometry":{"type":"Point","coordinates":[-75.128482985347489,39.982539007563602]},"properties":{"OBJECTID":1188,"FID":1188,"Lead__ppm":310,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1189,"geometry":{"type":"Point","coordinates":[-75.177315044866106,40.026633965831977]},"properties":{"OBJECTID":1189,"FID":1189,"Lead__ppm":306,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1190,"geometry":{"type":"Point","coordinates":[-75.167676032035985,40.036023032021745]},"properties":{"OBJECTID":1190,"FID":1190,"Lead__ppm":306,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1191,"geometry":{"type":"Point","coordinates":[-75.167704957788132,39.987683013568727]},"properties":{"OBJECTID":1191,"FID":1191,"Lead__ppm":305,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1192,"geometry":{"type":"Point","coordinates":[-75.196938023595479,39.996676986589819]},"properties":{"OBJECTID":1192,"FID":1192,"Lead__ppm":305,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1193,"geometry":{"type":"Point","coordinates":[-75.198425004885294,40.044914978289775]},"properties":{"OBJECTID":1193,"FID":1193,"Lead__ppm":303,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1194,"geometry":{"type":"Point","coordinates":[-75.196938023595479,39.996676986589819]},"properties":{"OBJECTID":1194,"FID":1194,"Lead__ppm":302,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1195,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1195,"FID":1195,"Lead__ppm":302,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1196,"geometry":{"type":"Point","coordinates":[-75.196938023595479,39.996676986589819]},"properties":{"OBJECTID":1196,"FID":1196,"Lead__ppm":301,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1197,"geometry":{"type":"Point","coordinates":[-75.164123015424238,39.940082031158902]},"properties":{"OBJECTID":1197,"FID":1197,"Lead__ppm":300,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1198,"geometry":{"type":"Point","coordinates":[-75.220576022487222,39.953866996024551]},"properties":{"OBJECTID":1198,"FID":1198,"Lead__ppm":300,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1199,"geometry":{"type":"Point","coordinates":[-75.075781971731701,40.078364031180733]},"properties":{"OBJECTID":1199,"FID":1199,"Lead__ppm":300,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1200,"geometry":{"type":"Point","coordinates":[-75.165335022405557,40.024050992790237]},"properties":{"OBJECTID":1200,"FID":1200,"Lead__ppm":298,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1201,"geometry":{"type":"Point","coordinates":[-75.123873010972432,39.981023986625075]},"properties":{"OBJECTID":1201,"FID":1201,"Lead__ppm":297,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1202,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1202,"FID":1202,"Lead__ppm":297,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1203,"geometry":{"type":"Point","coordinates":[-75.110456043383437,39.980860023689388]},"properties":{"OBJECTID":1203,"FID":1203,"Lead__ppm":297,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1204,"geometry":{"type":"Point","coordinates":[-75.218516994024483,39.951773990195193]},"properties":{"OBJECTID":1204,"FID":1204,"Lead__ppm":295,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1205,"geometry":{"type":"Point","coordinates":[-75.165017018794984,40.025799010836714]},"properties":{"OBJECTID":1205,"FID":1205,"Lead__ppm":295,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1206,"geometry":{"type":"Point","coordinates":[-75.134411956054208,39.971663978034449]},"properties":{"OBJECTID":1206,"FID":1206,"Lead__ppm":295,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1207,"geometry":{"type":"Point","coordinates":[-75.132539956833625,39.971187028659649]},"properties":{"OBJECTID":1207,"FID":1207,"Lead__ppm":294,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1208,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1208,"FID":1208,"Lead__ppm":291,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1209,"geometry":{"type":"Point","coordinates":[-75.219530024170382,39.960961970312908]},"properties":{"OBJECTID":1209,"FID":1209,"Lead__ppm":290,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1210,"geometry":{"type":"Point","coordinates":[-75.173857968326701,39.967025008463587]},"properties":{"OBJECTID":1210,"FID":1210,"Lead__ppm":290,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1211,"geometry":{"type":"Point","coordinates":[-75.138538007985687,39.969373998609434]},"properties":{"OBJECTID":1211,"FID":1211,"Lead__ppm":290,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1212,"geometry":{"type":"Point","coordinates":[-75.127900966874904,39.969855986343049]},"properties":{"OBJECTID":1212,"FID":1212,"Lead__ppm":290,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1213,"geometry":{"type":"Point","coordinates":[-75.167671001470396,40.03601402202117]},"properties":{"OBJECTID":1213,"FID":1213,"Lead__ppm":290,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1214,"geometry":{"type":"Point","coordinates":[-75.196938023595479,39.996676986589819]},"properties":{"OBJECTID":1214,"FID":1214,"Lead__ppm":287,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1215,"geometry":{"type":"Point","coordinates":[-75.211495043111583,39.945704021295484]},"properties":{"OBJECTID":1215,"FID":1215,"Lead__ppm":285,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1216,"geometry":{"type":"Point","coordinates":[-75.239347039001117,39.953567999113126]},"properties":{"OBJECTID":1216,"FID":1216,"Lead__ppm":285,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1217,"geometry":{"type":"Point","coordinates":[-75.175110040169727,40.029539994541423]},"properties":{"OBJECTID":1217,"FID":1217,"Lead__ppm":285,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1218,"geometry":{"type":"Point","coordinates":[-75.122639983413464,39.9806730008345]},"properties":{"OBJECTID":1218,"FID":1218,"Lead__ppm":284,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1219,"geometry":{"type":"Point","coordinates":[-75.232703009328233,39.951907034388121]},"properties":{"OBJECTID":1219,"FID":1219,"Lead__ppm":283,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1220,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":1220,"FID":1220,"Lead__ppm":282,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1221,"geometry":{"type":"Point","coordinates":[-75.129803957972783,39.979962006442676]},"properties":{"OBJECTID":1221,"FID":1221,"Lead__ppm":282,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1222,"geometry":{"type":"Point","coordinates":[-75.109513980144968,40.019675970466558]},"properties":{"OBJECTID":1222,"FID":1222,"Lead__ppm":280,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1223,"geometry":{"type":"Point","coordinates":[-75.130901968744567,39.971069993806836]},"properties":{"OBJECTID":1223,"FID":1223,"Lead__ppm":280,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1224,"geometry":{"type":"Point","coordinates":[-75.125483959771458,39.988152001553118]},"properties":{"OBJECTID":1224,"FID":1224,"Lead__ppm":280,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1225,"geometry":{"type":"Point","coordinates":[-75.096614981148761,39.990973019543816]},"properties":{"OBJECTID":1225,"FID":1225,"Lead__ppm":280,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1226,"geometry":{"type":"Point","coordinates":[-75.109513980144968,40.019675970466558]},"properties":{"OBJECTID":1226,"FID":1226,"Lead__ppm":279,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1227,"geometry":{"type":"Point","coordinates":[-75.120946030282212,39.978666998810446]},"properties":{"OBJECTID":1227,"FID":1227,"Lead__ppm":279,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1228,"geometry":{"type":"Point","coordinates":[-75.202739972521016,39.965719979060644]},"properties":{"OBJECTID":1228,"FID":1228,"Lead__ppm":275,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1229,"geometry":{"type":"Point","coordinates":[-75.196938023595479,39.996676986589819]},"properties":{"OBJECTID":1229,"FID":1229,"Lead__ppm":273,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1230,"geometry":{"type":"Point","coordinates":[-75.109513980144968,40.019675970466558]},"properties":{"OBJECTID":1230,"FID":1230,"Lead__ppm":273,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1231,"geometry":{"type":"Point","coordinates":[-75.19878100723237,40.054751974179936]},"properties":{"OBJECTID":1231,"FID":1231,"Lead__ppm":273,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1232,"geometry":{"type":"Point","coordinates":[-75.12446302445106,39.979727966588975]},"properties":{"OBJECTID":1232,"FID":1232,"Lead__ppm":273,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1233,"geometry":{"type":"Point","coordinates":[-75.212630962788339,39.951006019899204]},"properties":{"OBJECTID":1233,"FID":1233,"Lead__ppm":270,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1234,"geometry":{"type":"Point","coordinates":[-75.140981964547663,39.975056982991084]},"properties":{"OBJECTID":1234,"FID":1234,"Lead__ppm":270,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1235,"geometry":{"type":"Point","coordinates":[-75.175110040169727,40.029539994541423]},"properties":{"OBJECTID":1235,"FID":1235,"Lead__ppm":270,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1236,"geometry":{"type":"Point","coordinates":[-75.13085696314883,39.981287001075046]},"properties":{"OBJECTID":1236,"FID":1236,"Lead__ppm":270,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1237,"geometry":{"type":"Point","coordinates":[-75.141500022972025,39.9659599879203]},"properties":{"OBJECTID":1237,"FID":1237,"Lead__ppm":270,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1238,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1238,"FID":1238,"Lead__ppm":269,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1239,"geometry":{"type":"Point","coordinates":[-75.083503979745515,40.061268022512813]},"properties":{"OBJECTID":1239,"FID":1239,"Lead__ppm":269,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1240,"geometry":{"type":"Point","coordinates":[-75.105178980078378,40.029775996029606]},"properties":{"OBJECTID":1240,"FID":1240,"Lead__ppm":269,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1241,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":1241,"FID":1241,"Lead__ppm":267,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1242,"geometry":{"type":"Point","coordinates":[-75.109513980144968,40.019675970466558]},"properties":{"OBJECTID":1242,"FID":1242,"Lead__ppm":267,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1243,"geometry":{"type":"Point","coordinates":[-75.167119974875106,39.935950008843598]},"properties":{"OBJECTID":1243,"FID":1243,"Lead__ppm":267,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1244,"geometry":{"type":"Point","coordinates":[-75.128391986009206,39.973713005008619]},"properties":{"OBJECTID":1244,"FID":1244,"Lead__ppm":264,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1245,"geometry":{"type":"Point","coordinates":[-75.144856039041954,39.961769006444726]},"properties":{"OBJECTID":1245,"FID":1245,"Lead__ppm":263,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1246,"geometry":{"type":"Point","coordinates":[-75.213111022476198,40.057359980940298]},"properties":{"OBJECTID":1246,"FID":1246,"Lead__ppm":263,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1247,"geometry":{"type":"Point","coordinates":[-75.083503979745515,40.061268022512813]},"properties":{"OBJECTID":1247,"FID":1247,"Lead__ppm":262,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1248,"geometry":{"type":"Point","coordinates":[-75.216753960447875,39.950709971658476]},"properties":{"OBJECTID":1248,"FID":1248,"Lead__ppm":262,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1249,"geometry":{"type":"Point","coordinates":[-75.171717013510062,40.02347500583992]},"properties":{"OBJECTID":1249,"FID":1249,"Lead__ppm":262,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1250,"geometry":{"type":"Point","coordinates":[-75.172499985111699,40.028030968929571]},"properties":{"OBJECTID":1250,"FID":1250,"Lead__ppm":261,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1251,"geometry":{"type":"Point","coordinates":[-75.215295994741737,39.946873968594083]},"properties":{"OBJECTID":1251,"FID":1251,"Lead__ppm":260,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1252,"geometry":{"type":"Point","coordinates":[-75.169656996900528,39.978824014544571]},"properties":{"OBJECTID":1252,"FID":1252,"Lead__ppm":260,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1253,"geometry":{"type":"Point","coordinates":[-75.127343023251953,39.995109012625484]},"properties":{"OBJECTID":1253,"FID":1253,"Lead__ppm":260,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1254,"geometry":{"type":"Point","coordinates":[-75.231922014020228,40.03283197303125]},"properties":{"OBJECTID":1254,"FID":1254,"Lead__ppm":260,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1255,"geometry":{"type":"Point","coordinates":[-75.134411956054208,39.971663978034449]},"properties":{"OBJECTID":1255,"FID":1255,"Lead__ppm":259,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1256,"geometry":{"type":"Point","coordinates":[-75.194053982375806,39.982471000983118]},"properties":{"OBJECTID":1256,"FID":1256,"Lead__ppm":259,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1257,"geometry":{"type":"Point","coordinates":[-75.22321401515056,39.94918501713277]},"properties":{"OBJECTID":1257,"FID":1257,"Lead__ppm":258,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1258,"geometry":{"type":"Point","coordinates":[-75.210631043471309,39.962504013147282]},"properties":{"OBJECTID":1258,"FID":1258,"Lead__ppm":258,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1259,"geometry":{"type":"Point","coordinates":[-75.109513980144968,40.019675970466558]},"properties":{"OBJECTID":1259,"FID":1259,"Lead__ppm":256,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1260,"geometry":{"type":"Point","coordinates":[-75.083503979745515,40.061268022512813]},"properties":{"OBJECTID":1260,"FID":1260,"Lead__ppm":255,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1261,"geometry":{"type":"Point","coordinates":[-75.110456043383437,39.980860023689388]},"properties":{"OBJECTID":1261,"FID":1261,"Lead__ppm":255,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1262,"geometry":{"type":"Point","coordinates":[-75.196938023595479,39.996676986589819]},"properties":{"OBJECTID":1262,"FID":1262,"Lead__ppm":255,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1263,"geometry":{"type":"Point","coordinates":[-75.167676032035985,40.036023032021745]},"properties":{"OBJECTID":1263,"FID":1263,"Lead__ppm":254,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1264,"geometry":{"type":"Point","coordinates":[-75.194053982375806,39.982471000983118]},"properties":{"OBJECTID":1264,"FID":1264,"Lead__ppm":252,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1265,"geometry":{"type":"Point","coordinates":[-75.125743033899397,39.983342966867149]},"properties":{"OBJECTID":1265,"FID":1265,"Lead__ppm":252,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1266,"geometry":{"type":"Point","coordinates":[-75.109513980144968,40.019675970466558]},"properties":{"OBJECTID":1266,"FID":1266,"Lead__ppm":250,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1267,"geometry":{"type":"Point","coordinates":[-75.224723005164819,39.95100002870538]},"properties":{"OBJECTID":1267,"FID":1267,"Lead__ppm":250,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1268,"geometry":{"type":"Point","coordinates":[-75.214203014535542,39.95304402831929]},"properties":{"OBJECTID":1268,"FID":1268,"Lead__ppm":250,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1269,"geometry":{"type":"Point","coordinates":[-75.140728998963667,39.961790970693954]},"properties":{"OBJECTID":1269,"FID":1269,"Lead__ppm":250,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1270,"geometry":{"type":"Point","coordinates":[-75.196727997482057,40.012980020322665]},"properties":{"OBJECTID":1270,"FID":1270,"Lead__ppm":250,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1271,"geometry":{"type":"Point","coordinates":[-75.1751589983527,40.038397022518893]},"properties":{"OBJECTID":1271,"FID":1271,"Lead__ppm":250,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1272,"geometry":{"type":"Point","coordinates":[-75.129654029151865,39.975981980807781]},"properties":{"OBJECTID":1272,"FID":1272,"Lead__ppm":250,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1273,"geometry":{"type":"Point","coordinates":[-75.190963957461506,40.037300032806783]},"properties":{"OBJECTID":1273,"FID":1273,"Lead__ppm":249,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1274,"geometry":{"type":"Point","coordinates":[-75.142228017678278,39.966666033194507]},"properties":{"OBJECTID":1274,"FID":1274,"Lead__ppm":246,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1275,"geometry":{"type":"Point","coordinates":[-75.124920985582889,39.984173967255629]},"properties":{"OBJECTID":1275,"FID":1275,"Lead__ppm":245,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1276,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":1276,"FID":1276,"Lead__ppm":242,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1277,"geometry":{"type":"Point","coordinates":[-75.216571961771308,39.942103973195614]},"properties":{"OBJECTID":1277,"FID":1277,"Lead__ppm":242,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1278,"geometry":{"type":"Point","coordinates":[-75.150270005596298,39.951476017091331]},"properties":{"OBJECTID":1278,"FID":1278,"Lead__ppm":240,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1279,"geometry":{"type":"Point","coordinates":[-75.191331997233391,39.962070033095927]},"properties":{"OBJECTID":1279,"FID":1279,"Lead__ppm":240,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1280,"geometry":{"type":"Point","coordinates":[-75.143996980135768,39.965816987906607]},"properties":{"OBJECTID":1280,"FID":1280,"Lead__ppm":240,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1281,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1281,"FID":1281,"Lead__ppm":240,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1282,"geometry":{"type":"Point","coordinates":[-75.129914001595083,39.98450896637587]},"properties":{"OBJECTID":1282,"FID":1282,"Lead__ppm":240,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1283,"geometry":{"type":"Point","coordinates":[-75.112664012520256,39.987503993384841]},"properties":{"OBJECTID":1283,"FID":1283,"Lead__ppm":240,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1284,"geometry":{"type":"Point","coordinates":[-75.129654029151865,39.975981980807781]},"properties":{"OBJECTID":1284,"FID":1284,"Lead__ppm":240,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1285,"geometry":{"type":"Point","coordinates":[-75.141500022972025,39.9659599879203]},"properties":{"OBJECTID":1285,"FID":1285,"Lead__ppm":240,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1286,"geometry":{"type":"Point","coordinates":[-75.074815025159864,39.996541001509506]},"properties":{"OBJECTID":1286,"FID":1286,"Lead__ppm":240,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1287,"geometry":{"type":"Point","coordinates":[-75.212672015796826,39.944777993961239]},"properties":{"OBJECTID":1287,"FID":1287,"Lead__ppm":239,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1288,"geometry":{"type":"Point","coordinates":[-75.196938023595479,39.996676986589819]},"properties":{"OBJECTID":1288,"FID":1288,"Lead__ppm":239,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1289,"geometry":{"type":"Point","coordinates":[-75.202174033892021,40.047211020924195]},"properties":{"OBJECTID":1289,"FID":1289,"Lead__ppm":238,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1290,"geometry":{"type":"Point","coordinates":[-75.12446302445106,39.979727966588975]},"properties":{"OBJECTID":1290,"FID":1290,"Lead__ppm":236,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1291,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1291,"FID":1291,"Lead__ppm":236,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1292,"geometry":{"type":"Point","coordinates":[-75.214403967664609,39.94729702619825]},"properties":{"OBJECTID":1292,"FID":1292,"Lead__ppm":235,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1293,"geometry":{"type":"Point","coordinates":[-75.125743033899397,39.983342966867149]},"properties":{"OBJECTID":1293,"FID":1293,"Lead__ppm":235,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1294,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":1294,"FID":1294,"Lead__ppm":235,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1295,"geometry":{"type":"Point","coordinates":[-75.196938023595479,39.996676986589819]},"properties":{"OBJECTID":1295,"FID":1295,"Lead__ppm":235,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1296,"geometry":{"type":"Point","coordinates":[-75.075150995076129,39.994095013103333]},"properties":{"OBJECTID":1296,"FID":1296,"Lead__ppm":234,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1297,"geometry":{"type":"Point","coordinates":[-75.217158022662673,39.949212012649376]},"properties":{"OBJECTID":1297,"FID":1297,"Lead__ppm":231,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1298,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1298,"FID":1298,"Lead__ppm":231,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1299,"geometry":{"type":"Point","coordinates":[-75.151656016248168,39.929446033311613]},"properties":{"OBJECTID":1299,"FID":1299,"Lead__ppm":230,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1300,"geometry":{"type":"Point","coordinates":[-75.221649958409373,39.946433966627161]},"properties":{"OBJECTID":1300,"FID":1300,"Lead__ppm":230,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1301,"geometry":{"type":"Point","coordinates":[-75.148154023944556,39.966394012129371]},"properties":{"OBJECTID":1301,"FID":1301,"Lead__ppm":230,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1302,"geometry":{"type":"Point","coordinates":[-75.138418981210549,39.974944016336039]},"properties":{"OBJECTID":1302,"FID":1302,"Lead__ppm":230,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1303,"geometry":{"type":"Point","coordinates":[-75.125927008869581,39.989440015681261]},"properties":{"OBJECTID":1303,"FID":1303,"Lead__ppm":230,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1304,"geometry":{"type":"Point","coordinates":[-75.224698031999921,40.025946975677527]},"properties":{"OBJECTID":1304,"FID":1304,"Lead__ppm":230,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1305,"geometry":{"type":"Point","coordinates":[-75.216571961771308,39.942103973195614]},"properties":{"OBJECTID":1305,"FID":1305,"Lead__ppm":230,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1306,"geometry":{"type":"Point","coordinates":[-75.202174033892021,40.047211020924195]},"properties":{"OBJECTID":1306,"FID":1306,"Lead__ppm":229,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1307,"geometry":{"type":"Point","coordinates":[-75.109513980144968,40.019675970466558]},"properties":{"OBJECTID":1307,"FID":1307,"Lead__ppm":229,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1308,"geometry":{"type":"Point","coordinates":[-75.22048403500213,39.952026030217219]},"properties":{"OBJECTID":1308,"FID":1308,"Lead__ppm":228,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1309,"geometry":{"type":"Point","coordinates":[-75.194053982375806,39.982471000983118]},"properties":{"OBJECTID":1309,"FID":1309,"Lead__ppm":228,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1310,"geometry":{"type":"Point","coordinates":[-75.166134972166063,40.035363029136668]},"properties":{"OBJECTID":1310,"FID":1310,"Lead__ppm":227,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1311,"geometry":{"type":"Point","coordinates":[-75.213111022476198,40.057359980940298]},"properties":{"OBJECTID":1311,"FID":1311,"Lead__ppm":226,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1312,"geometry":{"type":"Point","coordinates":[-75.165335022405557,40.024050992790237]},"properties":{"OBJECTID":1312,"FID":1312,"Lead__ppm":226,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1313,"geometry":{"type":"Point","coordinates":[-75.109513980144968,40.019675970466558]},"properties":{"OBJECTID":1313,"FID":1313,"Lead__ppm":225,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1314,"geometry":{"type":"Point","coordinates":[-75.167676032035985,40.036023032021745]},"properties":{"OBJECTID":1314,"FID":1314,"Lead__ppm":224,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1315,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1315,"FID":1315,"Lead__ppm":222,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1316,"geometry":{"type":"Point","coordinates":[-75.210631043471309,39.962504013147282]},"properties":{"OBJECTID":1316,"FID":1316,"Lead__ppm":222,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1317,"geometry":{"type":"Point","coordinates":[-75.130542013810228,39.980790019243123]},"properties":{"OBJECTID":1317,"FID":1317,"Lead__ppm":221,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1318,"geometry":{"type":"Point","coordinates":[-75.188512994040309,40.035000011071261]},"properties":{"OBJECTID":1318,"FID":1318,"Lead__ppm":220,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1319,"geometry":{"type":"Point","coordinates":[-75.218423030245759,39.952502975542373]},"properties":{"OBJECTID":1319,"FID":1319,"Lead__ppm":220,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1320,"geometry":{"type":"Point","coordinates":[-75.200591022698347,40.050966989587842]},"properties":{"OBJECTID":1320,"FID":1320,"Lead__ppm":220,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1321,"geometry":{"type":"Point","coordinates":[-75.140576015870778,39.972599003943664]},"properties":{"OBJECTID":1321,"FID":1321,"Lead__ppm":220,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1322,"geometry":{"type":"Point","coordinates":[-75.157101962826616,40.00522299546077]},"properties":{"OBJECTID":1322,"FID":1322,"Lead__ppm":220,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1323,"geometry":{"type":"Point","coordinates":[-75.252036011883902,39.969568005793334]},"properties":{"OBJECTID":1323,"FID":1323,"Lead__ppm":219,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1324,"geometry":{"type":"Point","coordinates":[-75.190963957461506,40.037300032806783]},"properties":{"OBJECTID":1324,"FID":1324,"Lead__ppm":218,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1325,"geometry":{"type":"Point","coordinates":[-75.182512966594615,39.976245014664826]},"properties":{"OBJECTID":1325,"FID":1325,"Lead__ppm":218,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1326,"geometry":{"type":"Point","coordinates":[-75.109513980144968,40.019675970466558]},"properties":{"OBJECTID":1326,"FID":1326,"Lead__ppm":217,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1327,"geometry":{"type":"Point","coordinates":[-75.194053982375806,39.982471000983118]},"properties":{"OBJECTID":1327,"FID":1327,"Lead__ppm":216,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1328,"geometry":{"type":"Point","coordinates":[-75.165335022405557,40.024050992790237]},"properties":{"OBJECTID":1328,"FID":1328,"Lead__ppm":215,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1329,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1329,"FID":1329,"Lead__ppm":215,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1330,"geometry":{"type":"Point","coordinates":[-75.212259958575999,39.946494984442545]},"properties":{"OBJECTID":1330,"FID":1330,"Lead__ppm":215,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1331,"geometry":{"type":"Point","coordinates":[-75.109513980144968,40.019675970466558]},"properties":{"OBJECTID":1331,"FID":1331,"Lead__ppm":214,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1332,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1332,"FID":1332,"Lead__ppm":213,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1333,"geometry":{"type":"Point","coordinates":[-75.165335022405557,40.024050992790237]},"properties":{"OBJECTID":1333,"FID":1333,"Lead__ppm":212,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1334,"geometry":{"type":"Point","coordinates":[-75.194053982375806,39.982471000983118]},"properties":{"OBJECTID":1334,"FID":1334,"Lead__ppm":211,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1335,"geometry":{"type":"Point","coordinates":[-75.210631043471309,39.962504013147282]},"properties":{"OBJECTID":1335,"FID":1335,"Lead__ppm":210,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1336,"geometry":{"type":"Point","coordinates":[-75.165017018794984,40.025799010836714]},"properties":{"OBJECTID":1336,"FID":1336,"Lead__ppm":210,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1337,"geometry":{"type":"Point","coordinates":[-75.159190995019827,39.924596011908491]},"properties":{"OBJECTID":1337,"FID":1337,"Lead__ppm":210,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1338,"geometry":{"type":"Point","coordinates":[-75.156404959997673,39.945889004876001]},"properties":{"OBJECTID":1338,"FID":1338,"Lead__ppm":210,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1339,"geometry":{"type":"Point","coordinates":[-75.139477016952185,39.97000400360514]},"properties":{"OBJECTID":1339,"FID":1339,"Lead__ppm":210,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1340,"geometry":{"type":"Point","coordinates":[-75.15973600290269,39.985694975331086]},"properties":{"OBJECTID":1340,"FID":1340,"Lead__ppm":210,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1341,"geometry":{"type":"Point","coordinates":[-75.099560017976216,40.046089966519659]},"properties":{"OBJECTID":1341,"FID":1341,"Lead__ppm":210,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1342,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":1342,"FID":1342,"Lead__ppm":210,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1343,"geometry":{"type":"Point","coordinates":[-75.188512994040309,40.035000011071261]},"properties":{"OBJECTID":1343,"FID":1343,"Lead__ppm":209,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1344,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1344,"FID":1344,"Lead__ppm":208,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1345,"geometry":{"type":"Point","coordinates":[-75.216825017186849,39.950010028363245]},"properties":{"OBJECTID":1345,"FID":1345,"Lead__ppm":208,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1346,"geometry":{"type":"Point","coordinates":[-75.073503035687423,39.997215005877045]},"properties":{"OBJECTID":1346,"FID":1346,"Lead__ppm":208,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1347,"geometry":{"type":"Point","coordinates":[-75.213111022476198,40.057359980940298]},"properties":{"OBJECTID":1347,"FID":1347,"Lead__ppm":208,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1348,"geometry":{"type":"Point","coordinates":[-75.133132036437388,39.974613995678133]},"properties":{"OBJECTID":1348,"FID":1348,"Lead__ppm":208,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1349,"geometry":{"type":"Point","coordinates":[-75.252036011883902,39.969568005793334]},"properties":{"OBJECTID":1349,"FID":1349,"Lead__ppm":205,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1350,"geometry":{"type":"Point","coordinates":[-75.130542013810228,39.980790019243123]},"properties":{"OBJECTID":1350,"FID":1350,"Lead__ppm":205,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1351,"geometry":{"type":"Point","coordinates":[-75.216571961771308,39.942103973195614]},"properties":{"OBJECTID":1351,"FID":1351,"Lead__ppm":205,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1352,"geometry":{"type":"Point","coordinates":[-75.161411989728293,40.007376016370188]},"properties":{"OBJECTID":1352,"FID":1352,"Lead__ppm":203,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1353,"geometry":{"type":"Point","coordinates":[-75.213111022476198,40.057359980940298]},"properties":{"OBJECTID":1353,"FID":1353,"Lead__ppm":203,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1354,"geometry":{"type":"Point","coordinates":[-75.215090011047081,39.948914028384955]},"properties":{"OBJECTID":1354,"FID":1354,"Lead__ppm":202,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1355,"geometry":{"type":"Point","coordinates":[-75.230559000239637,40.067099965784436]},"properties":{"OBJECTID":1355,"FID":1355,"Lead__ppm":202,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1356,"geometry":{"type":"Point","coordinates":[-75.168666963625896,39.967072031743349]},"properties":{"OBJECTID":1356,"FID":1356,"Lead__ppm":200,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1357,"geometry":{"type":"Point","coordinates":[-75.135400013035223,39.968785020268832]},"properties":{"OBJECTID":1357,"FID":1357,"Lead__ppm":200,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1358,"geometry":{"type":"Point","coordinates":[-75.123751019756867,39.975449026089017]},"properties":{"OBJECTID":1358,"FID":1358,"Lead__ppm":200,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1359,"geometry":{"type":"Point","coordinates":[-75.131013000513676,39.985393020272035]},"properties":{"OBJECTID":1359,"FID":1359,"Lead__ppm":200,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1360,"geometry":{"type":"Point","coordinates":[-75.146347961065828,39.980371023579984]},"properties":{"OBJECTID":1360,"FID":1360,"Lead__ppm":200,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1361,"geometry":{"type":"Point","coordinates":[-75.194053982375806,39.982471000983118]},"properties":{"OBJECTID":1361,"FID":1361,"Lead__ppm":200,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1362,"geometry":{"type":"Point","coordinates":[-75.110165977378188,39.988781971099954]},"properties":{"OBJECTID":1362,"FID":1362,"Lead__ppm":200,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1363,"geometry":{"type":"Point","coordinates":[-75.166366018857147,40.022250028532397]},"properties":{"OBJECTID":1363,"FID":1363,"Lead__ppm":199,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1364,"geometry":{"type":"Point","coordinates":[-75.210631043471309,39.962504013147282]},"properties":{"OBJECTID":1364,"FID":1364,"Lead__ppm":199,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1365,"geometry":{"type":"Point","coordinates":[-75.216571961771308,39.942103973195614]},"properties":{"OBJECTID":1365,"FID":1365,"Lead__ppm":199,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1366,"geometry":{"type":"Point","coordinates":[-75.196938023595479,39.996676986589819]},"properties":{"OBJECTID":1366,"FID":1366,"Lead__ppm":198,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1367,"geometry":{"type":"Point","coordinates":[-75.182679963405946,39.983450000119056]},"properties":{"OBJECTID":1367,"FID":1367,"Lead__ppm":197,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1368,"geometry":{"type":"Point","coordinates":[-75.188512994040309,40.035000011071261]},"properties":{"OBJECTID":1368,"FID":1368,"Lead__ppm":197,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1369,"geometry":{"type":"Point","coordinates":[-75.213111022476198,40.057359980940298]},"properties":{"OBJECTID":1369,"FID":1369,"Lead__ppm":196,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1370,"geometry":{"type":"Point","coordinates":[-75.202174033892021,40.047211020924195]},"properties":{"OBJECTID":1370,"FID":1370,"Lead__ppm":195,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1371,"geometry":{"type":"Point","coordinates":[-75.157551030637137,39.961845020618959]},"properties":{"OBJECTID":1371,"FID":1371,"Lead__ppm":195,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1372,"geometry":{"type":"Point","coordinates":[-75.091053960382425,40.012843998909581]},"properties":{"OBJECTID":1372,"FID":1372,"Lead__ppm":195,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1373,"geometry":{"type":"Point","coordinates":[-75.213111022476198,40.057359980940298]},"properties":{"OBJECTID":1373,"FID":1373,"Lead__ppm":195,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1374,"geometry":{"type":"Point","coordinates":[-75.202477035637358,39.969512034295406]},"properties":{"OBJECTID":1374,"FID":1374,"Lead__ppm":194,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1375,"geometry":{"type":"Point","coordinates":[-75.124111962838029,39.985119008838851]},"properties":{"OBJECTID":1375,"FID":1375,"Lead__ppm":194,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1376,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1376,"FID":1376,"Lead__ppm":194,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1377,"geometry":{"type":"Point","coordinates":[-75.215090999193919,39.948818992686689]},"properties":{"OBJECTID":1377,"FID":1377,"Lead__ppm":194,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1378,"geometry":{"type":"Point","coordinates":[-75.188459993438542,40.01407698836514]},"properties":{"OBJECTID":1378,"FID":1378,"Lead__ppm":193,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1379,"geometry":{"type":"Point","coordinates":[-75.194053982375806,39.982471000983118]},"properties":{"OBJECTID":1379,"FID":1379,"Lead__ppm":193,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1380,"geometry":{"type":"Point","coordinates":[-75.202174033892021,40.047211020924195]},"properties":{"OBJECTID":1380,"FID":1380,"Lead__ppm":192,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1381,"geometry":{"type":"Point","coordinates":[-75.125487014043429,39.984880030876582]},"properties":{"OBJECTID":1381,"FID":1381,"Lead__ppm":191,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1382,"geometry":{"type":"Point","coordinates":[-75.187883993678369,39.934639013722474]},"properties":{"OBJECTID":1382,"FID":1382,"Lead__ppm":190,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1383,"geometry":{"type":"Point","coordinates":[-75.173124044739581,39.95041798516479]},"properties":{"OBJECTID":1383,"FID":1383,"Lead__ppm":190,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1384,"geometry":{"type":"Point","coordinates":[-75.216353042336564,39.952295973691598]},"properties":{"OBJECTID":1384,"FID":1384,"Lead__ppm":190,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1385,"geometry":{"type":"Point","coordinates":[-75.142908042348353,39.963407010565291]},"properties":{"OBJECTID":1385,"FID":1385,"Lead__ppm":190,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1386,"geometry":{"type":"Point","coordinates":[-75.143411997222742,39.965416971835666]},"properties":{"OBJECTID":1386,"FID":1386,"Lead__ppm":190,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1387,"geometry":{"type":"Point","coordinates":[-75.138538007985687,39.969373998609434]},"properties":{"OBJECTID":1387,"FID":1387,"Lead__ppm":190,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1388,"geometry":{"type":"Point","coordinates":[-75.125066961816557,39.980322976927731]},"properties":{"OBJECTID":1388,"FID":1388,"Lead__ppm":190,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1389,"geometry":{"type":"Point","coordinates":[-75.127874017416389,39.98549798542566]},"properties":{"OBJECTID":1389,"FID":1389,"Lead__ppm":190,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1390,"geometry":{"type":"Point","coordinates":[-75.205521965124404,39.961251983881596]},"properties":{"OBJECTID":1390,"FID":1390,"Lead__ppm":190,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1391,"geometry":{"type":"Point","coordinates":[-75.229847983692252,39.977054968097477]},"properties":{"OBJECTID":1391,"FID":1391,"Lead__ppm":190,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1392,"geometry":{"type":"Point","coordinates":[-75.196938023595479,39.996676986589819]},"properties":{"OBJECTID":1392,"FID":1392,"Lead__ppm":190,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1393,"geometry":{"type":"Point","coordinates":[-75.212672015796826,39.944777993961239]},"properties":{"OBJECTID":1393,"FID":1393,"Lead__ppm":189,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1394,"geometry":{"type":"Point","coordinates":[-75.129700022894411,39.981878969177089]},"properties":{"OBJECTID":1394,"FID":1394,"Lead__ppm":189,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1395,"geometry":{"type":"Point","coordinates":[-75.216571961771308,39.942103973195614]},"properties":{"OBJECTID":1395,"FID":1395,"Lead__ppm":189,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1396,"geometry":{"type":"Point","coordinates":[-75.208783029268815,39.947418027216443]},"properties":{"OBJECTID":1396,"FID":1396,"Lead__ppm":188,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1397,"geometry":{"type":"Point","coordinates":[-75.123260988769374,39.983220033291772]},"properties":{"OBJECTID":1397,"FID":1397,"Lead__ppm":188,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1398,"geometry":{"type":"Point","coordinates":[-75.216571961771308,39.942103973195614]},"properties":{"OBJECTID":1398,"FID":1398,"Lead__ppm":188,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1399,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":1399,"FID":1399,"Lead__ppm":184,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1400,"geometry":{"type":"Point","coordinates":[-75.208247004538777,39.967013992756463]},"properties":{"OBJECTID":1400,"FID":1400,"Lead__ppm":181,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1401,"geometry":{"type":"Point","coordinates":[-75.216571961771308,39.942103973195614]},"properties":{"OBJECTID":1401,"FID":1401,"Lead__ppm":180,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1402,"geometry":{"type":"Point","coordinates":[-75.159371017402776,39.923783990342933]},"properties":{"OBJECTID":1402,"FID":1402,"Lead__ppm":180,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1403,"geometry":{"type":"Point","coordinates":[-75.181113032055848,39.949454007697312]},"properties":{"OBJECTID":1403,"FID":1403,"Lead__ppm":180,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1404,"geometry":{"type":"Point","coordinates":[-75.201026975105734,39.951445028364923]},"properties":{"OBJECTID":1404,"FID":1404,"Lead__ppm":180,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1405,"geometry":{"type":"Point","coordinates":[-75.207329016149941,40.015060969659899]},"properties":{"OBJECTID":1405,"FID":1405,"Lead__ppm":180,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1406,"geometry":{"type":"Point","coordinates":[-75.143602979052147,39.967873006038822]},"properties":{"OBJECTID":1406,"FID":1406,"Lead__ppm":180,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1407,"geometry":{"type":"Point","coordinates":[-75.190963957461506,40.037300032806783]},"properties":{"OBJECTID":1407,"FID":1407,"Lead__ppm":180,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1408,"geometry":{"type":"Point","coordinates":[-75.202174033892021,40.047211020924195]},"properties":{"OBJECTID":1408,"FID":1408,"Lead__ppm":179,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1409,"geometry":{"type":"Point","coordinates":[-75.194053982375806,39.982471000983118]},"properties":{"OBJECTID":1409,"FID":1409,"Lead__ppm":178,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1410,"geometry":{"type":"Point","coordinates":[-75.133823020553933,39.974777973600951]},"properties":{"OBJECTID":1410,"FID":1410,"Lead__ppm":178,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1411,"geometry":{"type":"Point","coordinates":[-75.161411989728293,40.007376016370188]},"properties":{"OBJECTID":1411,"FID":1411,"Lead__ppm":176,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1412,"geometry":{"type":"Point","coordinates":[-75.202174033892021,40.047211020924195]},"properties":{"OBJECTID":1412,"FID":1412,"Lead__ppm":175,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1413,"geometry":{"type":"Point","coordinates":[-75.107339967325871,39.989627978093402]},"properties":{"OBJECTID":1413,"FID":1413,"Lead__ppm":174,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1414,"geometry":{"type":"Point","coordinates":[-75.194053982375806,39.982471000983118]},"properties":{"OBJECTID":1414,"FID":1414,"Lead__ppm":173,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1415,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1415,"FID":1415,"Lead__ppm":171,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1416,"geometry":{"type":"Point","coordinates":[-75.252036011883902,39.969568005793334]},"properties":{"OBJECTID":1416,"FID":1416,"Lead__ppm":171,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1417,"geometry":{"type":"Point","coordinates":[-75.216571961771308,39.942103973195614]},"properties":{"OBJECTID":1417,"FID":1417,"Lead__ppm":171,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1418,"geometry":{"type":"Point","coordinates":[-75.216571961771308,39.942103973195614]},"properties":{"OBJECTID":1418,"FID":1418,"Lead__ppm":171,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1419,"geometry":{"type":"Point","coordinates":[-75.194053982375806,39.982471000983118]},"properties":{"OBJECTID":1419,"FID":1419,"Lead__ppm":170,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1420,"geometry":{"type":"Point","coordinates":[-75.145563013170573,39.934444976320954]},"properties":{"OBJECTID":1420,"FID":1420,"Lead__ppm":170,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1421,"geometry":{"type":"Point","coordinates":[-75.213931992814324,39.945866966649895]},"properties":{"OBJECTID":1421,"FID":1421,"Lead__ppm":170,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1422,"geometry":{"type":"Point","coordinates":[-75.138538007985687,39.969373998609434]},"properties":{"OBJECTID":1422,"FID":1422,"Lead__ppm":170,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1423,"geometry":{"type":"Point","coordinates":[-75.127332962120747,39.971771993387627]},"properties":{"OBJECTID":1423,"FID":1423,"Lead__ppm":170,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1424,"geometry":{"type":"Point","coordinates":[-75.121561016925696,39.978517004047973]},"properties":{"OBJECTID":1424,"FID":1424,"Lead__ppm":170,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1425,"geometry":{"type":"Point","coordinates":[-75.139515015688701,40.047045016361878]},"properties":{"OBJECTID":1425,"FID":1425,"Lead__ppm":170,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1426,"geometry":{"type":"Point","coordinates":[-75.214004037700121,39.94777799881507]},"properties":{"OBJECTID":1426,"FID":1426,"Lead__ppm":170,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1427,"geometry":{"type":"Point","coordinates":[-75.129664000451513,39.981929010896692]},"properties":{"OBJECTID":1427,"FID":1427,"Lead__ppm":170,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1428,"geometry":{"type":"Point","coordinates":[-75.15161496323968,39.982533019132632]},"properties":{"OBJECTID":1428,"FID":1428,"Lead__ppm":170,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1429,"geometry":{"type":"Point","coordinates":[-75.210631043471309,39.962504013147282]},"properties":{"OBJECTID":1429,"FID":1429,"Lead__ppm":170,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1430,"geometry":{"type":"Point","coordinates":[-75.207226967533671,39.949707984504762]},"properties":{"OBJECTID":1430,"FID":1430,"Lead__ppm":169,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1431,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1431,"FID":1431,"Lead__ppm":168,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1432,"geometry":{"type":"Point","coordinates":[-75.167676032035985,40.036023032021745]},"properties":{"OBJECTID":1432,"FID":1432,"Lead__ppm":167,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1433,"geometry":{"type":"Point","coordinates":[-75.109513980144968,40.019675970466558]},"properties":{"OBJECTID":1433,"FID":1433,"Lead__ppm":166,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1434,"geometry":{"type":"Point","coordinates":[-75.208247004538777,39.967013992756463]},"properties":{"OBJECTID":1434,"FID":1434,"Lead__ppm":166,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1435,"geometry":{"type":"Point","coordinates":[-75.161403006575441,39.985353030226804]},"properties":{"OBJECTID":1435,"FID":1435,"Lead__ppm":166,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1436,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1436,"FID":1436,"Lead__ppm":165,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1437,"geometry":{"type":"Point","coordinates":[-75.216571961771308,39.942103973195614]},"properties":{"OBJECTID":1437,"FID":1437,"Lead__ppm":164,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1438,"geometry":{"type":"Point","coordinates":[-75.225525021050487,39.941835986833553]},"properties":{"OBJECTID":1438,"FID":1438,"Lead__ppm":164,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1439,"geometry":{"type":"Point","coordinates":[-75.069986041518547,40.03900699618562]},"properties":{"OBJECTID":1439,"FID":1439,"Lead__ppm":164,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1440,"geometry":{"type":"Point","coordinates":[-75.165335022405557,40.024050992790237]},"properties":{"OBJECTID":1440,"FID":1440,"Lead__ppm":163,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1441,"geometry":{"type":"Point","coordinates":[-75.190567980084253,40.033195002636944]},"properties":{"OBJECTID":1441,"FID":1441,"Lead__ppm":162,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1442,"geometry":{"type":"Point","coordinates":[-75.202477035637358,39.969512034295406]},"properties":{"OBJECTID":1442,"FID":1442,"Lead__ppm":162,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1443,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1443,"FID":1443,"Lead__ppm":162,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1444,"geometry":{"type":"Point","coordinates":[-75.202174033892021,40.047211020924195]},"properties":{"OBJECTID":1444,"FID":1444,"Lead__ppm":161,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1445,"geometry":{"type":"Point","coordinates":[-75.202739972521016,39.965719979060644]},"properties":{"OBJECTID":1445,"FID":1445,"Lead__ppm":161,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1446,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":1446,"FID":1446,"Lead__ppm":160,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1447,"geometry":{"type":"Point","coordinates":[-75.181113032055848,39.949454007697312]},"properties":{"OBJECTID":1447,"FID":1447,"Lead__ppm":160,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1448,"geometry":{"type":"Point","coordinates":[-75.219076015625802,39.949413996622944]},"properties":{"OBJECTID":1448,"FID":1448,"Lead__ppm":160,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1449,"geometry":{"type":"Point","coordinates":[-75.145245009559986,39.952291979637771]},"properties":{"OBJECTID":1449,"FID":1449,"Lead__ppm":160,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1450,"geometry":{"type":"Point","coordinates":[-75.144558966177499,39.963750029409667]},"properties":{"OBJECTID":1450,"FID":1450,"Lead__ppm":160,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1451,"geometry":{"type":"Point","coordinates":[-75.165786964825017,39.965740014255886]},"properties":{"OBJECTID":1451,"FID":1451,"Lead__ppm":160,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1452,"geometry":{"type":"Point","coordinates":[-75.129314016816835,39.976797995130369]},"properties":{"OBJECTID":1452,"FID":1452,"Lead__ppm":160,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1453,"geometry":{"type":"Point","coordinates":[-75.141500022972025,39.9659599879203]},"properties":{"OBJECTID":1453,"FID":1453,"Lead__ppm":160,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1454,"geometry":{"type":"Point","coordinates":[-75.139069990296946,39.986499998754368]},"properties":{"OBJECTID":1454,"FID":1454,"Lead__ppm":160,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1455,"geometry":{"type":"Point","coordinates":[-75.113316997900284,39.984892970948955]},"properties":{"OBJECTID":1455,"FID":1455,"Lead__ppm":160,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1456,"geometry":{"type":"Point","coordinates":[-75.252036011883902,39.969568005793334]},"properties":{"OBJECTID":1456,"FID":1456,"Lead__ppm":159,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1457,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1457,"FID":1457,"Lead__ppm":159,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1458,"geometry":{"type":"Point","coordinates":[-75.189582977375224,39.958778015711978]},"properties":{"OBJECTID":1458,"FID":1458,"Lead__ppm":159,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1459,"geometry":{"type":"Point","coordinates":[-75.165335022405557,40.024050992790237]},"properties":{"OBJECTID":1459,"FID":1459,"Lead__ppm":158,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1460,"geometry":{"type":"Point","coordinates":[-75.131753032644752,39.982166966687579]},"properties":{"OBJECTID":1460,"FID":1460,"Lead__ppm":156,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1461,"geometry":{"type":"Point","coordinates":[-75.090024041909174,40.029218973427227]},"properties":{"OBJECTID":1461,"FID":1461,"Lead__ppm":156,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1462,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":1462,"FID":1462,"Lead__ppm":155,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1463,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":1463,"FID":1463,"Lead__ppm":155,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1464,"geometry":{"type":"Point","coordinates":[-75.216571961771308,39.942103973195614]},"properties":{"OBJECTID":1464,"FID":1464,"Lead__ppm":155,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1465,"geometry":{"type":"Point","coordinates":[-75.216571961771308,39.942103973195614]},"properties":{"OBJECTID":1465,"FID":1465,"Lead__ppm":154,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1466,"geometry":{"type":"Point","coordinates":[-75.216571961771308,39.942103973195614]},"properties":{"OBJECTID":1466,"FID":1466,"Lead__ppm":154,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1467,"geometry":{"type":"Point","coordinates":[-75.190567980084253,40.033195002636944]},"properties":{"OBJECTID":1467,"FID":1467,"Lead__ppm":153,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1468,"geometry":{"type":"Point","coordinates":[-75.195612020404582,40.05279002448404]},"properties":{"OBJECTID":1468,"FID":1468,"Lead__ppm":152,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1469,"geometry":{"type":"Point","coordinates":[-75.196938023595479,39.996676986589819]},"properties":{"OBJECTID":1469,"FID":1469,"Lead__ppm":152,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1470,"geometry":{"type":"Point","coordinates":[-75.109513980144968,40.019675970466558]},"properties":{"OBJECTID":1470,"FID":1470,"Lead__ppm":151,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1471,"geometry":{"type":"Point","coordinates":[-75.165612961154466,39.956469976785598]},"properties":{"OBJECTID":1471,"FID":1471,"Lead__ppm":150,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1472,"geometry":{"type":"Point","coordinates":[-75.143816957752819,39.96156299659112]},"properties":{"OBJECTID":1472,"FID":1472,"Lead__ppm":150,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1473,"geometry":{"type":"Point","coordinates":[-75.16747597722221,39.966565032333087]},"properties":{"OBJECTID":1473,"FID":1473,"Lead__ppm":150,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1474,"geometry":{"type":"Point","coordinates":[-75.131309983546615,39.971737984748003]},"properties":{"OBJECTID":1474,"FID":1474,"Lead__ppm":150,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1475,"geometry":{"type":"Point","coordinates":[-75.12094396415705,39.981631031533453]},"properties":{"OBJECTID":1475,"FID":1475,"Lead__ppm":150,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1476,"geometry":{"type":"Point","coordinates":[-75.130199037034743,39.984237979953299]},"properties":{"OBJECTID":1476,"FID":1476,"Lead__ppm":150,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1477,"geometry":{"type":"Point","coordinates":[-75.127874017416389,39.98549798542566]},"properties":{"OBJECTID":1477,"FID":1477,"Lead__ppm":150,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1478,"geometry":{"type":"Point","coordinates":[-75.222001020022404,40.03084696891441]},"properties":{"OBJECTID":1478,"FID":1478,"Lead__ppm":150,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1479,"geometry":{"type":"Point","coordinates":[-75.118243987739106,39.979730995345122]},"properties":{"OBJECTID":1479,"FID":1479,"Lead__ppm":150,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1480,"geometry":{"type":"Point","coordinates":[-75.194053982375806,39.982471000983118]},"properties":{"OBJECTID":1480,"FID":1480,"Lead__ppm":150,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1481,"geometry":{"type":"Point","coordinates":[-75.196938023595479,39.996676986589819]},"properties":{"OBJECTID":1481,"FID":1481,"Lead__ppm":149,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1482,"geometry":{"type":"Point","coordinates":[-75.194053982375806,39.982471000983118]},"properties":{"OBJECTID":1482,"FID":1482,"Lead__ppm":149,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1483,"geometry":{"type":"Point","coordinates":[-75.18797696931027,40.052018995043326]},"properties":{"OBJECTID":1483,"FID":1483,"Lead__ppm":149,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1484,"geometry":{"type":"Point","coordinates":[-75.214004037700121,39.94777799881507]},"properties":{"OBJECTID":1484,"FID":1484,"Lead__ppm":149,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1485,"geometry":{"type":"Point","coordinates":[-75.177707967971386,40.039229966368232]},"properties":{"OBJECTID":1485,"FID":1485,"Lead__ppm":149,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1486,"geometry":{"type":"Point","coordinates":[-75.161411989728293,40.007376016370188]},"properties":{"OBJECTID":1486,"FID":1486,"Lead__ppm":148,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1487,"geometry":{"type":"Point","coordinates":[-75.124111962838029,39.985119008838851]},"properties":{"OBJECTID":1487,"FID":1487,"Lead__ppm":148,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1488,"geometry":{"type":"Point","coordinates":[-75.070504998258201,40.001718015676097]},"properties":{"OBJECTID":1488,"FID":1488,"Lead__ppm":148,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1489,"geometry":{"type":"Point","coordinates":[-75.194053982375806,39.982471000983118]},"properties":{"OBJECTID":1489,"FID":1489,"Lead__ppm":148,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1490,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":1490,"FID":1490,"Lead__ppm":148,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1491,"geometry":{"type":"Point","coordinates":[-75.131343041549059,39.977604018271165]},"properties":{"OBJECTID":1491,"FID":1491,"Lead__ppm":147,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1492,"geometry":{"type":"Point","coordinates":[-75.155004037312082,39.922920014174643]},"properties":{"OBJECTID":1492,"FID":1492,"Lead__ppm":147,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1493,"geometry":{"type":"Point","coordinates":[-75.124111962838029,39.985119008838851]},"properties":{"OBJECTID":1493,"FID":1493,"Lead__ppm":147,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1494,"geometry":{"type":"Point","coordinates":[-75.213111022476198,40.057359980940298]},"properties":{"OBJECTID":1494,"FID":1494,"Lead__ppm":146,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1495,"geometry":{"type":"Point","coordinates":[-75.111173976958497,39.981667031419263]},"properties":{"OBJECTID":1495,"FID":1495,"Lead__ppm":146,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1496,"geometry":{"type":"Point","coordinates":[-75.155004037312082,39.922920014174643]},"properties":{"OBJECTID":1496,"FID":1496,"Lead__ppm":145,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1497,"geometry":{"type":"Point","coordinates":[-75.169323003277881,40.032404974007981]},"properties":{"OBJECTID":1497,"FID":1497,"Lead__ppm":144,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1498,"geometry":{"type":"Point","coordinates":[-75.166276995812495,40.00176301950173]},"properties":{"OBJECTID":1498,"FID":1498,"Lead__ppm":144,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1499,"geometry":{"type":"Point","coordinates":[-75.200048979255911,40.044167998185564]},"properties":{"OBJECTID":1499,"FID":1499,"Lead__ppm":143,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1500,"geometry":{"type":"Point","coordinates":[-75.230559000239637,40.067099965784436]},"properties":{"OBJECTID":1500,"FID":1500,"Lead__ppm":143,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1501,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":1501,"FID":1501,"Lead__ppm":143,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1502,"geometry":{"type":"Point","coordinates":[-75.202174033892021,40.047211020924195]},"properties":{"OBJECTID":1502,"FID":1502,"Lead__ppm":142,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1503,"geometry":{"type":"Point","coordinates":[-75.135030985116501,40.050933983075154]},"properties":{"OBJECTID":1503,"FID":1503,"Lead__ppm":142,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1504,"geometry":{"type":"Point","coordinates":[-75.165335022405557,40.024050992790237]},"properties":{"OBJECTID":1504,"FID":1504,"Lead__ppm":142,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1505,"geometry":{"type":"Point","coordinates":[-75.199116977148634,40.043358015481793]},"properties":{"OBJECTID":1505,"FID":1505,"Lead__ppm":141,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1506,"geometry":{"type":"Point","coordinates":[-75.210631043471309,39.962504013147282]},"properties":{"OBJECTID":1506,"FID":1506,"Lead__ppm":141,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1507,"geometry":{"type":"Point","coordinates":[-75.22117600726547,39.953430000097711]},"properties":{"OBJECTID":1507,"FID":1507,"Lead__ppm":141,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1508,"geometry":{"type":"Point","coordinates":[-75.202174033892021,40.047211020924195]},"properties":{"OBJECTID":1508,"FID":1508,"Lead__ppm":141,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1509,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":1509,"FID":1509,"Lead__ppm":141,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1510,"geometry":{"type":"Point","coordinates":[-75.202174033892021,40.047211020924195]},"properties":{"OBJECTID":1510,"FID":1510,"Lead__ppm":141,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1511,"geometry":{"type":"Point","coordinates":[-75.159371017402776,39.923783990342933]},"properties":{"OBJECTID":1511,"FID":1511,"Lead__ppm":140,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1512,"geometry":{"type":"Point","coordinates":[-75.148686006255815,39.936482995949348]},"properties":{"OBJECTID":1512,"FID":1512,"Lead__ppm":140,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1513,"geometry":{"type":"Point","coordinates":[-75.156793032200397,39.958971984109482]},"properties":{"OBJECTID":1513,"FID":1513,"Lead__ppm":140,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1514,"geometry":{"type":"Point","coordinates":[-75.1414139643678,39.966466991817718]},"properties":{"OBJECTID":1514,"FID":1514,"Lead__ppm":140,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1515,"geometry":{"type":"Point","coordinates":[-75.079161972819719,40.074967018091257]},"properties":{"OBJECTID":1515,"FID":1515,"Lead__ppm":140,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1516,"geometry":{"type":"Point","coordinates":[-75.214004037700121,39.94777799881507]},"properties":{"OBJECTID":1516,"FID":1516,"Lead__ppm":139,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1517,"geometry":{"type":"Point","coordinates":[-75.069822997294494,40.07889700729195]},"properties":{"OBJECTID":1517,"FID":1517,"Lead__ppm":139,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1518,"geometry":{"type":"Point","coordinates":[-75.216571961771308,39.942103973195614]},"properties":{"OBJECTID":1518,"FID":1518,"Lead__ppm":138,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1519,"geometry":{"type":"Point","coordinates":[-75.252036011883902,39.969568005793334]},"properties":{"OBJECTID":1519,"FID":1519,"Lead__ppm":138,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1520,"geometry":{"type":"Point","coordinates":[-75.213111022476198,40.057359980940298]},"properties":{"OBJECTID":1520,"FID":1520,"Lead__ppm":138,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1521,"geometry":{"type":"Point","coordinates":[-75.216571961771308,39.942103973195614]},"properties":{"OBJECTID":1521,"FID":1521,"Lead__ppm":137,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1522,"geometry":{"type":"Point","coordinates":[-75.161411989728293,40.007376016370188]},"properties":{"OBJECTID":1522,"FID":1522,"Lead__ppm":137,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1523,"geometry":{"type":"Point","coordinates":[-75.252036011883902,39.969568005793334]},"properties":{"OBJECTID":1523,"FID":1523,"Lead__ppm":136,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1524,"geometry":{"type":"Point","coordinates":[-75.177900027779145,39.931704010104511]},"properties":{"OBJECTID":1524,"FID":1524,"Lead__ppm":136,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1525,"geometry":{"type":"Point","coordinates":[-75.190567980084253,40.033195002636944]},"properties":{"OBJECTID":1525,"FID":1525,"Lead__ppm":135,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1526,"geometry":{"type":"Point","coordinates":[-75.216571961771308,39.942103973195614]},"properties":{"OBJECTID":1526,"FID":1526,"Lead__ppm":135,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1527,"geometry":{"type":"Point","coordinates":[-75.165335022405557,40.024050992790237]},"properties":{"OBJECTID":1527,"FID":1527,"Lead__ppm":134,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1528,"geometry":{"type":"Point","coordinates":[-75.225502024179221,40.053374015204213]},"properties":{"OBJECTID":1528,"FID":1528,"Lead__ppm":134,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1529,"geometry":{"type":"Point","coordinates":[-75.225502024179221,40.053374015204213]},"properties":{"OBJECTID":1529,"FID":1529,"Lead__ppm":133,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1530,"geometry":{"type":"Point","coordinates":[-75.225502024179221,40.053374015204213]},"properties":{"OBJECTID":1530,"FID":1530,"Lead__ppm":133,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1531,"geometry":{"type":"Point","coordinates":[-75.196938023595479,39.996676986589819]},"properties":{"OBJECTID":1531,"FID":1531,"Lead__ppm":133,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1532,"geometry":{"type":"Point","coordinates":[-75.069822997294494,40.07889700729195]},"properties":{"OBJECTID":1532,"FID":1532,"Lead__ppm":132,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1533,"geometry":{"type":"Point","coordinates":[-75.165335022405557,40.024050992790237]},"properties":{"OBJECTID":1533,"FID":1533,"Lead__ppm":132,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1534,"geometry":{"type":"Point","coordinates":[-75.194053982375806,39.982471000983118]},"properties":{"OBJECTID":1534,"FID":1534,"Lead__ppm":132,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1535,"geometry":{"type":"Point","coordinates":[-75.216571961771308,39.942103973195614]},"properties":{"OBJECTID":1535,"FID":1535,"Lead__ppm":131,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1536,"geometry":{"type":"Point","coordinates":[-75.156969012164552,39.938700998768191]},"properties":{"OBJECTID":1536,"FID":1536,"Lead__ppm":130,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1537,"geometry":{"type":"Point","coordinates":[-75.158335978532406,39.944275994579769]},"properties":{"OBJECTID":1537,"FID":1537,"Lead__ppm":130,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1538,"geometry":{"type":"Point","coordinates":[-75.132635986737498,39.969446011276389]},"properties":{"OBJECTID":1538,"FID":1538,"Lead__ppm":130,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1539,"geometry":{"type":"Point","coordinates":[-75.126784989797443,39.973255001454177]},"properties":{"OBJECTID":1539,"FID":1539,"Lead__ppm":130,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1540,"geometry":{"type":"Point","coordinates":[-75.131026026085308,39.985225006860986]},"properties":{"OBJECTID":1540,"FID":1540,"Lead__ppm":130,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1541,"geometry":{"type":"Point","coordinates":[-75.167625995874644,39.987747022978496]},"properties":{"OBJECTID":1541,"FID":1541,"Lead__ppm":130,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1542,"geometry":{"type":"Point","coordinates":[-75.205638027459116,40.001590022982398]},"properties":{"OBJECTID":1542,"FID":1542,"Lead__ppm":130,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1543,"geometry":{"type":"Point","coordinates":[-75.202174033892021,40.047211020924195]},"properties":{"OBJECTID":1543,"FID":1543,"Lead__ppm":130,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1544,"geometry":{"type":"Point","coordinates":[-75.188512994040309,40.035000011071261]},"properties":{"OBJECTID":1544,"FID":1544,"Lead__ppm":130,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1545,"geometry":{"type":"Point","coordinates":[-75.165335022405557,40.024050992790237]},"properties":{"OBJECTID":1545,"FID":1545,"Lead__ppm":130,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1546,"geometry":{"type":"Point","coordinates":[-75.130542013810228,39.980790019243123]},"properties":{"OBJECTID":1546,"FID":1546,"Lead__ppm":129,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1547,"geometry":{"type":"Point","coordinates":[-75.12769004244619,39.975100008023901]},"properties":{"OBJECTID":1547,"FID":1547,"Lead__ppm":129,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1548,"geometry":{"type":"Point","coordinates":[-75.165335022405557,40.024050992790237]},"properties":{"OBJECTID":1548,"FID":1548,"Lead__ppm":128,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1549,"geometry":{"type":"Point","coordinates":[-75.213111022476198,40.057359980940298]},"properties":{"OBJECTID":1549,"FID":1549,"Lead__ppm":128,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1550,"geometry":{"type":"Point","coordinates":[-75.216571961771308,39.942103973195614]},"properties":{"OBJECTID":1550,"FID":1550,"Lead__ppm":127,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1551,"geometry":{"type":"Point","coordinates":[-75.069822997294494,40.07889700729195]},"properties":{"OBJECTID":1551,"FID":1551,"Lead__ppm":127,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1552,"geometry":{"type":"Point","coordinates":[-75.157835976245266,40.002210028367109]},"properties":{"OBJECTID":1552,"FID":1552,"Lead__ppm":127,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1553,"geometry":{"type":"Point","coordinates":[-75.069986041518547,40.03900699618562]},"properties":{"OBJECTID":1553,"FID":1553,"Lead__ppm":127,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1554,"geometry":{"type":"Point","coordinates":[-75.252036011883902,39.969568005793334]},"properties":{"OBJECTID":1554,"FID":1554,"Lead__ppm":126,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1555,"geometry":{"type":"Point","coordinates":[-75.161403006575441,39.985353030226804]},"properties":{"OBJECTID":1555,"FID":1555,"Lead__ppm":126,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1556,"geometry":{"type":"Point","coordinates":[-75.084264044307389,40.035762979542483]},"properties":{"OBJECTID":1556,"FID":1556,"Lead__ppm":126,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1557,"geometry":{"type":"Point","coordinates":[-75.194053982375806,39.982471000983118]},"properties":{"OBJECTID":1557,"FID":1557,"Lead__ppm":125,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1558,"geometry":{"type":"Point","coordinates":[-75.216571961771308,39.942103973195614]},"properties":{"OBJECTID":1558,"FID":1558,"Lead__ppm":125,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1559,"geometry":{"type":"Point","coordinates":[-75.202174033892021,40.047211020924195]},"properties":{"OBJECTID":1559,"FID":1559,"Lead__ppm":125,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1560,"geometry":{"type":"Point","coordinates":[-75.212672015796826,39.944777993961239]},"properties":{"OBJECTID":1560,"FID":1560,"Lead__ppm":124,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1561,"geometry":{"type":"Point","coordinates":[-75.165335022405557,40.024050992790237]},"properties":{"OBJECTID":1561,"FID":1561,"Lead__ppm":124,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1562,"geometry":{"type":"Point","coordinates":[-75.121817036781678,39.979637998702501]},"properties":{"OBJECTID":1562,"FID":1562,"Lead__ppm":123,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1563,"geometry":{"type":"Point","coordinates":[-75.230559000239637,40.067099965784436]},"properties":{"OBJECTID":1563,"FID":1563,"Lead__ppm":123,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1564,"geometry":{"type":"Point","coordinates":[-75.177985008405017,39.931263015090302]},"properties":{"OBJECTID":1564,"FID":1564,"Lead__ppm":123,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1565,"geometry":{"type":"Point","coordinates":[-75.135280986260071,39.975407997627855]},"properties":{"OBJECTID":1565,"FID":1565,"Lead__ppm":123,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1566,"geometry":{"type":"Point","coordinates":[-75.190963957461506,40.037300032806783]},"properties":{"OBJECTID":1566,"FID":1566,"Lead__ppm":123,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1567,"geometry":{"type":"Point","coordinates":[-75.216571961771308,39.942103973195614]},"properties":{"OBJECTID":1567,"FID":1567,"Lead__ppm":120,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1568,"geometry":{"type":"Point","coordinates":[-75.194053982375806,39.982471000983118]},"properties":{"OBJECTID":1568,"FID":1568,"Lead__ppm":120,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1569,"geometry":{"type":"Point","coordinates":[-75.212672015796826,39.944777993961239]},"properties":{"OBJECTID":1569,"FID":1569,"Lead__ppm":120,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1570,"geometry":{"type":"Point","coordinates":[-75.153776040318689,39.937842032291059]},"properties":{"OBJECTID":1570,"FID":1570,"Lead__ppm":120,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1571,"geometry":{"type":"Point","coordinates":[-75.244491960127846,39.954129977257573]},"properties":{"OBJECTID":1571,"FID":1571,"Lead__ppm":120,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1572,"geometry":{"type":"Point","coordinates":[-75.166069035824208,39.955640016720075]},"properties":{"OBJECTID":1572,"FID":1572,"Lead__ppm":120,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1573,"geometry":{"type":"Point","coordinates":[-75.142545033142028,39.965135995292457]},"properties":{"OBJECTID":1573,"FID":1573,"Lead__ppm":120,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1574,"geometry":{"type":"Point","coordinates":[-75.143411997222742,39.965416971835666]},"properties":{"OBJECTID":1574,"FID":1574,"Lead__ppm":120,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1575,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1575,"FID":1575,"Lead__ppm":120,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1576,"geometry":{"type":"Point","coordinates":[-75.138418981210549,39.974944016336039]},"properties":{"OBJECTID":1576,"FID":1576,"Lead__ppm":120,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1577,"geometry":{"type":"Point","coordinates":[-75.129654029151865,39.975981980807781]},"properties":{"OBJECTID":1577,"FID":1577,"Lead__ppm":120,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1578,"geometry":{"type":"Point","coordinates":[-75.130199037034743,39.984237979953299]},"properties":{"OBJECTID":1578,"FID":1578,"Lead__ppm":120,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1579,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1579,"FID":1579,"Lead__ppm":120,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1580,"geometry":{"type":"Point","coordinates":[-75.212259958575999,39.946494984442545]},"properties":{"OBJECTID":1580,"FID":1580,"Lead__ppm":119,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1581,"geometry":{"type":"Point","coordinates":[-75.165335022405557,40.024050992790237]},"properties":{"OBJECTID":1581,"FID":1581,"Lead__ppm":119,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1582,"geometry":{"type":"Point","coordinates":[-75.202174033892021,40.047211020924195]},"properties":{"OBJECTID":1582,"FID":1582,"Lead__ppm":118,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1583,"geometry":{"type":"Point","coordinates":[-75.216571961771308,39.942103973195614]},"properties":{"OBJECTID":1583,"FID":1583,"Lead__ppm":118,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1584,"geometry":{"type":"Point","coordinates":[-75.165335022405557,40.024050992790237]},"properties":{"OBJECTID":1584,"FID":1584,"Lead__ppm":117,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1585,"geometry":{"type":"Point","coordinates":[-75.179635033918871,40.035933000741423]},"properties":{"OBJECTID":1585,"FID":1585,"Lead__ppm":117,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1586,"geometry":{"type":"Point","coordinates":[-75.124111962838029,39.985119008838851]},"properties":{"OBJECTID":1586,"FID":1586,"Lead__ppm":117,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1587,"geometry":{"type":"Point","coordinates":[-75.069822997294494,40.07889700729195]},"properties":{"OBJECTID":1587,"FID":1587,"Lead__ppm":117,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1588,"geometry":{"type":"Point","coordinates":[-75.069822997294494,40.07889700729195]},"properties":{"OBJECTID":1588,"FID":1588,"Lead__ppm":117,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1589,"geometry":{"type":"Point","coordinates":[-75.202174033892021,40.047211020924195]},"properties":{"OBJECTID":1589,"FID":1589,"Lead__ppm":117,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1590,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1590,"FID":1590,"Lead__ppm":115,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1591,"geometry":{"type":"Point","coordinates":[-75.165335022405557,40.024050992790237]},"properties":{"OBJECTID":1591,"FID":1591,"Lead__ppm":115,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1592,"geometry":{"type":"Point","coordinates":[-75.230559000239637,40.067099965784436]},"properties":{"OBJECTID":1592,"FID":1592,"Lead__ppm":115,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1593,"geometry":{"type":"Point","coordinates":[-75.225502024179221,40.053374015204213]},"properties":{"OBJECTID":1593,"FID":1593,"Lead__ppm":115,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1594,"geometry":{"type":"Point","coordinates":[-75.199116977148634,40.043358015481793]},"properties":{"OBJECTID":1594,"FID":1594,"Lead__ppm":114,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1595,"geometry":{"type":"Point","coordinates":[-75.252036011883902,39.969568005793334]},"properties":{"OBJECTID":1595,"FID":1595,"Lead__ppm":114,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1596,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1596,"FID":1596,"Lead__ppm":114,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1597,"geometry":{"type":"Point","coordinates":[-75.124111962838029,39.985119008838851]},"properties":{"OBJECTID":1597,"FID":1597,"Lead__ppm":114,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1598,"geometry":{"type":"Point","coordinates":[-75.120183001279855,39.981969002946059]},"properties":{"OBJECTID":1598,"FID":1598,"Lead__ppm":113,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1599,"geometry":{"type":"Point","coordinates":[-75.160477023180562,39.934450968964576]},"properties":{"OBJECTID":1599,"FID":1599,"Lead__ppm":113,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1600,"geometry":{"type":"Point","coordinates":[-75.165335022405557,40.024050992790237]},"properties":{"OBJECTID":1600,"FID":1600,"Lead__ppm":113,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1601,"geometry":{"type":"Point","coordinates":[-75.216571961771308,39.942103973195614]},"properties":{"OBJECTID":1601,"FID":1601,"Lead__ppm":112,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1602,"geometry":{"type":"Point","coordinates":[-75.214135012068553,39.953071986383925]},"properties":{"OBJECTID":1602,"FID":1602,"Lead__ppm":112,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1603,"geometry":{"type":"Point","coordinates":[-75.165335022405557,40.024050992790237]},"properties":{"OBJECTID":1603,"FID":1603,"Lead__ppm":112,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1604,"geometry":{"type":"Point","coordinates":[-75.175110040169727,40.029539994541423]},"properties":{"OBJECTID":1604,"FID":1604,"Lead__ppm":111,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1605,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":1605,"FID":1605,"Lead__ppm":111,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1606,"geometry":{"type":"Point","coordinates":[-75.196938023595479,39.996676986589819]},"properties":{"OBJECTID":1606,"FID":1606,"Lead__ppm":111,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1607,"geometry":{"type":"Point","coordinates":[-75.216571961771308,39.942103973195614]},"properties":{"OBJECTID":1607,"FID":1607,"Lead__ppm":110,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1608,"geometry":{"type":"Point","coordinates":[-75.069822997294494,40.07889700729195]},"properties":{"OBJECTID":1608,"FID":1608,"Lead__ppm":110,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1609,"geometry":{"type":"Point","coordinates":[-75.228719969189996,40.07785799557761]},"properties":{"OBJECTID":1609,"FID":1609,"Lead__ppm":110,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1610,"geometry":{"type":"Point","coordinates":[-75.151869006802031,39.934535968014373]},"properties":{"OBJECTID":1610,"FID":1610,"Lead__ppm":110,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1611,"geometry":{"type":"Point","coordinates":[-75.156404959997673,39.945889004876001]},"properties":{"OBJECTID":1611,"FID":1611,"Lead__ppm":110,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1612,"geometry":{"type":"Point","coordinates":[-75.199587963852096,39.962519023037899]},"properties":{"OBJECTID":1612,"FID":1612,"Lead__ppm":110,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1613,"geometry":{"type":"Point","coordinates":[-75.142545033142028,39.965135995292457]},"properties":{"OBJECTID":1613,"FID":1613,"Lead__ppm":110,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1614,"geometry":{"type":"Point","coordinates":[-75.135400013035223,39.968785020268832]},"properties":{"OBJECTID":1614,"FID":1614,"Lead__ppm":110,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1615,"geometry":{"type":"Point","coordinates":[-75.138376041739974,39.987203973501046]},"properties":{"OBJECTID":1615,"FID":1615,"Lead__ppm":110,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1616,"geometry":{"type":"Point","coordinates":[-75.225502024179221,40.053374015204213]},"properties":{"OBJECTID":1616,"FID":1616,"Lead__ppm":110,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1617,"geometry":{"type":"Point","coordinates":[-75.213111022476198,40.057359980940298]},"properties":{"OBJECTID":1617,"FID":1617,"Lead__ppm":109,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1618,"geometry":{"type":"Point","coordinates":[-75.165335022405557,40.024050992790237]},"properties":{"OBJECTID":1618,"FID":1618,"Lead__ppm":109,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1619,"geometry":{"type":"Point","coordinates":[-75.225502024179221,40.053374015204213]},"properties":{"OBJECTID":1619,"FID":1619,"Lead__ppm":109,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1620,"geometry":{"type":"Point","coordinates":[-75.165335022405557,40.024050992790237]},"properties":{"OBJECTID":1620,"FID":1620,"Lead__ppm":109,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1621,"geometry":{"type":"Point","coordinates":[-75.216571961771308,39.942103973195614]},"properties":{"OBJECTID":1621,"FID":1621,"Lead__ppm":107,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1622,"geometry":{"type":"Point","coordinates":[-75.155004037312082,39.922920014174643]},"properties":{"OBJECTID":1622,"FID":1622,"Lead__ppm":107,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1623,"geometry":{"type":"Point","coordinates":[-75.161416032147073,39.952097028208783]},"properties":{"OBJECTID":1623,"FID":1623,"Lead__ppm":107,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1624,"geometry":{"type":"Point","coordinates":[-75.189582977375224,39.958778015711978]},"properties":{"OBJECTID":1624,"FID":1624,"Lead__ppm":107,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1625,"geometry":{"type":"Point","coordinates":[-75.124452963319868,39.981662970247648]},"properties":{"OBJECTID":1625,"FID":1625,"Lead__ppm":106,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1626,"geometry":{"type":"Point","coordinates":[-75.116507005305721,39.977648969149463]},"properties":{"OBJECTID":1626,"FID":1626,"Lead__ppm":106,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1627,"geometry":{"type":"Point","coordinates":[-75.190963957461506,40.037300032806783]},"properties":{"OBJECTID":1627,"FID":1627,"Lead__ppm":105,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1628,"geometry":{"type":"Point","coordinates":[-75.225502024179221,40.053374015204213]},"properties":{"OBJECTID":1628,"FID":1628,"Lead__ppm":105,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1629,"geometry":{"type":"Point","coordinates":[-75.133812959422755,40.052582982653973]},"properties":{"OBJECTID":1629,"FID":1629,"Lead__ppm":104,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1630,"geometry":{"type":"Point","coordinates":[-75.165335022405557,40.024050992790237]},"properties":{"OBJECTID":1630,"FID":1630,"Lead__ppm":103,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1631,"geometry":{"type":"Point","coordinates":[-75.194053982375806,39.982471000983118]},"properties":{"OBJECTID":1631,"FID":1631,"Lead__ppm":102,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1632,"geometry":{"type":"Point","coordinates":[-75.230559000239637,40.067099965784436]},"properties":{"OBJECTID":1632,"FID":1632,"Lead__ppm":102,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1633,"geometry":{"type":"Point","coordinates":[-75.069822997294494,40.07889700729195]},"properties":{"OBJECTID":1633,"FID":1633,"Lead__ppm":101,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1634,"geometry":{"type":"Point","coordinates":[-75.069822997294494,40.07889700729195]},"properties":{"OBJECTID":1634,"FID":1634,"Lead__ppm":101,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1635,"geometry":{"type":"Point","coordinates":[-75.131753032644752,39.982166966687579]},"properties":{"OBJECTID":1635,"FID":1635,"Lead__ppm":101,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1636,"geometry":{"type":"Point","coordinates":[-75.165335022405557,40.024050992790237]},"properties":{"OBJECTID":1636,"FID":1636,"Lead__ppm":101,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1637,"geometry":{"type":"Point","coordinates":[-75.213111022476198,40.057359980940298]},"properties":{"OBJECTID":1637,"FID":1637,"Lead__ppm":101,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1638,"geometry":{"type":"Point","coordinates":[-75.069822997294494,40.07889700729195]},"properties":{"OBJECTID":1638,"FID":1638,"Lead__ppm":100,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1639,"geometry":{"type":"Point","coordinates":[-75.161411989728293,40.007376016370188]},"properties":{"OBJECTID":1639,"FID":1639,"Lead__ppm":100,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1640,"geometry":{"type":"Point","coordinates":[-75.180245978143603,39.948100022691996]},"properties":{"OBJECTID":1640,"FID":1640,"Lead__ppm":100,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1641,"geometry":{"type":"Point","coordinates":[-75.181113032055848,39.949454007697312]},"properties":{"OBJECTID":1641,"FID":1641,"Lead__ppm":100,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1642,"geometry":{"type":"Point","coordinates":[-75.137297973567499,39.969145017101255]},"properties":{"OBJECTID":1642,"FID":1642,"Lead__ppm":100,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1643,"geometry":{"type":"Point","coordinates":[-75.143896009497823,39.981624010520981]},"properties":{"OBJECTID":1643,"FID":1643,"Lead__ppm":100,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1644,"geometry":{"type":"Point","coordinates":[-75.182679963405946,39.983450000119056]},"properties":{"OBJECTID":1644,"FID":1644,"Lead__ppm":100,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1645,"geometry":{"type":"Point","coordinates":[-75.129654029151865,39.975981980807781]},"properties":{"OBJECTID":1645,"FID":1645,"Lead__ppm":100,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1646,"geometry":{"type":"Point","coordinates":[-75.161234033470521,39.946021991645843]},"properties":{"OBJECTID":1646,"FID":1646,"Lead__ppm":99,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1647,"geometry":{"type":"Point","coordinates":[-75.161234033470521,39.946021991645843]},"properties":{"OBJECTID":1647,"FID":1647,"Lead__ppm":99,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1648,"geometry":{"type":"Point","coordinates":[-75.129654029151865,39.975981980807781]},"properties":{"OBJECTID":1648,"FID":1648,"Lead__ppm":99,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1649,"geometry":{"type":"Point","coordinates":[-75.12769004244619,39.975100008023901]},"properties":{"OBJECTID":1649,"FID":1649,"Lead__ppm":99,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1650,"geometry":{"type":"Point","coordinates":[-75.140737982116505,39.981165027475384]},"properties":{"OBJECTID":1650,"FID":1650,"Lead__ppm":99,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1651,"geometry":{"type":"Point","coordinates":[-75.091280964654729,40.017776029472003]},"properties":{"OBJECTID":1651,"FID":1651,"Lead__ppm":99,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1652,"geometry":{"type":"Point","coordinates":[-74.979590999928874,40.094068030145067]},"properties":{"OBJECTID":1652,"FID":1652,"Lead__ppm":99,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1653,"geometry":{"type":"Point","coordinates":[-75.069822997294494,40.07889700729195]},"properties":{"OBJECTID":1653,"FID":1653,"Lead__ppm":99,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1654,"geometry":{"type":"Point","coordinates":[-75.225496993613618,39.941856029026447]},"properties":{"OBJECTID":1654,"FID":1654,"Lead__ppm":99,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1655,"geometry":{"type":"Point","coordinates":[-75.202174033892021,40.047211020924195]},"properties":{"OBJECTID":1655,"FID":1655,"Lead__ppm":99,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1656,"geometry":{"type":"Point","coordinates":[-75.069822997294494,40.07889700729195]},"properties":{"OBJECTID":1656,"FID":1656,"Lead__ppm":99,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1657,"geometry":{"type":"Point","coordinates":[-75.069822997294494,40.07889700729195]},"properties":{"OBJECTID":1657,"FID":1657,"Lead__ppm":98,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1658,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1658,"FID":1658,"Lead__ppm":98,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1659,"geometry":{"type":"Point","coordinates":[-75.18797696931027,40.052018995043326]},"properties":{"OBJECTID":1659,"FID":1659,"Lead__ppm":98,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1660,"geometry":{"type":"Point","coordinates":[-75.232651985020098,39.997305019434435]},"properties":{"OBJECTID":1660,"FID":1660,"Lead__ppm":98,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1661,"geometry":{"type":"Point","coordinates":[-75.215222961709145,39.96410399385978]},"properties":{"OBJECTID":1661,"FID":1661,"Lead__ppm":97,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1662,"geometry":{"type":"Point","coordinates":[-75.124111962838029,39.985119008838851]},"properties":{"OBJECTID":1662,"FID":1662,"Lead__ppm":97,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1663,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1663,"FID":1663,"Lead__ppm":96,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1664,"geometry":{"type":"Point","coordinates":[-75.216434968690479,39.952231999939023]},"properties":{"OBJECTID":1664,"FID":1664,"Lead__ppm":96,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1665,"geometry":{"type":"Point","coordinates":[-75.124111962838029,39.985119008838851]},"properties":{"OBJECTID":1665,"FID":1665,"Lead__ppm":96,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1666,"geometry":{"type":"Point","coordinates":[-75.069822997294494,40.07889700729195]},"properties":{"OBJECTID":1666,"FID":1666,"Lead__ppm":96,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1667,"geometry":{"type":"Point","coordinates":[-75.225496993613618,39.941856029026447]},"properties":{"OBJECTID":1667,"FID":1667,"Lead__ppm":96,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1668,"geometry":{"type":"Point","coordinates":[-75.202739972521016,39.965719979060644]},"properties":{"OBJECTID":1668,"FID":1668,"Lead__ppm":95,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1669,"geometry":{"type":"Point","coordinates":[-75.069986041518547,40.03900699618562]},"properties":{"OBJECTID":1669,"FID":1669,"Lead__ppm":95,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1670,"geometry":{"type":"Point","coordinates":[-75.155004037312082,39.922920014174643]},"properties":{"OBJECTID":1670,"FID":1670,"Lead__ppm":94,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1671,"geometry":{"type":"Point","coordinates":[-75.160477023180562,39.934450968964576]},"properties":{"OBJECTID":1671,"FID":1671,"Lead__ppm":94,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1672,"geometry":{"type":"Point","coordinates":[-75.190963957461506,40.037300032806783]},"properties":{"OBJECTID":1672,"FID":1672,"Lead__ppm":93,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1673,"geometry":{"type":"Point","coordinates":[-75.200048979255911,40.044167998185564]},"properties":{"OBJECTID":1673,"FID":1673,"Lead__ppm":93,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1674,"geometry":{"type":"Point","coordinates":[-75.200048979255911,40.044167998185564]},"properties":{"OBJECTID":1674,"FID":1674,"Lead__ppm":92,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1675,"geometry":{"type":"Point","coordinates":[-75.121561016925696,39.978517004047973]},"properties":{"OBJECTID":1675,"FID":1675,"Lead__ppm":92,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1676,"geometry":{"type":"Point","coordinates":[-75.225502024179221,40.053374015204213]},"properties":{"OBJECTID":1676,"FID":1676,"Lead__ppm":92,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1677,"geometry":{"type":"Point","coordinates":[-75.225502024179221,40.053374015204213]},"properties":{"OBJECTID":1677,"FID":1677,"Lead__ppm":91,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1678,"geometry":{"type":"Point","coordinates":[-75.17290503547332,39.940816995439405]},"properties":{"OBJECTID":1678,"FID":1678,"Lead__ppm":91,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1679,"geometry":{"type":"Point","coordinates":[-75.138538007985687,39.969373998609434]},"properties":{"OBJECTID":1679,"FID":1679,"Lead__ppm":91,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1680,"geometry":{"type":"Point","coordinates":[-75.228719969189996,40.07785799557761]},"properties":{"OBJECTID":1680,"FID":1680,"Lead__ppm":90,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1681,"geometry":{"type":"Point","coordinates":[-75.069822997294494,40.07889700729195]},"properties":{"OBJECTID":1681,"FID":1681,"Lead__ppm":90,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1682,"geometry":{"type":"Point","coordinates":[-75.069822997294494,40.07889700729195]},"properties":{"OBJECTID":1682,"FID":1682,"Lead__ppm":89,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1683,"geometry":{"type":"Point","coordinates":[-75.230559000239637,40.067099965784436]},"properties":{"OBJECTID":1683,"FID":1683,"Lead__ppm":89,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1684,"geometry":{"type":"Point","coordinates":[-75.230559000239637,40.067099965784436]},"properties":{"OBJECTID":1684,"FID":1684,"Lead__ppm":88,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1685,"geometry":{"type":"Point","coordinates":[-75.181390970804756,39.94811200558717]},"properties":{"OBJECTID":1685,"FID":1685,"Lead__ppm":88,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1686,"geometry":{"type":"Point","coordinates":[-75.225502024179221,40.053374015204213]},"properties":{"OBJECTID":1686,"FID":1686,"Lead__ppm":87,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1687,"geometry":{"type":"Point","coordinates":[-75.230559000239637,40.067099965784436]},"properties":{"OBJECTID":1687,"FID":1687,"Lead__ppm":87,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1688,"geometry":{"type":"Point","coordinates":[-75.161411989728293,40.007376016370188]},"properties":{"OBJECTID":1688,"FID":1688,"Lead__ppm":87,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1689,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1689,"FID":1689,"Lead__ppm":87,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1690,"geometry":{"type":"Point","coordinates":[-75.135865969173082,39.970255976439667]},"properties":{"OBJECTID":1690,"FID":1690,"Lead__ppm":87,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1691,"geometry":{"type":"Point","coordinates":[-75.213111022476198,40.057359980940298]},"properties":{"OBJECTID":1691,"FID":1691,"Lead__ppm":86,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1692,"geometry":{"type":"Point","coordinates":[-75.117743985451952,39.989744981164591]},"properties":{"OBJECTID":1692,"FID":1692,"Lead__ppm":86,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1693,"geometry":{"type":"Point","coordinates":[-75.218637997093268,39.966070972799457]},"properties":{"OBJECTID":1693,"FID":1693,"Lead__ppm":86,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1694,"geometry":{"type":"Point","coordinates":[-75.169323003277881,40.032404974007981]},"properties":{"OBJECTID":1694,"FID":1694,"Lead__ppm":85,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1695,"geometry":{"type":"Point","coordinates":[-75.225502024179221,40.053374015204213]},"properties":{"OBJECTID":1695,"FID":1695,"Lead__ppm":85,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1696,"geometry":{"type":"Point","coordinates":[-75.230559000239637,40.067099965784436]},"properties":{"OBJECTID":1696,"FID":1696,"Lead__ppm":84,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1697,"geometry":{"type":"Point","coordinates":[-75.230559000239637,40.067099965784436]},"properties":{"OBJECTID":1697,"FID":1697,"Lead__ppm":84,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1698,"geometry":{"type":"Point","coordinates":[-75.228719969189996,40.07785799557761]},"properties":{"OBJECTID":1698,"FID":1698,"Lead__ppm":84,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1699,"geometry":{"type":"Point","coordinates":[-75.14291397122922,39.97113202230377]},"properties":{"OBJECTID":1699,"FID":1699,"Lead__ppm":84,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1700,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":1700,"FID":1700,"Lead__ppm":84,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1701,"geometry":{"type":"Point","coordinates":[-75.212787000153199,39.945606019739429]},"properties":{"OBJECTID":1701,"FID":1701,"Lead__ppm":83,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1702,"geometry":{"type":"Point","coordinates":[-75.160477023180562,39.934450968964576]},"properties":{"OBJECTID":1702,"FID":1702,"Lead__ppm":83,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1703,"geometry":{"type":"Point","coordinates":[-75.230559000239637,40.067099965784436]},"properties":{"OBJECTID":1703,"FID":1703,"Lead__ppm":83,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1704,"geometry":{"type":"Point","coordinates":[-75.227792997648294,40.052781016699186]},"properties":{"OBJECTID":1704,"FID":1704,"Lead__ppm":83,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1705,"geometry":{"type":"Point","coordinates":[-75.069822997294494,40.07889700729195]},"properties":{"OBJECTID":1705,"FID":1705,"Lead__ppm":83,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1706,"geometry":{"type":"Point","coordinates":[-75.228719969189996,40.07785799557761]},"properties":{"OBJECTID":1706,"FID":1706,"Lead__ppm":82,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1707,"geometry":{"type":"Point","coordinates":[-75.228719969189996,40.07785799557761]},"properties":{"OBJECTID":1707,"FID":1707,"Lead__ppm":82,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1708,"geometry":{"type":"Point","coordinates":[-75.039118041894113,40.104919984646578]},"properties":{"OBJECTID":1708,"FID":1708,"Lead__ppm":82,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1709,"geometry":{"type":"Point","coordinates":[-75.069822997294494,40.07889700729195]},"properties":{"OBJECTID":1709,"FID":1709,"Lead__ppm":82,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1710,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":1710,"FID":1710,"Lead__ppm":81,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1711,"geometry":{"type":"Point","coordinates":[-75.163487008203077,39.943375017320648]},"properties":{"OBJECTID":1711,"FID":1711,"Lead__ppm":81,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1712,"geometry":{"type":"Point","coordinates":[-75.241532999413494,40.057442008112879]},"properties":{"OBJECTID":1712,"FID":1712,"Lead__ppm":81,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1713,"geometry":{"type":"Point","coordinates":[-75.228719969189996,40.07785799557761]},"properties":{"OBJECTID":1713,"FID":1713,"Lead__ppm":80,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1714,"geometry":{"type":"Point","coordinates":[-75.117743985451952,39.989744981164591]},"properties":{"OBJECTID":1714,"FID":1714,"Lead__ppm":80,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1715,"geometry":{"type":"Point","coordinates":[-75.125564987810094,39.979218995975231]},"properties":{"OBJECTID":1715,"FID":1715,"Lead__ppm":80,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1716,"geometry":{"type":"Point","coordinates":[-75.225502024179221,40.053374015204213]},"properties":{"OBJECTID":1716,"FID":1716,"Lead__ppm":80,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1717,"geometry":{"type":"Point","coordinates":[-75.225502024179221,40.053374015204213]},"properties":{"OBJECTID":1717,"FID":1717,"Lead__ppm":80,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1718,"geometry":{"type":"Point","coordinates":[-75.14605798489211,39.969436992485718]},"properties":{"OBJECTID":1718,"FID":1718,"Lead__ppm":79,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1719,"geometry":{"type":"Point","coordinates":[-75.213111022476198,40.057359980940298]},"properties":{"OBJECTID":1719,"FID":1719,"Lead__ppm":79,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1720,"geometry":{"type":"Point","coordinates":[-75.241532999413494,40.057442008112879]},"properties":{"OBJECTID":1720,"FID":1720,"Lead__ppm":79,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1721,"geometry":{"type":"Point","coordinates":[-75.069986041518547,40.03900699618562]},"properties":{"OBJECTID":1721,"FID":1721,"Lead__ppm":79,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1722,"geometry":{"type":"Point","coordinates":[-75.210631043471309,39.962504013147282]},"properties":{"OBJECTID":1722,"FID":1722,"Lead__ppm":78,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1723,"geometry":{"type":"Point","coordinates":[-75.215870018208292,39.947449981917465]},"properties":{"OBJECTID":1723,"FID":1723,"Lead__ppm":78,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1724,"geometry":{"type":"Point","coordinates":[-75.131753032644752,39.982166966687579]},"properties":{"OBJECTID":1724,"FID":1724,"Lead__ppm":78,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1725,"geometry":{"type":"Point","coordinates":[-75.138182993785406,39.970772999757372]},"properties":{"OBJECTID":1725,"FID":1725,"Lead__ppm":78,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1726,"geometry":{"type":"Point","coordinates":[-75.124111962838029,39.985119008838851]},"properties":{"OBJECTID":1726,"FID":1726,"Lead__ppm":78,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1727,"geometry":{"type":"Point","coordinates":[-75.12769004244619,39.975100008023901]},"properties":{"OBJECTID":1727,"FID":1727,"Lead__ppm":78,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1728,"geometry":{"type":"Point","coordinates":[-75.225502024179221,40.053374015204213]},"properties":{"OBJECTID":1728,"FID":1728,"Lead__ppm":78,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1729,"geometry":{"type":"Point","coordinates":[-75.230559000239637,40.067099965784436]},"properties":{"OBJECTID":1729,"FID":1729,"Lead__ppm":77,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1730,"geometry":{"type":"Point","coordinates":[-75.169323003277881,40.032404974007981]},"properties":{"OBJECTID":1730,"FID":1730,"Lead__ppm":77,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1731,"geometry":{"type":"Point","coordinates":[-75.159222975043946,39.943877987513417]},"properties":{"OBJECTID":1731,"FID":1731,"Lead__ppm":77,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1732,"geometry":{"type":"Point","coordinates":[-75.124111962838029,39.985119008838851]},"properties":{"OBJECTID":1732,"FID":1732,"Lead__ppm":76,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1733,"geometry":{"type":"Point","coordinates":[-75.199116977148634,40.043358015481793]},"properties":{"OBJECTID":1733,"FID":1733,"Lead__ppm":76,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1734,"geometry":{"type":"Point","coordinates":[-75.216582022902486,39.948035012005782]},"properties":{"OBJECTID":1734,"FID":1734,"Lead__ppm":76,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1735,"geometry":{"type":"Point","coordinates":[-75.252036011883902,39.969568005793334]},"properties":{"OBJECTID":1735,"FID":1735,"Lead__ppm":76,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1736,"geometry":{"type":"Point","coordinates":[-75.169108036430387,40.048056991499074]},"properties":{"OBJECTID":1736,"FID":1736,"Lead__ppm":76,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1737,"geometry":{"type":"Point","coordinates":[-75.225502024179221,40.053374015204213]},"properties":{"OBJECTID":1737,"FID":1737,"Lead__ppm":76,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1738,"geometry":{"type":"Point","coordinates":[-75.213111022476198,40.057359980940298]},"properties":{"OBJECTID":1738,"FID":1738,"Lead__ppm":75,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1739,"geometry":{"type":"Point","coordinates":[-75.007986027407668,40.068772978869049]},"properties":{"OBJECTID":1739,"FID":1739,"Lead__ppm":75,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1740,"geometry":{"type":"Point","coordinates":[-75.168767035948534,39.966605997253978]},"properties":{"OBJECTID":1740,"FID":1740,"Lead__ppm":74,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1741,"geometry":{"type":"Point","coordinates":[-75.069822997294494,40.07889700729195]},"properties":{"OBJECTID":1741,"FID":1741,"Lead__ppm":73,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1742,"geometry":{"type":"Point","coordinates":[-75.165832958567549,39.925015969397904]},"properties":{"OBJECTID":1742,"FID":1742,"Lead__ppm":73,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1743,"geometry":{"type":"Point","coordinates":[-75.194053982375806,39.982471000983118]},"properties":{"OBJECTID":1743,"FID":1743,"Lead__ppm":72,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1744,"geometry":{"type":"Point","coordinates":[-75.228719969189996,40.07785799557761]},"properties":{"OBJECTID":1744,"FID":1744,"Lead__ppm":72,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1745,"geometry":{"type":"Point","coordinates":[-75.228719969189996,40.07785799557761]},"properties":{"OBJECTID":1745,"FID":1745,"Lead__ppm":72,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1746,"geometry":{"type":"Point","coordinates":[-75.228719969189996,40.07785799557761]},"properties":{"OBJECTID":1746,"FID":1746,"Lead__ppm":71,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1747,"geometry":{"type":"Point","coordinates":[-75.194309014084965,40.051615014216495]},"properties":{"OBJECTID":1747,"FID":1747,"Lead__ppm":71,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1748,"geometry":{"type":"Point","coordinates":[-75.126723006042852,39.986074017551815]},"properties":{"OBJECTID":1748,"FID":1748,"Lead__ppm":71,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1749,"geometry":{"type":"Point","coordinates":[-75.145276001437281,39.981766013799181]},"properties":{"OBJECTID":1749,"FID":1749,"Lead__ppm":71,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1750,"geometry":{"type":"Point","coordinates":[-75.162784974808531,39.938606982034329]},"properties":{"OBJECTID":1750,"FID":1750,"Lead__ppm":69,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1751,"geometry":{"type":"Point","coordinates":[-75.252036011883902,39.969568005793334]},"properties":{"OBJECTID":1751,"FID":1751,"Lead__ppm":68,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1752,"geometry":{"type":"Point","coordinates":[-75.22048403500213,39.952026030217219]},"properties":{"OBJECTID":1752,"FID":1752,"Lead__ppm":68,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1753,"geometry":{"type":"Point","coordinates":[-75.161411989728293,40.007376016370188]},"properties":{"OBJECTID":1753,"FID":1753,"Lead__ppm":68,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1754,"geometry":{"type":"Point","coordinates":[-75.127874017416389,39.98549798542566]},"properties":{"OBJECTID":1754,"FID":1754,"Lead__ppm":67,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1755,"geometry":{"type":"Point","coordinates":[-75.065948024484896,39.999828998071024]},"properties":{"OBJECTID":1755,"FID":1755,"Lead__ppm":66,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1756,"geometry":{"type":"Point","coordinates":[-75.161411989728293,40.007376016370188]},"properties":{"OBJECTID":1756,"FID":1756,"Lead__ppm":65,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1757,"geometry":{"type":"Point","coordinates":[-75.228719969189996,40.07785799557761]},"properties":{"OBJECTID":1757,"FID":1757,"Lead__ppm":65,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1758,"geometry":{"type":"Point","coordinates":[-75.149027006737668,39.970535968114632]},"properties":{"OBJECTID":1758,"FID":1758,"Lead__ppm":65,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1759,"geometry":{"type":"Point","coordinates":[-75.124111962838029,39.985119008838851]},"properties":{"OBJECTID":1759,"FID":1759,"Lead__ppm":65,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1760,"geometry":{"type":"Point","coordinates":[-75.142705023094138,39.97110400277883]},"properties":{"OBJECTID":1760,"FID":1760,"Lead__ppm":64,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1761,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1761,"FID":1761,"Lead__ppm":63,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1762,"geometry":{"type":"Point","coordinates":[-75.212672015796826,39.944777993961239]},"properties":{"OBJECTID":1762,"FID":1762,"Lead__ppm":63,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1763,"geometry":{"type":"Point","coordinates":[-75.125756957786308,40.002845992525081]},"properties":{"OBJECTID":1763,"FID":1763,"Lead__ppm":62,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1764,"geometry":{"type":"Point","coordinates":[-75.029619974732057,40.055110005168132]},"properties":{"OBJECTID":1764,"FID":1764,"Lead__ppm":62,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1765,"geometry":{"type":"Point","coordinates":[-75.188512994040309,40.035000011071261]},"properties":{"OBJECTID":1765,"FID":1765,"Lead__ppm":61,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1766,"geometry":{"type":"Point","coordinates":[-75.125955036306451,39.971792026809148]},"properties":{"OBJECTID":1766,"FID":1766,"Lead__ppm":61,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1767,"geometry":{"type":"Point","coordinates":[-75.213111022476198,40.057359980940298]},"properties":{"OBJECTID":1767,"FID":1767,"Lead__ppm":61,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1768,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1768,"FID":1768,"Lead__ppm":60,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1769,"geometry":{"type":"Point","coordinates":[-75.161411989728293,40.007376016370188]},"properties":{"OBJECTID":1769,"FID":1769,"Lead__ppm":59,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1770,"geometry":{"type":"Point","coordinates":[-75.144610978632457,39.963166028814449]},"properties":{"OBJECTID":1770,"FID":1770,"Lead__ppm":59,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1771,"geometry":{"type":"Point","coordinates":[-75.225502024179221,40.053374015204213]},"properties":{"OBJECTID":1771,"FID":1771,"Lead__ppm":59,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1772,"geometry":{"type":"Point","coordinates":[-75.210631043471309,39.962504013147282]},"properties":{"OBJECTID":1772,"FID":1772,"Lead__ppm":59,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1773,"geometry":{"type":"Point","coordinates":[-75.188512994040309,40.035000011071261]},"properties":{"OBJECTID":1773,"FID":1773,"Lead__ppm":58,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1774,"geometry":{"type":"Point","coordinates":[-75.162969039610246,40.025778030207988]},"properties":{"OBJECTID":1774,"FID":1774,"Lead__ppm":58,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1775,"geometry":{"type":"Point","coordinates":[-75.230559000239637,40.067099965784436]},"properties":{"OBJECTID":1775,"FID":1775,"Lead__ppm":58,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1776,"geometry":{"type":"Point","coordinates":[-75.228719969189996,40.07785799557761]},"properties":{"OBJECTID":1776,"FID":1776,"Lead__ppm":58,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1777,"geometry":{"type":"Point","coordinates":[-75.135280986260071,39.975407997627855]},"properties":{"OBJECTID":1777,"FID":1777,"Lead__ppm":58,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1778,"geometry":{"type":"Point","coordinates":[-75.225502024179221,40.053374015204213]},"properties":{"OBJECTID":1778,"FID":1778,"Lead__ppm":58,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1779,"geometry":{"type":"Point","coordinates":[-75.216571961771308,39.942103973195614]},"properties":{"OBJECTID":1779,"FID":1779,"Lead__ppm":58,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1780,"geometry":{"type":"Point","coordinates":[-75.230559000239637,40.067099965784436]},"properties":{"OBJECTID":1780,"FID":1780,"Lead__ppm":57,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1781,"geometry":{"type":"Point","coordinates":[-75.124111962838029,39.985119008838851]},"properties":{"OBJECTID":1781,"FID":1781,"Lead__ppm":56,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1782,"geometry":{"type":"Point","coordinates":[-75.230559000239637,40.067099965784436]},"properties":{"OBJECTID":1782,"FID":1782,"Lead__ppm":56,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1783,"geometry":{"type":"Point","coordinates":[-75.228719969189996,40.07785799557761]},"properties":{"OBJECTID":1783,"FID":1783,"Lead__ppm":56,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1784,"geometry":{"type":"Point","coordinates":[-75.228719969189996,40.07785799557761]},"properties":{"OBJECTID":1784,"FID":1784,"Lead__ppm":56,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1785,"geometry":{"type":"Point","coordinates":[-75.095445015322724,40.055323021368281]},"properties":{"OBJECTID":1785,"FID":1785,"Lead__ppm":56,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1786,"geometry":{"type":"Point","coordinates":[-75.162784974808531,39.938606982034329]},"properties":{"OBJECTID":1786,"FID":1786,"Lead__ppm":56,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1787,"geometry":{"type":"Point","coordinates":[-75.162784974808531,39.938606982034329]},"properties":{"OBJECTID":1787,"FID":1787,"Lead__ppm":56,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1788,"geometry":{"type":"Point","coordinates":[-75.188095996085423,39.992073988833347]},"properties":{"OBJECTID":1788,"FID":1788,"Lead__ppm":56,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1789,"geometry":{"type":"Point","coordinates":[-75.161586981545625,39.929446997715544]},"properties":{"OBJECTID":1789,"FID":1789,"Lead__ppm":55,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1790,"geometry":{"type":"Point","coordinates":[-75.228719969189996,40.07785799557761]},"properties":{"OBJECTID":1790,"FID":1790,"Lead__ppm":54,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1791,"geometry":{"type":"Point","coordinates":[-75.14291397122922,39.97113202230377]},"properties":{"OBJECTID":1791,"FID":1791,"Lead__ppm":54,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1792,"geometry":{"type":"Point","coordinates":[-75.161411989728293,40.007376016370188]},"properties":{"OBJECTID":1792,"FID":1792,"Lead__ppm":53,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1793,"geometry":{"type":"Point","coordinates":[-75.162784974808531,39.938606982034329]},"properties":{"OBJECTID":1793,"FID":1793,"Lead__ppm":53,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1794,"geometry":{"type":"Point","coordinates":[-75.124111962838029,39.985119008838851]},"properties":{"OBJECTID":1794,"FID":1794,"Lead__ppm":53,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1795,"geometry":{"type":"Point","coordinates":[-75.213111022476198,40.057359980940298]},"properties":{"OBJECTID":1795,"FID":1795,"Lead__ppm":53,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1796,"geometry":{"type":"Point","coordinates":[-75.228719969189996,40.07785799557761]},"properties":{"OBJECTID":1796,"FID":1796,"Lead__ppm":52,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1797,"geometry":{"type":"Point","coordinates":[-75.225502024179221,40.053374015204213]},"properties":{"OBJECTID":1797,"FID":1797,"Lead__ppm":52,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1798,"geometry":{"type":"Point","coordinates":[-75.215954010687355,39.954508987970577]},"properties":{"OBJECTID":1798,"FID":1798,"Lead__ppm":51,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1799,"geometry":{"type":"Point","coordinates":[-75.228719969189996,40.07785799557761]},"properties":{"OBJECTID":1799,"FID":1799,"Lead__ppm":51,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1800,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1800,"FID":1800,"Lead__ppm":51,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1801,"geometry":{"type":"Point","coordinates":[-75.161411989728293,40.007376016370188]},"properties":{"OBJECTID":1801,"FID":1801,"Lead__ppm":50,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1802,"geometry":{"type":"Point","coordinates":[-75.210631043471309,39.962504013147282]},"properties":{"OBJECTID":1802,"FID":1802,"Lead__ppm":50,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1803,"geometry":{"type":"Point","coordinates":[-75.141682021648577,39.964609014853991]},"properties":{"OBJECTID":1803,"FID":1803,"Lead__ppm":49,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1804,"geometry":{"type":"Point","coordinates":[-75.124111962838029,39.985119008838851]},"properties":{"OBJECTID":1804,"FID":1804,"Lead__ppm":48,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1805,"geometry":{"type":"Point","coordinates":[-75.202739972521016,39.965719979060644]},"properties":{"OBJECTID":1805,"FID":1805,"Lead__ppm":48,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1806,"geometry":{"type":"Point","coordinates":[-75.146785979598363,40.052685025268588]},"properties":{"OBJECTID":1806,"FID":1806,"Lead__ppm":48,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1807,"geometry":{"type":"Point","coordinates":[-75.235388972027764,39.9287819690975]},"properties":{"OBJECTID":1807,"FID":1807,"Lead__ppm":48,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1808,"geometry":{"type":"Point","coordinates":[-75.235388972027764,39.9287819690975]},"properties":{"OBJECTID":1808,"FID":1808,"Lead__ppm":48,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1809,"geometry":{"type":"Point","coordinates":[-75.16925697710451,39.964756010720578]},"properties":{"OBJECTID":1809,"FID":1809,"Lead__ppm":48,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1810,"geometry":{"type":"Point","coordinates":[-75.16925697710451,39.964756010720578]},"properties":{"OBJECTID":1810,"FID":1810,"Lead__ppm":48,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1811,"geometry":{"type":"Point","coordinates":[-75.141500022972025,39.9659599879203]},"properties":{"OBJECTID":1811,"FID":1811,"Lead__ppm":47,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1812,"geometry":{"type":"Point","coordinates":[-75.244720042378489,40.05525701254593]},"properties":{"OBJECTID":1812,"FID":1812,"Lead__ppm":46,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1813,"geometry":{"type":"Point","coordinates":[-75.155004037312082,39.922920014174643]},"properties":{"OBJECTID":1813,"FID":1813,"Lead__ppm":45,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1814,"geometry":{"type":"Point","coordinates":[-75.124111962838029,39.985119008838851]},"properties":{"OBJECTID":1814,"FID":1814,"Lead__ppm":45,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1815,"geometry":{"type":"Point","coordinates":[-75.139306965868911,39.969381020880512]},"properties":{"OBJECTID":1815,"FID":1815,"Lead__ppm":44,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1816,"geometry":{"type":"Point","coordinates":[-75.211633024339221,40.076891004832753]},"properties":{"OBJECTID":1816,"FID":1816,"Lead__ppm":44,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1817,"geometry":{"type":"Point","coordinates":[-75.227013978633906,40.089414974021317]},"properties":{"OBJECTID":1817,"FID":1817,"Lead__ppm":44,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1818,"geometry":{"type":"Point","coordinates":[-75.210631043471309,39.962504013147282]},"properties":{"OBJECTID":1818,"FID":1818,"Lead__ppm":44,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1819,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1819,"FID":1819,"Lead__ppm":43,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1820,"geometry":{"type":"Point","coordinates":[-75.228719969189996,40.07785799557761]},"properties":{"OBJECTID":1820,"FID":1820,"Lead__ppm":43,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1821,"geometry":{"type":"Point","coordinates":[-75.161411989728293,40.007376016370188]},"properties":{"OBJECTID":1821,"FID":1821,"Lead__ppm":42,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1822,"geometry":{"type":"Point","coordinates":[-75.160477023180562,39.934450968964576]},"properties":{"OBJECTID":1822,"FID":1822,"Lead__ppm":41,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1823,"geometry":{"type":"Point","coordinates":[-75.165335022405557,40.024050992790237]},"properties":{"OBJECTID":1823,"FID":1823,"Lead__ppm":41,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1824,"geometry":{"type":"Point","coordinates":[-75.161411989728293,40.007376016370188]},"properties":{"OBJECTID":1824,"FID":1824,"Lead__ppm":40,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1825,"geometry":{"type":"Point","coordinates":[-75.138538007985687,39.969373998609434]},"properties":{"OBJECTID":1825,"FID":1825,"Lead__ppm":40,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1826,"geometry":{"type":"Point","coordinates":[-75.125483959771458,39.988152001553118]},"properties":{"OBJECTID":1826,"FID":1826,"Lead__ppm":40,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1827,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1827,"FID":1827,"Lead__ppm":39,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1828,"geometry":{"type":"Point","coordinates":[-75.228719969189996,40.07785799557761]},"properties":{"OBJECTID":1828,"FID":1828,"Lead__ppm":39,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1829,"geometry":{"type":"Point","coordinates":[-75.161586981545625,39.929446997715544]},"properties":{"OBJECTID":1829,"FID":1829,"Lead__ppm":39,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1830,"geometry":{"type":"Point","coordinates":[-75.115703013126449,39.978092005626806]},"properties":{"OBJECTID":1830,"FID":1830,"Lead__ppm":39,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1831,"geometry":{"type":"Point","coordinates":[-75.157835976245266,40.002210028367109]},"properties":{"OBJECTID":1831,"FID":1831,"Lead__ppm":38,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1832,"geometry":{"type":"Point","coordinates":[-75.213111022476198,40.057359980940298]},"properties":{"OBJECTID":1832,"FID":1832,"Lead__ppm":37,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1833,"geometry":{"type":"Point","coordinates":[-75.213111022476198,40.057359980940298]},"properties":{"OBJECTID":1833,"FID":1833,"Lead__ppm":37,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1834,"geometry":{"type":"Point","coordinates":[-75.130412027588605,39.979404026574734]},"properties":{"OBJECTID":1834,"FID":1834,"Lead__ppm":37,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1835,"geometry":{"type":"Point","coordinates":[-75.169323003277881,40.032404974007981]},"properties":{"OBJECTID":1835,"FID":1835,"Lead__ppm":37,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1836,"geometry":{"type":"Point","coordinates":[-75.100342001431045,39.997196975624234]},"properties":{"OBJECTID":1836,"FID":1836,"Lead__ppm":37,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1837,"geometry":{"type":"Point","coordinates":[-75.210631043471309,39.962504013147282]},"properties":{"OBJECTID":1837,"FID":1837,"Lead__ppm":36,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1838,"geometry":{"type":"Point","coordinates":[-75.160477023180562,39.934450968964576]},"properties":{"OBJECTID":1838,"FID":1838,"Lead__ppm":36,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1839,"geometry":{"type":"Point","coordinates":[-75.219290982473282,39.957759001237903]},"properties":{"OBJECTID":1839,"FID":1839,"Lead__ppm":36,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1840,"geometry":{"type":"Point","coordinates":[-75.216571961771308,39.942103973195614]},"properties":{"OBJECTID":1840,"FID":1840,"Lead__ppm":34,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1841,"geometry":{"type":"Point","coordinates":[-75.169303958993879,40.026266980363118]},"properties":{"OBJECTID":1841,"FID":1841,"Lead__ppm":34,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1842,"geometry":{"type":"Point","coordinates":[-75.12769004244619,39.975100008023901]},"properties":{"OBJECTID":1842,"FID":1842,"Lead__ppm":34,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1843,"geometry":{"type":"Point","coordinates":[-75.212820956470935,39.955320025278091]},"properties":{"OBJECTID":1843,"FID":1843,"Lead__ppm":33,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1844,"geometry":{"type":"Point","coordinates":[-75.212672015796826,39.944777993961239]},"properties":{"OBJECTID":1844,"FID":1844,"Lead__ppm":33,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1845,"geometry":{"type":"Point","coordinates":[-75.182679963405946,39.983450000119056]},"properties":{"OBJECTID":1845,"FID":1845,"Lead__ppm":32,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1846,"geometry":{"type":"Point","coordinates":[-75.023438038441341,40.043123023793051]},"properties":{"OBJECTID":1846,"FID":1846,"Lead__ppm":32,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1847,"geometry":{"type":"Point","coordinates":[-75.160477023180562,39.934450968964576]},"properties":{"OBJECTID":1847,"FID":1847,"Lead__ppm":31,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1848,"geometry":{"type":"Point","coordinates":[-75.210631043471309,39.962504013147282]},"properties":{"OBJECTID":1848,"FID":1848,"Lead__ppm":31,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1849,"geometry":{"type":"Point","coordinates":[-75.206579012719232,39.973815991707184]},"properties":{"OBJECTID":1849,"FID":1849,"Lead__ppm":30,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1850,"geometry":{"type":"Point","coordinates":[-75.206579012719232,39.973815991707184]},"properties":{"OBJECTID":1850,"FID":1850,"Lead__ppm":30,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1851,"geometry":{"type":"Point","coordinates":[-75.165335022405557,40.024050992790237]},"properties":{"OBJECTID":1851,"FID":1851,"Lead__ppm":29,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1852,"geometry":{"type":"Point","coordinates":[-75.235388972027764,39.9287819690975]},"properties":{"OBJECTID":1852,"FID":1852,"Lead__ppm":28,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1853,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1853,"FID":1853,"Lead__ppm":27,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1854,"geometry":{"type":"Point","coordinates":[-75.165335022405557,40.024050992790237]},"properties":{"OBJECTID":1854,"FID":1854,"Lead__ppm":27,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1855,"geometry":{"type":"Point","coordinates":[-75.126703961758821,39.973220993552459]},"properties":{"OBJECTID":1855,"FID":1855,"Lead__ppm":26,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1856,"geometry":{"type":"Point","coordinates":[-75.154740022450085,39.951300000938758]},"properties":{"OBJECTID":1856,"FID":1856,"Lead__ppm":25,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1857,"geometry":{"type":"Point","coordinates":[-75.070110009027758,40.000150019830158]},"properties":{"OBJECTID":1857,"FID":1857,"Lead__ppm":24,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1858,"geometry":{"type":"Point","coordinates":[-75.235388972027764,39.9287819690975]},"properties":{"OBJECTID":1858,"FID":1858,"Lead__ppm":24,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1859,"geometry":{"type":"Point","coordinates":[-75.160477023180562,39.934450968964576]},"properties":{"OBJECTID":1859,"FID":1859,"Lead__ppm":24,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1860,"geometry":{"type":"Point","coordinates":[-75.161411989728293,40.007376016370188]},"properties":{"OBJECTID":1860,"FID":1860,"Lead__ppm":22,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1861,"geometry":{"type":"Point","coordinates":[-75.194053982375806,39.982471000983118]},"properties":{"OBJECTID":1861,"FID":1861,"Lead__ppm":21,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1862,"geometry":{"type":"Point","coordinates":[-75.210631043471309,39.962504013147282]},"properties":{"OBJECTID":1862,"FID":1862,"Lead__ppm":21,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1863,"geometry":{"type":"Point","coordinates":[-75.18797696931027,40.052018995043326]},"properties":{"OBJECTID":1863,"FID":1863,"Lead__ppm":21,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1864,"geometry":{"type":"Point","coordinates":[-75.210631043471309,39.962504013147282]},"properties":{"OBJECTID":1864,"FID":1864,"Lead__ppm":21,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1865,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1865,"FID":1865,"Lead__ppm":21,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1866,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1866,"FID":1866,"Lead__ppm":21,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1867,"geometry":{"type":"Point","coordinates":[-75.213111022476198,40.057359980940298]},"properties":{"OBJECTID":1867,"FID":1867,"Lead__ppm":20,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1868,"geometry":{"type":"Point","coordinates":[-75.216571961771308,39.942103973195614]},"properties":{"OBJECTID":1868,"FID":1868,"Lead__ppm":20,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1869,"geometry":{"type":"Point","coordinates":[-75.133812959422755,40.052582982653973]},"properties":{"OBJECTID":1869,"FID":1869,"Lead__ppm":20,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1870,"geometry":{"type":"Point","coordinates":[-75.210631043471309,39.962504013147282]},"properties":{"OBJECTID":1870,"FID":1870,"Lead__ppm":19,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1871,"geometry":{"type":"Point","coordinates":[-75.160477023180562,39.934450968964576]},"properties":{"OBJECTID":1871,"FID":1871,"Lead__ppm":19,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1872,"geometry":{"type":"Point","coordinates":[-75.235388972027764,39.9287819690975]},"properties":{"OBJECTID":1872,"FID":1872,"Lead__ppm":18,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1873,"geometry":{"type":"Point","coordinates":[-75.160477023180562,39.934450968964576]},"properties":{"OBJECTID":1873,"FID":1873,"Lead__ppm":18,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1874,"geometry":{"type":"Point","coordinates":[-75.161411989728293,40.007376016370188]},"properties":{"OBJECTID":1874,"FID":1874,"Lead__ppm":17,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1875,"geometry":{"type":"Point","coordinates":[-75.210631043471309,39.962504013147282]},"properties":{"OBJECTID":1875,"FID":1875,"Lead__ppm":17,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1876,"geometry":{"type":"Point","coordinates":[-75.070110009027758,40.000150019830158]},"properties":{"OBJECTID":1876,"FID":1876,"Lead__ppm":17,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1877,"geometry":{"type":"Point","coordinates":[-75.212672015796826,39.944777993961239]},"properties":{"OBJECTID":1877,"FID":1877,"Lead__ppm":16,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1878,"geometry":{"type":"Point","coordinates":[-75.194053982375806,39.982471000983118]},"properties":{"OBJECTID":1878,"FID":1878,"Lead__ppm":15,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1879,"geometry":{"type":"Point","coordinates":[-75.170429009055695,40.053337984366237]},"properties":{"OBJECTID":1879,"FID":1879,"Lead__ppm":13,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1880,"geometry":{"type":"Point","coordinates":[-75.160421956453661,39.934529975378148]},"properties":{"OBJECTID":1880,"FID":1880,"Lead__ppm":12,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1881,"geometry":{"type":"Point","coordinates":[-75.210631043471309,39.962504013147282]},"properties":{"OBJECTID":1881,"FID":1881,"Lead__ppm":11,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1882,"geometry":{"type":"Point","coordinates":[-75.133812959422755,40.052582982653973]},"properties":{"OBJECTID":1882,"FID":1882,"Lead__ppm":11,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1883,"geometry":{"type":"Point","coordinates":[-75.210631043471309,39.962504013147282]},"properties":{"OBJECTID":1883,"FID":1883,"Lead__ppm":11,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1884,"geometry":{"type":"Point","coordinates":[-75.161403006575441,39.985353030226804]},"properties":{"OBJECTID":1884,"FID":1884,"Lead__ppm":10,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1885,"geometry":{"type":"Point","coordinates":[-75.131343041549059,39.977595000556931]},"properties":{"OBJECTID":1885,"FID":1885,"Lead__ppm":9,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1886,"geometry":{"type":"Point","coordinates":[-75.187883993678369,39.934639013722474]},"properties":{"OBJECTID":1886,"FID":1886,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1887,"geometry":{"type":"Point","coordinates":[-75.132889042153025,39.967795001992194]},"properties":{"OBJECTID":1887,"FID":1887,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1888,"geometry":{"type":"Point","coordinates":[-75.14605798489211,39.969436992485718]},"properties":{"OBJECTID":1888,"FID":1888,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1889,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1889,"FID":1889,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1890,"geometry":{"type":"Point","coordinates":[-75.14291397122922,39.97113202230377]},"properties":{"OBJECTID":1890,"FID":1890,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1891,"geometry":{"type":"Point","coordinates":[-75.144767015997303,39.971524982883274]},"properties":{"OBJECTID":1891,"FID":1891,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1892,"geometry":{"type":"Point","coordinates":[-75.132529985533978,39.97110400277883]},"properties":{"OBJECTID":1892,"FID":1892,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1893,"geometry":{"type":"Point","coordinates":[-75.143336987896518,39.972458978053574]},"properties":{"OBJECTID":1893,"FID":1893,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1894,"geometry":{"type":"Point","coordinates":[-75.131309983546615,39.971737984748003]},"properties":{"OBJECTID":1894,"FID":1894,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1895,"geometry":{"type":"Point","coordinates":[-75.136174001484008,39.972656969346112]},"properties":{"OBJECTID":1895,"FID":1895,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1896,"geometry":{"type":"Point","coordinates":[-75.183694969845462,39.974581021060921]},"properties":{"OBJECTID":1896,"FID":1896,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1897,"geometry":{"type":"Point","coordinates":[-75.190824988087044,40.051123976595079]},"properties":{"OBJECTID":1897,"FID":1897,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1898,"geometry":{"type":"Point","coordinates":[-75.220229003292957,39.964742034078007]},"properties":{"OBJECTID":1898,"FID":1898,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1899,"geometry":{"type":"Point","coordinates":[-75.116713977147185,39.976740033239949]},"properties":{"OBJECTID":1899,"FID":1899,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1900,"geometry":{"type":"Point","coordinates":[-75.130542013810228,39.980790019243123]},"properties":{"OBJECTID":1900,"FID":1900,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1901,"geometry":{"type":"Point","coordinates":[-75.157835976245266,40.002210028367109]},"properties":{"OBJECTID":1901,"FID":1901,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1902,"geometry":{"type":"Point","coordinates":[-75.157835976245266,40.002210028367109]},"properties":{"OBJECTID":1902,"FID":1902,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1903,"geometry":{"type":"Point","coordinates":[-75.194053982375806,39.982471000983118]},"properties":{"OBJECTID":1903,"FID":1903,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1904,"geometry":{"type":"Point","coordinates":[-75.216900026513059,39.930300007666482]},"properties":{"OBJECTID":1904,"FID":1904,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1905,"geometry":{"type":"Point","coordinates":[-75.157999020469333,39.930286988374583]},"properties":{"OBJECTID":1905,"FID":1905,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1906,"geometry":{"type":"Point","coordinates":[-75.145913984952074,39.966579008602977]},"properties":{"OBJECTID":1906,"FID":1906,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1907,"geometry":{"type":"Point","coordinates":[-75.161411989728293,40.007376016370188]},"properties":{"OBJECTID":1907,"FID":1907,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1908,"geometry":{"type":"Point","coordinates":[-75.161411989728293,40.007376016370188]},"properties":{"OBJECTID":1908,"FID":1908,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1909,"geometry":{"type":"Point","coordinates":[-75.16217995946468,39.952220017765612]},"properties":{"OBJECTID":1909,"FID":1909,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"EPA","SymbolID":null}},{"type":"Feature","id":1910,"geometry":{"type":"Point","coordinates":[-75.245877970779716,39.944750996694872]},"properties":{"OBJECTID":1910,"FID":1910,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1911,"geometry":{"type":"Point","coordinates":[-75.245429980947534,39.954115034386625]},"properties":{"OBJECTID":1911,"FID":1911,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1912,"geometry":{"type":"Point","coordinates":[-75.244132993340315,39.944191971823777]},"properties":{"OBJECTID":1912,"FID":1912,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1913,"geometry":{"type":"Point","coordinates":[-75.233605995851846,39.935863978356927]},"properties":{"OBJECTID":1913,"FID":1913,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1914,"geometry":{"type":"Point","coordinates":[-75.230278007218757,39.933822014044303]},"properties":{"OBJECTID":1914,"FID":1914,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1915,"geometry":{"type":"Point","coordinates":[-75.229845019251812,39.935496022885339]},"properties":{"OBJECTID":1915,"FID":1915,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1916,"geometry":{"type":"Point","coordinates":[-75.22876802905769,39.94970998160715]},"properties":{"OBJECTID":1916,"FID":1916,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1917,"geometry":{"type":"Point","coordinates":[-75.226997000475038,39.939188988311663]},"properties":{"OBJECTID":1917,"FID":1917,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1918,"geometry":{"type":"Point","coordinates":[-75.225537956790575,39.944812980198705]},"properties":{"OBJECTID":1918,"FID":1918,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1919,"geometry":{"type":"Point","coordinates":[-75.224466985308851,39.948423973326079]},"properties":{"OBJECTID":1919,"FID":1919,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1920,"geometry":{"type":"Point","coordinates":[-75.223723000590525,39.949809974383562]},"properties":{"OBJECTID":1920,"FID":1920,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1921,"geometry":{"type":"Point","coordinates":[-75.223532018761134,39.942648000878314]},"properties":{"OBJECTID":1921,"FID":1921,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1922,"geometry":{"type":"Point","coordinates":[-75.218964983856679,39.941629985809286]},"properties":{"OBJECTID":1922,"FID":1922,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1923,"geometry":{"type":"Point","coordinates":[-75.218393026515287,39.941223973950812]},"properties":{"OBJECTID":1923,"FID":1923,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1924,"geometry":{"type":"Point","coordinates":[-75.217743005575684,39.935624001632071]},"properties":{"OBJECTID":1924,"FID":1924,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1925,"geometry":{"type":"Point","coordinates":[-75.215485988424334,39.941935026891244]},"properties":{"OBJECTID":1925,"FID":1925,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1926,"geometry":{"type":"Point","coordinates":[-75.235063961557955,39.955925026128341]},"properties":{"OBJECTID":1926,"FID":1926,"Lead__ppm":1,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1927,"geometry":{"type":"Point","coordinates":[-75.222775008471217,39.941336996323344]},"properties":{"OBJECTID":1927,"FID":1927,"Lead__ppm":4,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1928,"geometry":{"type":"Point","coordinates":[-75.217532979462263,39.94047799405979]},"properties":{"OBJECTID":1928,"FID":1928,"Lead__ppm":5,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1929,"geometry":{"type":"Point","coordinates":[-75.230129964859941,39.935784973483301]},"properties":{"OBJECTID":1929,"FID":1929,"Lead__ppm":7,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1930,"geometry":{"type":"Point","coordinates":[-75.226905012989945,39.943340994555953]},"properties":{"OBJECTID":1930,"FID":1930,"Lead__ppm":7,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1931,"geometry":{"type":"Point","coordinates":[-75.189268028036594,39.951578968426062]},"properties":{"OBJECTID":1931,"FID":1931,"Lead__ppm":8,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1932,"geometry":{"type":"Point","coordinates":[-75.151551003191457,40.007661016477698]},"properties":{"OBJECTID":1932,"FID":1932,"Lead__ppm":8,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1933,"geometry":{"type":"Point","coordinates":[-75.225537956790575,39.944812980198705]},"properties":{"OBJECTID":1933,"FID":1933,"Lead__ppm":9,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1934,"geometry":{"type":"Point","coordinates":[-75.189452991153601,39.956852968318586]},"properties":{"OBJECTID":1934,"FID":1934,"Lead__ppm":10,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1935,"geometry":{"type":"Point","coordinates":[-75.218460040835467,39.966085981906993]},"properties":{"OBJECTID":1935,"FID":1935,"Lead__ppm":12,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1936,"geometry":{"type":"Point","coordinates":[-75.199235015776978,39.95993197153571]},"properties":{"OBJECTID":1936,"FID":1936,"Lead__ppm":15,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1937,"geometry":{"type":"Point","coordinates":[-75.185917042532253,39.951520021058705]},"properties":{"OBJECTID":1937,"FID":1937,"Lead__ppm":16,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1938,"geometry":{"type":"Point","coordinates":[-75.186459984289968,39.949110021879029]},"properties":{"OBJECTID":1938,"FID":1938,"Lead__ppm":17,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1939,"geometry":{"type":"Point","coordinates":[-75.109981014261166,39.983340007102818]},"properties":{"OBJECTID":1939,"FID":1939,"Lead__ppm":18,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1940,"geometry":{"type":"Point","coordinates":[-75.185372034649376,39.951612987093895]},"properties":{"OBJECTID":1940,"FID":1940,"Lead__ppm":19,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1941,"geometry":{"type":"Point","coordinates":[-75.185322986634858,39.949554000847947]},"properties":{"OBJECTID":1941,"FID":1941,"Lead__ppm":19,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1942,"geometry":{"type":"Point","coordinates":[-75.122085004230939,39.9810330038868]},"properties":{"OBJECTID":1942,"FID":1942,"Lead__ppm":19,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1943,"geometry":{"type":"Point","coordinates":[-75.189385976833421,39.951767999068629]},"properties":{"OBJECTID":1943,"FID":1943,"Lead__ppm":20,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1944,"geometry":{"type":"Point","coordinates":[-75.256861042937956,39.974448984751604]},"properties":{"OBJECTID":1944,"FID":1944,"Lead__ppm":21,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1945,"geometry":{"type":"Point","coordinates":[-75.256861042937956,39.974448984751604]},"properties":{"OBJECTID":1945,"FID":1945,"Lead__ppm":21,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1946,"geometry":{"type":"Point","coordinates":[-75.229845019251812,39.940285970590949]},"properties":{"OBJECTID":1946,"FID":1946,"Lead__ppm":21,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1947,"geometry":{"type":"Point","coordinates":[-75.214568000035499,39.951121023173599]},"properties":{"OBJECTID":1947,"FID":1947,"Lead__ppm":21,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1948,"geometry":{"type":"Point","coordinates":[-75.23036999470385,39.944143968612785]},"properties":{"OBJECTID":1948,"FID":1948,"Lead__ppm":22,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1949,"geometry":{"type":"Point","coordinates":[-75.190255007039269,39.951307989162054]},"properties":{"OBJECTID":1949,"FID":1949,"Lead__ppm":22,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1950,"geometry":{"type":"Point","coordinates":[-75.189460986159631,39.951595013670278]},"properties":{"OBJECTID":1950,"FID":1950,"Lead__ppm":22,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1951,"geometry":{"type":"Point","coordinates":[-75.195972963485758,39.962290018568567]},"properties":{"OBJECTID":1951,"FID":1951,"Lead__ppm":23,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1952,"geometry":{"type":"Point","coordinates":[-75.231394972443027,39.946631000257263]},"properties":{"OBJECTID":1952,"FID":1952,"Lead__ppm":24,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1953,"geometry":{"type":"Point","coordinates":[-75.219954028984489,39.945481985242736]},"properties":{"OBJECTID":1953,"FID":1953,"Lead__ppm":25,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1954,"geometry":{"type":"Point","coordinates":[-75.214386989505741,39.941818010841097]},"properties":{"OBJECTID":1954,"FID":1954,"Lead__ppm":25,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1955,"geometry":{"type":"Point","coordinates":[-75.213074011886462,39.948094031243642]},"properties":{"OBJECTID":1955,"FID":1955,"Lead__ppm":25,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1956,"geometry":{"type":"Point","coordinates":[-75.209885980774672,39.943390031409784]},"properties":{"OBJECTID":1956,"FID":1956,"Lead__ppm":26,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1957,"geometry":{"type":"Point","coordinates":[-75.160054006513278,39.928955012177219]},"properties":{"OBJECTID":1957,"FID":1957,"Lead__ppm":27,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1958,"geometry":{"type":"Point","coordinates":[-75.189010031887008,39.95903299074056]},"properties":{"OBJECTID":1958,"FID":1958,"Lead__ppm":29,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1959,"geometry":{"type":"Point","coordinates":[-75.225218965033193,39.945045968800287]},"properties":{"OBJECTID":1959,"FID":1959,"Lead__ppm":30,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1960,"geometry":{"type":"Point","coordinates":[-75.19724201348761,39.951184997965285]},"properties":{"OBJECTID":1960,"FID":1960,"Lead__ppm":30,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1961,"geometry":{"type":"Point","coordinates":[-75.22054700690353,39.942594004654026]},"properties":{"OBJECTID":1961,"FID":1961,"Lead__ppm":31,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1962,"geometry":{"type":"Point","coordinates":[-75.215417985957316,39.990933032765042]},"properties":{"OBJECTID":1962,"FID":1962,"Lead__ppm":31,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1963,"geometry":{"type":"Point","coordinates":[-75.132953002201262,39.969351004109015]},"properties":{"OBJECTID":1963,"FID":1963,"Lead__ppm":31,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1964,"geometry":{"type":"Point","coordinates":[-75.191096997955086,39.951397994337803]},"properties":{"OBJECTID":1964,"FID":1964,"Lead__ppm":32,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1965,"geometry":{"type":"Point","coordinates":[-75.128699030173308,39.970841981800497]},"properties":{"OBJECTID":1965,"FID":1965,"Lead__ppm":32,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1966,"geometry":{"type":"Point","coordinates":[-75.247389026919137,39.948601029880152]},"properties":{"OBJECTID":1966,"FID":1966,"Lead__ppm":33,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1967,"geometry":{"type":"Point","coordinates":[-75.197990040624717,39.954612003600772]},"properties":{"OBJECTID":1967,"FID":1967,"Lead__ppm":33,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1968,"geometry":{"type":"Point","coordinates":[-75.253035028311359,39.973483969194199]},"properties":{"OBJECTID":1968,"FID":1968,"Lead__ppm":34,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1969,"geometry":{"type":"Point","coordinates":[-75.253035028311359,39.973483969194199]},"properties":{"OBJECTID":1969,"FID":1969,"Lead__ppm":34,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1970,"geometry":{"type":"Point","coordinates":[-75.192277024912286,39.951541988599942]},"properties":{"OBJECTID":1970,"FID":1970,"Lead__ppm":35,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1971,"geometry":{"type":"Point","coordinates":[-75.239366981600412,39.957854988518406]},"properties":{"OBJECTID":1971,"FID":1971,"Lead__ppm":36,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1972,"geometry":{"type":"Point","coordinates":[-75.234529014806284,39.95006202164253]},"properties":{"OBJECTID":1972,"FID":1972,"Lead__ppm":37,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1973,"geometry":{"type":"Point","coordinates":[-75.134535025248141,39.971562020747129]},"properties":{"OBJECTID":1973,"FID":1973,"Lead__ppm":37,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1974,"geometry":{"type":"Point","coordinates":[-75.232484988208782,39.941664973656565]},"properties":{"OBJECTID":1974,"FID":1974,"Lead__ppm":38,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1975,"geometry":{"type":"Point","coordinates":[-75.222050966352214,39.945969995295876]},"properties":{"OBJECTID":1975,"FID":1975,"Lead__ppm":38,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1976,"geometry":{"type":"Point","coordinates":[-75.254040961766506,39.973895985279036]},"properties":{"OBJECTID":1976,"FID":1976,"Lead__ppm":41,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1977,"geometry":{"type":"Point","coordinates":[-75.254040961766506,39.973895985279036]},"properties":{"OBJECTID":1977,"FID":1977,"Lead__ppm":41,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1978,"geometry":{"type":"Point","coordinates":[-75.21931595563818,39.946871971408896]},"properties":{"OBJECTID":1978,"FID":1978,"Lead__ppm":42,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1979,"geometry":{"type":"Point","coordinates":[-75.223646014970697,39.9420729802236]},"properties":{"OBJECTID":1979,"FID":1979,"Lead__ppm":43,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1980,"geometry":{"type":"Point","coordinates":[-75.214921037942162,39.997753020925494]},"properties":{"OBJECTID":1980,"FID":1980,"Lead__ppm":43,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1981,"geometry":{"type":"Point","coordinates":[-75.22054700690353,39.942594004654026]},"properties":{"OBJECTID":1981,"FID":1981,"Lead__ppm":44,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1982,"geometry":{"type":"Point","coordinates":[-75.206787960854314,40.003386990914429]},"properties":{"OBJECTID":1982,"FID":1982,"Lead__ppm":45,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1983,"geometry":{"type":"Point","coordinates":[-75.228591959262005,39.944110015101735]},"properties":{"OBJECTID":1983,"FID":1983,"Lead__ppm":46,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1984,"geometry":{"type":"Point","coordinates":[-75.192111016247793,39.951649002790624]},"properties":{"OBJECTID":1984,"FID":1984,"Lead__ppm":46,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1985,"geometry":{"type":"Point","coordinates":[-75.198109965715147,39.95441299599365]},"properties":{"OBJECTID":1985,"FID":1985,"Lead__ppm":47,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1986,"geometry":{"type":"Point","coordinates":[-75.152696983999419,39.928277992412923]},"properties":{"OBJECTID":1986,"FID":1986,"Lead__ppm":47,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1987,"geometry":{"type":"Point","coordinates":[-75.234599981713714,39.979000028684773]},"properties":{"OBJECTID":1987,"FID":1987,"Lead__ppm":48,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1988,"geometry":{"type":"Point","coordinates":[-75.188212956735413,39.961824020334731]},"properties":{"OBJECTID":1988,"FID":1988,"Lead__ppm":48,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1989,"geometry":{"type":"Point","coordinates":[-75.247116028904301,39.894286001084865]},"properties":{"OBJECTID":1989,"FID":1989,"Lead__ppm":49,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1990,"geometry":{"type":"Point","coordinates":[-75.131565015255788,39.972403008922896]},"properties":{"OBJECTID":1990,"FID":1990,"Lead__ppm":49,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1991,"geometry":{"type":"Point","coordinates":[-75.233969005058142,39.963176012361011]},"properties":{"OBJECTID":1991,"FID":1991,"Lead__ppm":50,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1992,"geometry":{"type":"Point","coordinates":[-75.221299974774695,39.982700006678243]},"properties":{"OBJECTID":1992,"FID":1992,"Lead__ppm":50,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1993,"geometry":{"type":"Point","coordinates":[-75.215668975247709,39.93487100375949]},"properties":{"OBJECTID":1993,"FID":1993,"Lead__ppm":51,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1994,"geometry":{"type":"Point","coordinates":[-75.210808999729096,39.942748968193662]},"properties":{"OBJECTID":1994,"FID":1994,"Lead__ppm":51,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1995,"geometry":{"type":"Point","coordinates":[-75.249890026501646,39.983067019915602]},"properties":{"OBJECTID":1995,"FID":1995,"Lead__ppm":52,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1996,"geometry":{"type":"Point","coordinates":[-75.249890026501646,39.983067019915602]},"properties":{"OBJECTID":1996,"FID":1996,"Lead__ppm":52,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1997,"geometry":{"type":"Point","coordinates":[-75.134535025248141,39.971562020747129]},"properties":{"OBJECTID":1997,"FID":1997,"Lead__ppm":52,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1998,"geometry":{"type":"Point","coordinates":[-75.233038979244498,39.990864002177943]},"properties":{"OBJECTID":1998,"FID":1998,"Lead__ppm":53,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":1999,"geometry":{"type":"Point","coordinates":[-75.218297984758223,39.94147198928421]},"properties":{"OBJECTID":1999,"FID":1999,"Lead__ppm":53,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2000,"geometry":{"type":"Point","coordinates":[-75.247098960913902,39.958703994967962]},"properties":{"OBJECTID":2000,"FID":2000,"Lead__ppm":54,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2001,"geometry":{"type":"Point","coordinates":[-75.216099986921023,39.972599967739356]},"properties":{"OBJECTID":2001,"FID":2001,"Lead__ppm":55,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2002,"geometry":{"type":"Point","coordinates":[-75.215856004489851,39.966081988658537]},"properties":{"OBJECTID":2002,"FID":2002,"Lead__ppm":55,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2003,"geometry":{"type":"Point","coordinates":[-75.242814985155462,39.904339994631684]},"properties":{"OBJECTID":2003,"FID":2003,"Lead__ppm":56,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2004,"geometry":{"type":"Point","coordinates":[-75.235417987611427,39.955615020670365]},"properties":{"OBJECTID":2004,"FID":2004,"Lead__ppm":56,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2005,"geometry":{"type":"Point","coordinates":[-75.208443016933785,39.949964990444336]},"properties":{"OBJECTID":2005,"FID":2005,"Lead__ppm":56,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2006,"geometry":{"type":"Point","coordinates":[-75.225582962386312,39.943129970390856]},"properties":{"OBJECTID":2006,"FID":2006,"Lead__ppm":59,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2007,"geometry":{"type":"Point","coordinates":[-75.218726031991096,39.9622960087734]},"properties":{"OBJECTID":2007,"FID":2007,"Lead__ppm":59,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2008,"geometry":{"type":"Point","coordinates":[-75.119328972939243,39.976220026147772]},"properties":{"OBJECTID":2008,"FID":2008,"Lead__ppm":60,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2009,"geometry":{"type":"Point","coordinates":[-75.240133963190019,39.948611015553162]},"properties":{"OBJECTID":2009,"FID":2009,"Lead__ppm":61,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2010,"geometry":{"type":"Point","coordinates":[-75.234106986285795,39.956272007469828]},"properties":{"OBJECTID":2010,"FID":2010,"Lead__ppm":61,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2011,"geometry":{"type":"Point","coordinates":[-75.191339004092612,39.951044032978977]},"properties":{"OBJECTID":2011,"FID":2011,"Lead__ppm":61,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2012,"geometry":{"type":"Point","coordinates":[-75.219509991739557,39.940495970404285]},"properties":{"OBJECTID":2012,"FID":2012,"Lead__ppm":62,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2013,"geometry":{"type":"Point","coordinates":[-75.119212012289267,39.980379008407191]},"properties":{"OBJECTID":2013,"FID":2013,"Lead__ppm":62,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2014,"geometry":{"type":"Point","coordinates":[-75.184292978330106,39.95039298720657]},"properties":{"OBJECTID":2014,"FID":2014,"Lead__ppm":63,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2015,"geometry":{"type":"Point","coordinates":[-75.188612976531431,39.959000972594481]},"properties":{"OBJECTID":2015,"FID":2015,"Lead__ppm":64,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2016,"geometry":{"type":"Point","coordinates":[-75.251157010378392,39.973384974817428]},"properties":{"OBJECTID":2016,"FID":2016,"Lead__ppm":65,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2017,"geometry":{"type":"Point","coordinates":[-75.251157010378392,39.973384974817428]},"properties":{"OBJECTID":2017,"FID":2017,"Lead__ppm":65,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2018,"geometry":{"type":"Point","coordinates":[-75.224466985308851,39.948423973326079]},"properties":{"OBJECTID":2018,"FID":2018,"Lead__ppm":65,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2019,"geometry":{"type":"Point","coordinates":[-75.229750965641571,39.944900032491503]},"properties":{"OBJECTID":2019,"FID":2019,"Lead__ppm":66,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2020,"geometry":{"type":"Point","coordinates":[-75.234999013362923,39.942984994208288]},"properties":{"OBJECTID":2020,"FID":2020,"Lead__ppm":67,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2021,"geometry":{"type":"Point","coordinates":[-75.192521007343458,39.960043999028166]},"properties":{"OBJECTID":2021,"FID":2021,"Lead__ppm":67,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2022,"geometry":{"type":"Point","coordinates":[-75.241958980521233,39.951771993153059]},"properties":{"OBJECTID":2022,"FID":2022,"Lead__ppm":68,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2023,"geometry":{"type":"Point","coordinates":[-75.227499967202618,39.975200032515502]},"properties":{"OBJECTID":2023,"FID":2023,"Lead__ppm":68,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2024,"geometry":{"type":"Point","coordinates":[-75.119212012289267,39.980379008407191]},"properties":{"OBJECTID":2024,"FID":2024,"Lead__ppm":68,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2025,"geometry":{"type":"Point","coordinates":[-75.229845019251812,39.940285970590949]},"properties":{"OBJECTID":2025,"FID":2025,"Lead__ppm":69,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2026,"geometry":{"type":"Point","coordinates":[-75.228112977552499,39.941750032619971]},"properties":{"OBJECTID":2026,"FID":2026,"Lead__ppm":69,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2027,"geometry":{"type":"Point","coordinates":[-75.22746403459125,39.960034015024277]},"properties":{"OBJECTID":2027,"FID":2027,"Lead__ppm":69,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2028,"geometry":{"type":"Point","coordinates":[-75.138847028443422,39.960424009787964]},"properties":{"OBJECTID":2028,"FID":2028,"Lead__ppm":69,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2029,"geometry":{"type":"Point","coordinates":[-75.199094968424191,39.960309022156345]},"properties":{"OBJECTID":2029,"FID":2029,"Lead__ppm":70,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2030,"geometry":{"type":"Point","coordinates":[-75.219064966347787,39.939180998673173]},"properties":{"OBJECTID":2030,"FID":2030,"Lead__ppm":71,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2031,"geometry":{"type":"Point","coordinates":[-75.213074011886462,39.948094031243642]},"properties":{"OBJECTID":2031,"FID":2031,"Lead__ppm":72,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2032,"geometry":{"type":"Point","coordinates":[-75.132490998650653,39.980576976755344]},"properties":{"OBJECTID":2032,"FID":2032,"Lead__ppm":74,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2033,"geometry":{"type":"Point","coordinates":[-75.222780039036806,39.985270985172669]},"properties":{"OBJECTID":2033,"FID":2033,"Lead__ppm":75,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2034,"geometry":{"type":"Point","coordinates":[-75.211316008875457,39.982296028275549]},"properties":{"OBJECTID":2034,"FID":2034,"Lead__ppm":76,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2035,"geometry":{"type":"Point","coordinates":[-75.189439965581983,39.951142990842918]},"properties":{"OBJECTID":2035,"FID":2035,"Lead__ppm":76,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2036,"geometry":{"type":"Point","coordinates":[-75.122034968069613,39.974458966650452]},"properties":{"OBJECTID":2036,"FID":2036,"Lead__ppm":78,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2037,"geometry":{"type":"Point","coordinates":[-75.187474990729498,39.961849014114897]},"properties":{"OBJECTID":2037,"FID":2037,"Lead__ppm":79,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2038,"geometry":{"type":"Point","coordinates":[-75.132599964294599,39.977600025695565]},"properties":{"OBJECTID":2038,"FID":2038,"Lead__ppm":80,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2039,"geometry":{"type":"Point","coordinates":[-75.128689957188953,39.982395009744195]},"properties":{"OBJECTID":2039,"FID":2039,"Lead__ppm":80,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2040,"geometry":{"type":"Point","coordinates":[-75.190576963237092,39.951397994337803]},"properties":{"OBJECTID":2040,"FID":2040,"Lead__ppm":81,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2041,"geometry":{"type":"Point","coordinates":[-75.131565015255788,39.972403008922896]},"properties":{"OBJECTID":2041,"FID":2041,"Lead__ppm":81,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2042,"geometry":{"type":"Point","coordinates":[-75.221070994208773,39.941542033996207]},"properties":{"OBJECTID":2042,"FID":2042,"Lead__ppm":82,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2043,"geometry":{"type":"Point","coordinates":[-75.230483990913399,39.943667998079711]},"properties":{"OBJECTID":2043,"FID":2043,"Lead__ppm":83,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2044,"geometry":{"type":"Point","coordinates":[-75.128689957188953,39.982395009744195]},"properties":{"OBJECTID":2044,"FID":2044,"Lead__ppm":83,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2045,"geometry":{"type":"Point","coordinates":[-75.252370005506521,39.988167969387895]},"properties":{"OBJECTID":2045,"FID":2045,"Lead__ppm":84,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2046,"geometry":{"type":"Point","coordinates":[-75.252370005506521,39.988167969387895]},"properties":{"OBJECTID":2046,"FID":2046,"Lead__ppm":84,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2047,"geometry":{"type":"Point","coordinates":[-75.223669011841963,39.940643018102499]},"properties":{"OBJECTID":2047,"FID":2047,"Lead__ppm":84,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2048,"geometry":{"type":"Point","coordinates":[-75.212030978010077,39.945933976609041]},"properties":{"OBJECTID":2048,"FID":2048,"Lead__ppm":84,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2049,"geometry":{"type":"Point","coordinates":[-75.244132993340315,39.944191971823777]},"properties":{"OBJECTID":2049,"FID":2049,"Lead__ppm":85,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2050,"geometry":{"type":"Point","coordinates":[-75.26701595823576,39.972460974491582]},"properties":{"OBJECTID":2050,"FID":2050,"Lead__ppm":86,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2051,"geometry":{"type":"Point","coordinates":[-75.236000006084026,39.979600001518207]},"properties":{"OBJECTID":2051,"FID":2051,"Lead__ppm":88,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2052,"geometry":{"type":"Point","coordinates":[-75.218297984758223,39.94147198928421]},"properties":{"OBJECTID":2052,"FID":2052,"Lead__ppm":88,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2053,"geometry":{"type":"Point","coordinates":[-75.199199981480902,39.959812989462044]},"properties":{"OBJECTID":2053,"FID":2053,"Lead__ppm":88,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2054,"geometry":{"type":"Point","coordinates":[-75.191289956078094,39.951463965921619]},"properties":{"OBJECTID":2054,"FID":2054,"Lead__ppm":88,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2055,"geometry":{"type":"Point","coordinates":[-75.191172995428118,39.951181003846571]},"properties":{"OBJECTID":2055,"FID":2055,"Lead__ppm":88,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2056,"geometry":{"type":"Point","coordinates":[-75.119602959100902,39.976587005352421]},"properties":{"OBJECTID":2056,"FID":2056,"Lead__ppm":88,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2057,"geometry":{"type":"Point","coordinates":[-75.240133963190019,39.948611015553162]},"properties":{"OBJECTID":2057,"FID":2057,"Lead__ppm":89,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2058,"geometry":{"type":"Point","coordinates":[-75.215856992636674,39.966131973096729]},"properties":{"OBJECTID":2058,"FID":2058,"Lead__ppm":90,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2059,"geometry":{"type":"Point","coordinates":[-75.230551993380416,39.934996021817376]},"properties":{"OBJECTID":2059,"FID":2059,"Lead__ppm":91,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2060,"geometry":{"type":"Point","coordinates":[-75.226299997646095,39.982700006678243]},"properties":{"OBJECTID":2060,"FID":2060,"Lead__ppm":92,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2061,"geometry":{"type":"Point","coordinates":[-75.26701595823576,39.972460974491582]},"properties":{"OBJECTID":2061,"FID":2061,"Lead__ppm":93,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2062,"geometry":{"type":"Point","coordinates":[-75.234015986947497,39.95270701567572]},"properties":{"OBJECTID":2062,"FID":2062,"Lead__ppm":93,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2063,"geometry":{"type":"Point","coordinates":[-75.233272990376008,39.990363029356395]},"properties":{"OBJECTID":2063,"FID":2063,"Lead__ppm":93,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2064,"geometry":{"type":"Point","coordinates":[-75.220683011837565,39.943377014607918]},"properties":{"OBJECTID":2064,"FID":2064,"Lead__ppm":93,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2065,"geometry":{"type":"Point","coordinates":[-75.210808999729096,39.942748968193662]},"properties":{"OBJECTID":2065,"FID":2065,"Lead__ppm":93,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2066,"geometry":{"type":"Point","coordinates":[-75.195296981234435,39.961112003601855]},"properties":{"OBJECTID":2066,"FID":2066,"Lead__ppm":93,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2067,"geometry":{"type":"Point","coordinates":[-75.231922014020228,39.943946996691331]},"properties":{"OBJECTID":2067,"FID":2067,"Lead__ppm":96,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2068,"geometry":{"type":"Point","coordinates":[-75.265093024538572,39.975687968198066]},"properties":{"OBJECTID":2068,"FID":2068,"Lead__ppm":97,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2069,"geometry":{"type":"Point","coordinates":[-75.265093024538572,39.975687968198066]},"properties":{"OBJECTID":2069,"FID":2069,"Lead__ppm":97,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2070,"geometry":{"type":"Point","coordinates":[-75.245877970779716,39.944750996694872]},"properties":{"OBJECTID":2070,"FID":2070,"Lead__ppm":97,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2071,"geometry":{"type":"Point","coordinates":[-75.122034968069613,39.974458966650452]},"properties":{"OBJECTID":2071,"FID":2071,"Lead__ppm":97,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2072,"geometry":{"type":"Point","coordinates":[-75.22054700690353,39.942594004654026]},"properties":{"OBJECTID":2072,"FID":2072,"Lead__ppm":98,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2073,"geometry":{"type":"Point","coordinates":[-75.125572982816109,39.980068012465566]},"properties":{"OBJECTID":2073,"FID":2073,"Lead__ppm":98,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2074,"geometry":{"type":"Point","coordinates":[-75.221199992283559,39.980500019725703]},"properties":{"OBJECTID":2074,"FID":2074,"Lead__ppm":99,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2075,"geometry":{"type":"Point","coordinates":[-75.189288958782726,39.959378992330741]},"properties":{"OBJECTID":2075,"FID":2075,"Lead__ppm":100,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2076,"geometry":{"type":"Point","coordinates":[-75.189222034294062,39.958847973848457]},"properties":{"OBJECTID":2076,"FID":2076,"Lead__ppm":100,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2077,"geometry":{"type":"Point","coordinates":[-75.187166958418587,39.960680011497352]},"properties":{"OBJECTID":2077,"FID":2077,"Lead__ppm":100,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2078,"geometry":{"type":"Point","coordinates":[-75.2262140288734,39.990129025130919]},"properties":{"OBJECTID":2078,"FID":2078,"Lead__ppm":102,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2079,"geometry":{"type":"Point","coordinates":[-75.129324976263291,39.974714020881052]},"properties":{"OBJECTID":2079,"FID":2079,"Lead__ppm":102,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2080,"geometry":{"type":"Point","coordinates":[-75.221656965268593,39.935969019569036]},"properties":{"OBJECTID":2080,"FID":2080,"Lead__ppm":103,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2081,"geometry":{"type":"Point","coordinates":[-75.218744986443596,39.936698999880221]},"properties":{"OBJECTID":2081,"FID":2081,"Lead__ppm":103,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2082,"geometry":{"type":"Point","coordinates":[-75.237069989418941,39.952082016030445]},"properties":{"OBJECTID":2082,"FID":2082,"Lead__ppm":106,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2083,"geometry":{"type":"Point","coordinates":[-75.215758986439184,39.956323995989081]},"properties":{"OBJECTID":2083,"FID":2083,"Lead__ppm":106,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2084,"geometry":{"type":"Point","coordinates":[-75.206787960854314,40.003386990914429]},"properties":{"OBJECTID":2084,"FID":2084,"Lead__ppm":107,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2085,"geometry":{"type":"Point","coordinates":[-75.217532979462263,39.94047799405979]},"properties":{"OBJECTID":2085,"FID":2085,"Lead__ppm":113,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2086,"geometry":{"type":"Point","coordinates":[-75.188666965279992,39.959411974281466]},"properties":{"OBJECTID":2086,"FID":2086,"Lead__ppm":113,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2087,"geometry":{"type":"Point","coordinates":[-75.234015986947497,39.95270701567572]},"properties":{"OBJECTID":2087,"FID":2087,"Lead__ppm":114,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2088,"geometry":{"type":"Point","coordinates":[-75.217401016947022,39.938336020263336]},"properties":{"OBJECTID":2088,"FID":2088,"Lead__ppm":114,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2089,"geometry":{"type":"Point","coordinates":[-75.226043977790113,39.950634978076565]},"properties":{"OBJECTID":2089,"FID":2089,"Lead__ppm":115,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2090,"geometry":{"type":"Point","coordinates":[-75.241501019389375,39.945147965629808]},"properties":{"OBJECTID":2090,"FID":2090,"Lead__ppm":116,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2091,"geometry":{"type":"Point","coordinates":[-75.237099993149428,39.9752999880209]},"properties":{"OBJECTID":2091,"FID":2091,"Lead__ppm":116,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2092,"geometry":{"type":"Point","coordinates":[-75.236500008371152,39.970900017537318]},"properties":{"OBJECTID":2092,"FID":2092,"Lead__ppm":116,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2093,"geometry":{"type":"Point","coordinates":[-75.260667025133714,39.97382500992002]},"properties":{"OBJECTID":2093,"FID":2093,"Lead__ppm":117,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2094,"geometry":{"type":"Point","coordinates":[-75.260667025133714,39.97382500992002]},"properties":{"OBJECTID":2094,"FID":2094,"Lead__ppm":117,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2095,"geometry":{"type":"Point","coordinates":[-75.234999013362923,39.942984994208288]},"properties":{"OBJECTID":2095,"FID":2095,"Lead__ppm":117,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2096,"geometry":{"type":"Point","coordinates":[-75.22909995655516,39.969299989336349]},"properties":{"OBJECTID":2096,"FID":2096,"Lead__ppm":118,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2097,"geometry":{"type":"Point","coordinates":[-75.227679989585553,39.945050996331602]},"properties":{"OBJECTID":2097,"FID":2097,"Lead__ppm":118,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2098,"geometry":{"type":"Point","coordinates":[-75.12747103317993,39.979361004251615]},"properties":{"OBJECTID":2098,"FID":2098,"Lead__ppm":118,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2099,"geometry":{"type":"Point","coordinates":[-75.240473975525049,39.981762985133173]},"properties":{"OBJECTID":2099,"FID":2099,"Lead__ppm":119,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2100,"geometry":{"type":"Point","coordinates":[-75.240473975525049,39.981762985133173]},"properties":{"OBJECTID":2100,"FID":2100,"Lead__ppm":119,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2101,"geometry":{"type":"Point","coordinates":[-75.231495044765694,39.948638975429724]},"properties":{"OBJECTID":2101,"FID":2101,"Lead__ppm":120,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2102,"geometry":{"type":"Point","coordinates":[-75.229777016784809,39.94457799355154]},"properties":{"OBJECTID":2102,"FID":2102,"Lead__ppm":122,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2103,"geometry":{"type":"Point","coordinates":[-75.228591959262005,39.944110015101735]},"properties":{"OBJECTID":2103,"FID":2103,"Lead__ppm":123,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2104,"geometry":{"type":"Point","coordinates":[-75.122085004230939,39.9810330038868]},"properties":{"OBJECTID":2104,"FID":2104,"Lead__ppm":123,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2105,"geometry":{"type":"Point","coordinates":[-75.248534019580276,39.985904973378375]},"properties":{"OBJECTID":2105,"FID":2105,"Lead__ppm":124,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2106,"geometry":{"type":"Point","coordinates":[-75.248534019580276,39.985904973378375]},"properties":{"OBJECTID":2106,"FID":2106,"Lead__ppm":124,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2107,"geometry":{"type":"Point","coordinates":[-75.242814985155462,39.904339994631684]},"properties":{"OBJECTID":2107,"FID":2107,"Lead__ppm":124,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2108,"geometry":{"type":"Point","coordinates":[-75.233764997657133,39.95357701999712]},"properties":{"OBJECTID":2108,"FID":2108,"Lead__ppm":124,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2109,"geometry":{"type":"Point","coordinates":[-75.213400010503079,39.97639997080239]},"properties":{"OBJECTID":2109,"FID":2109,"Lead__ppm":128,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2110,"geometry":{"type":"Point","coordinates":[-75.226905012989945,39.943340994555953]},"properties":{"OBJECTID":2110,"FID":2110,"Lead__ppm":129,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2111,"geometry":{"type":"Point","coordinates":[-75.22120699914278,39.941658017412735]},"properties":{"OBJECTID":2111,"FID":2111,"Lead__ppm":129,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2112,"geometry":{"type":"Point","coordinates":[-75.232142011433311,39.987724998242143]},"properties":{"OBJECTID":2112,"FID":2112,"Lead__ppm":130,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2113,"geometry":{"type":"Point","coordinates":[-75.23212700956806,39.939581030459991]},"properties":{"OBJECTID":2113,"FID":2113,"Lead__ppm":130,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2114,"geometry":{"type":"Point","coordinates":[-75.224382992829774,40.000616032011116]},"properties":{"OBJECTID":2114,"FID":2114,"Lead__ppm":131,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2115,"geometry":{"type":"Point","coordinates":[-75.23299100920832,39.943206969492586]},"properties":{"OBJECTID":2115,"FID":2115,"Lead__ppm":135,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2116,"geometry":{"type":"Point","coordinates":[-75.218900035661633,39.97639997080239]},"properties":{"OBJECTID":2116,"FID":2116,"Lead__ppm":135,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2117,"geometry":{"type":"Point","coordinates":[-75.21378197416189,39.995495022196799]},"properties":{"OBJECTID":2117,"FID":2117,"Lead__ppm":136,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2118,"geometry":{"type":"Point","coordinates":[-75.187519008178427,39.96318399919717]},"properties":{"OBJECTID":2118,"FID":2118,"Lead__ppm":136,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2119,"geometry":{"type":"Point","coordinates":[-75.128871955865506,39.993333023916172]},"properties":{"OBJECTID":2119,"FID":2119,"Lead__ppm":136,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2120,"geometry":{"type":"Point","coordinates":[-75.131155024160094,39.977877991005954]},"properties":{"OBJECTID":2120,"FID":2120,"Lead__ppm":138,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2121,"geometry":{"type":"Point","coordinates":[-75.233082008546617,39.941904033842711]},"properties":{"OBJECTID":2121,"FID":2121,"Lead__ppm":139,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2122,"geometry":{"type":"Point","coordinates":[-75.132599964294599,39.977600025695565]},"properties":{"OBJECTID":2122,"FID":2122,"Lead__ppm":140,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2123,"geometry":{"type":"Point","coordinates":[-75.234568989836418,39.966880014076636]},"properties":{"OBJECTID":2123,"FID":2123,"Lead__ppm":141,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2124,"geometry":{"type":"Point","coordinates":[-75.213014004425503,39.945450029622471]},"properties":{"OBJECTID":2124,"FID":2124,"Lead__ppm":142,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2125,"geometry":{"type":"Point","coordinates":[-75.19907295969972,39.959764997212808]},"properties":{"OBJECTID":2125,"FID":2125,"Lead__ppm":142,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2126,"geometry":{"type":"Point","coordinates":[-75.12681104094068,39.97306100473503]},"properties":{"OBJECTID":2126,"FID":2126,"Lead__ppm":144,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2127,"geometry":{"type":"Point","coordinates":[-75.210102025600492,39.943263995605051]},"properties":{"OBJECTID":2127,"FID":2127,"Lead__ppm":147,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2128,"geometry":{"type":"Point","coordinates":[-75.234703018476807,39.957822969820711]},"properties":{"OBJECTID":2128,"FID":2128,"Lead__ppm":148,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2129,"geometry":{"type":"Point","coordinates":[-75.129259039921436,39.976414013900104]},"properties":{"OBJECTID":2129,"FID":2129,"Lead__ppm":150,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2130,"geometry":{"type":"Point","coordinates":[-75.220683011837565,39.943377014607918]},"properties":{"OBJECTID":2130,"FID":2130,"Lead__ppm":152,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2131,"geometry":{"type":"Point","coordinates":[-75.229286985797316,39.974000004318945]},"properties":{"OBJECTID":2131,"FID":2131,"Lead__ppm":153,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2132,"geometry":{"type":"Point","coordinates":[-75.255500005450983,39.976034023179665]},"properties":{"OBJECTID":2132,"FID":2132,"Lead__ppm":156,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2133,"geometry":{"type":"Point","coordinates":[-75.255500005450983,39.976034023179665]},"properties":{"OBJECTID":2133,"FID":2133,"Lead__ppm":156,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2134,"geometry":{"type":"Point","coordinates":[-75.12594802944723,39.970432012647507]},"properties":{"OBJECTID":2134,"FID":2134,"Lead__ppm":156,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2135,"geometry":{"type":"Point","coordinates":[-75.219973971583798,39.991943018671371]},"properties":{"OBJECTID":2135,"FID":2135,"Lead__ppm":158,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2136,"geometry":{"type":"Point","coordinates":[-75.199542958256373,39.962015983348799]},"properties":{"OBJECTID":2136,"FID":2136,"Lead__ppm":159,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2137,"geometry":{"type":"Point","coordinates":[-75.210707040944342,39.982853984527438]},"properties":{"OBJECTID":2137,"FID":2137,"Lead__ppm":160,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2138,"geometry":{"type":"Point","coordinates":[-75.248134987931067,39.979998007207826]},"properties":{"OBJECTID":2138,"FID":2138,"Lead__ppm":162,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2139,"geometry":{"type":"Point","coordinates":[-75.248134987931067,39.979998007207826]},"properties":{"OBJECTID":2139,"FID":2139,"Lead__ppm":162,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2140,"geometry":{"type":"Point","coordinates":[-75.248134987931067,39.979998007207826]},"properties":{"OBJECTID":2140,"FID":2140,"Lead__ppm":162,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2141,"geometry":{"type":"Point","coordinates":[-75.211383023195651,39.944239010805596]},"properties":{"OBJECTID":2141,"FID":2141,"Lead__ppm":162,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2142,"geometry":{"type":"Point","coordinates":[-75.231394972443027,39.946631000257263]},"properties":{"OBJECTID":2142,"FID":2142,"Lead__ppm":163,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2143,"geometry":{"type":"Point","coordinates":[-75.243639997912396,39.97832901106522]},"properties":{"OBJECTID":2143,"FID":2143,"Lead__ppm":164,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2144,"geometry":{"type":"Point","coordinates":[-75.243639997912396,39.97832901106522]},"properties":{"OBJECTID":2144,"FID":2144,"Lead__ppm":164,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2145,"geometry":{"type":"Point","coordinates":[-75.23616897918896,39.964937982215034]},"properties":{"OBJECTID":2145,"FID":2145,"Lead__ppm":164,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2146,"geometry":{"type":"Point","coordinates":[-75.199438035031179,39.959617026637062]},"properties":{"OBJECTID":2146,"FID":2146,"Lead__ppm":164,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2147,"geometry":{"type":"Point","coordinates":[-75.251916985108736,39.97462700653525]},"properties":{"OBJECTID":2147,"FID":2147,"Lead__ppm":169,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2148,"geometry":{"type":"Point","coordinates":[-75.232422016307382,39.943023011745275]},"properties":{"OBJECTID":2148,"FID":2148,"Lead__ppm":169,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2149,"geometry":{"type":"Point","coordinates":[-75.215980960145885,39.965776022512919]},"properties":{"OBJECTID":2149,"FID":2149,"Lead__ppm":169,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2150,"geometry":{"type":"Point","coordinates":[-75.235148043868548,39.950667000139489]},"properties":{"OBJECTID":2150,"FID":2150,"Lead__ppm":171,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2151,"geometry":{"type":"Point","coordinates":[-75.222966978447431,39.944318005919072]},"properties":{"OBJECTID":2151,"FID":2151,"Lead__ppm":173,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2152,"geometry":{"type":"Point","coordinates":[-75.128699030173308,39.970841981800497]},"properties":{"OBJECTID":2152,"FID":2152,"Lead__ppm":173,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2153,"geometry":{"type":"Point","coordinates":[-75.21838700780286,39.938272033455689]},"properties":{"OBJECTID":2153,"FID":2153,"Lead__ppm":174,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2154,"geometry":{"type":"Point","coordinates":[-75.214495955149701,39.958302973283757]},"properties":{"OBJECTID":2154,"FID":2154,"Lead__ppm":174,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2155,"geometry":{"type":"Point","coordinates":[-75.222775008471217,39.941336996323344]},"properties":{"OBJECTID":2155,"FID":2155,"Lead__ppm":175,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2156,"geometry":{"type":"Point","coordinates":[-75.199190998328049,39.959634033974055]},"properties":{"OBJECTID":2156,"FID":2156,"Lead__ppm":176,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2157,"geometry":{"type":"Point","coordinates":[-75.21943004167926,39.94780898920277]},"properties":{"OBJECTID":2157,"FID":2157,"Lead__ppm":177,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2158,"geometry":{"type":"Point","coordinates":[-75.189573994222386,39.96092699233499]},"properties":{"OBJECTID":2158,"FID":2158,"Lead__ppm":178,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2159,"geometry":{"type":"Point","coordinates":[-75.213587039745235,39.981412966810069]},"properties":{"OBJECTID":2159,"FID":2159,"Lead__ppm":179,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2160,"geometry":{"type":"Point","coordinates":[-75.198919976606831,39.959975006088925]},"properties":{"OBJECTID":2160,"FID":2160,"Lead__ppm":180,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2161,"geometry":{"type":"Point","coordinates":[-75.230871973284607,39.949212976774767]},"properties":{"OBJECTID":2161,"FID":2161,"Lead__ppm":181,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2162,"geometry":{"type":"Point","coordinates":[-75.222232965028766,39.948899979637886]},"properties":{"OBJECTID":2162,"FID":2162,"Lead__ppm":183,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2163,"geometry":{"type":"Point","coordinates":[-75.26701595823576,39.972460974491582]},"properties":{"OBJECTID":2163,"FID":2163,"Lead__ppm":186,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2164,"geometry":{"type":"Point","coordinates":[-75.118840019930104,39.979224984696714]},"properties":{"OBJECTID":2164,"FID":2164,"Lead__ppm":188,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2165,"geometry":{"type":"Point","coordinates":[-75.210455961822433,40.003499979352597]},"properties":{"OBJECTID":2165,"FID":2165,"Lead__ppm":189,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2166,"geometry":{"type":"Point","coordinates":[-75.241958980521233,39.951771993153059]},"properties":{"OBJECTID":2166,"FID":2166,"Lead__ppm":191,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2167,"geometry":{"type":"Point","coordinates":[-75.223646014970697,39.9420729802236]},"properties":{"OBJECTID":2167,"FID":2167,"Lead__ppm":191,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2168,"geometry":{"type":"Point","coordinates":[-75.132044985112074,39.980191020547039]},"properties":{"OBJECTID":2168,"FID":2168,"Lead__ppm":191,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2169,"geometry":{"type":"Point","coordinates":[-75.231845028400372,39.965429984443489]},"properties":{"OBJECTID":2169,"FID":2169,"Lead__ppm":196,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2170,"geometry":{"type":"Point","coordinates":[-75.227275029055477,39.94505698804646]},"properties":{"OBJECTID":2170,"FID":2170,"Lead__ppm":196,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2171,"geometry":{"type":"Point","coordinates":[-75.22876802905769,39.94970998160715]},"properties":{"OBJECTID":2171,"FID":2171,"Lead__ppm":197,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2172,"geometry":{"type":"Point","coordinates":[-75.223669011841963,39.940643018102499]},"properties":{"OBJECTID":2172,"FID":2172,"Lead__ppm":197,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2173,"geometry":{"type":"Point","coordinates":[-75.228773957938557,39.950455998571307]},"properties":{"OBJECTID":2173,"FID":2173,"Lead__ppm":198,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2174,"geometry":{"type":"Point","coordinates":[-75.215512039567585,39.935031013056573]},"properties":{"OBJECTID":2174,"FID":2174,"Lead__ppm":198,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2175,"geometry":{"type":"Point","coordinates":[-75.26701595823576,39.972460974491582]},"properties":{"OBJECTID":2175,"FID":2175,"Lead__ppm":200,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2176,"geometry":{"type":"Point","coordinates":[-75.230249979781888,39.93792902457556]},"properties":{"OBJECTID":2176,"FID":2176,"Lead__ppm":200,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2177,"geometry":{"type":"Point","coordinates":[-75.226791016780396,39.939751979969706]},"properties":{"OBJECTID":2177,"FID":2177,"Lead__ppm":200,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2178,"geometry":{"type":"Point","coordinates":[-75.19378502677975,39.959921987515521]},"properties":{"OBJECTID":2178,"FID":2178,"Lead__ppm":200,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2179,"geometry":{"type":"Point","coordinates":[-75.227681965879185,39.938745975225977]},"properties":{"OBJECTID":2179,"FID":2179,"Lead__ppm":203,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2180,"geometry":{"type":"Point","coordinates":[-75.212405036494388,39.962212972093859]},"properties":{"OBJECTID":2180,"FID":2180,"Lead__ppm":204,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2181,"geometry":{"type":"Point","coordinates":[-75.26701595823576,39.972460974491582]},"properties":{"OBJECTID":2181,"FID":2181,"Lead__ppm":205,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2182,"geometry":{"type":"Point","coordinates":[-75.229845019251812,39.935496022885339]},"properties":{"OBJECTID":2182,"FID":2182,"Lead__ppm":206,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2183,"geometry":{"type":"Point","coordinates":[-75.221252992885326,39.941704025031818]},"properties":{"OBJECTID":2183,"FID":2183,"Lead__ppm":206,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2184,"geometry":{"type":"Point","coordinates":[-75.228945985315477,39.94331902438114]},"properties":{"OBJECTID":2184,"FID":2184,"Lead__ppm":209,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2185,"geometry":{"type":"Point","coordinates":[-75.210102025600492,39.943263995605051]},"properties":{"OBJECTID":2185,"FID":2185,"Lead__ppm":209,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2186,"geometry":{"type":"Point","coordinates":[-75.12747103317993,39.979361004251615]},"properties":{"OBJECTID":2186,"FID":2186,"Lead__ppm":210,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2187,"geometry":{"type":"Point","coordinates":[-75.222484044150676,39.944631988210091]},"properties":{"OBJECTID":2187,"FID":2187,"Lead__ppm":213,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2188,"geometry":{"type":"Point","coordinates":[-75.215206971697071,39.967450970726539]},"properties":{"OBJECTID":2188,"FID":2188,"Lead__ppm":215,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2189,"geometry":{"type":"Point","coordinates":[-75.199018970951144,39.959761967571858]},"properties":{"OBJECTID":2189,"FID":2189,"Lead__ppm":215,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2190,"geometry":{"type":"Point","coordinates":[-75.190823011793427,39.960273011019943]},"properties":{"OBJECTID":2190,"FID":2190,"Lead__ppm":216,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2191,"geometry":{"type":"Point","coordinates":[-75.225519002338075,39.93636500626932]},"properties":{"OBJECTID":2191,"FID":2191,"Lead__ppm":217,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2192,"geometry":{"type":"Point","coordinates":[-75.229845019251812,39.935496022885339]},"properties":{"OBJECTID":2192,"FID":2192,"Lead__ppm":218,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2193,"geometry":{"type":"Point","coordinates":[-75.249056030591873,39.975219996092299]},"properties":{"OBJECTID":2193,"FID":2193,"Lead__ppm":219,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2194,"geometry":{"type":"Point","coordinates":[-75.195964968479714,39.963689026987083]},"properties":{"OBJECTID":2194,"FID":2194,"Lead__ppm":219,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2195,"geometry":{"type":"Point","coordinates":[-75.195975029610906,39.978200010821055]},"properties":{"OBJECTID":2195,"FID":2195,"Lead__ppm":221,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2196,"geometry":{"type":"Point","coordinates":[-75.250690964408975,39.977714984244805]},"properties":{"OBJECTID":2196,"FID":2196,"Lead__ppm":223,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2197,"geometry":{"type":"Point","coordinates":[-75.224443988437585,39.950365028046882]},"properties":{"OBJECTID":2197,"FID":2197,"Lead__ppm":224,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2198,"geometry":{"type":"Point","coordinates":[-75.193051013361099,39.962466006437019]},"properties":{"OBJECTID":2198,"FID":2198,"Lead__ppm":227,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2199,"geometry":{"type":"Point","coordinates":[-75.233082008546617,39.952998028326036]},"properties":{"OBJECTID":2199,"FID":2199,"Lead__ppm":228,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2200,"geometry":{"type":"Point","coordinates":[-75.245429980947534,39.954115034386625]},"properties":{"OBJECTID":2200,"FID":2200,"Lead__ppm":231,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2201,"geometry":{"type":"Point","coordinates":[-75.227611987118564,39.943354011364676]},"properties":{"OBJECTID":2201,"FID":2201,"Lead__ppm":231,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2202,"geometry":{"type":"Point","coordinates":[-75.215668975247709,39.93487100375949]},"properties":{"OBJECTID":2202,"FID":2202,"Lead__ppm":233,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2203,"geometry":{"type":"Point","coordinates":[-75.22120699914278,39.941658017412735]},"properties":{"OBJECTID":2203,"FID":2203,"Lead__ppm":234,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2204,"geometry":{"type":"Point","coordinates":[-75.212030978010077,39.945933976609041]},"properties":{"OBJECTID":2204,"FID":2204,"Lead__ppm":235,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2205,"geometry":{"type":"Point","coordinates":[-75.195364983701467,40.015389006138435]},"properties":{"OBJECTID":2205,"FID":2205,"Lead__ppm":237,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2206,"geometry":{"type":"Point","coordinates":[-75.25651797633094,39.974342006240924]},"properties":{"OBJECTID":2206,"FID":2206,"Lead__ppm":238,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2207,"geometry":{"type":"Point","coordinates":[-75.238172042609492,39.949776987801975]},"properties":{"OBJECTID":2207,"FID":2207,"Lead__ppm":239,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2208,"geometry":{"type":"Point","coordinates":[-75.219954028984489,39.945481985242736]},"properties":{"OBJECTID":2208,"FID":2208,"Lead__ppm":239,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2209,"geometry":{"type":"Point","coordinates":[-75.24117699706639,39.950576029895686]},"properties":{"OBJECTID":2209,"FID":2209,"Lead__ppm":240,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2210,"geometry":{"type":"Point","coordinates":[-75.215077973622286,39.942085033047718]},"properties":{"OBJECTID":2210,"FID":2210,"Lead__ppm":241,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2211,"geometry":{"type":"Point","coordinates":[-75.225743042169938,39.943916004554154]},"properties":{"OBJECTID":2211,"FID":2211,"Lead__ppm":242,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2212,"geometry":{"type":"Point","coordinates":[-75.23036999470385,39.944143968612785]},"properties":{"OBJECTID":2212,"FID":2212,"Lead__ppm":243,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2213,"geometry":{"type":"Point","coordinates":[-75.214386989505741,39.941818010841097]},"properties":{"OBJECTID":2213,"FID":2213,"Lead__ppm":243,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2214,"geometry":{"type":"Point","coordinates":[-75.222050966352214,39.945969995295876]},"properties":{"OBJECTID":2214,"FID":2214,"Lead__ppm":244,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2215,"geometry":{"type":"Point","coordinates":[-75.249056030591873,39.975219996092299]},"properties":{"OBJECTID":2215,"FID":2215,"Lead__ppm":246,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2216,"geometry":{"type":"Point","coordinates":[-75.227611987118564,39.943354011364676]},"properties":{"OBJECTID":2216,"FID":2216,"Lead__ppm":246,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2217,"geometry":{"type":"Point","coordinates":[-75.246292004294176,39.978505026480441]},"properties":{"OBJECTID":2217,"FID":2217,"Lead__ppm":247,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2218,"geometry":{"type":"Point","coordinates":[-75.246292004294176,39.978505026480441]},"properties":{"OBJECTID":2218,"FID":2218,"Lead__ppm":247,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2219,"geometry":{"type":"Point","coordinates":[-75.217867961231704,39.971212982832171]},"properties":{"OBJECTID":2219,"FID":2219,"Lead__ppm":247,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2220,"geometry":{"type":"Point","coordinates":[-75.125220034740977,39.976640011002289]},"properties":{"OBJECTID":2220,"FID":2220,"Lead__ppm":252,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2221,"geometry":{"type":"Point","coordinates":[-75.235262040078112,39.934992026753505]},"properties":{"OBJECTID":2221,"FID":2221,"Lead__ppm":253,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2222,"geometry":{"type":"Point","coordinates":[-75.235063961557955,39.955925026128341]},"properties":{"OBJECTID":2222,"FID":2222,"Lead__ppm":253,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2223,"geometry":{"type":"Point","coordinates":[-75.230073011670925,39.94440003126288]},"properties":{"OBJECTID":2223,"FID":2223,"Lead__ppm":253,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2224,"geometry":{"type":"Point","coordinates":[-75.235224041341596,39.953767009178925]},"properties":{"OBJECTID":2224,"FID":2224,"Lead__ppm":256,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2225,"geometry":{"type":"Point","coordinates":[-75.231922014020228,39.943946996691331]},"properties":{"OBJECTID":2225,"FID":2225,"Lead__ppm":256,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2226,"geometry":{"type":"Point","coordinates":[-75.125220034740977,39.976640011002289]},"properties":{"OBJECTID":2226,"FID":2226,"Lead__ppm":256,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2227,"geometry":{"type":"Point","coordinates":[-75.23212700956806,39.939581030459991]},"properties":{"OBJECTID":2227,"FID":2227,"Lead__ppm":261,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2228,"geometry":{"type":"Point","coordinates":[-75.230551993380416,39.934996021817376]},"properties":{"OBJECTID":2228,"FID":2228,"Lead__ppm":263,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2229,"geometry":{"type":"Point","coordinates":[-75.118840019930104,39.979224984696714]},"properties":{"OBJECTID":2229,"FID":2229,"Lead__ppm":267,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2230,"geometry":{"type":"Point","coordinates":[-75.225286967500196,39.94043997510876]},"properties":{"OBJECTID":2230,"FID":2230,"Lead__ppm":269,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2231,"geometry":{"type":"Point","coordinates":[-75.229845019251812,39.935496022885339]},"properties":{"OBJECTID":2231,"FID":2231,"Lead__ppm":272,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2232,"geometry":{"type":"Point","coordinates":[-75.211508966998494,39.94425698616201]},"properties":{"OBJECTID":2232,"FID":2232,"Lead__ppm":273,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2233,"geometry":{"type":"Point","coordinates":[-75.238172042609492,39.949776987801975]},"properties":{"OBJECTID":2233,"FID":2233,"Lead__ppm":276,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2234,"geometry":{"type":"Point","coordinates":[-75.129552968682404,39.979998007207826]},"properties":{"OBJECTID":2234,"FID":2234,"Lead__ppm":277,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2235,"geometry":{"type":"Point","coordinates":[-75.225286967500196,39.94043997510876]},"properties":{"OBJECTID":2235,"FID":2235,"Lead__ppm":283,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2236,"geometry":{"type":"Point","coordinates":[-75.22363496569271,39.955334967885705]},"properties":{"OBJECTID":2236,"FID":2236,"Lead__ppm":283,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2237,"geometry":{"type":"Point","coordinates":[-75.226600034950991,39.973800020518105]},"properties":{"OBJECTID":2237,"FID":2237,"Lead__ppm":284,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2238,"geometry":{"type":"Point","coordinates":[-75.234106986285795,39.956272007469828]},"properties":{"OBJECTID":2238,"FID":2238,"Lead__ppm":285,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2239,"geometry":{"type":"Point","coordinates":[-75.231400003008631,39.976999966464099]},"properties":{"OBJECTID":2239,"FID":2239,"Lead__ppm":286,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2240,"geometry":{"type":"Point","coordinates":[-75.198794032804003,39.954336009504509]},"properties":{"OBJECTID":2240,"FID":2240,"Lead__ppm":287,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2241,"geometry":{"type":"Point","coordinates":[-75.230483990913399,39.943667998079711]},"properties":{"OBJECTID":2241,"FID":2241,"Lead__ppm":288,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2242,"geometry":{"type":"Point","coordinates":[-75.208443016933785,39.949964990444336]},"properties":{"OBJECTID":2242,"FID":2242,"Lead__ppm":288,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2243,"geometry":{"type":"Point","coordinates":[-75.125572982816109,39.980068012465566]},"properties":{"OBJECTID":2243,"FID":2243,"Lead__ppm":295,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2244,"geometry":{"type":"Point","coordinates":[-75.231154044283826,39.941053992358896]},"properties":{"OBJECTID":2244,"FID":2244,"Lead__ppm":296,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2245,"geometry":{"type":"Point","coordinates":[-75.130390018864148,39.978964991099708]},"properties":{"OBJECTID":2245,"FID":2245,"Lead__ppm":297,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2246,"geometry":{"type":"Point","coordinates":[-75.211607961342793,39.988654986555545]},"properties":{"OBJECTID":2246,"FID":2246,"Lead__ppm":298,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2247,"geometry":{"type":"Point","coordinates":[-75.227054043495585,39.936417974224362]},"properties":{"OBJECTID":2247,"FID":2247,"Lead__ppm":299,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2248,"geometry":{"type":"Point","coordinates":[-75.232749991217588,39.9653030253493]},"properties":{"OBJECTID":2248,"FID":2248,"Lead__ppm":305,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2249,"geometry":{"type":"Point","coordinates":[-75.23187296600571,39.947057984855391]},"properties":{"OBJECTID":2249,"FID":2249,"Lead__ppm":309,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2250,"geometry":{"type":"Point","coordinates":[-75.249851039618321,39.988892024180771]},"properties":{"OBJECTID":2250,"FID":2250,"Lead__ppm":311,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2251,"geometry":{"type":"Point","coordinates":[-75.249851039618321,39.988892024180771]},"properties":{"OBJECTID":2251,"FID":2251,"Lead__ppm":311,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2252,"geometry":{"type":"Point","coordinates":[-75.218744986443596,39.936698999880221]},"properties":{"OBJECTID":2252,"FID":2252,"Lead__ppm":311,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2253,"geometry":{"type":"Point","coordinates":[-75.217538010027837,39.938805966749221]},"properties":{"OBJECTID":2253,"FID":2253,"Lead__ppm":319,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2254,"geometry":{"type":"Point","coordinates":[-75.121532989488855,39.988004023596368]},"properties":{"OBJECTID":2254,"FID":2254,"Lead__ppm":328,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2255,"geometry":{"type":"Point","coordinates":[-75.241501019389375,39.945147965629808]},"properties":{"OBJECTID":2255,"FID":2255,"Lead__ppm":330,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2256,"geometry":{"type":"Point","coordinates":[-75.247012992141208,39.962651977475623]},"properties":{"OBJECTID":2256,"FID":2256,"Lead__ppm":331,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2257,"geometry":{"type":"Point","coordinates":[-75.215234010987146,39.940364006018285]},"properties":{"OBJECTID":2257,"FID":2257,"Lead__ppm":331,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2258,"geometry":{"type":"Point","coordinates":[-75.231783044645766,39.942599032365464]},"properties":{"OBJECTID":2258,"FID":2258,"Lead__ppm":335,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2259,"geometry":{"type":"Point","coordinates":[-75.22746403459125,39.960034015024277]},"properties":{"OBJECTID":2259,"FID":2259,"Lead__ppm":336,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2260,"geometry":{"type":"Point","coordinates":[-75.252305955626781,39.977004027912905]},"properties":{"OBJECTID":2260,"FID":2260,"Lead__ppm":342,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2261,"geometry":{"type":"Point","coordinates":[-75.220615009370547,39.941600989961756]},"properties":{"OBJECTID":2261,"FID":2261,"Lead__ppm":343,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2262,"geometry":{"type":"Point","coordinates":[-75.206016038530677,39.949177992787448]},"properties":{"OBJECTID":2262,"FID":2262,"Lead__ppm":344,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2263,"geometry":{"type":"Point","coordinates":[-75.192568977379636,39.960668030804023]},"properties":{"OBJECTID":2263,"FID":2263,"Lead__ppm":347,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2264,"geometry":{"type":"Point","coordinates":[-75.199263043213833,39.959915033128176]},"properties":{"OBJECTID":2264,"FID":2264,"Lead__ppm":348,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2265,"geometry":{"type":"Point","coordinates":[-75.191027019194436,39.960871977723258]},"properties":{"OBJECTID":2265,"FID":2265,"Lead__ppm":355,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2266,"geometry":{"type":"Point","coordinates":[-75.231179017448724,39.965505994547563]},"properties":{"OBJECTID":2266,"FID":2266,"Lead__ppm":359,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2267,"geometry":{"type":"Point","coordinates":[-75.232484988208782,39.941664973656565]},"properties":{"OBJECTID":2267,"FID":2267,"Lead__ppm":361,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2268,"geometry":{"type":"Point","coordinates":[-75.229617026832713,39.948766998462602]},"properties":{"OBJECTID":2268,"FID":2268,"Lead__ppm":370,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2269,"geometry":{"type":"Point","coordinates":[-75.216834000339688,39.962857020115074]},"properties":{"OBJECTID":2269,"FID":2269,"Lead__ppm":372,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2270,"geometry":{"type":"Point","coordinates":[-75.119602959100902,39.976587005352421]},"properties":{"OBJECTID":2270,"FID":2270,"Lead__ppm":377,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2271,"geometry":{"type":"Point","coordinates":[-75.253022990886549,39.972097002225787]},"properties":{"OBJECTID":2271,"FID":2271,"Lead__ppm":379,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2272,"geometry":{"type":"Point","coordinates":[-75.253022990886549,39.972097002225787]},"properties":{"OBJECTID":2272,"FID":2272,"Lead__ppm":379,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2273,"geometry":{"type":"Point","coordinates":[-75.214914031082927,39.968930974462651]},"properties":{"OBJECTID":2273,"FID":2273,"Lead__ppm":383,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2274,"geometry":{"type":"Point","coordinates":[-75.232650996873303,39.944722002169911]},"properties":{"OBJECTID":2274,"FID":2274,"Lead__ppm":388,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2275,"geometry":{"type":"Point","coordinates":[-75.223692008713243,39.942176978807545]},"properties":{"OBJECTID":2275,"FID":2275,"Lead__ppm":389,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2276,"geometry":{"type":"Point","coordinates":[-75.220433010693995,39.940886007704705]},"properties":{"OBJECTID":2276,"FID":2276,"Lead__ppm":389,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2277,"geometry":{"type":"Point","coordinates":[-75.240353960603088,39.958870971881666]},"properties":{"OBJECTID":2277,"FID":2277,"Lead__ppm":391,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2278,"geometry":{"type":"Point","coordinates":[-75.232422016307382,39.943023011745275]},"properties":{"OBJECTID":2278,"FID":2278,"Lead__ppm":392,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2279,"geometry":{"type":"Point","coordinates":[-75.245062031007151,39.953744009429265]},"properties":{"OBJECTID":2279,"FID":2279,"Lead__ppm":405,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2280,"geometry":{"type":"Point","coordinates":[-75.231495044765694,39.948638975429724]},"properties":{"OBJECTID":2280,"FID":2280,"Lead__ppm":406,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2281,"geometry":{"type":"Point","coordinates":[-75.222966978447431,39.944318005919072]},"properties":{"OBJECTID":2281,"FID":2281,"Lead__ppm":406,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2282,"geometry":{"type":"Point","coordinates":[-75.241047010844781,39.947764018702244]},"properties":{"OBJECTID":2282,"FID":2282,"Lead__ppm":407,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2283,"geometry":{"type":"Point","coordinates":[-75.234529014806284,39.95006202164253]},"properties":{"OBJECTID":2283,"FID":2283,"Lead__ppm":407,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2284,"geometry":{"type":"Point","coordinates":[-75.249056030591873,39.975219996092299]},"properties":{"OBJECTID":2284,"FID":2284,"Lead__ppm":408,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2285,"geometry":{"type":"Point","coordinates":[-75.119328972939243,39.976220026147772]},"properties":{"OBJECTID":2285,"FID":2285,"Lead__ppm":408,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2286,"geometry":{"type":"Point","coordinates":[-75.229058005231394,39.9378120016747]},"properties":{"OBJECTID":2286,"FID":2286,"Lead__ppm":410,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2287,"geometry":{"type":"Point","coordinates":[-75.225218965033193,39.945045968800287]},"properties":{"OBJECTID":2287,"FID":2287,"Lead__ppm":415,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2288,"geometry":{"type":"Point","coordinates":[-75.129324976263291,39.974714020881052]},"properties":{"OBJECTID":2288,"FID":2288,"Lead__ppm":419,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2289,"geometry":{"type":"Point","coordinates":[-75.232694026175395,39.929913009879826]},"properties":{"OBJECTID":2289,"FID":2289,"Lead__ppm":422,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2290,"geometry":{"type":"Point","coordinates":[-75.123884958565725,39.990076993494178]},"properties":{"OBJECTID":2290,"FID":2290,"Lead__ppm":436,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2291,"geometry":{"type":"Point","coordinates":[-75.233082008546617,39.952998028326036]},"properties":{"OBJECTID":2291,"FID":2291,"Lead__ppm":438,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2292,"geometry":{"type":"Point","coordinates":[-75.213802994739538,39.942249984341572]},"properties":{"OBJECTID":2292,"FID":2292,"Lead__ppm":442,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2293,"geometry":{"type":"Point","coordinates":[-75.221252992885326,39.941704025031818]},"properties":{"OBJECTID":2293,"FID":2293,"Lead__ppm":445,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2294,"geometry":{"type":"Point","coordinates":[-75.23299100920832,39.943206969492586]},"properties":{"OBJECTID":2294,"FID":2294,"Lead__ppm":451,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2295,"geometry":{"type":"Point","coordinates":[-75.228363966842892,39.952404983726403]},"properties":{"OBJECTID":2295,"FID":2295,"Lead__ppm":453,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2296,"geometry":{"type":"Point","coordinates":[-75.129259039921436,39.976414013900104]},"properties":{"OBJECTID":2296,"FID":2296,"Lead__ppm":453,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2297,"geometry":{"type":"Point","coordinates":[-75.245046040995121,39.963603995302705]},"properties":{"OBJECTID":2297,"FID":2297,"Lead__ppm":459,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2298,"geometry":{"type":"Point","coordinates":[-75.212520020850761,39.963038032733436]},"properties":{"OBJECTID":2298,"FID":2298,"Lead__ppm":460,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2299,"geometry":{"type":"Point","coordinates":[-75.226313023217713,39.944402992713421]},"properties":{"OBJECTID":2299,"FID":2299,"Lead__ppm":472,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2300,"geometry":{"type":"Point","coordinates":[-75.215808034453687,39.937414990177473]},"properties":{"OBJECTID":2300,"FID":2300,"Lead__ppm":483,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2301,"geometry":{"type":"Point","coordinates":[-75.232160965885797,39.986632011779051]},"properties":{"OBJECTID":2301,"FID":2301,"Lead__ppm":486,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2302,"geometry":{"type":"Point","coordinates":[-75.221656965268593,39.935969019569036]},"properties":{"OBJECTID":2302,"FID":2302,"Lead__ppm":491,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2303,"geometry":{"type":"Point","coordinates":[-75.12594802944723,39.970432012647507]},"properties":{"OBJECTID":2303,"FID":2303,"Lead__ppm":491,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2304,"geometry":{"type":"Point","coordinates":[-75.249056030591873,39.975219996092299]},"properties":{"OBJECTID":2304,"FID":2304,"Lead__ppm":510,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2305,"geometry":{"type":"Point","coordinates":[-75.247659958808825,39.983735994898851]},"properties":{"OBJECTID":2305,"FID":2305,"Lead__ppm":511,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2306,"geometry":{"type":"Point","coordinates":[-75.247659958808825,39.983735994898851]},"properties":{"OBJECTID":2306,"FID":2306,"Lead__ppm":511,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2307,"geometry":{"type":"Point","coordinates":[-75.238039990262735,39.992477014724194]},"properties":{"OBJECTID":2307,"FID":2307,"Lead__ppm":526,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2308,"geometry":{"type":"Point","coordinates":[-75.215894991373204,39.964773016779354]},"properties":{"OBJECTID":2308,"FID":2308,"Lead__ppm":535,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2309,"geometry":{"type":"Point","coordinates":[-75.218393026515287,39.941223973950812]},"properties":{"OBJECTID":2309,"FID":2309,"Lead__ppm":549,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2310,"geometry":{"type":"Point","coordinates":[-75.222232965028766,39.948899979637886]},"properties":{"OBJECTID":2310,"FID":2310,"Lead__ppm":554,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2311,"geometry":{"type":"Point","coordinates":[-75.229777016784809,39.94457799355154]},"properties":{"OBJECTID":2311,"FID":2311,"Lead__ppm":556,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2312,"geometry":{"type":"Point","coordinates":[-75.227275029055477,39.94505698804646]},"properties":{"OBJECTID":2312,"FID":2312,"Lead__ppm":565,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2313,"geometry":{"type":"Point","coordinates":[-75.227247001618622,39.944210016063714]},"properties":{"OBJECTID":2313,"FID":2313,"Lead__ppm":574,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2314,"geometry":{"type":"Point","coordinates":[-75.227611987118564,39.943354011364676]},"properties":{"OBJECTID":2314,"FID":2314,"Lead__ppm":577,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2315,"geometry":{"type":"Point","coordinates":[-75.227275029055477,39.94505698804646]},"properties":{"OBJECTID":2315,"FID":2315,"Lead__ppm":586,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2316,"geometry":{"type":"Point","coordinates":[-75.243776990993211,39.957743990302383]},"properties":{"OBJECTID":2316,"FID":2316,"Lead__ppm":587,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2317,"geometry":{"type":"Point","coordinates":[-75.240372016740295,39.954460027947547]},"properties":{"OBJECTID":2317,"FID":2317,"Lead__ppm":601,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2318,"geometry":{"type":"Point","coordinates":[-75.244529958864376,39.972313031392851]},"properties":{"OBJECTID":2318,"FID":2318,"Lead__ppm":614,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2319,"geometry":{"type":"Point","coordinates":[-75.244529958864376,39.972313031392851]},"properties":{"OBJECTID":2319,"FID":2319,"Lead__ppm":614,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2320,"geometry":{"type":"Point","coordinates":[-75.199910998028273,39.959900022665927]},"properties":{"OBJECTID":2320,"FID":2320,"Lead__ppm":626,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2321,"geometry":{"type":"Point","coordinates":[-75.198772024079531,39.959682026315164]},"properties":{"OBJECTID":2321,"FID":2321,"Lead__ppm":638,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2322,"geometry":{"type":"Point","coordinates":[-75.223723000590525,39.949809974383562]},"properties":{"OBJECTID":2322,"FID":2322,"Lead__ppm":661,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2323,"geometry":{"type":"Point","coordinates":[-75.125930961456845,39.99177102962215]},"properties":{"OBJECTID":2323,"FID":2323,"Lead__ppm":665,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2324,"geometry":{"type":"Point","coordinates":[-75.217538010027837,39.938805966749221]},"properties":{"OBJECTID":2324,"FID":2324,"Lead__ppm":676,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2325,"geometry":{"type":"Point","coordinates":[-75.229617026832713,39.948766998462602]},"properties":{"OBJECTID":2325,"FID":2325,"Lead__ppm":687,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2326,"geometry":{"type":"Point","coordinates":[-75.227247001618622,39.944210016063714]},"properties":{"OBJECTID":2326,"FID":2326,"Lead__ppm":687,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2327,"geometry":{"type":"Point","coordinates":[-75.245163001645096,39.981940987864043]},"properties":{"OBJECTID":2327,"FID":2327,"Lead__ppm":693,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2328,"geometry":{"type":"Point","coordinates":[-75.245163001645096,39.981940987864043]},"properties":{"OBJECTID":2328,"FID":2328,"Lead__ppm":693,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2329,"geometry":{"type":"Point","coordinates":[-75.215800039447672,39.97239997984191]},"properties":{"OBJECTID":2329,"FID":2329,"Lead__ppm":709,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2330,"geometry":{"type":"Point","coordinates":[-75.227681965879185,39.938745975225977]},"properties":{"OBJECTID":2330,"FID":2330,"Lead__ppm":711,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2331,"geometry":{"type":"Point","coordinates":[-75.231922014020228,39.943946996691331]},"properties":{"OBJECTID":2331,"FID":2331,"Lead__ppm":726,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2332,"geometry":{"type":"Point","coordinates":[-75.224443988437585,39.950365028046882]},"properties":{"OBJECTID":2332,"FID":2332,"Lead__ppm":729,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2333,"geometry":{"type":"Point","coordinates":[-75.215077973622286,39.942085033047718]},"properties":{"OBJECTID":2333,"FID":2333,"Lead__ppm":756,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2334,"geometry":{"type":"Point","coordinates":[-75.199180038881579,39.959900022665927]},"properties":{"OBJECTID":2334,"FID":2334,"Lead__ppm":768,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2335,"geometry":{"type":"Point","coordinates":[-75.235262040078112,39.934992026753505]},"properties":{"OBJECTID":2335,"FID":2335,"Lead__ppm":773,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2336,"geometry":{"type":"Point","coordinates":[-75.191198956739825,39.951537994502026]},"properties":{"OBJECTID":2336,"FID":2336,"Lead__ppm":799,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2337,"geometry":{"type":"Point","coordinates":[-75.221913973271384,39.950841020851712]},"properties":{"OBJECTID":2337,"FID":2337,"Lead__ppm":816,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2338,"geometry":{"type":"Point","coordinates":[-75.229058005231394,39.9378120016747]},"properties":{"OBJECTID":2338,"FID":2338,"Lead__ppm":836,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2339,"geometry":{"type":"Point","coordinates":[-75.225218965033193,39.945045968800287]},"properties":{"OBJECTID":2339,"FID":2339,"Lead__ppm":844,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2340,"geometry":{"type":"Point","coordinates":[-75.232694026175395,39.929913009879826]},"properties":{"OBJECTID":2340,"FID":2340,"Lead__ppm":881,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2341,"geometry":{"type":"Point","coordinates":[-75.213014004425503,39.945450029622471]},"properties":{"OBJECTID":2341,"FID":2341,"Lead__ppm":883,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2342,"geometry":{"type":"Point","coordinates":[-75.1298530059873,39.977177981602821]},"properties":{"OBJECTID":2342,"FID":2342,"Lead__ppm":891,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2343,"geometry":{"type":"Point","coordinates":[-75.210037975720738,39.945293970279749]},"properties":{"OBJECTID":2343,"FID":2343,"Lead__ppm":912,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2344,"geometry":{"type":"Point","coordinates":[-75.220114018936584,39.941928966029508]},"properties":{"OBJECTID":2344,"FID":2344,"Lead__ppm":922,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2345,"geometry":{"type":"Point","coordinates":[-75.240844979737389,39.97022898922966]},"properties":{"OBJECTID":2345,"FID":2345,"Lead__ppm":923,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2346,"geometry":{"type":"Point","coordinates":[-75.218964983856679,39.941629985809286]},"properties":{"OBJECTID":2346,"FID":2346,"Lead__ppm":927,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2347,"geometry":{"type":"Point","coordinates":[-75.212075983605828,39.95346897589576]},"properties":{"OBJECTID":2347,"FID":2347,"Lead__ppm":929,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2348,"geometry":{"type":"Point","coordinates":[-75.242522044541317,39.980722010921774]},"properties":{"OBJECTID":2348,"FID":2348,"Lead__ppm":937,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2349,"geometry":{"type":"Point","coordinates":[-75.242522044541317,39.980722010921774]},"properties":{"OBJECTID":2349,"FID":2349,"Lead__ppm":937,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2350,"geometry":{"type":"Point","coordinates":[-75.224876976404516,39.943764969338091]},"properties":{"OBJECTID":2350,"FID":2350,"Lead__ppm":937,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2351,"geometry":{"type":"Point","coordinates":[-75.211383023195651,39.944239010805596]},"properties":{"OBJECTID":2351,"FID":2351,"Lead__ppm":938,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2352,"geometry":{"type":"Point","coordinates":[-75.225582962386312,39.943129970390856]},"properties":{"OBJECTID":2352,"FID":2352,"Lead__ppm":963,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2353,"geometry":{"type":"Point","coordinates":[-75.227875013833739,39.943369025458431]},"properties":{"OBJECTID":2353,"FID":2353,"Lead__ppm":964,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2354,"geometry":{"type":"Point","coordinates":[-75.209491979691037,39.97506001195427]},"properties":{"OBJECTID":2354,"FID":2354,"Lead__ppm":969,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2355,"geometry":{"type":"Point","coordinates":[-75.250768039860347,39.975183992809924]},"properties":{"OBJECTID":2355,"FID":2355,"Lead__ppm":990,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2356,"geometry":{"type":"Point","coordinates":[-75.250768039860347,39.975183992809924]},"properties":{"OBJECTID":2356,"FID":2356,"Lead__ppm":990,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2357,"geometry":{"type":"Point","coordinates":[-75.217743005575684,39.935624001632071]},"properties":{"OBJECTID":2357,"FID":2357,"Lead__ppm":1005,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2358,"geometry":{"type":"Point","coordinates":[-75.228945985315477,39.94331902438114]},"properties":{"OBJECTID":2358,"FID":2358,"Lead__ppm":1020,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2359,"geometry":{"type":"Point","coordinates":[-75.232650996873303,39.944722002169911]},"properties":{"OBJECTID":2359,"FID":2359,"Lead__ppm":1036,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2360,"geometry":{"type":"Point","coordinates":[-75.249056030591873,39.975219996092299]},"properties":{"OBJECTID":2360,"FID":2360,"Lead__ppm":1044,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2361,"geometry":{"type":"Point","coordinates":[-75.227771977070645,39.943198016113087]},"properties":{"OBJECTID":2361,"FID":2361,"Lead__ppm":1059,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2362,"geometry":{"type":"Point","coordinates":[-75.220729005580097,39.940497003527376]},"properties":{"OBJECTID":2362,"FID":2362,"Lead__ppm":1063,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2363,"geometry":{"type":"Point","coordinates":[-75.215234010987146,39.940364006018285]},"properties":{"OBJECTID":2363,"FID":2363,"Lead__ppm":1106,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2364,"geometry":{"type":"Point","coordinates":[-75.220683011837565,39.943377014607918]},"properties":{"OBJECTID":2364,"FID":2364,"Lead__ppm":1109,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2365,"geometry":{"type":"Point","coordinates":[-75.227679989585553,39.945050996331602]},"properties":{"OBJECTID":2365,"FID":2365,"Lead__ppm":1142,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2366,"geometry":{"type":"Point","coordinates":[-75.231589996691213,39.975155011186416]},"properties":{"OBJECTID":2366,"FID":2366,"Lead__ppm":1149,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2367,"geometry":{"type":"Point","coordinates":[-75.228773957938557,39.950455998571307]},"properties":{"OBJECTID":2367,"FID":2367,"Lead__ppm":1180,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2368,"geometry":{"type":"Point","coordinates":[-75.188342044641729,39.962515029581098]},"properties":{"OBJECTID":2368,"FID":2368,"Lead__ppm":1314,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2369,"geometry":{"type":"Point","coordinates":[-75.197318010960657,39.962139987864468]},"properties":{"OBJECTID":2369,"FID":2369,"Lead__ppm":1369,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2370,"geometry":{"type":"Point","coordinates":[-75.220729005580097,39.940497003527376]},"properties":{"OBJECTID":2370,"FID":2370,"Lead__ppm":1414,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2371,"geometry":{"type":"Point","coordinates":[-75.230750970215851,39.943489000346133]},"properties":{"OBJECTID":2371,"FID":2371,"Lead__ppm":1480,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2372,"geometry":{"type":"Point","coordinates":[-75.230801006377177,39.947103024688261]},"properties":{"OBJECTID":2372,"FID":2372,"Lead__ppm":1578,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2373,"geometry":{"type":"Point","coordinates":[-75.239532990264934,39.971353011274886]},"properties":{"OBJECTID":2373,"FID":2373,"Lead__ppm":1614,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2374,"geometry":{"type":"Point","coordinates":[-75.194444030872191,39.962420012781152]},"properties":{"OBJECTID":2374,"FID":2374,"Lead__ppm":1628,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2375,"geometry":{"type":"Point","coordinates":[-75.222232965028766,39.948899979637886]},"properties":{"OBJECTID":2375,"FID":2375,"Lead__ppm":1700,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2376,"geometry":{"type":"Point","coordinates":[-75.245062031007151,39.953744009429265]},"properties":{"OBJECTID":2376,"FID":2376,"Lead__ppm":1803,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2377,"geometry":{"type":"Point","coordinates":[-75.227054043495585,39.936417974224362]},"properties":{"OBJECTID":2377,"FID":2377,"Lead__ppm":1806,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2378,"geometry":{"type":"Point","coordinates":[-75.128922980173641,40.043576019923826]},"properties":{"OBJECTID":2378,"FID":2378,"Lead__ppm":1837,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2379,"geometry":{"type":"Point","coordinates":[-75.221229996014046,39.943585971858219]},"properties":{"OBJECTID":2379,"FID":2379,"Lead__ppm":2109,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2380,"geometry":{"type":"Point","coordinates":[-75.215234010987146,39.940364006018285]},"properties":{"OBJECTID":2380,"FID":2380,"Lead__ppm":2138,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2381,"geometry":{"type":"Point","coordinates":[-75.12681104094068,39.97306100473503]},"properties":{"OBJECTID":2381,"FID":2381,"Lead__ppm":2153,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2382,"geometry":{"type":"Point","coordinates":[-75.225218965033193,39.945045968800287]},"properties":{"OBJECTID":2382,"FID":2382,"Lead__ppm":2158,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2383,"geometry":{"type":"Point","coordinates":[-75.227611987118564,39.943354011364676]},"properties":{"OBJECTID":2383,"FID":2383,"Lead__ppm":2362,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2384,"geometry":{"type":"Point","coordinates":[-75.225743042169938,39.943916004554154]},"properties":{"OBJECTID":2384,"FID":2384,"Lead__ppm":2412,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2385,"geometry":{"type":"Point","coordinates":[-75.231922014020228,39.943946996691331]},"properties":{"OBJECTID":2385,"FID":2385,"Lead__ppm":2667,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2386,"geometry":{"type":"Point","coordinates":[-75.246203969396319,39.960252010252894]},"properties":{"OBJECTID":2386,"FID":2386,"Lead__ppm":2849,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2387,"geometry":{"type":"Point","coordinates":[-75.239000019806852,39.98109997938878]},"properties":{"OBJECTID":2387,"FID":2387,"Lead__ppm":4024,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2388,"geometry":{"type":"Point","coordinates":[-75.132953002201262,39.969351004109015]},"properties":{"OBJECTID":2388,"FID":2388,"Lead__ppm":4140,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2389,"geometry":{"type":"Point","coordinates":[-75.231783044645766,39.942599032365464]},"properties":{"OBJECTID":2389,"FID":2389,"Lead__ppm":4169,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2390,"geometry":{"type":"Point","coordinates":[-75.233764997657133,39.95357701999712]},"properties":{"OBJECTID":2390,"FID":2390,"Lead__ppm":4806,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2391,"geometry":{"type":"Point","coordinates":[-75.223692008713243,39.942176978807545]},"properties":{"OBJECTID":2391,"FID":2391,"Lead__ppm":4882,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2392,"geometry":{"type":"Point","coordinates":[-75.153180008127677,39.944831024274812]},"properties":{"OBJECTID":2392,"FID":2392,"Lead__ppm":32,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2393,"geometry":{"type":"Point","coordinates":[-75.153021994469199,39.944816974689239]},"properties":{"OBJECTID":2393,"FID":2393,"Lead__ppm":35,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2394,"geometry":{"type":"Point","coordinates":[-75.152899015106797,39.944747966388825]},"properties":{"OBJECTID":2394,"FID":2394,"Lead__ppm":71,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2395,"geometry":{"type":"Point","coordinates":[-75.267256976226491,39.975861030327557]},"properties":{"OBJECTID":2395,"FID":2395,"Lead__ppm":46,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2396,"geometry":{"type":"Point","coordinates":[-75.266180974179164,39.976123995811079]},"properties":{"OBJECTID":2396,"FID":2396,"Lead__ppm":100,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2397,"geometry":{"type":"Point","coordinates":[-75.267256976226491,39.975861030327557]},"properties":{"OBJECTID":2397,"FID":2397,"Lead__ppm":33,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2398,"geometry":{"type":"Point","coordinates":[-75.250384010076402,39.975662979477278]},"properties":{"OBJECTID":2398,"FID":2398,"Lead__ppm":4450,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2399,"geometry":{"type":"Point","coordinates":[-75.195044015650438,39.967097987478382]},"properties":{"OBJECTID":2399,"FID":2399,"Lead__ppm":557,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2400,"geometry":{"type":"Point","coordinates":[-75.207358031733634,40.023001995363728]},"properties":{"OBJECTID":2400,"FID":2400,"Lead__ppm":40,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2401,"geometry":{"type":"Point","coordinates":[-75.207287963141454,40.022360027674303]},"properties":{"OBJECTID":2401,"FID":2401,"Lead__ppm":120,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2402,"geometry":{"type":"Point","coordinates":[-75.206804040697918,40.023067966626087]},"properties":{"OBJECTID":2402,"FID":2402,"Lead__ppm":69,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2403,"geometry":{"type":"Point","coordinates":[-75.170096003579886,40.073049026223941]},"properties":{"OBJECTID":2403,"FID":2403,"Lead__ppm":56,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2404,"geometry":{"type":"Point","coordinates":[-75.170083966155076,40.074072026099401]},"properties":{"OBJECTID":2404,"FID":2404,"Lead__ppm":98,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2405,"geometry":{"type":"Point","coordinates":[-75.197251984787286,40.045889024749791]},"properties":{"OBJECTID":2405,"FID":2405,"Lead__ppm":244,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2406,"geometry":{"type":"Point","coordinates":[-75.197479977206385,40.045976979827358]},"properties":{"OBJECTID":2406,"FID":2406,"Lead__ppm":93,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2407,"geometry":{"type":"Point","coordinates":[-75.238708965654808,39.964183998797651]},"properties":{"OBJECTID":2407,"FID":2407,"Lead__ppm":59,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2408,"geometry":{"type":"Point","coordinates":[-75.238667014331043,39.964222968466672]},"properties":{"OBJECTID":2408,"FID":2408,"Lead__ppm":134,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2409,"geometry":{"type":"Point","coordinates":[-75.244180963376493,39.958828005490034]},"properties":{"OBJECTID":2409,"FID":2409,"Lead__ppm":1208,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2410,"geometry":{"type":"Point","coordinates":[-75.250666979390886,39.938577020630447]},"properties":{"OBJECTID":2410,"FID":2410,"Lead__ppm":1498,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2411,"geometry":{"type":"Point","coordinates":[-75.165880030288449,39.982347033347871]},"properties":{"OBJECTID":2411,"FID":2411,"Lead__ppm":120,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2412,"geometry":{"type":"Point","coordinates":[-75.16621096963911,39.982469968493987]},"properties":{"OBJECTID":2412,"FID":2412,"Lead__ppm":260,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2413,"geometry":{"type":"Point","coordinates":[-75.171478959959771,39.984436969580038]},"properties":{"OBJECTID":2413,"FID":2413,"Lead__ppm":182,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2414,"geometry":{"type":"Point","coordinates":[-75.165929976618244,39.982404990482408]},"properties":{"OBJECTID":2414,"FID":2414,"Lead__ppm":231,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2415,"geometry":{"type":"Point","coordinates":[-75.165832958567549,39.982493027413341]},"properties":{"OBJECTID":2415,"FID":2415,"Lead__ppm":278,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2416,"geometry":{"type":"Point","coordinates":[-75.16572596921722,39.982366031178898]},"properties":{"OBJECTID":2416,"FID":2416,"Lead__ppm":187,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2417,"geometry":{"type":"Point","coordinates":[-75.204612959888422,39.946336999151704]},"properties":{"OBJECTID":2417,"FID":2417,"Lead__ppm":217,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2418,"geometry":{"type":"Point","coordinates":[-75.204672967349381,39.946411997445566]},"properties":{"OBJECTID":2418,"FID":2418,"Lead__ppm":167,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2419,"geometry":{"type":"Point","coordinates":[-75.204792982271343,39.946256009166298]},"properties":{"OBJECTID":2419,"FID":2419,"Lead__ppm":110,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2420,"geometry":{"type":"Point","coordinates":[-75.204529955556168,39.946319988507966]},"properties":{"OBJECTID":2420,"FID":2420,"Lead__ppm":169,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2421,"geometry":{"type":"Point","coordinates":[-75.204935994064584,39.946411997445566]},"properties":{"OBJECTID":2421,"FID":2421,"Lead__ppm":150,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2422,"geometry":{"type":"Point","coordinates":[-75.119343974804494,39.976824979746617]},"properties":{"OBJECTID":2422,"FID":2422,"Lead__ppm":1878,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2423,"geometry":{"type":"Point","coordinates":[-75.119378020953761,39.977118987464756]},"properties":{"OBJECTID":2423,"FID":2423,"Lead__ppm":1332,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2424,"geometry":{"type":"Point","coordinates":[-75.119220007295297,39.97729700229344]},"properties":{"OBJECTID":2424,"FID":2424,"Lead__ppm":728,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2425,"geometry":{"type":"Point","coordinates":[-75.119280014756271,39.977357992572784]},"properties":{"OBJECTID":2425,"FID":2425,"Lead__ppm":971,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2426,"geometry":{"type":"Point","coordinates":[-75.118961022998874,39.977818997472191]},"properties":{"OBJECTID":2426,"FID":2426,"Lead__ppm":1578,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2427,"geometry":{"type":"Point","coordinates":[-75.118941978714844,39.9778589919271]},"properties":{"OBJECTID":2427,"FID":2427,"Lead__ppm":112,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2428,"geometry":{"type":"Point","coordinates":[-75.118486982023455,39.978585014563876]},"properties":{"OBJECTID":2428,"FID":2428,"Lead__ppm":481,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2429,"geometry":{"type":"Point","coordinates":[-75.118473956451822,39.978596028406251]},"properties":{"OBJECTID":2429,"FID":2429,"Lead__ppm":670,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2430,"geometry":{"type":"Point","coordinates":[-75.118339029496155,39.97834498119591]},"properties":{"OBJECTID":2430,"FID":2430,"Lead__ppm":499,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2431,"geometry":{"type":"Point","coordinates":[-75.118294023900418,39.97837403030335]},"properties":{"OBJECTID":2431,"FID":2431,"Lead__ppm":1669,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2432,"geometry":{"type":"Point","coordinates":[-75.117714969868274,39.977799998376931]},"properties":{"OBJECTID":2432,"FID":2432,"Lead__ppm":2433,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2433,"geometry":{"type":"Point","coordinates":[-75.118483029436192,39.976685995091181]},"properties":{"OBJECTID":2433,"FID":2433,"Lead__ppm":1169,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2434,"geometry":{"type":"Point","coordinates":[-75.119682998992715,39.976399007060273]},"properties":{"OBJECTID":2434,"FID":2434,"Lead__ppm":1462,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2435,"geometry":{"type":"Point","coordinates":[-75.120196026851502,39.978281995529528]},"properties":{"OBJECTID":2435,"FID":2435,"Lead__ppm":711,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2436,"geometry":{"type":"Point","coordinates":[-75.12032700121992,39.978166005379983]},"properties":{"OBJECTID":2436,"FID":2436,"Lead__ppm":1031,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2437,"geometry":{"type":"Point","coordinates":[-75.118761956331923,39.97888899596159]},"properties":{"OBJECTID":2437,"FID":2437,"Lead__ppm":1011,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2438,"geometry":{"type":"Point","coordinates":[-75.119761960906203,39.976856025809866]},"properties":{"OBJECTID":2438,"FID":2438,"Lead__ppm":172,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2439,"geometry":{"type":"Point","coordinates":[-75.119494981603751,39.977198977170623]},"properties":{"OBJECTID":2439,"FID":2439,"Lead__ppm":1341,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2440,"geometry":{"type":"Point","coordinates":[-75.11881495693369,39.979351023068773]},"properties":{"OBJECTID":2440,"FID":2440,"Lead__ppm":117,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2441,"geometry":{"type":"Point","coordinates":[-75.11879196006241,39.979188983524224]},"properties":{"OBJECTID":2441,"FID":2441,"Lead__ppm":336,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2442,"geometry":{"type":"Point","coordinates":[-75.127670998162174,39.971977972479031]},"properties":{"OBJECTID":2442,"FID":2442,"Lead__ppm":114,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2443,"geometry":{"type":"Point","coordinates":[-75.127531040640918,39.972028985253004]},"properties":{"OBJECTID":2443,"FID":2443,"Lead__ppm":98,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2444,"geometry":{"type":"Point","coordinates":[-75.127989989919556,39.971880008570089]},"properties":{"OBJECTID":2444,"FID":2444,"Lead__ppm":77.333333330000002,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2445,"geometry":{"type":"Point","coordinates":[-75.129260028068259,39.97411097614463]},"properties":{"OBJECTID":2445,"FID":2445,"Lead__ppm":143,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2446,"geometry":{"type":"Point","coordinates":[-75.118150023960382,39.97715801859799]},"properties":{"OBJECTID":2446,"FID":2446,"Lead__ppm":150,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2447,"geometry":{"type":"Point","coordinates":[-75.117900022816812,39.977217976432932]},"properties":{"OBJECTID":2447,"FID":2447,"Lead__ppm":79,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2448,"geometry":{"type":"Point","coordinates":[-75.152999985744728,39.945000032298701]},"properties":{"OBJECTID":2448,"FID":2448,"Lead__ppm":32,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2449,"geometry":{"type":"Point","coordinates":[-75.152999985744728,39.945000032298701]},"properties":{"OBJECTID":2449,"FID":2449,"Lead__ppm":35,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2450,"geometry":{"type":"Point","coordinates":[-75.152999985744728,39.945000032298701]},"properties":{"OBJECTID":2450,"FID":2450,"Lead__ppm":70,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2451,"geometry":{"type":"Point","coordinates":[-75.268040037659659,39.975749992504078]},"properties":{"OBJECTID":2451,"FID":2451,"Lead__ppm":46,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2452,"geometry":{"type":"Point","coordinates":[-75.267339980558745,39.975730029082101]},"properties":{"OBJECTID":2452,"FID":2452,"Lead__ppm":33,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2453,"geometry":{"type":"Point","coordinates":[-75.266179986032341,39.976190012379625]},"properties":{"OBJECTID":2453,"FID":2453,"Lead__ppm":100,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2454,"geometry":{"type":"Point","coordinates":[-75.250469978849083,39.975449989844527]},"properties":{"OBJECTID":2454,"FID":2454,"Lead__ppm":4450,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2455,"geometry":{"type":"Point","coordinates":[-75.195009969501186,39.967050000342482]},"properties":{"OBJECTID":2455,"FID":2455,"Lead__ppm":557,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2456,"geometry":{"type":"Point","coordinates":[-75.251004027285489,39.975553868840102]},"properties":{"OBJECTID":2456,"FID":2456,"Lead__ppm":588,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2457,"geometry":{"type":"Point","coordinates":[-75.25101678336253,39.975424106120549]},"properties":{"OBJECTID":2457,"FID":2457,"Lead__ppm":678,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2458,"geometry":{"type":"Point","coordinates":[-75.251024059716329,39.975704971537276]},"properties":{"OBJECTID":2458,"FID":2458,"Lead__ppm":375,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2459,"geometry":{"type":"Point","coordinates":[-75.250796785949461,39.975605016624201]},"properties":{"OBJECTID":2459,"FID":2459,"Lead__ppm":267,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2460,"geometry":{"type":"Point","coordinates":[-75.25043305809092,39.975253521120258]},"properties":{"OBJECTID":2460,"FID":2460,"Lead__ppm":1260,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2461,"geometry":{"type":"Point","coordinates":[-75.207357762239042,40.023002132947269]},"properties":{"OBJECTID":2461,"FID":2461,"Lead__ppm":40,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2462,"geometry":{"type":"Point","coordinates":[-75.207288412299107,40.02235968371231]},"properties":{"OBJECTID":2462,"FID":2462,"Lead__ppm":120,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2463,"geometry":{"type":"Point","coordinates":[-75.206804220360965,40.023068104209443]},"properties":{"OBJECTID":2463,"FID":2463,"Lead__ppm":69,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2464,"geometry":{"type":"Point","coordinates":[-75.170096183242933,40.073048888741383]},"properties":{"OBJECTID":2464,"FID":2464,"Lead__ppm":56,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2465,"geometry":{"type":"Point","coordinates":[-75.170083786492,40.074072301060333]},"properties":{"OBJECTID":2465,"FID":2465,"Lead__ppm":98,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2466,"geometry":{"type":"Point","coordinates":[-75.197252164450333,40.045884417248452]},"properties":{"OBJECTID":2466,"FID":2466,"Lead__ppm":244,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2467,"geometry":{"type":"Point","coordinates":[-75.197480516195569,40.045658030381752]},"properties":{"OBJECTID":2467,"FID":2467,"Lead__ppm":93,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2468,"geometry":{"type":"Point","coordinates":[-75.248861635164403,39.907578195714208]},"properties":{"OBJECTID":2468,"FID":2468,"Lead__ppm":240,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2469,"geometry":{"type":"Point","coordinates":[-75.249403409112247,39.90734163415506]},"properties":{"OBJECTID":2469,"FID":2469,"Lead__ppm":150,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2470,"geometry":{"type":"Point","coordinates":[-75.248396218015699,39.907228969099691]},"properties":{"OBJECTID":2470,"FID":2470,"Lead__ppm":30,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2471,"geometry":{"type":"Point","coordinates":[-75.248057283658994,39.908017276058494]},"properties":{"OBJECTID":2471,"FID":2471,"Lead__ppm":370,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2472,"geometry":{"type":"Point","coordinates":[-75.248485420723412,39.907643589371339]},"properties":{"OBJECTID":2472,"FID":2472,"Lead__ppm":105,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2473,"geometry":{"type":"Point","coordinates":[-75.177642570618701,40.002720410372916]},"properties":{"OBJECTID":2473,"FID":2473,"Lead__ppm":287,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2474,"geometry":{"type":"Point","coordinates":[-75.17755013397597,40.002738232730799]},"properties":{"OBJECTID":2474,"FID":2474,"Lead__ppm":325,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2475,"geometry":{"type":"Point","coordinates":[-75.17756845960777,40.002291777824617]},"properties":{"OBJECTID":2475,"FID":2475,"Lead__ppm":25,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2476,"geometry":{"type":"Point","coordinates":[-75.232870994286387,39.939795991478633]},"properties":{"OBJECTID":2476,"FID":2476,"Lead__ppm":110,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2477,"geometry":{"type":"Point","coordinates":[-75.232922198257569,39.939674425974275]},"properties":{"OBJECTID":2477,"FID":2477,"Lead__ppm":120,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2478,"geometry":{"type":"Point","coordinates":[-75.156182896459427,39.96490541603162]},"properties":{"OBJECTID":2478,"FID":2478,"Lead__ppm":448,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2479,"geometry":{"type":"Point","coordinates":[-75.156659273054586,39.965329394855182]},"properties":{"OBJECTID":2479,"FID":2479,"Lead__ppm":1084,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2480,"geometry":{"type":"Point","coordinates":[-75.156536024197621,39.964950926063786]},"properties":{"OBJECTID":2480,"FID":2480,"Lead__ppm":416,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2481,"geometry":{"type":"Point","coordinates":[-75.183894126343958,39.985327287913407]},"properties":{"OBJECTID":2481,"FID":2481,"Lead__ppm":246,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2482,"geometry":{"type":"Point","coordinates":[-75.155786559756081,39.916659598678528]},"properties":{"OBJECTID":2482,"FID":2482,"Lead__ppm":635,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2483,"geometry":{"type":"Point","coordinates":[-75.155755388215724,39.916685780240549]},"properties":{"OBJECTID":2483,"FID":2483,"Lead__ppm":354,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2484,"geometry":{"type":"Point","coordinates":[-75.155972690682944,39.916765289449238]},"properties":{"OBJECTID":2484,"FID":2484,"Lead__ppm":269,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2485,"geometry":{"type":"Point","coordinates":[-75.152465038993043,40.030692067518075]},"properties":{"OBJECTID":2485,"FID":2485,"Lead__ppm":568,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2486,"geometry":{"type":"Point","coordinates":[-75.151991267512201,40.031255131033276]},"properties":{"OBJECTID":2486,"FID":2486,"Lead__ppm":184,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2487,"geometry":{"type":"Point","coordinates":[-75.151998274371408,40.031221908626556]},"properties":{"OBJECTID":2487,"FID":2487,"Lead__ppm":532,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2488,"geometry":{"type":"Point","coordinates":[-75.129130131678167,40.029443901600061]},"properties":{"OBJECTID":2488,"FID":2488,"Lead__ppm":331,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2489,"geometry":{"type":"Point","coordinates":[-75.129130131678167,40.029495972022438]},"properties":{"OBJECTID":2489,"FID":2489,"Lead__ppm":240,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2490,"geometry":{"type":"Point","coordinates":[-75.129605160800423,40.029892104885334]},"properties":{"OBJECTID":2490,"FID":2490,"Lead__ppm":151,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2491,"geometry":{"type":"Point","coordinates":[-75.051113425546021,40.039790896151132]},"properties":{"OBJECTID":2491,"FID":2491,"Lead__ppm":110,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2492,"geometry":{"type":"Point","coordinates":[-75.051199933307871,40.039572191855704]},"properties":{"OBJECTID":2492,"FID":2492,"Lead__ppm":109,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2493,"geometry":{"type":"Point","coordinates":[-75.052086031504132,40.03902288335108]},"properties":{"OBJECTID":2493,"FID":2493,"Lead__ppm":131,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2494,"geometry":{"type":"Point","coordinates":[-75.085012161276026,40.011683918574818]},"properties":{"OBJECTID":2494,"FID":2494,"Lead__ppm":179,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2495,"geometry":{"type":"Point","coordinates":[-75.085979826500065,40.012140219651059]},"properties":{"OBJECTID":2495,"FID":2495,"Lead__ppm":102,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2496,"geometry":{"type":"Point","coordinates":[-75.028821911433653,40.088559414267372]},"properties":{"OBJECTID":2496,"FID":2496,"Lead__ppm":51,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2497,"geometry":{"type":"Point","coordinates":[-75.138878559309902,40.006766103885347]},"properties":{"OBJECTID":2497,"FID":2497,"Lead__ppm":222,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2498,"geometry":{"type":"Point","coordinates":[-75.138284503412521,40.007454388078003]},"properties":{"OBJECTID":2498,"FID":2498,"Lead__ppm":261,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2499,"geometry":{"type":"Point","coordinates":[-75.227230562448909,39.923806724597711]},"properties":{"OBJECTID":2499,"FID":2499,"Lead__ppm":82,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2500,"geometry":{"type":"Point","coordinates":[-75.227230562448909,39.923806724597711]},"properties":{"OBJECTID":2500,"FID":2500,"Lead__ppm":26,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2501,"geometry":{"type":"Point","coordinates":[-75.227230562448909,39.923806724597711]},"properties":{"OBJECTID":2501,"FID":2501,"Lead__ppm":28,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2502,"geometry":{"type":"Point","coordinates":[-75.227230562448909,39.923806724597711]},"properties":{"OBJECTID":2502,"FID":2502,"Lead__ppm":26,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2503,"geometry":{"type":"Point","coordinates":[-75.227011283688057,39.924294200317426]},"properties":{"OBJECTID":2503,"FID":2503,"Lead__ppm":94,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2504,"geometry":{"type":"Point","coordinates":[-75.227011283688057,39.924294200317426]},"properties":{"OBJECTID":2504,"FID":2504,"Lead__ppm":127,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2505,"geometry":{"type":"Point","coordinates":[-75.227486761967938,39.924050393999977]},"properties":{"OBJECTID":2505,"FID":2505,"Lead__ppm":66,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2506,"geometry":{"type":"Point","coordinates":[-75.227486761967938,39.924050393999977]},"properties":{"OBJECTID":2506,"FID":2506,"Lead__ppm":75,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2507,"geometry":{"type":"Point","coordinates":[-75.227486761967938,39.924050393999977]},"properties":{"OBJECTID":2507,"FID":2507,"Lead__ppm":84,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2508,"geometry":{"type":"Point","coordinates":[-75.227486761967938,39.924050393999977]},"properties":{"OBJECTID":2508,"FID":2508,"Lead__ppm":74,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2509,"geometry":{"type":"Point","coordinates":[-75.177482311172014,39.951819095786469]},"properties":{"OBJECTID":2509,"FID":2509,"Lead__ppm":142,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2510,"geometry":{"type":"Point","coordinates":[-75.178190363278958,39.951969217998247]},"properties":{"OBJECTID":2510,"FID":2510,"Lead__ppm":95,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2511,"geometry":{"type":"Point","coordinates":[-75.177433442820558,39.95242082218823]},"properties":{"OBJECTID":2511,"FID":2511,"Lead__ppm":38,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2512,"geometry":{"type":"Point","coordinates":[-75.169048837453175,39.951711668680431]},"properties":{"OBJECTID":2512,"FID":2512,"Lead__ppm":34,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2513,"geometry":{"type":"Point","coordinates":[-75.169075607248644,39.951720896399991]},"properties":{"OBJECTID":2513,"FID":2513,"Lead__ppm":31,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2514,"geometry":{"type":"Point","coordinates":[-75.169068869884015,39.951807526721616]},"properties":{"OBJECTID":2514,"FID":2514,"Lead__ppm":29,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2515,"geometry":{"type":"Point","coordinates":[-75.194120098380722,39.933670681020857]},"properties":{"OBJECTID":2515,"FID":2515,"Lead__ppm":38,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2516,"geometry":{"type":"Point","coordinates":[-75.19315719422768,39.93348249583866]},"properties":{"OBJECTID":2516,"FID":2516,"Lead__ppm":63,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2517,"geometry":{"type":"Point","coordinates":[-75.193199415046038,39.932960093265145]},"properties":{"OBJECTID":2517,"FID":2517,"Lead__ppm":42,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2518,"geometry":{"type":"Point","coordinates":[-75.158482942912897,39.948393189817772]},"properties":{"OBJECTID":2518,"FID":2518,"Lead__ppm":50,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2519,"geometry":{"type":"Point","coordinates":[-75.158431289784062,39.9481277073087]},"properties":{"OBJECTID":2519,"FID":2519,"Lead__ppm":55,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2520,"geometry":{"type":"Point","coordinates":[-75.158047978652334,39.947681515318109]},"properties":{"OBJECTID":2520,"FID":2520,"Lead__ppm":28,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2521,"geometry":{"type":"Point","coordinates":[-75.182185620505081,39.943655187945808]},"properties":{"OBJECTID":2521,"FID":2521,"Lead__ppm":92,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2522,"geometry":{"type":"Point","coordinates":[-75.18194523133505,39.943773716028659]},"properties":{"OBJECTID":2522,"FID":2522,"Lead__ppm":88,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2523,"geometry":{"type":"Point","coordinates":[-75.181921425980022,39.943886320960758]},"properties":{"OBJECTID":2523,"FID":2523,"Lead__ppm":345,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2524,"geometry":{"type":"Point","coordinates":[-75.203139004170225,39.937511694786267]},"properties":{"OBJECTID":2524,"FID":2524,"Lead__ppm":44,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2525,"geometry":{"type":"Point","coordinates":[-75.203132266805596,39.937188105751204]},"properties":{"OBJECTID":2525,"FID":2525,"Lead__ppm":63,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2526,"geometry":{"type":"Point","coordinates":[-75.203236201883982,39.93732358904343]},"properties":{"OBJECTID":2526,"FID":2526,"Lead__ppm":35,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2527,"geometry":{"type":"Point","coordinates":[-75.188316801982253,39.939143392258963]},"properties":{"OBJECTID":2527,"FID":2527,"Lead__ppm":165,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2528,"geometry":{"type":"Point","coordinates":[-75.182649869843914,39.920369632927013]},"properties":{"OBJECTID":2528,"FID":2528,"Lead__ppm":129,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2529,"geometry":{"type":"Point","coordinates":[-75.182768986450597,39.920577075843276]},"properties":{"OBJECTID":2529,"FID":2529,"Lead__ppm":230,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2530,"geometry":{"type":"Point","coordinates":[-75.183376517077235,39.920479176092947]},"properties":{"OBJECTID":2530,"FID":2530,"Lead__ppm":98,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2531,"geometry":{"type":"Point","coordinates":[-75.185099485792179,39.928795195335603]},"properties":{"OBJECTID":2531,"FID":2531,"Lead__ppm":51,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2532,"geometry":{"type":"Point","coordinates":[-75.185098138319248,39.928944265884077]},"properties":{"OBJECTID":2532,"FID":2532,"Lead__ppm":35,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2533,"geometry":{"type":"Point","coordinates":[-75.185246001015031,39.92881682574032]},"properties":{"OBJECTID":2533,"FID":2533,"Lead__ppm":101,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2534,"geometry":{"type":"Point","coordinates":[-75.186324608176662,39.925746410974376]},"properties":{"OBJECTID":2534,"FID":2534,"Lead__ppm":219,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2535,"geometry":{"type":"Point","coordinates":[-75.186268193976815,39.926166223628655]},"properties":{"OBJECTID":2535,"FID":2535,"Lead__ppm":903,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2536,"geometry":{"type":"Point","coordinates":[-75.18645333675687,39.925378401111757]},"properties":{"OBJECTID":2536,"FID":2536,"Lead__ppm":819,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2537,"geometry":{"type":"Point","coordinates":[-75.171956324701767,39.916526072556401]},"properties":{"OBJECTID":2537,"FID":2537,"Lead__ppm":241,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2538,"geometry":{"type":"Point","coordinates":[-75.17216653047825,39.916062174052037]},"properties":{"OBJECTID":2538,"FID":2538,"Lead__ppm":307,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2539,"geometry":{"type":"Point","coordinates":[-75.172472496664,39.915011518101757]},"properties":{"OBJECTID":2539,"FID":2539,"Lead__ppm":243,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2540,"geometry":{"type":"Point","coordinates":[-75.171250877709127,39.915613499287858]},"properties":{"OBJECTID":2540,"FID":2540,"Lead__ppm":293,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2541,"geometry":{"type":"Point","coordinates":[-75.170732190464093,39.915322396536489]},"properties":{"OBJECTID":2541,"FID":2541,"Lead__ppm":77,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2542,"geometry":{"type":"Point","coordinates":[-75.1709886594777,39.916255574567913]},"properties":{"OBJECTID":2542,"FID":2542,"Lead__ppm":123,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2543,"geometry":{"type":"Point","coordinates":[-75.156340191465674,39.919082384255951]},"properties":{"OBJECTID":2543,"FID":2543,"Lead__ppm":164,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2544,"geometry":{"type":"Point","coordinates":[-75.156460206387649,39.919240501364534]},"properties":{"OBJECTID":2544,"FID":2544,"Lead__ppm":166,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2545,"geometry":{"type":"Point","coordinates":[-75.156330759155196,39.91933261560763]},"properties":{"OBJECTID":2545,"FID":2545,"Lead__ppm":182,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2546,"geometry":{"type":"Point","coordinates":[-75.153498999885073,39.915755226262391]},"properties":{"OBJECTID":2546,"FID":2546,"Lead__ppm":66,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2547,"geometry":{"type":"Point","coordinates":[-75.153735077141718,39.91558931541411]},"properties":{"OBJECTID":2547,"FID":2547,"Lead__ppm":225,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2548,"geometry":{"type":"Point","coordinates":[-75.153625123350949,39.915486378830252]},"properties":{"OBJECTID":2548,"FID":2548,"Lead__ppm":88,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2549,"geometry":{"type":"Point","coordinates":[-75.241462122337566,39.925383292307856]},"properties":{"OBJECTID":2549,"FID":2549,"Lead__ppm":187,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2550,"geometry":{"type":"Point","coordinates":[-75.24126494213273,39.9252995219152]},"properties":{"OBJECTID":2550,"FID":2550,"Lead__ppm":184,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2551,"geometry":{"type":"Point","coordinates":[-75.241470835995827,39.9255088099247]},"properties":{"OBJECTID":2551,"FID":2551,"Lead__ppm":163,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2552,"geometry":{"type":"Point","coordinates":[-75.246277990575734,39.917939589749778]},"properties":{"OBJECTID":2552,"FID":2552,"Lead__ppm":278,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2553,"geometry":{"type":"Point","coordinates":[-75.246173426676677,39.91744717702597]},"properties":{"OBJECTID":2553,"FID":2553,"Lead__ppm":234,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2554,"geometry":{"type":"Point","coordinates":[-75.24625750898727,39.917670406403424]},"properties":{"OBJECTID":2554,"FID":2554,"Lead__ppm":218,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2555,"geometry":{"type":"Point","coordinates":[-75.238259538518165,39.913080967260797]},"properties":{"OBJECTID":2555,"FID":2555,"Lead__ppm":92,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2556,"geometry":{"type":"Point","coordinates":[-75.23766269784339,39.913796102168021]},"properties":{"OBJECTID":2556,"FID":2556,"Lead__ppm":80,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2557,"geometry":{"type":"Point","coordinates":[-75.237681831958938,39.914136131417727]},"properties":{"OBJECTID":2557,"FID":2557,"Lead__ppm":87,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2558,"geometry":{"type":"Point","coordinates":[-75.233366504997107,39.918559113922967]},"properties":{"OBJECTID":2558,"FID":2558,"Lead__ppm":174,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2559,"geometry":{"type":"Point","coordinates":[-75.232949057884568,39.918820577347539]},"properties":{"OBJECTID":2559,"FID":2559,"Lead__ppm":258,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2560,"geometry":{"type":"Point","coordinates":[-75.233324912999436,39.919053103269853]},"properties":{"OBJECTID":2560,"FID":2560,"Lead__ppm":237,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2561,"geometry":{"type":"Point","coordinates":[-75.230581368290203,39.915894472556992]},"properties":{"OBJECTID":2561,"FID":2561,"Lead__ppm":263,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2562,"geometry":{"type":"Point","coordinates":[-75.23106681786976,39.915548388839035]},"properties":{"OBJECTID":2562,"FID":2562,"Lead__ppm":205,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2563,"geometry":{"type":"Point","coordinates":[-75.231350775331066,39.915036391184529]},"properties":{"OBJECTID":2563,"FID":2563,"Lead__ppm":166,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2564,"geometry":{"type":"Point","coordinates":[-75.251463964710965,39.954499967209458]},"properties":{"OBJECTID":2564,"FID":2564,"Lead__ppm":2,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2565,"geometry":{"type":"Point","coordinates":[-75.251470971570185,39.95441299599365]},"properties":{"OBJECTID":2565,"FID":2565,"Lead__ppm":12,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2566,"geometry":{"type":"Point","coordinates":[-75.251378984085079,39.954443019323762]},"properties":{"OBJECTID":2566,"FID":2566,"Lead__ppm":17,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2567,"geometry":{"type":"Point","coordinates":[-75.251527026443895,39.954112004495371]},"properties":{"OBJECTID":2567,"FID":2567,"Lead__ppm":56,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2568,"geometry":{"type":"Point","coordinates":[-75.251379972231916,39.954223008606363]},"properties":{"OBJECTID":2568,"FID":2568,"Lead__ppm":83,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2569,"geometry":{"type":"Point","coordinates":[-75.626128991498177,40.267609026241061]},"properties":{"OBJECTID":2569,"FID":2569,"Lead__ppm":13,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2570,"geometry":{"type":"Point","coordinates":[-75.62599397471098,40.267582019703632]},"properties":{"OBJECTID":2570,"FID":2570,"Lead__ppm":20,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2571,"geometry":{"type":"Point","coordinates":[-75.626340993905217,40.267966005042503]},"properties":{"OBJECTID":2571,"FID":2571,"Lead__ppm":30,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2572,"geometry":{"type":"Point","coordinates":[-75.626206965264828,40.267572012202251]},"properties":{"OBJECTID":2572,"FID":2572,"Lead__ppm":14,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2573,"geometry":{"type":"Point","coordinates":[-75.625989033976907,40.267326005418369]},"properties":{"OBJECTID":2573,"FID":2573,"Lead__ppm":10,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2574,"geometry":{"type":"Point","coordinates":[-75.438427001028202,40.076425994797773]},"properties":{"OBJECTID":2574,"FID":2574,"Lead__ppm":14,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2575,"geometry":{"type":"Point","coordinates":[-75.438548004096987,40.076513979201671]},"properties":{"OBJECTID":2575,"FID":2575,"Lead__ppm":15,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2576,"geometry":{"type":"Point","coordinates":[-75.438548004096987,40.076513979201671]},"properties":{"OBJECTID":2576,"FID":2576,"Lead__ppm":26,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2577,"geometry":{"type":"Point","coordinates":[-75.438642956022505,40.07608897223637]},"properties":{"OBJECTID":2577,"FID":2577,"Lead__ppm":24,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2578,"geometry":{"type":"Point","coordinates":[-75.439057977683774,40.076272021817338]},"properties":{"OBJECTID":2578,"FID":2578,"Lead__ppm":21,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2579,"geometry":{"type":"Point","coordinates":[-75.335008004786317,40.119943972501403]},"properties":{"OBJECTID":2579,"FID":2579,"Lead__ppm":143,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2580,"geometry":{"type":"Point","coordinates":[-75.335142033426692,40.119695987022865]},"properties":{"OBJECTID":2580,"FID":2580,"Lead__ppm":33,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2581,"geometry":{"type":"Point","coordinates":[-75.334995967361507,40.119679981280804]},"properties":{"OBJECTID":2581,"FID":2581,"Lead__ppm":26,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2582,"geometry":{"type":"Point","coordinates":[-75.334574028672549,40.12017402802725]},"properties":{"OBJECTID":2582,"FID":2582,"Lead__ppm":121,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2583,"geometry":{"type":"Point","coordinates":[-75.334599989984255,40.120171967216812]},"properties":{"OBJECTID":2583,"FID":2583,"Lead__ppm":79,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2584,"geometry":{"type":"Point","coordinates":[-75.243526001702847,40.007207988226277]},"properties":{"OBJECTID":2584,"FID":2584,"Lead__ppm":31,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2585,"geometry":{"type":"Point","coordinates":[-75.293357975964213,40.007196015689168]},"properties":{"OBJECTID":2585,"FID":2585,"Lead__ppm":115,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2586,"geometry":{"type":"Point","coordinates":[-75.301121036986515,40.006703006806646]},"properties":{"OBJECTID":2586,"FID":2586,"Lead__ppm":46,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2587,"geometry":{"type":"Point","coordinates":[-75.293391033966671,40.00727197933719]},"properties":{"OBJECTID":2587,"FID":2587,"Lead__ppm":115,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2588,"geometry":{"type":"Point","coordinates":[-75.243303039849323,40.007320970340743]},"properties":{"OBJECTID":2588,"FID":2588,"Lead__ppm":174,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2589,"geometry":{"type":"Point","coordinates":[-75.286249966447102,40.12328200257258]},"properties":{"OBJECTID":2589,"FID":2589,"Lead__ppm":35,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2590,"geometry":{"type":"Point","coordinates":[-75.286094018913772,40.123224027731595]},"properties":{"OBJECTID":2590,"FID":2590,"Lead__ppm":1,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2591,"geometry":{"type":"Point","coordinates":[-75.286277993883971,40.123131020596759]},"properties":{"OBJECTID":2591,"FID":2591,"Lead__ppm":43,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2592,"geometry":{"type":"Point","coordinates":[-75.286045959046078,40.123289009007323]},"properties":{"OBJECTID":2592,"FID":2592,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2593,"geometry":{"type":"Point","coordinates":[-75.285929986542897,40.123475022717535]},"properties":{"OBJECTID":2593,"FID":2593,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2594,"geometry":{"type":"Point","coordinates":[-75.087696956165658,40.079606971182606]},"properties":{"OBJECTID":2594,"FID":2594,"Lead__ppm":17,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2595,"geometry":{"type":"Point","coordinates":[-75.087741961761395,40.079613982116463]},"properties":{"OBJECTID":2595,"FID":2595,"Lead__ppm":60,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2596,"geometry":{"type":"Point","coordinates":[-75.087760017898617,40.079551021155346]},"properties":{"OBJECTID":2596,"FID":2596,"Lead__ppm":64,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2597,"geometry":{"type":"Point","coordinates":[-75.087892968560666,40.079715984248629]},"properties":{"OBJECTID":2597,"FID":2597,"Lead__ppm":44,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2598,"geometry":{"type":"Point","coordinates":[-75.087852005383695,40.079764991957276]},"properties":{"OBJECTID":2598,"FID":2598,"Lead__ppm":64,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2599,"geometry":{"type":"Point","coordinates":[-75.330147041120867,40.310577018237808]},"properties":{"OBJECTID":2599,"FID":2599,"Lead__ppm":1,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2600,"geometry":{"type":"Point","coordinates":[-75.330135003696071,40.310453031432246]},"properties":{"OBJECTID":2600,"FID":2600,"Lead__ppm":2,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2601,"geometry":{"type":"Point","coordinates":[-75.330162042986117,40.310455017962965]},"properties":{"OBJECTID":2601,"FID":2601,"Lead__ppm":4,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2602,"geometry":{"type":"Point","coordinates":[-75.330302988654211,40.310448989869535]},"properties":{"OBJECTID":2602,"FID":2602,"Lead__ppm":2,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2603,"geometry":{"type":"Point","coordinates":[-75.330308558208969,40.310473102239975]},"properties":{"OBJECTID":2603,"FID":2603,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2604,"geometry":{"type":"Point","coordinates":[-75.332344679631944,40.11396232431418]},"properties":{"OBJECTID":2604,"FID":2604,"Lead__ppm":630,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2605,"geometry":{"type":"Point","coordinates":[-75.332510957791044,40.113908188727237]},"properties":{"OBJECTID":2605,"FID":2605,"Lead__ppm":376,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2606,"geometry":{"type":"Point","coordinates":[-75.332319167477891,40.113925913327741]},"properties":{"OBJECTID":2606,"FID":2606,"Lead__ppm":553,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2607,"geometry":{"type":"Point","coordinates":[-75.332306501232367,40.113947897321871]},"properties":{"OBJECTID":2607,"FID":2607,"Lead__ppm":602,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2608,"geometry":{"type":"Point","coordinates":[-75.332326892989315,40.113926394227683]},"properties":{"OBJECTID":2608,"FID":2608,"Lead__ppm":651,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2609,"geometry":{"type":"Point","coordinates":[-75.222899964127222,39.968200029978483]},"properties":{"OBJECTID":2609,"FID":2609,"Lead__ppm":132.33333329999999,"Long":0,"Lat":0,"Date":"7/21/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2610,"geometry":{"type":"Point","coordinates":[-75.227300002220389,39.975499967432683]},"properties":{"OBJECTID":2610,"FID":2610,"Lead__ppm":105.66666669999999,"Long":0,"Lat":0,"Date":"7/21/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2611,"geometry":{"type":"Point","coordinates":[-75.225499958054044,39.953000025332365]},"properties":{"OBJECTID":2611,"FID":2611,"Lead__ppm":70.333333330000002,"Long":0,"Lat":0,"Date":"7/20/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2612,"geometry":{"type":"Point","coordinates":[-75.237900032741464,39.941300010960575]},"properties":{"OBJECTID":2612,"FID":2612,"Lead__ppm":197.33333329999999,"Long":0,"Lat":0,"Date":"7/20/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2613,"geometry":{"type":"Point","coordinates":[-75.238400035028604,39.940899989223027]},"properties":{"OBJECTID":2613,"FID":2613,"Lead__ppm":11.75,"Long":0,"Lat":0,"Date":"7/20/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2614,"geometry":{"type":"Point","coordinates":[-75.228499971776898,39.935699975984747]},"properties":{"OBJECTID":2614,"FID":2614,"Lead__ppm":65.666666669999998,"Long":0,"Lat":0,"Date":"7/20/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2615,"geometry":{"type":"Point","coordinates":[-75.230800018230369,39.922699970978222]},"properties":{"OBJECTID":2615,"FID":2615,"Lead__ppm":77.666666669999998,"Long":0,"Lat":0,"Date":"7/20/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2616,"geometry":{"type":"Point","coordinates":[-75.210700034085136,39.94199997450076]},"properties":{"OBJECTID":2616,"FID":2616,"Lead__ppm":311.66666670000001,"Long":0,"Lat":0,"Date":"7/20/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2617,"geometry":{"type":"Point","coordinates":[-75.209599957188189,39.949300023468773]},"properties":{"OBJECTID":2617,"FID":2617,"Lead__ppm":330,"Long":0,"Lat":0,"Date":"7/20/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2618,"geometry":{"type":"Point","coordinates":[-75.188100038504203,39.961299975087186]},"properties":{"OBJECTID":2618,"FID":2618,"Lead__ppm":25,"Long":0,"Lat":0,"Date":"7/20/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2619,"geometry":{"type":"Point","coordinates":[-75.157599988820124,40.06100002217584]},"properties":{"OBJECTID":2619,"FID":2619,"Lead__ppm":71.333333330000002,"Long":0,"Lat":0,"Date":"7/13/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2620,"geometry":{"type":"Point","coordinates":[-75.167299997258056,40.044799995326684]},"properties":{"OBJECTID":2620,"FID":2620,"Lead__ppm":214,"Long":0,"Lat":0,"Date":"7/13/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2621,"geometry":{"type":"Point","coordinates":[-75.152300018475344,40.042899997569357]},"properties":{"OBJECTID":2621,"FID":2621,"Lead__ppm":179,"Long":0,"Lat":0,"Date":"7/13/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2622,"geometry":{"type":"Point","coordinates":[-75.114400006806818,40.035000011071261]},"properties":{"OBJECTID":2622,"FID":2622,"Lead__ppm":460.66666670000001,"Long":0,"Lat":0,"Date":"7/13/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2623,"geometry":{"type":"Point","coordinates":[-75.198000011924364,39.94859999687943]},"properties":{"OBJECTID":2623,"FID":2623,"Lead__ppm":150.66666670000001,"Long":0,"Lat":0,"Date":"7/13/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2624,"geometry":{"type":"Point","coordinates":[-75.231999987786878,39.913900005915266]},"properties":{"OBJECTID":2624,"FID":2624,"Lead__ppm":206.66669999999999,"Long":0,"Lat":0,"Date":"7/20/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2625,"geometry":{"type":"Point","coordinates":[-75.231499985499738,39.914599974067279]},"properties":{"OBJECTID":2625,"FID":2625,"Lead__ppm":97,"Long":0,"Lat":0,"Date":"7/20/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2626,"geometry":{"type":"Point","coordinates":[-75.231099965703734,39.923399986971397]},"properties":{"OBJECTID":2626,"FID":2626,"Lead__ppm":74,"Long":0,"Lat":0,"Date":"7/20/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2627,"geometry":{"type":"Point","coordinates":[-75.227899986998636,39.935000016881006]},"properties":{"OBJECTID":2627,"FID":2627,"Lead__ppm":85.666669999999996,"Long":0,"Lat":0,"Date":"7/20/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2628,"geometry":{"type":"Point","coordinates":[-75.237799960418798,39.941600025729073]},"properties":{"OBJECTID":2628,"FID":2628,"Lead__ppm":102.66667,"Long":0,"Lat":0,"Date":"7/20/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2629,"geometry":{"type":"Point","coordinates":[-75.237500012945432,39.946500011867371]},"properties":{"OBJECTID":2629,"FID":2629,"Lead__ppm":193,"Long":0,"Lat":0,"Date":"7/20/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2630,"geometry":{"type":"Point","coordinates":[-75.237500012945432,39.946700006658368]},"properties":{"OBJECTID":2630,"FID":2630,"Lead__ppm":145.66669999999999,"Long":0,"Lat":0,"Date":"7/20/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2631,"geometry":{"type":"Point","coordinates":[-75.237599995436568,39.946600009335924]},"properties":{"OBJECTID":2631,"FID":2631,"Lead__ppm":184.66669999999999,"Long":0,"Lat":0,"Date":"7/20/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2632,"geometry":{"type":"Point","coordinates":[-75.225700012867819,39.95320000112001]},"properties":{"OBJECTID":2632,"FID":2632,"Lead__ppm":182.33330000000001,"Long":0,"Lat":0,"Date":"7/20/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2633,"geometry":{"type":"Point","coordinates":[-75.195699965470908,39.963699974378422]},"properties":{"OBJECTID":2633,"FID":2633,"Lead__ppm":34,"Long":0,"Lat":0,"Date":"7/21/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2634,"geometry":{"type":"Point","coordinates":[-75.178500012557393,39.915300003965903]},"properties":{"OBJECTID":2634,"FID":2634,"Lead__ppm":51,"Long":0,"Lat":0,"Date":"7/22/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2635,"geometry":{"type":"Point","coordinates":[-75.178299957743619,39.915399978124391]},"properties":{"OBJECTID":2635,"FID":2635,"Lead__ppm":309.33300000000003,"Long":0,"Lat":0,"Date":"7/22/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2636,"geometry":{"type":"Point","coordinates":[-75.151599961374444,39.975400012219772]},"properties":{"OBJECTID":2636,"FID":2636,"Lead__ppm":69,"Long":0,"Lat":0,"Date":"7/15/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2637,"geometry":{"type":"Point","coordinates":[-75.15109995908729,39.976199994024135]},"properties":{"OBJECTID":2637,"FID":2637,"Lead__ppm":163.33330000000001,"Long":0,"Lat":0,"Date":"7/15/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2638,"geometry":{"type":"Point","coordinates":[-75.231999987786878,39.913900005915266]},"properties":{"OBJECTID":2638,"FID":2638,"Lead__ppm":192.66666670000001,"Long":0,"Lat":0,"Date":"7/20/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2639,"geometry":{"type":"Point","coordinates":[-75.240899956632774,39.982099992231419]},"properties":{"OBJECTID":2639,"FID":2639,"Lead__ppm":75,"Long":0,"Lat":0,"Date":"7/21/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2640,"geometry":{"type":"Point","coordinates":[-75.184200002698191,39.979400034104295]},"properties":{"OBJECTID":2640,"FID":2640,"Lead__ppm":313.66666670000001,"Long":0,"Lat":0,"Date":"7/15/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2641,"geometry":{"type":"Point","coordinates":[-75.134200043478685,39.982200006477299]},"properties":{"OBJECTID":2641,"FID":2641,"Lead__ppm":335,"Long":0,"Lat":0,"Date":"7/15/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2642,"geometry":{"type":"Point","coordinates":[-75.183600017919929,39.936100028120457]},"properties":{"OBJECTID":2642,"FID":2642,"Lead__ppm":298.33333329999999,"Long":0,"Lat":0,"Date":"7/23/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2643,"geometry":{"type":"Point","coordinates":[-75.23590002359289,39.970900017537318]},"properties":{"OBJECTID":2643,"FID":2643,"Lead__ppm":74.333333330000002,"Long":0,"Lat":0,"Date":"7/21/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2644,"geometry":{"type":"Point","coordinates":[-75.237400030454324,39.908100033981427]},"properties":{"OBJECTID":2644,"FID":2644,"Lead__ppm":47,"Long":0,"Lat":0,"Date":"7/20/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2645,"geometry":{"type":"Point","coordinates":[-75.156599984245844,40.06100002217584]},"properties":{"OBJECTID":2645,"FID":2645,"Lead__ppm":84,"Long":0,"Lat":0,"Date":"7/13/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2646,"geometry":{"type":"Point","coordinates":[-75.128999965793497,40.044199976418888]},"properties":{"OBJECTID":2646,"FID":2646,"Lead__ppm":119.33333330000001,"Long":0,"Lat":0,"Date":"7/13/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2647,"geometry":{"type":"Point","coordinates":[-75.113599967214768,40.035699978052101]},"properties":{"OBJECTID":2647,"FID":2647,"Lead__ppm":200,"Long":0,"Lat":0,"Date":"7/13/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2648,"geometry":{"type":"Point","coordinates":[-75.156413853318981,40.040304779709793]},"properties":{"OBJECTID":2648,"FID":2648,"Lead__ppm":440,"Long":0,"Lat":0,"Date":"7/15/2019","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2649,"geometry":{"type":"Point","coordinates":[-75.152275853794208,39.947053164076451]},"properties":{"OBJECTID":2649,"FID":2649,"Lead__ppm":625,"Long":0,"Lat":0,"Date":"7/15/2019","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2650,"geometry":{"type":"Point","coordinates":[-75.128694089439264,39.966742592711888]},"properties":{"OBJECTID":2650,"FID":2650,"Lead__ppm":143,"Long":0,"Lat":0,"Date":"7/15/2019","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":2651,"geometry":{"type":"Point","coordinates":[-75.355204557824578,39.977306020046996]},"properties":{"OBJECTID":2651,"FID":2651,"Lead__ppm":32,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2652,"geometry":{"type":"Point","coordinates":[-75.334696019888142,40.119898977973442]},"properties":{"OBJECTID":2652,"FID":2652,"Lead__ppm":614,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2653,"geometry":{"type":"Point","coordinates":[-75.334696019888142,40.119898977973442]},"properties":{"OBJECTID":2653,"FID":2653,"Lead__ppm":1694,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2654,"geometry":{"type":"Point","coordinates":[-75.335064329154619,40.119919586157891]},"properties":{"OBJECTID":2654,"FID":2654,"Lead__ppm":73,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2655,"geometry":{"type":"Point","coordinates":[-75.334956531320529,40.119953933118097]},"properties":{"OBJECTID":2655,"FID":2655,"Lead__ppm":121,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2656,"geometry":{"type":"Point","coordinates":[-75.334758901958025,40.120063843274153]},"properties":{"OBJECTID":2656,"FID":2656,"Lead__ppm":1093,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2657,"geometry":{"type":"Point","coordinates":[-75.334758901958025,40.120111928911548]},"properties":{"OBJECTID":2657,"FID":2657,"Lead__ppm":89,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2658,"geometry":{"type":"Point","coordinates":[-75.110494491277592,39.98367205056222]},"properties":{"OBJECTID":2658,"FID":2658,"Lead__ppm":1645,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2659,"geometry":{"type":"Point","coordinates":[-74.761579851772723,40.295610235036008]},"properties":{"OBJECTID":2659,"FID":2659,"Lead__ppm":33,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2660,"geometry":{"type":"Point","coordinates":[-75.51522145938479,39.868890116074923]},"properties":{"OBJECTID":2660,"FID":2660,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2661,"geometry":{"type":"Point","coordinates":[-75.515086712092184,39.868262696459439]},"properties":{"OBJECTID":2661,"FID":2661,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2662,"geometry":{"type":"Point","coordinates":[-75.51411653158533,39.869021115050728]},"properties":{"OBJECTID":2662,"FID":2662,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2663,"geometry":{"type":"Point","coordinates":[-75.50604067718109,39.880162007214082]},"properties":{"OBJECTID":2663,"FID":2663,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2664,"geometry":{"type":"Point","coordinates":[-75.496823962366022,39.908385310318337]},"properties":{"OBJECTID":2664,"FID":2664,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2665,"geometry":{"type":"Point","coordinates":[-75.486493336598642,39.857175038471354]},"properties":{"OBJECTID":2665,"FID":2665,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2666,"geometry":{"type":"Point","coordinates":[-75.48515484682531,39.839919411053977]},"properties":{"OBJECTID":2666,"FID":2666,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2667,"geometry":{"type":"Point","coordinates":[-75.484678739724728,39.899916093919934]},"properties":{"OBJECTID":2667,"FID":2667,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2668,"geometry":{"type":"Point","coordinates":[-75.481884979191122,39.894650731974615]},"properties":{"OBJECTID":2668,"FID":2668,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2669,"geometry":{"type":"Point","coordinates":[-75.478453414805784,39.855913083245348]},"properties":{"OBJECTID":2669,"FID":2669,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2670,"geometry":{"type":"Point","coordinates":[-75.386735424297171,39.9037476998503]},"properties":{"OBJECTID":2670,"FID":2670,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2671,"geometry":{"type":"Point","coordinates":[-75.386681525380126,39.892004114569254]},"properties":{"OBJECTID":2671,"FID":2671,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2672,"geometry":{"type":"Point","coordinates":[-75.384256074113011,39.888895587068546]},"properties":{"OBJECTID":2672,"FID":2672,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2673,"geometry":{"type":"Point","coordinates":[-75.382091134278269,39.877018473397158]},"properties":{"OBJECTID":2673,"FID":2673,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2674,"geometry":{"type":"Point","coordinates":[-75.381156886382783,39.910679881124985]},"properties":{"OBJECTID":2674,"FID":2674,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2675,"geometry":{"type":"Point","coordinates":[-75.380860442339028,39.878162846686244]},"properties":{"OBJECTID":2675,"FID":2675,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2676,"geometry":{"type":"Point","coordinates":[-75.379225508521941,39.88508382991526]},"properties":{"OBJECTID":2676,"FID":2676,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2677,"geometry":{"type":"Point","coordinates":[-75.379180592757734,39.910714333554402]},"properties":{"OBJECTID":2677,"FID":2677,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2678,"geometry":{"type":"Point","coordinates":[-75.377716338844607,39.877342484639833]},"properties":{"OBJECTID":2678,"FID":2678,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2679,"geometry":{"type":"Point","coordinates":[-75.377536675787795,39.895684539141556]},"properties":{"OBJECTID":2679,"FID":2679,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2680,"geometry":{"type":"Point","coordinates":[-75.377312096966762,39.909653190775941]},"properties":{"OBJECTID":2680,"FID":2680,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2681,"geometry":{"type":"Point","coordinates":[-75.373575105384816,39.887268895653499]},"properties":{"OBJECTID":2681,"FID":2681,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2682,"geometry":{"type":"Point","coordinates":[-75.371392199244411,39.886600286718085]},"properties":{"OBJECTID":2682,"FID":2682,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2683,"geometry":{"type":"Point","coordinates":[-75.369254208868213,39.875784459115529]},"properties":{"OBJECTID":2683,"FID":2683,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2684,"geometry":{"type":"Point","coordinates":[-75.368616405016482,39.910693662098829]},"properties":{"OBJECTID":2684,"FID":2684,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2685,"geometry":{"type":"Point","coordinates":[-75.364286525347026,39.887792749644866]},"properties":{"OBJECTID":2685,"FID":2685,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2686,"geometry":{"type":"Point","coordinates":[-75.362741423058338,39.895863730798098]},"properties":{"OBJECTID":2686,"FID":2686,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2687,"geometry":{"type":"Point","coordinates":[-75.348206681761283,39.892424547599298]},"properties":{"OBJECTID":2687,"FID":2687,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2688,"geometry":{"type":"Point","coordinates":[-75.34725446756012,39.913256875017339]},"properties":{"OBJECTID":2688,"FID":2688,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2689,"geometry":{"type":"Point","coordinates":[-75.344191212441274,39.89303106939407]},"properties":{"OBJECTID":2689,"FID":2689,"Lead__ppm":0,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2690,"geometry":{"type":"Point","coordinates":[-75.471356724061224,39.83660848308223]},"properties":{"OBJECTID":2690,"FID":2690,"Lead__ppm":3,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2691,"geometry":{"type":"Point","coordinates":[-75.343472560213982,39.901253045506245]},"properties":{"OBJECTID":2691,"FID":2691,"Lead__ppm":3,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2692,"geometry":{"type":"Point","coordinates":[-75.517610978040551,39.848947776308442]},"properties":{"OBJECTID":2692,"FID":2692,"Lead__ppm":4,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2693,"geometry":{"type":"Point","coordinates":[-75.507945105583417,39.869552003075739]},"properties":{"OBJECTID":2693,"FID":2693,"Lead__ppm":4,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2694,"geometry":{"type":"Point","coordinates":[-75.362741423058338,39.897876158762934]},"properties":{"OBJECTID":2694,"FID":2694,"Lead__ppm":4,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2695,"geometry":{"type":"Point","coordinates":[-75.71716273525486,39.643001209066213]},"properties":{"OBJECTID":2695,"FID":2695,"Lead__ppm":5,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2696,"geometry":{"type":"Point","coordinates":[-75.539871230781031,39.85889898351742]},"properties":{"OBJECTID":2696,"FID":2696,"Lead__ppm":5,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2697,"geometry":{"type":"Point","coordinates":[-75.531624696472818,39.896883735919069]},"properties":{"OBJECTID":2697,"FID":2697,"Lead__ppm":5,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2698,"geometry":{"type":"Point","coordinates":[-75.523584774679932,39.855326921286576]},"properties":{"OBJECTID":2698,"FID":2698,"Lead__ppm":5,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2699,"geometry":{"type":"Point","coordinates":[-75.510837680798289,39.870627555831398]},"properties":{"OBJECTID":2699,"FID":2699,"Lead__ppm":5,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2700,"geometry":{"type":"Point","coordinates":[-75.478040189775086,39.836567095472468]},"properties":{"OBJECTID":2700,"FID":2700,"Lead__ppm":5,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2701,"geometry":{"type":"Point","coordinates":[-75.468419233082159,39.887834106368423]},"properties":{"OBJECTID":2701,"FID":2701,"Lead__ppm":5,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2702,"geometry":{"type":"Point","coordinates":[-75.353596573466007,39.909405129054633]},"properties":{"OBJECTID":2702,"FID":2702,"Lead__ppm":5,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2703,"geometry":{"type":"Point","coordinates":[-75.515922145306405,39.898069128202536]},"properties":{"OBJECTID":2703,"FID":2703,"Lead__ppm":6,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2704,"geometry":{"type":"Point","coordinates":[-75.503507428079871,39.875922338908047]},"properties":{"OBJECTID":2704,"FID":2704,"Lead__ppm":6,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2705,"geometry":{"type":"Point","coordinates":[-75.481345990020642,39.8983516896159]},"properties":{"OBJECTID":2705,"FID":2705,"Lead__ppm":6,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2706,"geometry":{"type":"Point","coordinates":[-75.479136134421708,39.930335621272427]},"properties":{"OBJECTID":2706,"FID":2706,"Lead__ppm":6,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2707,"geometry":{"type":"Point","coordinates":[-75.330033763563549,39.900508766398545]},"properties":{"OBJECTID":2707,"FID":2707,"Lead__ppm":6,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2708,"geometry":{"type":"Point","coordinates":[-75.722292115527182,39.642565415349694]},"properties":{"OBJECTID":2708,"FID":2708,"Lead__ppm":7,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2709,"geometry":{"type":"Point","coordinates":[-75.560137223590772,39.849265023471894]},"properties":{"OBJECTID":2709,"FID":2709,"Lead__ppm":7,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2710,"geometry":{"type":"Point","coordinates":[-75.560137223590772,39.849265023471894]},"properties":{"OBJECTID":2710,"FID":2710,"Lead__ppm":7,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2711,"geometry":{"type":"Point","coordinates":[-75.514862133271137,39.836215299782459]},"properties":{"OBJECTID":2711,"FID":2711,"Lead__ppm":7,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2712,"geometry":{"type":"Point","coordinates":[-75.502923523145199,39.895470886938746]},"properties":{"OBJECTID":2712,"FID":2712,"Lead__ppm":7,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2713,"geometry":{"type":"Point","coordinates":[-75.479908685566059,39.873723123168887]},"properties":{"OBJECTID":2713,"FID":2713,"Lead__ppm":7,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2714,"geometry":{"type":"Point","coordinates":[-75.350650099334104,39.899599080955078]},"properties":{"OBJECTID":2714,"FID":2714,"Lead__ppm":7,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2715,"geometry":{"type":"Point","coordinates":[-76.303780582090582,40.040765634783838]},"properties":{"OBJECTID":2715,"FID":2715,"Lead__ppm":8,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2716,"geometry":{"type":"Point","coordinates":[-75.53988021393387,39.849127090102705]},"properties":{"OBJECTID":2716,"FID":2716,"Lead__ppm":8,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2717,"geometry":{"type":"Point","coordinates":[-75.515455021358662,39.836925787261855]},"properties":{"OBJECTID":2717,"FID":2717,"Lead__ppm":8,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2718,"geometry":{"type":"Point","coordinates":[-75.513730256013147,39.864470477734073]},"properties":{"OBJECTID":2718,"FID":2718,"Lead__ppm":8,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2719,"geometry":{"type":"Point","coordinates":[-75.496024461763156,39.945578196362739]},"properties":{"OBJECTID":2719,"FID":2719,"Lead__ppm":8,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2720,"geometry":{"type":"Point","coordinates":[-75.489583541176032,39.868042064022141]},"properties":{"OBJECTID":2720,"FID":2720,"Lead__ppm":8,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2721,"geometry":{"type":"Point","coordinates":[-75.516056892599025,39.836870604031567]},"properties":{"OBJECTID":2721,"FID":2721,"Lead__ppm":9,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2722,"geometry":{"type":"Point","coordinates":[-75.496213107972821,39.884732282867297]},"properties":{"OBJECTID":2722,"FID":2722,"Lead__ppm":9,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2723,"geometry":{"type":"Point","coordinates":[-75.486493336598642,39.857175038471354]},"properties":{"OBJECTID":2723,"FID":2723,"Lead__ppm":9,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2724,"geometry":{"type":"Point","coordinates":[-75.472362837179446,39.863794751304596]},"properties":{"OBJECTID":2724,"FID":2724,"Lead__ppm":9,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2725,"geometry":{"type":"Point","coordinates":[-75.750615996435471,39.677959515380742]},"properties":{"OBJECTID":2725,"FID":2725,"Lead__ppm":10,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2726,"geometry":{"type":"Point","coordinates":[-75.487544365481071,39.873343940914218]},"properties":{"OBJECTID":2726,"FID":2726,"Lead__ppm":10,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2727,"geometry":{"type":"Point","coordinates":[-75.481884979191122,39.894650731974615]},"properties":{"OBJECTID":2727,"FID":2727,"Lead__ppm":10,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2728,"geometry":{"type":"Point","coordinates":[-75.478049172927925,39.852044321804733]},"properties":{"OBJECTID":2728,"FID":2728,"Lead__ppm":10,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2729,"geometry":{"type":"Point","coordinates":[-75.472973691572648,39.860029867944931]},"properties":{"OBJECTID":2729,"FID":2729,"Lead__ppm":10,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2730,"geometry":{"type":"Point","coordinates":[-75.47018891419188,39.877376953830883]},"properties":{"OBJECTID":2730,"FID":2730,"Lead__ppm":10,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2731,"geometry":{"type":"Point","coordinates":[-75.528498559284074,39.845188975506531]},"properties":{"OBJECTID":2731,"FID":2731,"Lead__ppm":11,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2732,"geometry":{"type":"Point","coordinates":[-75.518644040617289,39.849402956563921]},"properties":{"OBJECTID":2732,"FID":2732,"Lead__ppm":11,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2733,"geometry":{"type":"Point","coordinates":[-75.514763318589885,39.839795254135772]},"properties":{"OBJECTID":2733,"FID":2733,"Lead__ppm":11,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2734,"geometry":{"type":"Point","coordinates":[-75.511313787898871,39.856306153754751]},"properties":{"OBJECTID":2734,"FID":2734,"Lead__ppm":11,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2735,"geometry":{"type":"Point","coordinates":[-75.472803011668674,39.833656104353253]},"properties":{"OBJECTID":2735,"FID":2735,"Lead__ppm":11,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2736,"geometry":{"type":"Point","coordinates":[-75.349096013892563,39.896883735919069]},"properties":{"OBJECTID":2736,"FID":2736,"Lead__ppm":11,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2737,"geometry":{"type":"Point","coordinates":[-75.530106543642646,39.850444342463561]},"properties":{"OBJECTID":2737,"FID":2737,"Lead__ppm":12,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2738,"geometry":{"type":"Point","coordinates":[-75.518392512337726,39.859636818763029]},"properties":{"OBJECTID":2738,"FID":2738,"Lead__ppm":12,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2739,"geometry":{"type":"Point","coordinates":[-75.501845544804254,39.881775080464031]},"properties":{"OBJECTID":2739,"FID":2739,"Lead__ppm":12,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2740,"geometry":{"type":"Point","coordinates":[-75.469793655466873,39.858174931872789]},"properties":{"OBJECTID":2740,"FID":2740,"Lead__ppm":12,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2741,"geometry":{"type":"Point","coordinates":[-75.461906447272298,39.882236936329754]},"properties":{"OBJECTID":2741,"FID":2741,"Lead__ppm":12,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2742,"geometry":{"type":"Point","coordinates":[-75.34009489474569,39.894898847116849]},"properties":{"OBJECTID":2742,"FID":2742,"Lead__ppm":12,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2743,"geometry":{"type":"Point","coordinates":[-75.524815466619188,39.880258516937275]},"properties":{"OBJECTID":2743,"FID":2743,"Lead__ppm":13,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2744,"geometry":{"type":"Point","coordinates":[-75.516874359507568,39.887041431489777]},"properties":{"OBJECTID":2744,"FID":2744,"Lead__ppm":13,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2745,"geometry":{"type":"Point","coordinates":[-75.507612728928294,39.84983744399235]},"properties":{"OBJECTID":2745,"FID":2745,"Lead__ppm":13,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2746,"geometry":{"type":"Point","coordinates":[-75.498629576087097,39.87335083515574]},"properties":{"OBJECTID":2746,"FID":2746,"Lead__ppm":13,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2747,"geometry":{"type":"Point","coordinates":[-75.483016856449112,39.865484054900342]},"properties":{"OBJECTID":2747,"FID":2747,"Lead__ppm":13,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2748,"geometry":{"type":"Point","coordinates":[-75.479261898561475,39.836905093555686]},"properties":{"OBJECTID":2748,"FID":2748,"Lead__ppm":13,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2749,"geometry":{"type":"Point","coordinates":[-75.472326904568078,39.828220084494284]},"properties":{"OBJECTID":2749,"FID":2749,"Lead__ppm":13,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2750,"geometry":{"type":"Point","coordinates":[-75.519263878163329,39.844085435277009]},"properties":{"OBJECTID":2750,"FID":2750,"Lead__ppm":14,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2751,"geometry":{"type":"Point","coordinates":[-75.515437055052985,39.845968340106857]},"properties":{"OBJECTID":2751,"FID":2751,"Lead__ppm":14,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2752,"geometry":{"type":"Point","coordinates":[-75.496823962366022,39.908385310318337]},"properties":{"OBJECTID":2752,"FID":2752,"Lead__ppm":14,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2753,"geometry":{"type":"Point","coordinates":[-75.472335887720917,39.877542405706755]},"properties":{"OBJECTID":2753,"FID":2753,"Lead__ppm":14,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2754,"geometry":{"type":"Point","coordinates":[-75.364421272639646,39.894002871535292]},"properties":{"OBJECTID":2754,"FID":2754,"Lead__ppm":14,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2755,"geometry":{"type":"Point","coordinates":[-76.317641586924552,40.034348733385926]},"properties":{"OBJECTID":2755,"FID":2755,"Lead__ppm":15,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2756,"geometry":{"type":"Point","coordinates":[-76.306394679567376,40.0404423969593]},"properties":{"OBJECTID":2756,"FID":2756,"Lead__ppm":15,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2757,"geometry":{"type":"Point","coordinates":[-75.53056468443755,39.839712482732253]},"properties":{"OBJECTID":2757,"FID":2757,"Lead__ppm":15,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2758,"geometry":{"type":"Point","coordinates":[-75.518069118835456,39.849058123314187]},"properties":{"OBJECTID":2758,"FID":2758,"Lead__ppm":15,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2759,"geometry":{"type":"Point","coordinates":[-75.510334624239178,39.861767532087079]},"properties":{"OBJECTID":2759,"FID":2759,"Lead__ppm":15,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2760,"geometry":{"type":"Point","coordinates":[-75.534696934744503,39.867380162452804]},"properties":{"OBJECTID":2760,"FID":2760,"Lead__ppm":16,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2761,"geometry":{"type":"Point","coordinates":[-75.506696447338499,39.873068170685087]},"properties":{"OBJECTID":2761,"FID":2761,"Lead__ppm":16,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2762,"geometry":{"type":"Point","coordinates":[-75.502779792699741,39.840126338752164]},"properties":{"OBJECTID":2762,"FID":2762,"Lead__ppm":16,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2763,"geometry":{"type":"Point","coordinates":[-75.498333132043342,39.89776589026777]},"properties":{"OBJECTID":2763,"FID":2763,"Lead__ppm":16,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2764,"geometry":{"type":"Point","coordinates":[-75.489421844424868,39.852161560203783]},"properties":{"OBJECTID":2764,"FID":2764,"Lead__ppm":16,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2765,"geometry":{"type":"Point","coordinates":[-76.340566592975279,40.008599402918527]},"properties":{"OBJECTID":2765,"FID":2765,"Lead__ppm":17,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2766,"geometry":{"type":"Point","coordinates":[-75.523324263247545,39.858395596040467]},"properties":{"OBJECTID":2766,"FID":2766,"Lead__ppm":17,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2767,"geometry":{"type":"Point","coordinates":[-75.482720412405342,39.847409796452183]},"properties":{"OBJECTID":2767,"FID":2767,"Lead__ppm":17,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2768,"geometry":{"type":"Point","coordinates":[-75.524815466619188,39.880258516937275]},"properties":{"OBJECTID":2768,"FID":2768,"Lead__ppm":18,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2769,"geometry":{"type":"Point","coordinates":[-75.512715159742086,39.850906409292797]},"properties":{"OBJECTID":2769,"FID":2769,"Lead__ppm":18,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2770,"geometry":{"type":"Point","coordinates":[-75.512571429296642,39.855871707271305]},"properties":{"OBJECTID":2770,"FID":2770,"Lead__ppm":18,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2771,"geometry":{"type":"Point","coordinates":[-75.486493336598642,39.857175038471354]},"properties":{"OBJECTID":2771,"FID":2771,"Lead__ppm":18,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2772,"geometry":{"type":"Point","coordinates":[-75.483178553200247,39.900364044522142]},"properties":{"OBJECTID":2772,"FID":2772,"Lead__ppm":18,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2773,"geometry":{"type":"Point","coordinates":[-75.473162337782313,39.859264454303521]},"properties":{"OBJECTID":2773,"FID":2773,"Lead__ppm":18,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2774,"geometry":{"type":"Point","coordinates":[-76.317066665142718,40.02658987264946]},"properties":{"OBJECTID":2774,"FID":2774,"Lead__ppm":19,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2775,"geometry":{"type":"Point","coordinates":[-75.703229865198168,39.618779365667756]},"properties":{"OBJECTID":2775,"FID":2775,"Lead__ppm":19,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2776,"geometry":{"type":"Point","coordinates":[-75.697229119100243,39.644356994177002]},"properties":{"OBJECTID":2776,"FID":2776,"Lead__ppm":19,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2777,"geometry":{"type":"Point","coordinates":[-75.558861615887324,39.849858133801291]},"properties":{"OBJECTID":2777,"FID":2777,"Lead__ppm":19,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2778,"geometry":{"type":"Point","coordinates":[-75.534858631495638,39.845926958138094]},"properties":{"OBJECTID":2778,"FID":2778,"Lead__ppm":19,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2779,"geometry":{"type":"Point","coordinates":[-75.518877602591161,39.855851019274915]},"properties":{"OBJECTID":2779,"FID":2779,"Lead__ppm":19,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2780,"geometry":{"type":"Point","coordinates":[-75.506831194631118,39.884532382761606]},"properties":{"OBJECTID":2780,"FID":2780,"Lead__ppm":20,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2781,"geometry":{"type":"Point","coordinates":[-75.491667632635171,39.854306297929206]},"properties":{"OBJECTID":2781,"FID":2781,"Lead__ppm":20,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2782,"geometry":{"type":"Point","coordinates":[-75.484337379916752,39.900060816742382]},"properties":{"OBJECTID":2782,"FID":2782,"Lead__ppm":20,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2783,"geometry":{"type":"Point","coordinates":[-75.462445436442778,39.881299434604479]},"properties":{"OBJECTID":2783,"FID":2783,"Lead__ppm":20,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2784,"geometry":{"type":"Point","coordinates":[-75.460954233071135,39.883925785769826]},"properties":{"OBJECTID":2784,"FID":2784,"Lead__ppm":20,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2785,"geometry":{"type":"Point","coordinates":[-75.374509353280317,39.883160638728448]},"properties":{"OBJECTID":2785,"FID":2785,"Lead__ppm":20,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2786,"geometry":{"type":"Point","coordinates":[-75.521338986469644,39.850237445860266]},"properties":{"OBJECTID":2786,"FID":2786,"Lead__ppm":21,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2787,"geometry":{"type":"Point","coordinates":[-75.474393029721554,39.83876750213755]},"properties":{"OBJECTID":2787,"FID":2787,"Lead__ppm":21,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2788,"geometry":{"type":"Point","coordinates":[-75.469479245117427,39.872337374215732]},"properties":{"OBJECTID":2788,"FID":2788,"Lead__ppm":21,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2789,"geometry":{"type":"Point","coordinates":[-75.533825568918914,39.843388816375132]},"properties":{"OBJECTID":2789,"FID":2789,"Lead__ppm":22,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2790,"geometry":{"type":"Point","coordinates":[-75.528974666384656,39.842885315144848]},"properties":{"OBJECTID":2790,"FID":2790,"Lead__ppm":22,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2791,"geometry":{"type":"Point","coordinates":[-75.517700809568964,39.848651217851597]},"properties":{"OBJECTID":2791,"FID":2791,"Lead__ppm":22,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2792,"geometry":{"type":"Point","coordinates":[-75.514853150118299,39.840057362922053]},"properties":{"OBJECTID":2792,"FID":2792,"Lead__ppm":22,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2793,"geometry":{"type":"Point","coordinates":[-75.513254148912566,39.86716642204032]},"properties":{"OBJECTID":2793,"FID":2793,"Lead__ppm":22,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2794,"geometry":{"type":"Point","coordinates":[-75.512454648309699,39.876163627877979]},"properties":{"OBJECTID":2794,"FID":2794,"Lead__ppm":22,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2795,"geometry":{"type":"Point","coordinates":[-76.29315351227946,40.032663594869682]},"properties":{"OBJECTID":2795,"FID":2795,"Lead__ppm":23,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2796,"geometry":{"type":"Point","coordinates":[-75.523081718120835,39.896042921986123]},"properties":{"OBJECTID":2796,"FID":2796,"Lead__ppm":23,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2797,"geometry":{"type":"Point","coordinates":[-75.502240803529261,39.861995080085364]},"properties":{"OBJECTID":2797,"FID":2797,"Lead__ppm":23,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2798,"geometry":{"type":"Point","coordinates":[-75.497551597746167,39.85287188269254]},"properties":{"OBJECTID":2798,"FID":2798,"Lead__ppm":23,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2799,"geometry":{"type":"Point","coordinates":[-75.462580183735383,39.848216722915332]},"properties":{"OBJECTID":2799,"FID":2799,"Lead__ppm":23,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2800,"geometry":{"type":"Point","coordinates":[-75.348080917621516,39.906276718028892]},"properties":{"OBJECTID":2800,"FID":2800,"Lead__ppm":23,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2801,"geometry":{"type":"Point","coordinates":[-75.470691970750977,39.841223045142499]},"properties":{"OBJECTID":2801,"FID":2801,"Lead__ppm":24,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2802,"geometry":{"type":"Point","coordinates":[-75.47045840877712,39.88597302910825]},"properties":{"OBJECTID":2802,"FID":2802,"Lead__ppm":24,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2803,"geometry":{"type":"Point","coordinates":[-75.462580183735383,39.848216722915332]},"properties":{"OBJECTID":2803,"FID":2803,"Lead__ppm":24,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2804,"geometry":{"type":"Point","coordinates":[-75.361852090927059,39.897186977757229]},"properties":{"OBJECTID":2804,"FID":2804,"Lead__ppm":24,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2805,"geometry":{"type":"Point","coordinates":[-75.520216092364507,39.862939740978845]},"properties":{"OBJECTID":2805,"FID":2805,"Lead__ppm":25,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2806,"geometry":{"type":"Point","coordinates":[-75.51411653158533,39.869021115050728]},"properties":{"OBJECTID":2806,"FID":2806,"Lead__ppm":25,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2807,"geometry":{"type":"Point","coordinates":[-75.502240803529261,39.861995080085364]},"properties":{"OBJECTID":2807,"FID":2807,"Lead__ppm":25,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2808,"geometry":{"type":"Point","coordinates":[-75.498935003283705,39.837905282220859]},"properties":{"OBJECTID":2808,"FID":2808,"Lead__ppm":25,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2809,"geometry":{"type":"Point","coordinates":[-75.498701441309834,39.843616425308554]},"properties":{"OBJECTID":2809,"FID":2809,"Lead__ppm":25,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2810,"geometry":{"type":"Point","coordinates":[-75.494829702435283,39.855878603268707]},"properties":{"OBJECTID":2810,"FID":2810,"Lead__ppm":25,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2811,"geometry":{"type":"Point","coordinates":[-75.493239684382388,39.763037160934587]},"properties":{"OBJECTID":2811,"FID":2811,"Lead__ppm":25,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2812,"geometry":{"type":"Point","coordinates":[-75.49142508750846,39.853223593048554]},"properties":{"OBJECTID":2812,"FID":2812,"Lead__ppm":25,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2813,"geometry":{"type":"Point","coordinates":[-75.369802181191517,39.877625131495002]},"properties":{"OBJECTID":2813,"FID":2813,"Lead__ppm":25,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2814,"geometry":{"type":"Point","coordinates":[-75.71667764500144,39.676618217274083]},"properties":{"OBJECTID":2814,"FID":2814,"Lead__ppm":26,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2815,"geometry":{"type":"Point","coordinates":[-75.699735418742947,39.640759954982066]},"properties":{"OBJECTID":2815,"FID":2815,"Lead__ppm":26,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2816,"geometry":{"type":"Point","coordinates":[-75.502465382350294,39.839450372629614]},"properties":{"OBJECTID":2816,"FID":2816,"Lead__ppm":27,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2817,"geometry":{"type":"Point","coordinates":[-75.474033703607915,39.860850437050985]},"properties":{"OBJECTID":2817,"FID":2817,"Lead__ppm":27,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2818,"geometry":{"type":"Point","coordinates":[-75.538703420911673,39.864208462153407]},"properties":{"OBJECTID":2818,"FID":2818,"Lead__ppm":28,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2819,"geometry":{"type":"Point","coordinates":[-75.524474106811226,39.876894383579675]},"properties":{"OBJECTID":2819,"FID":2819,"Lead__ppm":28,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2820,"geometry":{"type":"Point","coordinates":[-75.495853781859182,39.884883930834548]},"properties":{"OBJECTID":2820,"FID":2820,"Lead__ppm":28,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2821,"geometry":{"type":"Point","coordinates":[-75.493706808330131,39.894388831683365]},"properties":{"OBJECTID":2821,"FID":2821,"Lead__ppm":28,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2822,"geometry":{"type":"Point","coordinates":[-75.473449798673229,39.842257657756363]},"properties":{"OBJECTID":2822,"FID":2822,"Lead__ppm":28,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2823,"geometry":{"type":"Point","coordinates":[-75.524725635090775,39.852947741941371]},"properties":{"OBJECTID":2823,"FID":2823,"Lead__ppm":29,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2824,"geometry":{"type":"Point","coordinates":[-75.516164690433115,39.898847892205268]},"properties":{"OBJECTID":2824,"FID":2824,"Lead__ppm":29,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2825,"geometry":{"type":"Point","coordinates":[-75.478040189775086,39.86641487788345]},"properties":{"OBJECTID":2825,"FID":2825,"Lead__ppm":29,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2826,"geometry":{"type":"Point","coordinates":[-75.540347337881613,39.859298932579101]},"properties":{"OBJECTID":2826,"FID":2826,"Lead__ppm":30,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2827,"geometry":{"type":"Point","coordinates":[-75.534732867355871,39.853747707098002]},"properties":{"OBJECTID":2827,"FID":2827,"Lead__ppm":30,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2828,"geometry":{"type":"Point","coordinates":[-75.521195256024185,39.852154663832913]},"properties":{"OBJECTID":2828,"FID":2828,"Lead__ppm":30,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2829,"geometry":{"type":"Point","coordinates":[-75.365562133050474,39.874171244949096]},"properties":{"OBJECTID":2829,"FID":2829,"Lead__ppm":30,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2830,"geometry":{"type":"Point","coordinates":[-75.524006982863483,39.843623322537184]},"properties":{"OBJECTID":2830,"FID":2830,"Lead__ppm":31,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2831,"geometry":{"type":"Point","coordinates":[-75.493365448522155,39.856575095437776]},"properties":{"OBJECTID":2831,"FID":2831,"Lead__ppm":31,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2832,"geometry":{"type":"Point","coordinates":[-75.486457403987288,39.849423646503823]},"properties":{"OBJECTID":2832,"FID":2832,"Lead__ppm":32,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2833,"geometry":{"type":"Point","coordinates":[-75.499402127231448,39.866511406951567]},"properties":{"OBJECTID":2833,"FID":2833,"Lead__ppm":33,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2834,"geometry":{"type":"Point","coordinates":[-76.283011532721744,40.043468393212272]},"properties":{"OBJECTID":2834,"FID":2834,"Lead__ppm":34,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2835,"geometry":{"type":"Point","coordinates":[-75.505295075495269,39.878252465474873]},"properties":{"OBJECTID":2835,"FID":2835,"Lead__ppm":34,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2836,"geometry":{"type":"Point","coordinates":[-75.494326645876171,39.852775334436409]},"properties":{"OBJECTID":2836,"FID":2836,"Lead__ppm":34,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2837,"geometry":{"type":"Point","coordinates":[-76.284736298067259,40.047044397454272]},"properties":{"OBJECTID":2837,"FID":2837,"Lead__ppm":35,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2838,"geometry":{"type":"Point","coordinates":[-75.489026585699875,39.86840748611079]},"properties":{"OBJECTID":2838,"FID":2838,"Lead__ppm":35,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2839,"geometry":{"type":"Point","coordinates":[-76.322519438917311,40.045008848806624]},"properties":{"OBJECTID":2839,"FID":2839,"Lead__ppm":37,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2840,"geometry":{"type":"Point","coordinates":[-75.509867500291435,39.872978545121896]},"properties":{"OBJECTID":2840,"FID":2840,"Lead__ppm":37,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2841,"geometry":{"type":"Point","coordinates":[-75.466424973151419,39.87588097499939]},"properties":{"OBJECTID":2841,"FID":2841,"Lead__ppm":37,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2842,"geometry":{"type":"Point","coordinates":[-75.374491386974626,39.907124297240031]},"properties":{"OBJECTID":2842,"FID":2842,"Lead__ppm":38,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2843,"geometry":{"type":"Point","coordinates":[-76.311362363088563,40.045146387792059]},"properties":{"OBJECTID":2843,"FID":2843,"Lead__ppm":39,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2844,"geometry":{"type":"Point","coordinates":[-76.310338283664663,40.026548599753859]},"properties":{"OBJECTID":2844,"FID":2844,"Lead__ppm":40,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2845,"geometry":{"type":"Point","coordinates":[-75.634239251377778,39.659600829291975]},"properties":{"OBJECTID":2845,"FID":2845,"Lead__ppm":41,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2846,"geometry":{"type":"Point","coordinates":[-75.572812452249693,39.676659701111021]},"properties":{"OBJECTID":2846,"FID":2846,"Lead__ppm":41,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2847,"geometry":{"type":"Point","coordinates":[-75.479216982797283,39.851002960177688]},"properties":{"OBJECTID":2847,"FID":2847,"Lead__ppm":41,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2848,"geometry":{"type":"Point","coordinates":[-75.505295075495269,39.878252465474873]},"properties":{"OBJECTID":2848,"FID":2848,"Lead__ppm":42,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2849,"geometry":{"type":"Point","coordinates":[-75.530465869756299,39.84750635225501]},"properties":{"OBJECTID":2849,"FID":2849,"Lead__ppm":44,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2850,"geometry":{"type":"Point","coordinates":[-75.353569624007491,39.896683871246658]},"properties":{"OBJECTID":2850,"FID":2850,"Lead__ppm":44,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2851,"geometry":{"type":"Point","coordinates":[-76.306412645873053,40.03391541602992]},"properties":{"OBJECTID":2851,"FID":2851,"Lead__ppm":45,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2852,"geometry":{"type":"Point","coordinates":[-75.557334479904313,39.850547790531373]},"properties":{"OBJECTID":2852,"FID":2852,"Lead__ppm":45,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2853,"geometry":{"type":"Point","coordinates":[-75.506103559250988,39.880920294237342]},"properties":{"OBJECTID":2853,"FID":2853,"Lead__ppm":46,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2854,"geometry":{"type":"Point","coordinates":[-75.378093631263951,39.876625521538209]},"properties":{"OBJECTID":2854,"FID":2854,"Lead__ppm":47,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2855,"geometry":{"type":"Point","coordinates":[-76.292425876899316,40.030964657972795]},"properties":{"OBJECTID":2855,"FID":2855,"Lead__ppm":48,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2856,"geometry":{"type":"Point","coordinates":[-75.502240803529261,39.861995080085364]},"properties":{"OBJECTID":2856,"FID":2856,"Lead__ppm":49,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2857,"geometry":{"type":"Point","coordinates":[-76.315853939509154,40.048275324746271]},"properties":{"OBJECTID":2857,"FID":2857,"Lead__ppm":50,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2858,"geometry":{"type":"Point","coordinates":[-75.461978312495035,39.864794548252355]},"properties":{"OBJECTID":2858,"FID":2858,"Lead__ppm":50,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2859,"geometry":{"type":"Point","coordinates":[-76.327810515940797,40.031796935991359]},"properties":{"OBJECTID":2859,"FID":2859,"Lead__ppm":51,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2860,"geometry":{"type":"Point","coordinates":[-76.296926436472759,40.032188997324191]},"properties":{"OBJECTID":2860,"FID":2860,"Lead__ppm":51,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2861,"geometry":{"type":"Point","coordinates":[-75.532594876979658,39.863787856102654]},"properties":{"OBJECTID":2861,"FID":2861,"Lead__ppm":51,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2862,"geometry":{"type":"Point","coordinates":[-75.379090761229321,39.90008838295963]},"properties":{"OBJECTID":2862,"FID":2862,"Lead__ppm":51,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2863,"geometry":{"type":"Point","coordinates":[-76.293378091100479,40.051582901935681]},"properties":{"OBJECTID":2863,"FID":2863,"Lead__ppm":52,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2864,"geometry":{"type":"Point","coordinates":[-75.367250965784621,39.903051686641049]},"properties":{"OBJECTID":2864,"FID":2864,"Lead__ppm":58,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2865,"geometry":{"type":"Point","coordinates":[-76.334107706082463,40.063092844395193]},"properties":{"OBJECTID":2865,"FID":2865,"Lead__ppm":59,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2866,"geometry":{"type":"Point","coordinates":[-75.356273553012684,39.879934519471973]},"properties":{"OBJECTID":2866,"FID":2866,"Lead__ppm":61,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2867,"geometry":{"type":"Point","coordinates":[-75.346949040363526,39.896346167544685]},"properties":{"OBJECTID":2867,"FID":2867,"Lead__ppm":64,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2868,"geometry":{"type":"Point","coordinates":[-75.375039359297944,39.884904610076823]},"properties":{"OBJECTID":2868,"FID":2868,"Lead__ppm":65,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2869,"geometry":{"type":"Point","coordinates":[-75.470691970750977,39.841223045142499]},"properties":{"OBJECTID":2869,"FID":2869,"Lead__ppm":66,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2870,"geometry":{"type":"Point","coordinates":[-76.31781226682854,40.020962770859498]},"properties":{"OBJECTID":2870,"FID":2870,"Lead__ppm":71,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2871,"geometry":{"type":"Point","coordinates":[-75.372119834624556,39.875481122596256]},"properties":{"OBJECTID":2871,"FID":2871,"Lead__ppm":71,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2872,"geometry":{"type":"Point","coordinates":[-75.380770610810629,39.909467144569177]},"properties":{"OBJECTID":2872,"FID":2872,"Lead__ppm":72,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2873,"geometry":{"type":"Point","coordinates":[-76.308685383541885,40.033592145733131]},"properties":{"OBJECTID":2873,"FID":2873,"Lead__ppm":75,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2874,"geometry":{"type":"Point","coordinates":[-76.325564727730494,40.033887903723901]},"properties":{"OBJECTID":2874,"FID":2874,"Lead__ppm":90,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2875,"geometry":{"type":"Point","coordinates":[-76.290323819134485,40.040380500179793]},"properties":{"OBJECTID":2875,"FID":2875,"Lead__ppm":106,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2876,"geometry":{"type":"Point","coordinates":[-75.371940171567729,39.912698764244382]},"properties":{"OBJECTID":2876,"FID":2876,"Lead__ppm":110,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2877,"geometry":{"type":"Point","coordinates":[-76.290476532732782,40.04811716214882]},"properties":{"OBJECTID":2877,"FID":2877,"Lead__ppm":112,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2878,"geometry":{"type":"Point","coordinates":[-75.342430514484391,39.899702454909104]},"properties":{"OBJECTID":2878,"FID":2878,"Lead__ppm":112,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2879,"geometry":{"type":"Point","coordinates":[-75.835147464671124,40.32676417771463]},"properties":{"OBJECTID":2879,"FID":2879,"Lead__ppm":120,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2880,"geometry":{"type":"Point","coordinates":[-75.389062060883035,39.90494675552933]},"properties":{"OBJECTID":2880,"FID":2880,"Lead__ppm":129,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2881,"geometry":{"type":"Point","coordinates":[-75.537921886614498,39.800081118696717]},"properties":{"OBJECTID":2881,"FID":2881,"Lead__ppm":130,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2882,"geometry":{"type":"Point","coordinates":[-75.379728565081038,39.89753846093614]},"properties":{"OBJECTID":2882,"FID":2882,"Lead__ppm":133,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2883,"geometry":{"type":"Point","coordinates":[-75.346886158293628,39.896146301304555]},"properties":{"OBJECTID":2883,"FID":2883,"Lead__ppm":136,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2884,"geometry":{"type":"Point","coordinates":[-75.569335972100149,39.746476221085906]},"properties":{"OBJECTID":2884,"FID":2884,"Lead__ppm":164,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2885,"geometry":{"type":"Point","coordinates":[-76.299621382325114,40.034039221269715]},"properties":{"OBJECTID":2885,"FID":2885,"Lead__ppm":183,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2886,"geometry":{"type":"Point","coordinates":[-76.304894493042895,40.025846956708243]},"properties":{"OBJECTID":2886,"FID":2886,"Lead__ppm":195,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2887,"geometry":{"type":"Point","coordinates":[-76.308766231917446,40.051424747012945]},"properties":{"OBJECTID":2887,"FID":2887,"Lead__ppm":197,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2888,"geometry":{"type":"Point","coordinates":[-75.4771059418796,39.83691888936049]},"properties":{"OBJECTID":2888,"FID":2888,"Lead__ppm":208,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2889,"geometry":{"type":"Point","coordinates":[-75.505357957565153,39.890177613273053]},"properties":{"OBJECTID":2889,"FID":2889,"Lead__ppm":219,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2890,"geometry":{"type":"Point","coordinates":[-76.318701598959819,40.042044816249316]},"properties":{"OBJECTID":2890,"FID":2890,"Lead__ppm":230,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2891,"geometry":{"type":"Point","coordinates":[-75.355483035562656,39.910962390534714]},"properties":{"OBJECTID":2891,"FID":2891,"Lead__ppm":282,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2892,"geometry":{"type":"Point","coordinates":[-76.300591562831968,40.041412105835811]},"properties":{"OBJECTID":2892,"FID":2892,"Lead__ppm":356,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2893,"geometry":{"type":"Point","coordinates":[-75.531283336664842,39.761027684521636]},"properties":{"OBJECTID":2893,"FID":2893,"Lead__ppm":483,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2894,"geometry":{"type":"Point","coordinates":[-75.376611411045147,39.869627843886782]},"properties":{"OBJECTID":2894,"FID":2894,"Lead__ppm":1327,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2895,"geometry":{"type":"Point","coordinates":[-75.371571862301238,39.981587597611529]},"properties":{"OBJECTID":2895,"FID":2895,"Lead__ppm":126,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2896,"geometry":{"type":"Point","coordinates":[-75.367044353269279,39.979006292769768]},"properties":{"OBJECTID":2896,"FID":2896,"Lead__ppm":43,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2897,"geometry":{"type":"Point","coordinates":[-75.367313847854504,39.979295403761206]},"properties":{"OBJECTID":2897,"FID":2897,"Lead__ppm":42,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2898,"geometry":{"type":"Point","coordinates":[-75.2506676082116,39.938587558780902]},"properties":{"OBJECTID":2898,"FID":2898,"Lead__ppm":1498,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2899,"geometry":{"type":"Point","coordinates":[-75.506498817975981,39.896208328820769]},"properties":{"OBJECTID":2899,"FID":2899,"Lead__ppm":28,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2900,"geometry":{"type":"Point","coordinates":[-75.506597632657247,39.89640819488001]},"properties":{"OBJECTID":2900,"FID":2900,"Lead__ppm":50,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2901,"geometry":{"type":"Point","coordinates":[-75.50620237393224,39.89640819488001]},"properties":{"OBJECTID":2901,"FID":2901,"Lead__ppm":49,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2902,"geometry":{"type":"Point","coordinates":[-75.506400003294729,39.89650468173447]},"properties":{"OBJECTID":2902,"FID":2902,"Lead__ppm":31,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2903,"geometry":{"type":"Point","coordinates":[-75.506400003294729,39.89650468173447]},"properties":{"OBJECTID":2903,"FID":2903,"Lead__ppm":37,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2904,"geometry":{"type":"Point","coordinates":[-75.396518077741248,39.935295168783178]},"properties":{"OBJECTID":2904,"FID":2904,"Lead__ppm":17,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2905,"geometry":{"type":"Point","coordinates":[-75.397057066911714,39.935970190519356]},"properties":{"OBJECTID":2905,"FID":2905,"Lead__ppm":21,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2906,"geometry":{"type":"Point","coordinates":[-75.396742656562267,39.935508696786997]},"properties":{"OBJECTID":2906,"FID":2906,"Lead__ppm":31,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2907,"geometry":{"type":"Point","coordinates":[-75.93672895699936,39.936018406102882]},"properties":{"OBJECTID":2907,"FID":2907,"Lead__ppm":41,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2908,"geometry":{"type":"Point","coordinates":[-75.395377217330406,39.935612016549676]},"properties":{"OBJECTID":2908,"FID":2908,"Lead__ppm":89,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2909,"geometry":{"type":"Point","coordinates":[-75.295888799614161,39.945674613956427]},"properties":{"OBJECTID":2909,"FID":2909,"Lead__ppm":89,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2910,"geometry":{"type":"Point","coordinates":[-75.295520490347684,39.945660840022796]},"properties":{"OBJECTID":2910,"FID":2910,"Lead__ppm":110,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2911,"geometry":{"type":"Point","coordinates":[-75.295367776749373,39.945805466187679]},"properties":{"OBJECTID":2911,"FID":2911,"Lead__ppm":73,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2912,"geometry":{"type":"Point","coordinates":[-75.295673203945981,39.945399134756791]},"properties":{"OBJECTID":2912,"FID":2912,"Lead__ppm":149,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2913,"geometry":{"type":"Point","coordinates":[-75.295673203945981,39.945054784197367]},"properties":{"OBJECTID":2913,"FID":2913,"Lead__ppm":294,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2914,"geometry":{"type":"Point","coordinates":[-75.335001447084736,40.119905847368955]},"properties":{"OBJECTID":2914,"FID":2914,"Lead__ppm":56,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2915,"geometry":{"type":"Point","coordinates":[-75.335010430237574,40.120139406403361]},"properties":{"OBJECTID":2915,"FID":2915,"Lead__ppm":33,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2916,"geometry":{"type":"Point","coordinates":[-75.335782981381925,40.120627130035331]},"properties":{"OBJECTID":2916,"FID":2916,"Lead__ppm":56,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2917,"geometry":{"type":"Point","coordinates":[-75.33470500304098,40.119967671897314]},"properties":{"OBJECTID":2917,"FID":2917,"Lead__ppm":42,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2918,"geometry":{"type":"Point","coordinates":[-75.334731952499496,40.119782198143575]},"properties":{"OBJECTID":2918,"FID":2918,"Lead__ppm":1298,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2919,"geometry":{"type":"Point","coordinates":[-75.297901025850592,39.922330704663722]},"properties":{"OBJECTID":2919,"FID":2919,"Lead__ppm":127,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2920,"geometry":{"type":"Point","coordinates":[-75.2978561100864,39.922275590117621]},"properties":{"OBJECTID":2920,"FID":2920,"Lead__ppm":167,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2921,"geometry":{"type":"Point","coordinates":[-75.298565779160839,39.922365151232498]},"properties":{"OBJECTID":2921,"FID":2921,"Lead__ppm":158,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2922,"geometry":{"type":"Point","coordinates":[-75.298547812855162,39.922447822926877]},"properties":{"OBJECTID":2922,"FID":2922,"Lead__ppm":115,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2923,"geometry":{"type":"Point","coordinates":[-75.298628661230737,39.922489158736632]},"properties":{"OBJECTID":2923,"FID":2923,"Lead__ppm":114,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2924,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2924,"FID":2924,"Lead__ppm":78,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2925,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2925,"FID":2925,"Lead__ppm":78,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2926,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2926,"FID":2926,"Lead__ppm":98,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2927,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2927,"FID":2927,"Lead__ppm":98,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2928,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2928,"FID":2928,"Lead__ppm":90,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2929,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2929,"FID":2929,"Lead__ppm":90,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2930,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2930,"FID":2930,"Lead__ppm":80,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2931,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2931,"FID":2931,"Lead__ppm":80,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2932,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2932,"FID":2932,"Lead__ppm":90,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2933,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2933,"FID":2933,"Lead__ppm":75,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2934,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2934,"FID":2934,"Lead__ppm":75,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2935,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2935,"FID":2935,"Lead__ppm":91,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2936,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2936,"FID":2936,"Lead__ppm":91,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2937,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2937,"FID":2937,"Lead__ppm":69,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2938,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2938,"FID":2938,"Lead__ppm":69,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2939,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2939,"FID":2939,"Lead__ppm":88,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2940,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2940,"FID":2940,"Lead__ppm":88,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2941,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2941,"FID":2941,"Lead__ppm":71,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2942,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2942,"FID":2942,"Lead__ppm":71,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2943,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2943,"FID":2943,"Lead__ppm":148,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2944,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2944,"FID":2944,"Lead__ppm":148,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2945,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2945,"FID":2945,"Lead__ppm":143,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2946,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2946,"FID":2946,"Lead__ppm":143,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2947,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2947,"FID":2947,"Lead__ppm":96,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2948,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2948,"FID":2948,"Lead__ppm":96,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2949,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2949,"FID":2949,"Lead__ppm":120,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2950,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2950,"FID":2950,"Lead__ppm":120,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2951,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2951,"FID":2951,"Lead__ppm":116,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2952,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2952,"FID":2952,"Lead__ppm":116,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2953,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2953,"FID":2953,"Lead__ppm":111,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2954,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2954,"FID":2954,"Lead__ppm":111,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2955,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2955,"FID":2955,"Lead__ppm":58,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2956,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2956,"FID":2956,"Lead__ppm":58,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2957,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2957,"FID":2957,"Lead__ppm":215,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2958,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2958,"FID":2958,"Lead__ppm":215,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2959,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2959,"FID":2959,"Lead__ppm":68,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2960,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2960,"FID":2960,"Lead__ppm":68,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2961,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2961,"FID":2961,"Lead__ppm":71,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2962,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2962,"FID":2962,"Lead__ppm":125,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2963,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2963,"FID":2963,"Lead__ppm":125,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2964,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2964,"FID":2964,"Lead__ppm":74,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2965,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2965,"FID":2965,"Lead__ppm":74,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2966,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2966,"FID":2966,"Lead__ppm":117,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2967,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2967,"FID":2967,"Lead__ppm":117,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2968,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2968,"FID":2968,"Lead__ppm":111,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2969,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2969,"FID":2969,"Lead__ppm":130,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2970,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2970,"FID":2970,"Lead__ppm":130,"Long":0,"Lat":0,"Date":"10/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2971,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2971,"FID":2971,"Lead__ppm":66,"Long":0,"Lat":0,"Date":"10/29/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2972,"geometry":{"type":"Point","coordinates":[-75.225399975562937,39.952479975367687]},"properties":{"OBJECTID":2972,"FID":2972,"Lead__ppm":66,"Long":0,"Lat":0,"Date":"10/29/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2973,"geometry":{"type":"Point","coordinates":[-75.2014480154794,39.947589990162079]},"properties":{"OBJECTID":2973,"FID":2973,"Lead__ppm":151,"Long":0,"Lat":0,"Date":"11/1/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2974,"geometry":{"type":"Point","coordinates":[-75.201449003626209,39.947589990162079]},"properties":{"OBJECTID":2974,"FID":2974,"Lead__ppm":54,"Long":0,"Lat":0,"Date":"11/1/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2975,"geometry":{"type":"Point","coordinates":[-75.201449991773018,39.947589990162079]},"properties":{"OBJECTID":2975,"FID":2975,"Lead__ppm":216,"Long":0,"Lat":0,"Date":"11/1/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2976,"geometry":{"type":"Point","coordinates":[-75.201450979919841,39.947589990162079]},"properties":{"OBJECTID":2976,"FID":2976,"Lead__ppm":135,"Long":0,"Lat":0,"Date":"11/1/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2977,"geometry":{"type":"Point","coordinates":[-75.20145196806665,39.947589990162079]},"properties":{"OBJECTID":2977,"FID":2977,"Lead__ppm":274,"Long":0,"Lat":0,"Date":"11/1/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2978,"geometry":{"type":"Point","coordinates":[-75.201452956213458,39.947589990162079]},"properties":{"OBJECTID":2978,"FID":2978,"Lead__ppm":245,"Long":0,"Lat":0,"Date":"11/1/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2979,"geometry":{"type":"Point","coordinates":[-75.201454034191798,39.947589990162079]},"properties":{"OBJECTID":2979,"FID":2979,"Lead__ppm":259,"Long":0,"Lat":0,"Date":"11/1/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2980,"geometry":{"type":"Point","coordinates":[-75.201455022338621,39.947589990162079]},"properties":{"OBJECTID":2980,"FID":2980,"Lead__ppm":240,"Long":0,"Lat":0,"Date":"11/1/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2981,"geometry":{"type":"Point","coordinates":[-75.201456010485416,39.947589990162079]},"properties":{"OBJECTID":2981,"FID":2981,"Lead__ppm":234,"Long":0,"Lat":0,"Date":"11/1/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2982,"geometry":{"type":"Point","coordinates":[-75.201456998632253,39.947589990162079]},"properties":{"OBJECTID":2982,"FID":2982,"Lead__ppm":60,"Long":0,"Lat":0,"Date":"11/1/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2983,"geometry":{"type":"Point","coordinates":[-75.201457986779047,39.947589990162079]},"properties":{"OBJECTID":2983,"FID":2983,"Lead__ppm":120,"Long":0,"Lat":0,"Date":"11/1/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2984,"geometry":{"type":"Point","coordinates":[-75.20145897492587,39.947589990162079]},"properties":{"OBJECTID":2984,"FID":2984,"Lead__ppm":173,"Long":0,"Lat":0,"Date":"11/1/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2985,"geometry":{"type":"Point","coordinates":[-75.201459963072679,39.947589990162079]},"properties":{"OBJECTID":2985,"FID":2985,"Lead__ppm":116,"Long":0,"Lat":0,"Date":"11/1/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2986,"geometry":{"type":"Point","coordinates":[-75.201461041051019,39.947589990162079]},"properties":{"OBJECTID":2986,"FID":2986,"Lead__ppm":261,"Long":0,"Lat":0,"Date":"11/1/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2987,"geometry":{"type":"Point","coordinates":[-75.201462029197842,39.947589990162079]},"properties":{"OBJECTID":2987,"FID":2987,"Lead__ppm":152,"Long":0,"Lat":0,"Date":"11/1/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2988,"geometry":{"type":"Point","coordinates":[-75.201463017344651,39.947589990162079]},"properties":{"OBJECTID":2988,"FID":2988,"Lead__ppm":233,"Long":0,"Lat":0,"Date":"11/1/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2989,"geometry":{"type":"Point","coordinates":[-75.201464005491459,39.947589990162079]},"properties":{"OBJECTID":2989,"FID":2989,"Lead__ppm":242,"Long":0,"Lat":0,"Date":"11/1/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2990,"geometry":{"type":"Point","coordinates":[-75.201464993638268,39.947589990162079]},"properties":{"OBJECTID":2990,"FID":2990,"Lead__ppm":384,"Long":0,"Lat":0,"Date":"11/1/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2991,"geometry":{"type":"Point","coordinates":[-75.206770982695431,39.954899978289284]},"properties":{"OBJECTID":2991,"FID":2991,"Lead__ppm":134,"Long":0,"Lat":0,"Date":"10/29/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2992,"geometry":{"type":"Point","coordinates":[-75.206875995752171,39.953293997801644]},"properties":{"OBJECTID":2992,"FID":2992,"Lead__ppm":68,"Long":0,"Lat":0,"Date":"10/29/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2993,"geometry":{"type":"Point","coordinates":[-75.206876983898965,39.953293997801644]},"properties":{"OBJECTID":2993,"FID":2993,"Lead__ppm":76,"Long":0,"Lat":0,"Date":"10/29/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2994,"geometry":{"type":"Point","coordinates":[-75.206877972045788,39.953293997801644]},"properties":{"OBJECTID":2994,"FID":2994,"Lead__ppm":122,"Long":0,"Lat":0,"Date":"10/29/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2995,"geometry":{"type":"Point","coordinates":[-75.206878960192611,39.953293997801644]},"properties":{"OBJECTID":2995,"FID":2995,"Lead__ppm":114,"Long":0,"Lat":0,"Date":"10/29/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2996,"geometry":{"type":"Point","coordinates":[-75.207761015970078,39.953439020999944]},"properties":{"OBJECTID":2996,"FID":2996,"Lead__ppm":79,"Long":0,"Lat":0,"Date":"10/29/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2997,"geometry":{"type":"Point","coordinates":[-75.207761015970078,39.952887022226896]},"properties":{"OBJECTID":2997,"FID":2997,"Lead__ppm":9,"Long":0,"Lat":0,"Date":"10/29/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2998,"geometry":{"type":"Point","coordinates":[-75.207040028123046,39.951733980477854]},"properties":{"OBJECTID":2998,"FID":2998,"Lead__ppm":303,"Long":0,"Lat":0,"Date":"10/29/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":2999,"geometry":{"type":"Point","coordinates":[-75.206505979686625,39.95320000112001]},"properties":{"OBJECTID":2999,"FID":2999,"Lead__ppm":248,"Long":0,"Lat":0,"Date":"10/29/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3000,"geometry":{"type":"Point","coordinates":[-75.206505979686625,39.952887022226896]},"properties":{"OBJECTID":3000,"FID":3000,"Lead__ppm":11,"Long":0,"Lat":0,"Date":"10/29/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3001,"geometry":{"type":"Point","coordinates":[-75.206505979686625,39.952887022226896]},"properties":{"OBJECTID":3001,"FID":3001,"Lead__ppm":145,"Long":0,"Lat":0,"Date":"10/29/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3002,"geometry":{"type":"Point","coordinates":[-75.206971037509234,39.951829012126247]},"properties":{"OBJECTID":3002,"FID":3002,"Lead__ppm":126,"Long":0,"Lat":0,"Date":"10/29/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3003,"geometry":{"type":"Point","coordinates":[-75.206914982635496,39.952688973676956]},"properties":{"OBJECTID":3003,"FID":3003,"Lead__ppm":69,"Long":0,"Lat":0,"Date":"10/29/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3004,"geometry":{"type":"Point","coordinates":[-75.20700499382697,39.952456975185235]},"properties":{"OBJECTID":3004,"FID":3004,"Lead__ppm":146,"Long":0,"Lat":0,"Date":"10/29/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3005,"geometry":{"type":"Point","coordinates":[-75.20700499382697,39.952456975185235]},"properties":{"OBJECTID":3005,"FID":3005,"Lead__ppm":145,"Long":0,"Lat":0,"Date":"10/29/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3006,"geometry":{"type":"Point","coordinates":[-75.203667033894234,39.945996027910482]},"properties":{"OBJECTID":3006,"FID":3006,"Lead__ppm":126,"Long":0,"Lat":0,"Date":"11/1/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3007,"geometry":{"type":"Point","coordinates":[-75.203973000080012,39.946150983744822]},"properties":{"OBJECTID":3007,"FID":3007,"Lead__ppm":159,"Long":0,"Lat":0,"Date":"11/1/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3008,"geometry":{"type":"Point","coordinates":[-75.204472014220329,39.946484034296859]},"properties":{"OBJECTID":3008,"FID":3008,"Lead__ppm":53,"Long":0,"Lat":0,"Date":"11/1/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3009,"geometry":{"type":"Point","coordinates":[-75.204440034196224,39.937144987982244]},"properties":{"OBJECTID":3009,"FID":3009,"Lead__ppm":46,"Long":0,"Lat":0,"Date":"11/1/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3010,"geometry":{"type":"Point","coordinates":[-75.204859996591551,39.947964973940998]},"properties":{"OBJECTID":3010,"FID":3010,"Lead__ppm":78,"Long":0,"Lat":0,"Date":"11/1/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3011,"geometry":{"type":"Point","coordinates":[-75.204048997553031,39.948317987094875]},"properties":{"OBJECTID":3011,"FID":3011,"Lead__ppm":113,"Long":0,"Lat":0,"Date":"11/1/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3012,"geometry":{"type":"Point","coordinates":[-75.20357298028398,39.9485090238867]},"properties":{"OBJECTID":3012,"FID":3012,"Lead__ppm":91,"Long":0,"Lat":0,"Date":"11/1/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3013,"geometry":{"type":"Point","coordinates":[-75.20309597486812,39.948788966887925]},"properties":{"OBJECTID":3013,"FID":3013,"Lead__ppm":120,"Long":0,"Lat":0,"Date":"11/1/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3014,"geometry":{"type":"Point","coordinates":[-75.203131997311004,39.949509995615784]},"properties":{"OBJECTID":3014,"FID":3014,"Lead__ppm":43,"Long":0,"Lat":0,"Date":"11/1/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3015,"geometry":{"type":"Point","coordinates":[-75.203132985457827,39.949509995615784]},"properties":{"OBJECTID":3015,"FID":3015,"Lead__ppm":229,"Long":0,"Lat":0,"Date":"11/1/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3016,"geometry":{"type":"Point","coordinates":[-75.203133973604636,39.949509995615784]},"properties":{"OBJECTID":3016,"FID":3016,"Lead__ppm":178,"Long":0,"Lat":0,"Date":"11/1/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3017,"geometry":{"type":"Point","coordinates":[-75.202204037622522,39.949271994996323]},"properties":{"OBJECTID":3017,"FID":3017,"Lead__ppm":132,"Long":0,"Lat":0,"Date":"11/1/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3018,"geometry":{"type":"Point","coordinates":[-75.201651034733615,39.948062007976176]},"properties":{"OBJECTID":3018,"FID":3018,"Lead__ppm":117,"Long":0,"Lat":0,"Date":"11/1/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3019,"geometry":{"type":"Point","coordinates":[-75.201888998452375,39.948453999285057]},"properties":{"OBJECTID":3019,"FID":3019,"Lead__ppm":306,"Long":0,"Lat":0,"Date":"11/1/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3020,"geometry":{"type":"Point","coordinates":[-75.203730005795649,39.949490024530832]},"properties":{"OBJECTID":3020,"FID":3020,"Lead__ppm":18,"Long":0,"Lat":0,"Date":"11/1/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3021,"geometry":{"type":"Point","coordinates":[-75.166799994970916,39.986670005052773]},"properties":{"OBJECTID":3021,"FID":3021,"Lead__ppm":101,"Long":0,"Lat":0,"Date":"12/18/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3022,"geometry":{"type":"Point","coordinates":[-75.160410008860381,39.981760025300396]},"properties":{"OBJECTID":3022,"FID":3022,"Lead__ppm":98,"Long":0,"Lat":0,"Date":"12/14/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3023,"geometry":{"type":"Point","coordinates":[-75.166720044910633,39.987479972570902]},"properties":{"OBJECTID":3023,"FID":3023,"Lead__ppm":12,"Long":0,"Lat":0,"Date":"12/8/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3024,"geometry":{"type":"Point","coordinates":[-75.160530023782329,39.985070001905527]},"properties":{"OBJECTID":3024,"FID":3024,"Lead__ppm":484,"Long":0,"Lat":0,"Date":"12/8/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3025,"geometry":{"type":"Point","coordinates":[-75.241769974985431,39.967939994438481]},"properties":{"OBJECTID":3025,"FID":3025,"Lead__ppm":113,"Long":0,"Lat":0,"Date":"12/17/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3026,"geometry":{"type":"Point","coordinates":[-75.120139971977764,40.022619993671924]},"properties":{"OBJECTID":3026,"FID":3026,"Lead__ppm":198,"Long":0,"Lat":0,"Date":"12/22/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3027,"geometry":{"type":"Point","coordinates":[-75.112819960053571,40.021930005004791]},"properties":{"OBJECTID":3027,"FID":3027,"Lead__ppm":267,"Long":0,"Lat":0,"Date":"12/22/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3028,"geometry":{"type":"Point","coordinates":[-75.161362043398498,40.006294973035921]},"properties":{"OBJECTID":3028,"FID":3028,"Lead__ppm":80,"Long":0,"Lat":0,"Date":"12/28/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3029,"geometry":{"type":"Point","coordinates":[-75.105316961306031,40.014639019412961]},"properties":{"OBJECTID":3029,"FID":3029,"Lead__ppm":118,"Long":0,"Lat":0,"Date":"12/20/2021","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3030,"geometry":{"type":"Point","coordinates":[-75.251599969644971,39.895181008078701]},"properties":{"OBJECTID":3030,"FID":3030,"Lead__ppm":42,"Long":0,"Lat":0,"Date":"1/2/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3031,"geometry":{"type":"Point","coordinates":[-75.158232043454021,39.920769016819449]},"properties":{"OBJECTID":3031,"FID":3031,"Lead__ppm":171,"Long":0,"Lat":0,"Date":"1/24/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3032,"geometry":{"type":"Point","coordinates":[-75.187255981463252,39.921284002961158]},"properties":{"OBJECTID":3032,"FID":3032,"Lead__ppm":141,"Long":0,"Lat":0,"Date":"1/24/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3033,"geometry":{"type":"Point","coordinates":[-75.156236975039533,39.919978996436853]},"properties":{"OBJECTID":3033,"FID":3033,"Lead__ppm":147,"Long":0,"Lat":0,"Date":"1/24/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3034,"geometry":{"type":"Point","coordinates":[-75.160304995803685,39.912577012808534]},"properties":{"OBJECTID":3034,"FID":3034,"Lead__ppm":480,"Long":0,"Lat":0,"Date":"1/25/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3035,"geometry":{"type":"Point","coordinates":[-75.241290005129144,39.981859971210696]},"properties":{"OBJECTID":3035,"FID":3035,"Lead__ppm":206,"Long":0,"Lat":0,"Date":"3/22/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3036,"geometry":{"type":"Point","coordinates":[-75.240359979315485,39.981370014585515]},"properties":{"OBJECTID":3036,"FID":3036,"Lead__ppm":430,"Long":0,"Lat":0,"Date":"3/22/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3037,"geometry":{"type":"Point","coordinates":[-75.256060015199097,39.97449001378849]},"properties":{"OBJECTID":3037,"FID":3037,"Lead__ppm":89,"Long":0,"Lat":0,"Date":"3/22/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3038,"geometry":{"type":"Point","coordinates":[-75.259929957443092,39.972800023893917]},"properties":{"OBJECTID":3038,"FID":3038,"Lead__ppm":68,"Long":0,"Lat":0,"Date":"3/22/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3039,"geometry":{"type":"Point","coordinates":[-75.206461602911602,39.947939768484183]},"properties":{"OBJECTID":3039,"FID":3039,"Lead__ppm":716,"Long":0,"Lat":0,"Date":"3/27/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3040,"geometry":{"type":"Point","coordinates":[-75.206960617051934,39.947780822384281]},"properties":{"OBJECTID":3040,"FID":3040,"Lead__ppm":626,"Long":0,"Lat":0,"Date":"3/26/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3041,"geometry":{"type":"Point","coordinates":[-75.206456572345999,39.947943831659565]},"properties":{"OBJECTID":3041,"FID":3041,"Lead__ppm":172,"Long":0,"Lat":0,"Date":"3/27/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3042,"geometry":{"type":"Point","coordinates":[-75.206544068254672,39.947898723512864]},"properties":{"OBJECTID":3042,"FID":3042,"Lead__ppm":563,"Long":0,"Lat":0,"Date":"3/27/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3043,"geometry":{"type":"Point","coordinates":[-75.206442109469933,39.947854992685727]},"properties":{"OBJECTID":3043,"FID":3043,"Lead__ppm":521,"Long":0,"Lat":0,"Date":"3/27/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3044,"geometry":{"type":"Point","coordinates":[-75.206439055197976,39.947911808321834]},"properties":{"OBJECTID":3044,"FID":3044,"Lead__ppm":626,"Long":0,"Lat":0,"Date":"3/27/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3045,"geometry":{"type":"Point","coordinates":[-75.206528617231797,39.947855474757993]},"properties":{"OBJECTID":3045,"FID":3045,"Lead__ppm":396,"Long":0,"Lat":0,"Date":"3/26/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3046,"geometry":{"type":"Point","coordinates":[-75.206552781912933,39.94793797793227]},"properties":{"OBJECTID":3046,"FID":3046,"Lead__ppm":779,"Long":0,"Lat":0,"Date":"3/27/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3047,"geometry":{"type":"Point","coordinates":[-75.198798973538047,40.072803000779409]},"properties":{"OBJECTID":3047,"FID":3047,"Lead__ppm":121,"Long":0,"Lat":0,"Date":"3/1/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3048,"geometry":{"type":"Point","coordinates":[-75.19103501420048,40.069980003143769]},"properties":{"OBJECTID":3048,"FID":3048,"Lead__ppm":45,"Long":0,"Lat":0,"Date":"3/1/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3049,"geometry":{"type":"Point","coordinates":[-75.188006973040771,40.057659967513352]},"properties":{"OBJECTID":3049,"FID":3049,"Lead__ppm":139,"Long":0,"Lat":0,"Date":"3/8/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3050,"geometry":{"type":"Point","coordinates":[-75.15341895999326,40.023985022478413]},"properties":{"OBJECTID":3050,"FID":3050,"Lead__ppm":43,"Long":0,"Lat":0,"Date":"3/8/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3051,"geometry":{"type":"Point","coordinates":[-75.068163988627759,40.024821994582901]},"properties":{"OBJECTID":3051,"FID":3051,"Lead__ppm":38,"Long":0,"Lat":0,"Date":"3/1/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3052,"geometry":{"type":"Point","coordinates":[-75.159324035513407,39.94961501588044]},"properties":{"OBJECTID":3052,"FID":3052,"Lead__ppm":237,"Long":0,"Lat":0,"Date":"2/10/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3053,"geometry":{"type":"Point","coordinates":[-75.162267994362537,39.948407996204921]},"properties":{"OBJECTID":3053,"FID":3053,"Lead__ppm":55,"Long":0,"Lat":0,"Date":"2/10/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3054,"geometry":{"type":"Point","coordinates":[-75.060288009374247,40.029498998571555]},"properties":{"OBJECTID":3054,"FID":3054,"Lead__ppm":114,"Long":0,"Lat":0,"Date":"3/1/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3055,"geometry":{"type":"Point","coordinates":[-75.166852995572683,39.948129015785327]},"properties":{"OBJECTID":3055,"FID":3055,"Lead__ppm":252,"Long":0,"Lat":0,"Date":"2/10/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3056,"geometry":{"type":"Point","coordinates":[-75.175202027654805,40.081626021560453]},"properties":{"OBJECTID":3056,"FID":3056,"Lead__ppm":19,"Long":0,"Lat":0,"Date":"2/10/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3057,"geometry":{"type":"Point","coordinates":[-75.171485966818977,39.946763985584809]},"properties":{"OBJECTID":3057,"FID":3057,"Lead__ppm":645,"Long":0,"Lat":0,"Date":"2/10/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3058,"geometry":{"type":"Point","coordinates":[-75.078340014334742,40.055472022297835]},"properties":{"OBJECTID":3058,"FID":3058,"Lead__ppm":65,"Long":0,"Lat":0,"Date":"2/2/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3059,"geometry":{"type":"Point","coordinates":[-75.162637022281245,40.075484966992967]},"properties":{"OBJECTID":3059,"FID":3059,"Lead__ppm":60,"Long":0,"Lat":0,"Date":"3/1/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3060,"geometry":{"type":"Point","coordinates":[-75.091664006291879,40.066668025300359]},"properties":{"OBJECTID":3060,"FID":3060,"Lead__ppm":61,"Long":0,"Lat":0,"Date":"2/2/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3061,"geometry":{"type":"Point","coordinates":[-75.03461299074425,40.030080987708175]},"properties":{"OBJECTID":3061,"FID":3061,"Lead__ppm":83,"Long":0,"Lat":0,"Date":"4/3/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3062,"geometry":{"type":"Point","coordinates":[-74.988026988930514,40.054745992082886]},"properties":{"OBJECTID":3062,"FID":3062,"Lead__ppm":9,"Long":0,"Lat":0,"Date":"4/3/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3063,"geometry":{"type":"Point","coordinates":[-75.00111104087523,40.050916998467557]},"properties":{"OBJECTID":3063,"FID":3063,"Lead__ppm":30,"Long":0,"Lat":0,"Date":"4/3/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3064,"geometry":{"type":"Point","coordinates":[-74.99806700970349,40.058574976847069]},"properties":{"OBJECTID":3064,"FID":3064,"Lead__ppm":21,"Long":0,"Lat":0,"Date":"4/3/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3065,"geometry":{"type":"Point","coordinates":[-75.008743037697599,40.056386029639143]},"properties":{"OBJECTID":3065,"FID":3065,"Lead__ppm":3,"Long":0,"Lat":0,"Date":"4/3/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3066,"geometry":{"type":"Point","coordinates":[-75.019800041203709,40.056920002828136]},"properties":{"OBJECTID":3066,"FID":3066,"Lead__ppm":3,"Long":0,"Lat":0,"Date":"4/3/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3067,"geometry":{"type":"Point","coordinates":[-75.168916964769465,39.961211015752674]},"properties":{"OBJECTID":3067,"FID":3067,"Lead__ppm":76,"Long":0,"Lat":0,"Date":"4/6/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3068,"geometry":{"type":"Point","coordinates":[-75.012600044201477,40.1154469828586]},"properties":{"OBJECTID":3068,"FID":3068,"Lead__ppm":17,"Long":0,"Lat":0,"Date":"4/10/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3069,"geometry":{"type":"Point","coordinates":[-75.05533002765813,40.017849986233998]},"properties":{"OBJECTID":3069,"FID":3069,"Lead__ppm":246,"Long":0,"Lat":0,"Date":"4/6/2022","Organization":"Cabrini Univeristy","SymbolID":null}},{"type":"Feature","id":3070,"geometry":{"type":"Point","coordinates":[-75.05533002765813,40.017860030588068]},"properties":{"OBJECTID":3070,"FID":3070,"Lead__ppm":102,"Long":0,"Lat":0,"Date":"4/6/2022","Organization":"Cabrini Univeristy","SymbolID":null}},{"type":"Feature","id":3071,"geometry":{"type":"Point","coordinates":[-75.055319966526952,40.017870006143674]},"properties":{"OBJECTID":3071,"FID":3071,"Lead__ppm":113,"Long":0,"Lat":0,"Date":"4/6/2022","Organization":"Cabrini Univeristy","SymbolID":null}},{"type":"Feature","id":3072,"geometry":{"type":"Point","coordinates":[-75.055309995227319,40.017799970832549]},"properties":{"OBJECTID":3072,"FID":3072,"Lead__ppm":505,"Long":0,"Lat":0,"Date":"4/6/2022","Organization":"Cabrini Univeristy","SymbolID":null}},{"type":"Feature","id":3073,"geometry":{"type":"Point","coordinates":[-75.055279991496818,40.017789995266689]},"properties":{"OBJECTID":3073,"FID":3073,"Lead__ppm":294,"Long":0,"Lat":0,"Date":"4/6/2022","Organization":"Cabrini Univeristy","SymbolID":null}},{"type":"Feature","id":3074,"geometry":{"type":"Point","coordinates":[-75.15067002539233,40.021529973484405]},"properties":{"OBJECTID":3074,"FID":3074,"Lead__ppm":279,"Long":0,"Lat":0,"Date":"4/6/2022","Organization":"Cabrini Univeristy","SymbolID":null}},{"type":"Feature","id":3075,"geometry":{"type":"Point","coordinates":[-75.150679996691963,40.021510023441728]},"properties":{"OBJECTID":3075,"FID":3075,"Lead__ppm":70,"Long":0,"Lat":0,"Date":"4/6/2022","Organization":"Cabrini Univeristy","SymbolID":null}},{"type":"Feature","id":3076,"geometry":{"type":"Point","coordinates":[-75.150610017931342,40.021499979624991]},"properties":{"OBJECTID":3076,"FID":3076,"Lead__ppm":71,"Long":0,"Lat":0,"Date":"4/6/2022","Organization":"Cabrini Univeristy","SymbolID":null}},{"type":"Feature","id":3077,"geometry":{"type":"Point","coordinates":[-75.150580014200855,40.021689986373993]},"properties":{"OBJECTID":3077,"FID":3077,"Lead__ppm":273,"Long":0,"Lat":0,"Date":"4/6/2022","Organization":"Cabrini Univeristy","SymbolID":null}},{"type":"Feature","id":3078,"geometry":{"type":"Point","coordinates":[-75.150649992961476,40.021419973004278]},"properties":{"OBJECTID":3078,"FID":3078,"Lead__ppm":353,"Long":0,"Lat":0,"Date":"4/6/2022","Organization":"Cabrini Univeristy","SymbolID":null}},{"type":"Feature","id":3079,"geometry":{"type":"Point","coordinates":[-75.39682898466107,39.935795994220939]},"properties":{"OBJECTID":3079,"FID":3079,"Lead__ppm":25,"Long":0,"Lat":0,"Date":"4/6/2022","Organization":"Cabrini Univeristy","SymbolID":null}},{"type":"Feature","id":3080,"geometry":{"type":"Point","coordinates":[-75.396885668355509,39.935663125334642]},"properties":{"OBJECTID":3080,"FID":3080,"Lead__ppm":41,"Long":0,"Lat":0,"Date":"4/6/2022","Organization":"Cabrini Univeristy","SymbolID":null}},{"type":"Feature","id":3081,"geometry":{"type":"Point","coordinates":[-75.396513496333284,39.935215818851944]},"properties":{"OBJECTID":3081,"FID":3081,"Lead__ppm":1,"Long":0,"Lat":0,"Date":"4/6/2022","Organization":"Cabrini Univeristy","SymbolID":null}},{"type":"Feature","id":3082,"geometry":{"type":"Point","coordinates":[-75.396414322325924,39.935128891998815]},"properties":{"OBJECTID":3082,"FID":3082,"Lead__ppm":1,"Long":0,"Lat":0,"Date":"4/6/2022","Organization":"Cabrini Univeristy","SymbolID":null}},{"type":"Feature","id":3083,"geometry":{"type":"Point","coordinates":[-75.396863030810337,39.935189575495109]},"properties":{"OBJECTID":3083,"FID":3083,"Lead__ppm":1,"Long":0,"Lat":0,"Date":"4/6/2022","Organization":"Cabrini Univeristy","SymbolID":null}},{"type":"Feature","id":3084,"geometry":{"type":"Point","coordinates":[-75.163996532632225,40.069288568800005]},"properties":{"OBJECTID":3084,"FID":3084,"Lead__ppm":115,"Long":0,"Lat":0,"Date":"4/6/2022","Organization":"Cabrini Univeristy","SymbolID":null}},{"type":"Feature","id":3085,"geometry":{"type":"Point","coordinates":[-75.163996532632225,40.069288568800005]},"properties":{"OBJECTID":3085,"FID":3085,"Lead__ppm":37,"Long":0,"Lat":0,"Date":"4/6/2022","Organization":"Cabrini Univeristy","SymbolID":null}},{"type":"Feature","id":3086,"geometry":{"type":"Point","coordinates":[-75.163996532632225,40.069288568800005]},"properties":{"OBJECTID":3086,"FID":3086,"Lead__ppm":98,"Long":0,"Lat":0,"Date":"4/6/2022","Organization":"Cabrini Univeristy","SymbolID":null}},{"type":"Feature","id":3087,"geometry":{"type":"Point","coordinates":[-75.163996532632225,40.069288568800005]},"properties":{"OBJECTID":3087,"FID":3087,"Lead__ppm":101,"Long":0,"Lat":0,"Date":"4/6/2022","Organization":"Cabrini Univeristy","SymbolID":null}},{"type":"Feature","id":3088,"geometry":{"type":"Point","coordinates":[-75.163996532632225,40.069288568800005]},"properties":{"OBJECTID":3088,"FID":3088,"Lead__ppm":81,"Long":0,"Lat":0,"Date":"4/6/2022","Organization":"Cabrini Univeristy","SymbolID":null}},{"type":"Feature","id":3089,"geometry":{"type":"Point","coordinates":[-75.176629091315164,39.963933380607259]},"properties":{"OBJECTID":3089,"FID":3089,"Lead__ppm":205,"Long":0,"Lat":0,"Date":"3/20/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3090,"geometry":{"type":"Point","coordinates":[-75.179461030248348,39.963552631983013]},"properties":{"OBJECTID":3090,"FID":3090,"Lead__ppm":29,"Long":0,"Lat":0,"Date":"3/19/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3091,"geometry":{"type":"Point","coordinates":[-75.180130993787245,39.962409409448924]},"properties":{"OBJECTID":3091,"FID":3091,"Lead__ppm":31,"Long":0,"Lat":0,"Date":"3/20/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3092,"geometry":{"type":"Point","coordinates":[-75.178697013099196,39.957112426304533]},"properties":{"OBJECTID":3092,"FID":3092,"Lead__ppm":52,"Long":0,"Lat":0,"Date":"3/20/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3093,"geometry":{"type":"Point","coordinates":[-75.228390017986129,40.031979967009839]},"properties":{"OBJECTID":3093,"FID":3093,"Lead__ppm":209,"Long":0,"Lat":0,"Date":"3/31/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3094,"geometry":{"type":"Point","coordinates":[-75.23036999470385,40.031269988253442]},"properties":{"OBJECTID":3094,"FID":3094,"Lead__ppm":766,"Long":0,"Lat":0,"Date":"4/21/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3095,"geometry":{"type":"Point","coordinates":[-75.229358042536305,40.029932000062622]},"properties":{"OBJECTID":3095,"FID":3095,"Lead__ppm":329,"Long":0,"Lat":0,"Date":"4/28/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3096,"geometry":{"type":"Point","coordinates":[-75.221100009792451,40.02578999948549]},"properties":{"OBJECTID":3096,"FID":3096,"Lead__ppm":97,"Long":0,"Lat":0,"Date":"4/21/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3097,"geometry":{"type":"Point","coordinates":[-75.229550012512505,40.02929002879867]},"properties":{"OBJECTID":3097,"FID":3097,"Lead__ppm":245,"Long":0,"Lat":0,"Date":"4/21/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3098,"geometry":{"type":"Point","coordinates":[-75.229409965159704,40.033690984069459]},"properties":{"OBJECTID":3098,"FID":3098,"Lead__ppm":120,"Long":0,"Lat":0,"Date":"4/20/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3099,"geometry":{"type":"Point","coordinates":[-75.230853018832136,40.033111983342778]},"properties":{"OBJECTID":3099,"FID":3099,"Lead__ppm":180,"Long":0,"Lat":0,"Date":"4/20/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3100,"geometry":{"type":"Point","coordinates":[-75.227595008959682,40.027866018258671]},"properties":{"OBJECTID":3100,"FID":3100,"Lead__ppm":34,"Long":0,"Lat":0,"Date":"4/20/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3101,"geometry":{"type":"Point","coordinates":[-75.132270013090746,39.974889976767123]},"properties":{"OBJECTID":3101,"FID":3101,"Lead__ppm":124,"Long":0,"Lat":0,"Date":"4/23/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3102,"geometry":{"type":"Point","coordinates":[-75.128196961761034,39.979478024907102]},"properties":{"OBJECTID":3102,"FID":3102,"Lead__ppm":103,"Long":0,"Lat":0,"Date":"4/23/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3103,"geometry":{"type":"Point","coordinates":[-75.198433988038133,40.014830008466845]},"properties":{"OBJECTID":3103,"FID":3103,"Lead__ppm":67,"Long":0,"Lat":0,"Date":"4/20/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3104,"geometry":{"type":"Point","coordinates":[-75.203146999176255,39.98343802341622]},"properties":{"OBJECTID":3104,"FID":3104,"Lead__ppm":103,"Long":0,"Lat":0,"Date":"4/24/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3105,"geometry":{"type":"Point","coordinates":[-75.171554598106695,40.03297689622228]},"properties":{"OBJECTID":3105,"FID":3105,"Lead__ppm":116,"Long":0,"Lat":0,"Date":"4/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3106,"geometry":{"type":"Point","coordinates":[-75.172990016099206,40.032320027846104]},"properties":{"OBJECTID":3106,"FID":3106,"Lead__ppm":12,"Long":0,"Lat":0,"Date":"4/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3107,"geometry":{"type":"Point","coordinates":[-75.171839992872449,40.032220018221146]},"properties":{"OBJECTID":3107,"FID":3107,"Lead__ppm":140,"Long":0,"Lat":0,"Date":"4/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3108,"geometry":{"type":"Point","coordinates":[-75.175569977595188,40.035539998023459]},"properties":{"OBJECTID":3108,"FID":3108,"Lead__ppm":1559,"Long":0,"Lat":0,"Date":"4/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3109,"geometry":{"type":"Point","coordinates":[-75.172137964052197,40.03334749100263]},"properties":{"OBJECTID":3109,"FID":3109,"Lead__ppm":24,"Long":0,"Lat":0,"Date":"4/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3110,"geometry":{"type":"Point","coordinates":[-75.175520031265393,40.036070007806842]},"properties":{"OBJECTID":3110,"FID":3110,"Lead__ppm":163,"Long":0,"Lat":0,"Date":"4/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3111,"geometry":{"type":"Point","coordinates":[-75.172911772837949,40.032605130133014]},"properties":{"OBJECTID":3111,"FID":3111,"Lead__ppm":193,"Long":0,"Lat":0,"Date":"4/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3112,"geometry":{"type":"Point","coordinates":[-75.176129987343302,40.035819997216691]},"properties":{"OBJECTID":3112,"FID":3112,"Lead__ppm":8152,"Long":0,"Lat":0,"Date":"4/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3113,"geometry":{"type":"Point","coordinates":[-75.172172908516742,40.033324174129824]},"properties":{"OBJECTID":3113,"FID":3113,"Lead__ppm":20,"Long":0,"Lat":0,"Date":"4/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3114,"geometry":{"type":"Point","coordinates":[-75.177295910750573,40.034973806016808]},"properties":{"OBJECTID":3114,"FID":3114,"Lead__ppm":44,"Long":0,"Lat":0,"Date":"4/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3115,"geometry":{"type":"Point","coordinates":[-75.171300015555175,40.032990033525301]},"properties":{"OBJECTID":3115,"FID":3115,"Lead__ppm":37,"Long":0,"Lat":0,"Date":"4/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3116,"geometry":{"type":"Point","coordinates":[-75.177147419234103,40.034774344642116]},"properties":{"OBJECTID":3116,"FID":3116,"Lead__ppm":43,"Long":0,"Lat":0,"Date":"4/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3117,"geometry":{"type":"Point","coordinates":[-75.171520012968259,40.033029995672273]},"properties":{"OBJECTID":3117,"FID":3117,"Lead__ppm":140,"Long":0,"Lat":0,"Date":"4/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3118,"geometry":{"type":"Point","coordinates":[-75.174081289506333,40.035509528869703]},"properties":{"OBJECTID":3118,"FID":3118,"Lead__ppm":178,"Long":0,"Lat":0,"Date":"4/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3119,"geometry":{"type":"Point","coordinates":[-75.172330113691473,40.034917475432479]},"properties":{"OBJECTID":3119,"FID":3119,"Lead__ppm":215,"Long":0,"Lat":0,"Date":"4/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3120,"geometry":{"type":"Point","coordinates":[-75.172900004907717,40.032120008449539]},"properties":{"OBJECTID":3120,"FID":3120,"Lead__ppm":6,"Long":0,"Lat":0,"Date":"4/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3121,"geometry":{"type":"Point","coordinates":[-75.171490009237772,40.032779973937508]},"properties":{"OBJECTID":3121,"FID":3121,"Lead__ppm":44,"Long":0,"Lat":0,"Date":"4/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3122,"geometry":{"type":"Point","coordinates":[-75.175389955212253,40.036190026320249]},"properties":{"OBJECTID":3122,"FID":3122,"Lead__ppm":170,"Long":0,"Lat":0,"Date":"4/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3123,"geometry":{"type":"Point","coordinates":[-75.171999982824559,40.032200002522082]},"properties":{"OBJECTID":3123,"FID":3123,"Lead__ppm":600,"Long":0,"Lat":0,"Date":"4/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3124,"geometry":{"type":"Point","coordinates":[-75.176159272421557,40.036011614768952]},"properties":{"OBJECTID":3124,"FID":3124,"Lead__ppm":90,"Long":0,"Lat":0,"Date":"4/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3125,"geometry":{"type":"Point","coordinates":[-75.171399998046311,40.033100015350072]},"properties":{"OBJECTID":3125,"FID":3125,"Lead__ppm":164,"Long":0,"Lat":0,"Date":"4/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3126,"geometry":{"type":"Point","coordinates":[-75.172941686736905,40.032523485763974]},"properties":{"OBJECTID":3126,"FID":3126,"Lead__ppm":3,"Long":0,"Lat":0,"Date":"4/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3127,"geometry":{"type":"Point","coordinates":[-75.172180005207508,40.033419986479544]},"properties":{"OBJECTID":3127,"FID":3127,"Lead__ppm":13,"Long":0,"Lat":0,"Date":"4/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3128,"geometry":{"type":"Point","coordinates":[-75.17678000828289,40.036179984664756]},"properties":{"OBJECTID":3128,"FID":3128,"Lead__ppm":88,"Long":0,"Lat":0,"Date":"4/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3129,"geometry":{"type":"Point","coordinates":[-75.171279983124336,40.032990033525301]},"properties":{"OBJECTID":3129,"FID":3129,"Lead__ppm":58,"Long":0,"Lat":0,"Date":"4/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3130,"geometry":{"type":"Point","coordinates":[-75.171360023016149,40.033180008273142]},"properties":{"OBJECTID":3130,"FID":3130,"Lead__ppm":108,"Long":0,"Lat":0,"Date":"4/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3131,"geometry":{"type":"Point","coordinates":[-75.172390031320916,40.034399974700769]},"properties":{"OBJECTID":3131,"FID":3131,"Lead__ppm":153,"Long":0,"Lat":0,"Date":"4/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3132,"geometry":{"type":"Point","coordinates":[-75.174076887761444,40.033455890283022]},"properties":{"OBJECTID":3132,"FID":3132,"Lead__ppm":216,"Long":0,"Lat":0,"Date":"4/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3133,"geometry":{"type":"Point","coordinates":[-75.172969983668352,40.032569982484851]},"properties":{"OBJECTID":3133,"FID":3133,"Lead__ppm":3,"Long":0,"Lat":0,"Date":"4/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3134,"geometry":{"type":"Point","coordinates":[-75.172089994016034,40.033369982491884]},"properties":{"OBJECTID":3134,"FID":3134,"Lead__ppm":19,"Long":0,"Lat":0,"Date":"4/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3135,"geometry":{"type":"Point","coordinates":[-75.176800040713729,40.036209972069905]},"properties":{"OBJECTID":3135,"FID":3135,"Lead__ppm":79,"Long":0,"Lat":0,"Date":"4/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3136,"geometry":{"type":"Point","coordinates":[-75.171300015555175,40.033039969009913]},"properties":{"OBJECTID":3136,"FID":3136,"Lead__ppm":39,"Long":0,"Lat":0,"Date":"4/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3137,"geometry":{"type":"Point","coordinates":[-75.172210008937995,40.03434997143156]},"properties":{"OBJECTID":3137,"FID":3137,"Lead__ppm":319,"Long":0,"Lat":0,"Date":"4/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3138,"geometry":{"type":"Point","coordinates":[-75.192710012879232,40.014779990851984]},"properties":{"OBJECTID":3138,"FID":3138,"Lead__ppm":95,"Long":0,"Lat":0,"Date":"4/20/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3139,"geometry":{"type":"Point","coordinates":[-75.15928998936414,39.943719996179226]},"properties":{"OBJECTID":3139,"FID":3139,"Lead__ppm":71,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3140,"geometry":{"type":"Point","coordinates":[-75.180769965448832,40.025289970811315]},"properties":{"OBJECTID":3140,"FID":3140,"Lead__ppm":74,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3141,"geometry":{"type":"Point","coordinates":[-75.176244163215927,40.035953909467999]},"properties":{"OBJECTID":3141,"FID":3141,"Lead__ppm":124,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3142,"geometry":{"type":"Point","coordinates":[-75.176427239870819,40.035794480265885]},"properties":{"OBJECTID":3142,"FID":3142,"Lead__ppm":2157,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3143,"geometry":{"type":"Point","coordinates":[-75.181625970083076,40.031951490964815]},"properties":{"OBJECTID":3143,"FID":3143,"Lead__ppm":50,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3144,"geometry":{"type":"Point","coordinates":[-75.173339999733884,40.034399974700769]},"properties":{"OBJECTID":3144,"FID":3144,"Lead__ppm":124,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3145,"geometry":{"type":"Point","coordinates":[-75.182328362803716,39.944393970619494]},"properties":{"OBJECTID":3145,"FID":3145,"Lead__ppm":161,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3146,"geometry":{"type":"Point","coordinates":[-75.196215957770107,40.035811124746999]},"properties":{"OBJECTID":3146,"FID":3146,"Lead__ppm":3613,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3147,"geometry":{"type":"Point","coordinates":[-75.200109974863693,40.013259974517425]},"properties":{"OBJECTID":3147,"FID":3147,"Lead__ppm":19,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3148,"geometry":{"type":"Point","coordinates":[-75.180834374654708,40.025663978021726]},"properties":{"OBJECTID":3148,"FID":3148,"Lead__ppm":87,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3149,"geometry":{"type":"Point","coordinates":[-75.173192765858801,40.034929580665782]},"properties":{"OBJECTID":3149,"FID":3149,"Lead__ppm":113,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3150,"geometry":{"type":"Point","coordinates":[-75.178513756781228,40.038860366414596]},"properties":{"OBJECTID":3150,"FID":3150,"Lead__ppm":295,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3151,"geometry":{"type":"Point","coordinates":[-75.204600113979836,40.080733797693973]},"properties":{"OBJECTID":3151,"FID":3151,"Lead__ppm":350,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3152,"geometry":{"type":"Point","coordinates":[-75.185692014553581,40.025011923290769]},"properties":{"OBJECTID":3152,"FID":3152,"Lead__ppm":38,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3153,"geometry":{"type":"Point","coordinates":[-75.173300833187497,39.969255170658542]},"properties":{"OBJECTID":3153,"FID":3153,"Lead__ppm":52,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3154,"geometry":{"type":"Point","coordinates":[-75.173350689685762,39.969303293938189]},"properties":{"OBJECTID":3154,"FID":3154,"Lead__ppm":59,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3155,"geometry":{"type":"Point","coordinates":[-75.176167357259132,40.03568972998756]},"properties":{"OBJECTID":3155,"FID":3155,"Lead__ppm":151,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3156,"geometry":{"type":"Point","coordinates":[-75.170842234086393,39.971560093126456]},"properties":{"OBJECTID":3156,"FID":3156,"Lead__ppm":520,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3157,"geometry":{"type":"Point","coordinates":[-75.120418000558189,40.025693007003987]},"properties":{"OBJECTID":3157,"FID":3157,"Lead__ppm":42,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3158,"geometry":{"type":"Point","coordinates":[-75.181799973753598,40.031990009283753]},"properties":{"OBJECTID":3158,"FID":3158,"Lead__ppm":37,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3159,"geometry":{"type":"Point","coordinates":[-75.180940016532134,40.025129966364709]},"properties":{"OBJECTID":3159,"FID":3159,"Lead__ppm":65,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3160,"geometry":{"type":"Point","coordinates":[-75.318679956687561,40.026130022393581]},"properties":{"OBJECTID":3160,"FID":3160,"Lead__ppm":131,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3161,"geometry":{"type":"Point","coordinates":[-75.173849973320671,40.033549982919745]},"properties":{"OBJECTID":3161,"FID":3161,"Lead__ppm":169,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3162,"geometry":{"type":"Point","coordinates":[-75.230950036882817,40.028799999736883]},"properties":{"OBJECTID":3162,"FID":3162,"Lead__ppm":208,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3163,"geometry":{"type":"Point","coordinates":[-75.180530025436454,40.023480027603156]},"properties":{"OBJECTID":3163,"FID":3163,"Lead__ppm":271,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3164,"geometry":{"type":"Point","coordinates":[-75.176939998234985,40.035619988084669]},"properties":{"OBJECTID":3164,"FID":3164,"Lead__ppm":526,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3165,"geometry":{"type":"Point","coordinates":[-75.17377199955402,40.034230981386386]},"properties":{"OBJECTID":3165,"FID":3165,"Lead__ppm":22,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3166,"geometry":{"type":"Point","coordinates":[-75.147828204991001,39.944239217418925]},"properties":{"OBJECTID":3166,"FID":3166,"Lead__ppm":30,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3167,"geometry":{"type":"Point","coordinates":[-75.18082997290982,40.02540003384135]},"properties":{"OBJECTID":3167,"FID":3167,"Lead__ppm":40,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3168,"geometry":{"type":"Point","coordinates":[-75.146103529477031,39.943557803301069]},"properties":{"OBJECTID":3168,"FID":3168,"Lead__ppm":104,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3169,"geometry":{"type":"Point","coordinates":[-75.173297060263309,40.034587400658587]},"properties":{"OBJECTID":3169,"FID":3169,"Lead__ppm":143,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3170,"geometry":{"type":"Point","coordinates":[-75.176000001121679,40.035827631666479]},"properties":{"OBJECTID":3170,"FID":3170,"Lead__ppm":1395,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3171,"geometry":{"type":"Point","coordinates":[-75.178592179705547,39.983549324073579]},"properties":{"OBJECTID":3171,"FID":3171,"Lead__ppm":45,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3172,"geometry":{"type":"Point","coordinates":[-75.203929970777892,40.07878001959913]},"properties":{"OBJECTID":3172,"FID":3172,"Lead__ppm":50,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3173,"geometry":{"type":"Point","coordinates":[-75.180117968215612,40.025169726748004]},"properties":{"OBJECTID":3173,"FID":3173,"Lead__ppm":63,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3174,"geometry":{"type":"Point","coordinates":[-75.178626405517875,39.983367333294225]},"properties":{"OBJECTID":3174,"FID":3174,"Lead__ppm":65,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3175,"geometry":{"type":"Point","coordinates":[-75.177869215564883,39.986082827660148]},"properties":{"OBJECTID":3175,"FID":3175,"Lead__ppm":105,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3176,"geometry":{"type":"Point","coordinates":[-75.175808300640057,39.987415481117523]},"properties":{"OBJECTID":3176,"FID":3176,"Lead__ppm":122,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3177,"geometry":{"type":"Point","coordinates":[-75.178514295770412,39.9852519881494]},"properties":{"OBJECTID":3177,"FID":3177,"Lead__ppm":230,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3178,"geometry":{"type":"Point","coordinates":[-75.181441635786783,39.983228912600019]},"properties":{"OBJECTID":3178,"FID":3178,"Lead__ppm":635,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3179,"geometry":{"type":"Point","coordinates":[-75.178808673689005,39.985095813145861]},"properties":{"OBJECTID":3179,"FID":3179,"Lead__ppm":662,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3180,"geometry":{"type":"Point","coordinates":[-75.181020505581571,39.983969608037654]},"properties":{"OBJECTID":3180,"FID":3180,"Lead__ppm":1202,"Long":0,"Lat":0,"Date":"4/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3181,"geometry":{"type":"Point","coordinates":[-75.035855001456071,40.06146101235403]},"properties":{"OBJECTID":3181,"FID":3181,"Lead__ppm":46,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3182,"geometry":{"type":"Point","coordinates":[-75.034256000250352,40.02969496733904]},"properties":{"OBJECTID":3182,"FID":3182,"Lead__ppm":4,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3183,"geometry":{"type":"Point","coordinates":[-75.051088003223484,40.061597005579671]},"properties":{"OBJECTID":3183,"FID":3183,"Lead__ppm":15,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3184,"geometry":{"type":"Point","coordinates":[-75.046124990941777,40.028284997685596]},"properties":{"OBJECTID":3184,"FID":3184,"Lead__ppm":676,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3185,"geometry":{"type":"Point","coordinates":[-74.990054037369134,40.067291289175792]},"properties":{"OBJECTID":3185,"FID":3185,"Lead__ppm":32,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3186,"geometry":{"type":"Point","coordinates":[-74.997384020592946,40.059744985534451]},"properties":{"OBJECTID":3186,"FID":3186,"Lead__ppm":45,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3187,"geometry":{"type":"Point","coordinates":[-75.044638997798771,40.016456008182672]},"properties":{"OBJECTID":3187,"FID":3187,"Lead__ppm":13,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3188,"geometry":{"type":"Point","coordinates":[-75.033227968239203,40.030277986569949]},"properties":{"OBJECTID":3188,"FID":3188,"Lead__ppm":161,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3189,"geometry":{"type":"Point","coordinates":[-75.043905972526943,40.017743970050702]},"properties":{"OBJECTID":3189,"FID":3189,"Lead__ppm":18,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3190,"geometry":{"type":"Point","coordinates":[-74.968019980417182,40.102780968349734]},"properties":{"OBJECTID":3190,"FID":3190,"Lead__ppm":28,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3191,"geometry":{"type":"Point","coordinates":[-74.99110803069199,40.068276977672454]},"properties":{"OBJECTID":3191,"FID":3191,"Lead__ppm":4,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3192,"geometry":{"type":"Point","coordinates":[-75.046623016935271,40.02871099071146]},"properties":{"OBJECTID":3192,"FID":3192,"Lead__ppm":70,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3193,"geometry":{"type":"Point","coordinates":[-74.988146015705652,40.054775971322428]},"properties":{"OBJECTID":3193,"FID":3193,"Lead__ppm":1,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3194,"geometry":{"type":"Point","coordinates":[-74.991200018177082,40.068331974518166]},"properties":{"OBJECTID":3194,"FID":3194,"Lead__ppm":4,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3195,"geometry":{"type":"Point","coordinates":[-74.990559968537127,40.054488005054516]},"properties":{"OBJECTID":3195,"FID":3195,"Lead__ppm":55,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3196,"geometry":{"type":"Point","coordinates":[-75.011929002684255,40.036909995409445]},"properties":{"OBJECTID":3196,"FID":3196,"Lead__ppm":40,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3197,"geometry":{"type":"Point","coordinates":[-75.045081957065378,40.028550994288686]},"properties":{"OBJECTID":3197,"FID":3197,"Lead__ppm":11,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3198,"geometry":{"type":"Point","coordinates":[-75.055104011532663,40.025654966652716]},"properties":{"OBJECTID":3198,"FID":3198,"Lead__ppm":6,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3199,"geometry":{"type":"Point","coordinates":[-75.048774032883117,40.021381999063756]},"properties":{"OBJECTID":3199,"FID":3199,"Lead__ppm":70,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3200,"geometry":{"type":"Point","coordinates":[-74.991189957045904,40.042378018449284]},"properties":{"OBJECTID":3200,"FID":3200,"Lead__ppm":69,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3201,"geometry":{"type":"Point","coordinates":[-75.048540021751606,40.021560999228775]},"properties":{"OBJECTID":3201,"FID":3201,"Lead__ppm":46,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3202,"geometry":{"type":"Point","coordinates":[-75.048464024278573,40.02170202516178]},"properties":{"OBJECTID":3202,"FID":3202,"Lead__ppm":141,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3203,"geometry":{"type":"Point","coordinates":[-75.04596302469605,40.028686021389007]},"properties":{"OBJECTID":3203,"FID":3203,"Lead__ppm":505,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3204,"geometry":{"type":"Point","coordinates":[-75.044418012238893,40.028920994045066]},"properties":{"OBJECTID":3204,"FID":3204,"Lead__ppm":53,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3205,"geometry":{"type":"Point","coordinates":[-75.016022984760099,40.026080976102598]},"properties":{"OBJECTID":3205,"FID":3205,"Lead__ppm":99,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3206,"geometry":{"type":"Point","coordinates":[-74.996709026488475,40.059063966878625]},"properties":{"OBJECTID":3206,"FID":3206,"Lead__ppm":5,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3207,"geometry":{"type":"Point","coordinates":[-75.014037977476775,40.027799019832202]},"properties":{"OBJECTID":3207,"FID":3207,"Lead__ppm":6,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3208,"geometry":{"type":"Point","coordinates":[-75.054413027416103,40.025011992080479]},"properties":{"OBJECTID":3208,"FID":3208,"Lead__ppm":8,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3209,"geometry":{"type":"Point","coordinates":[-75.005765032699202,40.046209967396791]},"properties":{"OBJECTID":3209,"FID":3209,"Lead__ppm":16,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3210,"geometry":{"type":"Point","coordinates":[-74.992565008251304,40.043820981812196]},"properties":{"OBJECTID":3210,"FID":3210,"Lead__ppm":123,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3211,"geometry":{"type":"Point","coordinates":[-75.015256003170506,40.026151002914055]},"properties":{"OBJECTID":3211,"FID":3211,"Lead__ppm":482,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3212,"geometry":{"type":"Point","coordinates":[-75.034256000250352,40.02969496733904]},"properties":{"OBJECTID":3212,"FID":3212,"Lead__ppm":200,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3213,"geometry":{"type":"Point","coordinates":[-75.054507979341636,40.026043967797953]},"properties":{"OBJECTID":3213,"FID":3213,"Lead__ppm":13,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3214,"geometry":{"type":"Point","coordinates":[-75.044609982215093,40.028000014914134]},"properties":{"OBJECTID":3214,"FID":3214,"Lead__ppm":99,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3215,"geometry":{"type":"Point","coordinates":[-74.991515955662507,40.053698016845949]},"properties":{"OBJECTID":3215,"FID":3215,"Lead__ppm":187,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3216,"geometry":{"type":"Point","coordinates":[-74.997324013131987,40.058458023002586]},"properties":{"OBJECTID":3216,"FID":3216,"Lead__ppm":7,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3217,"geometry":{"type":"Point","coordinates":[-75.01448003842809,40.025659988255441]},"properties":{"OBJECTID":3217,"FID":3217,"Lead__ppm":1025,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3218,"geometry":{"type":"Point","coordinates":[-75.01333603391376,40.02645497897646]},"properties":{"OBJECTID":3218,"FID":3218,"Lead__ppm":215,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3219,"geometry":{"type":"Point","coordinates":[-75.004544042565044,40.048838999505811]},"properties":{"OBJECTID":3219,"FID":3219,"Lead__ppm":1,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3220,"geometry":{"type":"Point","coordinates":[-74.993103009274947,40.043700013937446]},"properties":{"OBJECTID":3220,"FID":3220,"Lead__ppm":3,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3221,"geometry":{"type":"Point","coordinates":[-75.045936973552799,40.14148997538954]},"properties":{"OBJECTID":3221,"FID":3221,"Lead__ppm":35,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3222,"geometry":{"type":"Point","coordinates":[-75.040464975831114,40.017470019617804]},"properties":{"OBJECTID":3222,"FID":3222,"Lead__ppm":50,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3223,"geometry":{"type":"Point","coordinates":[-75.050203971152371,40.06176799364345]},"properties":{"OBJECTID":3223,"FID":3223,"Lead__ppm":4,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3224,"geometry":{"type":"Point","coordinates":[-74.974416973386923,40.072280975699655]},"properties":{"OBJECTID":3224,"FID":3224,"Lead__ppm":38,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3225,"geometry":{"type":"Point","coordinates":[-75.052124030240648,40.073135021496604]},"properties":{"OBJECTID":3225,"FID":3225,"Lead__ppm":23,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3226,"geometry":{"type":"Point","coordinates":[-74.973874031629208,40.072249973030821]},"properties":{"OBJECTID":3226,"FID":3226,"Lead__ppm":39,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3227,"geometry":{"type":"Point","coordinates":[-75.022739957634059,40.032179023862057]},"properties":{"OBJECTID":3227,"FID":3227,"Lead__ppm":142,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3228,"geometry":{"type":"Point","coordinates":[-74.969162996784704,40.098121979954605]},"properties":{"OBJECTID":3228,"FID":3228,"Lead__ppm":72,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3229,"geometry":{"type":"Point","coordinates":[-74.981478989161502,40.117543970903093]},"properties":{"OBJECTID":3229,"FID":3229,"Lead__ppm":62,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3230,"geometry":{"type":"Point","coordinates":[-75.047298011039771,40.019802002991121]},"properties":{"OBJECTID":3230,"FID":3230,"Lead__ppm":5,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3231,"geometry":{"type":"Point","coordinates":[-75.035709025222403,40.051342987650273]},"properties":{"OBJECTID":3231,"FID":3231,"Lead__ppm":45,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3232,"geometry":{"type":"Point","coordinates":[-75.053397032829764,40.02007697598259]},"properties":{"OBJECTID":3232,"FID":3232,"Lead__ppm":41,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3233,"geometry":{"type":"Point","coordinates":[-75.045874001651384,40.014832966866578]},"properties":{"OBJECTID":3233,"FID":3233,"Lead__ppm":34,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3234,"geometry":{"type":"Point","coordinates":[-74.971769009423937,40.075489984925923]},"properties":{"OBJECTID":3234,"FID":3234,"Lead__ppm":55,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3235,"geometry":{"type":"Point","coordinates":[-75.054664016706511,40.018848979441579]},"properties":{"OBJECTID":3235,"FID":3235,"Lead__ppm":87,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3236,"geometry":{"type":"Point","coordinates":[-74.969986033248006,40.095712000016846]},"properties":{"OBJECTID":3236,"FID":3236,"Lead__ppm":22,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3237,"geometry":{"type":"Point","coordinates":[-75.046617986369711,40.014465023516401]},"properties":{"OBJECTID":3237,"FID":3237,"Lead__ppm":57,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3238,"geometry":{"type":"Point","coordinates":[-75.045159032516764,40.017026000181552]},"properties":{"OBJECTID":3238,"FID":3238,"Lead__ppm":19,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3239,"geometry":{"type":"Point","coordinates":[-74.958208041894864,40.089352984271152]},"properties":{"OBJECTID":3239,"FID":3239,"Lead__ppm":32,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3240,"geometry":{"type":"Point","coordinates":[-75.049824971934001,40.062155001230892]},"properties":{"OBJECTID":3240,"FID":3240,"Lead__ppm":58,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3241,"geometry":{"type":"Point","coordinates":[-75.221060034762289,40.031700020833767]},"properties":{"OBJECTID":3241,"FID":3241,"Lead__ppm":426,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3242,"geometry":{"type":"Point","coordinates":[-75.047255969884475,40.019830002543301]},"properties":{"OBJECTID":3242,"FID":3242,"Lead__ppm":36,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3243,"geometry":{"type":"Point","coordinates":[-75.040857000621116,40.017453989837172]},"properties":{"OBJECTID":3243,"FID":3243,"Lead__ppm":111,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3244,"geometry":{"type":"Point","coordinates":[-75.041518969153984,40.01806098615539]},"properties":{"OBJECTID":3244,"FID":3244,"Lead__ppm":165,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3245,"geometry":{"type":"Point","coordinates":[-74.9771410246545,40.069473973985126]},"properties":{"OBJECTID":3245,"FID":3245,"Lead__ppm":20,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3246,"geometry":{"type":"Point","coordinates":[-74.967614031740283,40.096678998313308]},"properties":{"OBJECTID":3246,"FID":3246,"Lead__ppm":49,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3247,"geometry":{"type":"Point","coordinates":[-74.960057044244181,40.09646700476619]},"properties":{"OBJECTID":3247,"FID":3247,"Lead__ppm":56,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3248,"geometry":{"type":"Point","coordinates":[-75.050431963571469,40.062254966947911]},"properties":{"OBJECTID":3248,"FID":3248,"Lead__ppm":40,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3249,"geometry":{"type":"Point","coordinates":[-74.968019980417182,40.102780968349734]},"properties":{"OBJECTID":3249,"FID":3249,"Lead__ppm":38,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3250,"geometry":{"type":"Point","coordinates":[-74.969013966279064,40.102651997211218]},"properties":{"OBJECTID":3250,"FID":3250,"Lead__ppm":34,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3251,"geometry":{"type":"Point","coordinates":[-75.055683963880071,40.04949199544906]},"properties":{"OBJECTID":3251,"FID":3251,"Lead__ppm":48,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3252,"geometry":{"type":"Point","coordinates":[-75.054741990473161,40.076657984679997]},"properties":{"OBJECTID":3252,"FID":3252,"Lead__ppm":58,"Long":0,"Lat":0,"Date":"7/13/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3253,"geometry":{"type":"Point","coordinates":[-75.05393395587511,40.097562011332236]},"properties":{"OBJECTID":3253,"FID":3253,"Lead__ppm":136,"Long":0,"Lat":0,"Date":"6/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3254,"geometry":{"type":"Point","coordinates":[-74.967644035470798,40.104970004845413]},"properties":{"OBJECTID":3254,"FID":3254,"Lead__ppm":6,"Long":0,"Lat":0,"Date":"7/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3255,"geometry":{"type":"Point","coordinates":[-74.974420027658894,40.105267995295478]},"properties":{"OBJECTID":3255,"FID":3255,"Lead__ppm":3,"Long":0,"Lat":0,"Date":"7/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3256,"geometry":{"type":"Point","coordinates":[-75.047050974336642,40.019958029833305]},"properties":{"OBJECTID":3256,"FID":3256,"Lead__ppm":10,"Long":0,"Lat":0,"Date":"6/29/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3257,"geometry":{"type":"Point","coordinates":[-75.006151038776792,40.102368012483957]},"properties":{"OBJECTID":3257,"FID":3257,"Lead__ppm":109,"Long":0,"Lat":0,"Date":"7/20/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3258,"geometry":{"type":"Point","coordinates":[-75.012309978196242,40.097676973974124]},"properties":{"OBJECTID":3258,"FID":3258,"Lead__ppm":102,"Long":0,"Lat":0,"Date":"7/20/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3259,"geometry":{"type":"Point","coordinates":[-75.055400006418779,40.102023010328899]},"properties":{"OBJECTID":3259,"FID":3259,"Lead__ppm":119,"Long":0,"Lat":0,"Date":"7/20/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3260,"geometry":{"type":"Point","coordinates":[-74.990330987971234,40.110486979542372]},"properties":{"OBJECTID":3260,"FID":3260,"Lead__ppm":81,"Long":0,"Lat":0,"Date":"7/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3261,"geometry":{"type":"Point","coordinates":[-75.020302019784481,40.092268022101941]},"properties":{"OBJECTID":3261,"FID":3261,"Lead__ppm":5,"Long":0,"Lat":0,"Date":"7/20/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3262,"geometry":{"type":"Point","coordinates":[-75.022721003181545,40.091080016829039]},"properties":{"OBJECTID":3262,"FID":3262,"Lead__ppm":63,"Long":0,"Lat":0,"Date":"7/20/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3263,"geometry":{"type":"Point","coordinates":[-75.00290003576356,40.109119972928816]},"properties":{"OBJECTID":3263,"FID":3263,"Lead__ppm":28,"Long":0,"Lat":0,"Date":"7/15/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3264,"geometry":{"type":"Point","coordinates":[-75.01861201924045,40.092370005275249]},"properties":{"OBJECTID":3264,"FID":3264,"Lead__ppm":41,"Long":0,"Lat":0,"Date":"7/20/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3265,"geometry":{"type":"Point","coordinates":[-75.015956958586713,40.094857000452471]},"properties":{"OBJECTID":3265,"FID":3265,"Lead__ppm":39,"Long":0,"Lat":0,"Date":"7/20/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3266,"geometry":{"type":"Point","coordinates":[-74.993460987915682,40.108904995121293]},"properties":{"OBJECTID":3266,"FID":3266,"Lead__ppm":28,"Long":0,"Lat":0,"Date":"7/20/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3267,"geometry":{"type":"Point","coordinates":[-75.021168983865181,40.089646026228991]},"properties":{"OBJECTID":3267,"FID":3267,"Lead__ppm":52,"Long":0,"Lat":0,"Date":"7/20/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3268,"geometry":{"type":"Point","coordinates":[-75.011406991672658,40.097739024859109]},"properties":{"OBJECTID":3268,"FID":3268,"Lead__ppm":38,"Long":0,"Lat":0,"Date":"7/20/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3269,"geometry":{"type":"Point","coordinates":[-75.008412996662202,40.100519987100398]},"properties":{"OBJECTID":3269,"FID":3269,"Lead__ppm":89,"Long":0,"Lat":0,"Date":"7/20/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3270,"geometry":{"type":"Point","coordinates":[-75.008125984928938,40.099919015882989]},"properties":{"OBJECTID":3270,"FID":3270,"Lead__ppm":54,"Long":0,"Lat":0,"Date":"7/20/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3271,"geometry":{"type":"Point","coordinates":[-75.099516988674111,40.099575994029735]},"properties":{"OBJECTID":3271,"FID":3271,"Lead__ppm":48,"Long":0,"Lat":0,"Date":"7/20/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3272,"geometry":{"type":"Point","coordinates":[-75.117800040325676,40.033800001831743]},"properties":{"OBJECTID":3272,"FID":3272,"Lead__ppm":279,"Long":0,"Lat":0,"Date":"7/13/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3273,"geometry":{"type":"Point","coordinates":[-75.118300042612816,40.041300005443759]},"properties":{"OBJECTID":3273,"FID":3273,"Lead__ppm":215,"Long":0,"Lat":0,"Date":"7/13/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3274,"geometry":{"type":"Point","coordinates":[-75.147399978095066,40.016099975761747]},"properties":{"OBJECTID":3274,"FID":3274,"Lead__ppm":241,"Long":0,"Lat":0,"Date":"7/13/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3275,"geometry":{"type":"Point","coordinates":[-75.148899984956486,40.039299979680465]},"properties":{"OBJECTID":3275,"FID":3275,"Lead__ppm":150.66666670000001,"Long":0,"Lat":0,"Date":"7/13/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3276,"geometry":{"type":"Point","coordinates":[-75.160199982746946,40.050199996619128]},"properties":{"OBJECTID":3276,"FID":3276,"Lead__ppm":67.666666669999998,"Long":0,"Lat":0,"Date":"7/13/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3277,"geometry":{"type":"Point","coordinates":[-75.168700021628354,40.06490001753415]},"properties":{"OBJECTID":3277,"FID":3277,"Lead__ppm":293.25,"Long":0,"Lat":0,"Date":"7/13/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3278,"geometry":{"type":"Point","coordinates":[-75.121199984013032,39.999200025018638]},"properties":{"OBJECTID":3278,"FID":3278,"Lead__ppm":188,"Long":0,"Lat":0,"Date":"7/14/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3279,"geometry":{"type":"Point","coordinates":[-75.11859999008621,39.994300030238328]},"properties":{"OBJECTID":3279,"FID":3279,"Lead__ppm":66,"Long":0,"Lat":0,"Date":"7/14/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3280,"geometry":{"type":"Point","coordinates":[-75.123500030466474,39.994500022862631]},"properties":{"OBJECTID":3280,"FID":3280,"Lead__ppm":211.33333329999999,"Long":0,"Lat":0,"Date":"7/14/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3281,"geometry":{"type":"Point","coordinates":[-75.127200011458712,39.995699966309836]},"properties":{"OBJECTID":3281,"FID":3281,"Lead__ppm":153.33333329999999,"Long":0,"Lat":0,"Date":"7/14/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3282,"geometry":{"type":"Point","coordinates":[-75.106799990008582,39.999800026901248]},"properties":{"OBJECTID":3282,"FID":3282,"Lead__ppm":343.33333329999999,"Long":0,"Lat":0,"Date":"7/14/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3283,"geometry":{"type":"Point","coordinates":[-75.098900025736981,39.998099996404747]},"properties":{"OBJECTID":3283,"FID":3283,"Lead__ppm":531.33333330000005,"Long":0,"Lat":0,"Date":"7/14/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3284,"geometry":{"type":"Point","coordinates":[-75.096599979283525,39.990699994032731]},"properties":{"OBJECTID":3284,"FID":3284,"Lead__ppm":1221.333333,"Long":0,"Lat":0,"Date":"7/14/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3285,"geometry":{"type":"Point","coordinates":[-75.104100013590639,39.986000026362866]},"properties":{"OBJECTID":3285,"FID":3285,"Lead__ppm":482.33333329999999,"Long":0,"Lat":0,"Date":"7/14/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3286,"geometry":{"type":"Point","coordinates":[-75.137800041979801,39.972599967739356]},"properties":{"OBJECTID":3286,"FID":3286,"Lead__ppm":174.33333329999999,"Long":0,"Lat":0,"Date":"7/15/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3287,"geometry":{"type":"Point","coordinates":[-75.143100012324567,39.973899978071032]},"properties":{"OBJECTID":3287,"FID":3287,"Lead__ppm":197,"Long":0,"Lat":0,"Date":"7/15/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3288,"geometry":{"type":"Point","coordinates":[-75.144700001677123,39.973199996762546]},"properties":{"OBJECTID":3288,"FID":3288,"Lead__ppm":289.33333329999999,"Long":0,"Lat":0,"Date":"7/15/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3289,"geometry":{"type":"Point","coordinates":[-75.151999981170448,39.978300030775436]},"properties":{"OBJECTID":3289,"FID":3289,"Lead__ppm":89,"Long":0,"Lat":0,"Date":"7/15/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3290,"geometry":{"type":"Point","coordinates":[-75.179099997335669,39.977399983591276]},"properties":{"OBJECTID":3290,"FID":3290,"Lead__ppm":60,"Long":0,"Lat":0,"Date":"7/15/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3291,"geometry":{"type":"Point","coordinates":[-75.17230002012947,39.974100030420473]},"properties":{"OBJECTID":3291,"FID":3291,"Lead__ppm":105,"Long":0,"Lat":0,"Date":"7/15/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3292,"geometry":{"type":"Point","coordinates":[-75.163600016265818,39.99500000186115]},"properties":{"OBJECTID":3292,"FID":3292,"Lead__ppm":633.66666669999995,"Long":0,"Lat":0,"Date":"7/15/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3293,"geometry":{"type":"Point","coordinates":[-75.147299995603944,39.983200003220212]},"properties":{"OBJECTID":3293,"FID":3293,"Lead__ppm":157.33333329999999,"Long":0,"Lat":0,"Date":"7/15/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3294,"geometry":{"type":"Point","coordinates":[-75.150399991817906,39.989799972538826]},"properties":{"OBJECTID":3294,"FID":3294,"Lead__ppm":85,"Long":0,"Lat":0,"Date":"7/15/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3295,"geometry":{"type":"Point","coordinates":[-75.216300041734812,39.942399989807605]},"properties":{"OBJECTID":3295,"FID":3295,"Lead__ppm":206,"Long":0,"Lat":0,"Date":"7/20/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3296,"geometry":{"type":"Point","coordinates":[-75.255199968146087,39.97460002105106]},"properties":{"OBJECTID":3296,"FID":3296,"Lead__ppm":295.66666670000001,"Long":0,"Lat":0,"Date":"7/21/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3297,"geometry":{"type":"Point","coordinates":[-75.233999996935452,39.967499990296254]},"properties":{"OBJECTID":3297,"FID":3297,"Lead__ppm":46,"Long":0,"Lat":0,"Date":"7/21/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3298,"geometry":{"type":"Point","coordinates":[-75.150499974309042,39.933799971931521]},"properties":{"OBJECTID":3298,"FID":3298,"Lead__ppm":229.33333329999999,"Long":0,"Lat":0,"Date":"7/22/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3299,"geometry":{"type":"Point","coordinates":[-75.151300013901064,39.933600008315437]},"properties":{"OBJECTID":3299,"FID":3299,"Lead__ppm":154.66666670000001,"Long":0,"Lat":0,"Date":"7/22/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3300,"geometry":{"type":"Point","coordinates":[-75.164100018552958,39.933600008315437]},"properties":{"OBJECTID":3300,"FID":3300,"Lead__ppm":77.666666669999998,"Long":0,"Lat":0,"Date":"7/22/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3301,"geometry":{"type":"Point","coordinates":[-75.148100035195981,39.930600001775375]},"properties":{"OBJECTID":3301,"FID":3301,"Lead__ppm":57.333333330000002,"Long":0,"Lat":0,"Date":"7/22/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3302,"geometry":{"type":"Point","coordinates":[-75.151899998679326,39.927199968593094]},"properties":{"OBJECTID":3302,"FID":3302,"Lead__ppm":139.66666670000001,"Long":0,"Lat":0,"Date":"7/22/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3303,"geometry":{"type":"Point","coordinates":[-75.150700029122817,39.921299986415555]},"properties":{"OBJECTID":3303,"FID":3303,"Lead__ppm":62.333333330000002,"Long":0,"Lat":0,"Date":"7/22/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3304,"geometry":{"type":"Point","coordinates":[-75.154199955301252,39.915200029661456]},"properties":{"OBJECTID":3304,"FID":3304,"Lead__ppm":230.66666670000001,"Long":0,"Lat":0,"Date":"7/22/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3305,"geometry":{"type":"Point","coordinates":[-75.157099986532984,39.920099976864968]},"properties":{"OBJECTID":3305,"FID":3305,"Lead__ppm":197,"Long":0,"Lat":0,"Date":"7/22/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3306,"geometry":{"type":"Point","coordinates":[-75.170599958454275,39.914299978749334]},"properties":{"OBJECTID":3306,"FID":3306,"Lead__ppm":315,"Long":0,"Lat":0,"Date":"7/22/2020","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3307,"geometry":{"type":"Point","coordinates":[-76.302100013857057,40.05970001994919]},"properties":{"OBJECTID":3307,"FID":3307,"Lead__ppm":252.66666670000001,"Long":0,"Lat":0,"Date":"7/23/2021","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3308,"geometry":{"type":"Point","coordinates":[-75.188100038504203,40.057499970254923]},"properties":{"OBJECTID":3308,"FID":3308,"Lead__ppm":175.33333329999999,"Long":0,"Lat":0,"Date":null,"Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3309,"geometry":{"type":"Point","coordinates":[-75.187100033929909,40.018499976727867]},"properties":{"OBJECTID":3309,"FID":3309,"Lead__ppm":156.33333329999999,"Long":0,"Lat":0,"Date":null,"Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3310,"geometry":{"type":"Point","coordinates":[-75.168399984323457,40.019499992349012]},"properties":{"OBJECTID":3310,"FID":3310,"Lead__ppm":101,"Long":0,"Lat":0,"Date":null,"Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3311,"geometry":{"type":"Point","coordinates":[-75.228100041812411,40.041899981101089]},"properties":{"OBJECTID":3311,"FID":3311,"Lead__ppm":335,"Long":0,"Lat":0,"Date":null,"Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3312,"geometry":{"type":"Point","coordinates":[-75.090743682283289,40.067536990795404]},"properties":{"OBJECTID":3312,"FID":3312,"Lead__ppm":65.333333330000002,"Long":0,"Lat":0,"Date":"6/8/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3313,"geometry":{"type":"Point","coordinates":[-75.090064286433915,40.065586134018091]},"properties":{"OBJECTID":3313,"FID":3313,"Lead__ppm":104,"Long":0,"Lat":0,"Date":"6/8/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3314,"geometry":{"type":"Point","coordinates":[-75.092060342995211,40.066414414531025]},"properties":{"OBJECTID":3314,"FID":3314,"Lead__ppm":134.66666670000001,"Long":0,"Lat":0,"Date":"6/8/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3315,"geometry":{"type":"Point","coordinates":[-75.091877266340319,40.06714341404696]},"properties":{"OBJECTID":3315,"FID":3315,"Lead__ppm":250.66666670000001,"Long":0,"Lat":0,"Date":"6/8/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3316,"geometry":{"type":"Point","coordinates":[-75.096040778019159,39.988848801353441]},"properties":{"OBJECTID":3316,"FID":3316,"Lead__ppm":70.333333330000002,"Long":0,"Lat":0,"Date":"6/9/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3317,"geometry":{"type":"Point","coordinates":[-75.099986897399248,39.98342239863414]},"properties":{"OBJECTID":3317,"FID":3317,"Lead__ppm":78.666666669999998,"Long":0,"Lat":0,"Date":"6/9/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3318,"geometry":{"type":"Point","coordinates":[-75.097860585121722,39.989737892160733]},"properties":{"OBJECTID":3318,"FID":3318,"Lead__ppm":170,"Long":0,"Lat":0,"Date":"6/15/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3319,"geometry":{"type":"Point","coordinates":[-75.094599071819658,39.99201411285771]},"properties":{"OBJECTID":3319,"FID":3319,"Lead__ppm":176.33333329999999,"Long":0,"Lat":0,"Date":"6/15/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3320,"geometry":{"type":"Point","coordinates":[-75.097432178562741,39.990619882483344]},"properties":{"OBJECTID":3320,"FID":3320,"Lead__ppm":265.66666670000001,"Long":0,"Lat":0,"Date":"6/9/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3321,"geometry":{"type":"Point","coordinates":[-75.09664588319454,39.990339766619257]},"properties":{"OBJECTID":3321,"FID":3321,"Lead__ppm":270.33333329999999,"Long":0,"Lat":0,"Date":"6/9/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3322,"geometry":{"type":"Point","coordinates":[-75.094188631566368,39.986413068244836]},"properties":{"OBJECTID":3322,"FID":3322,"Lead__ppm":333.33333329999999,"Long":0,"Lat":0,"Date":"6/9/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3323,"geometry":{"type":"Point","coordinates":[-75.096773084638755,39.98973458854698]},"properties":{"OBJECTID":3323,"FID":3323,"Lead__ppm":393.33333329999999,"Long":0,"Lat":0,"Date":"6/9/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3324,"geometry":{"type":"Point","coordinates":[-75.096311889571894,39.990535916669202]},"properties":{"OBJECTID":3324,"FID":3324,"Lead__ppm":402,"Long":0,"Lat":0,"Date":"6/9/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3325,"geometry":{"type":"Point","coordinates":[-75.097509703171738,39.991022779306356]},"properties":{"OBJECTID":3325,"FID":3325,"Lead__ppm":444,"Long":0,"Lat":0,"Date":"6/9/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3326,"geometry":{"type":"Point","coordinates":[-75.097045543664436,39.985830982006334]},"properties":{"OBJECTID":3326,"FID":3326,"Lead__ppm":619.66666669999995,"Long":0,"Lat":0,"Date":"6/9/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3327,"geometry":{"type":"Point","coordinates":[-75.095847999559197,39.990780587257802]},"properties":{"OBJECTID":3327,"FID":3327,"Lead__ppm":718.66666669999995,"Long":0,"Lat":0,"Date":"6/15/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3328,"geometry":{"type":"Point","coordinates":[-75.096457775974045,39.990535297248897]},"properties":{"OBJECTID":3328,"FID":3328,"Lead__ppm":754.33333330000005,"Long":0,"Lat":0,"Date":"6/9/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3329,"geometry":{"type":"Point","coordinates":[-75.095868121821553,39.989570715340868]},"properties":{"OBJECTID":3329,"FID":3329,"Lead__ppm":807.33333330000005,"Long":0,"Lat":0,"Date":"6/15/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3330,"geometry":{"type":"Point","coordinates":[-75.095522719594797,39.991612323056486]},"properties":{"OBJECTID":3330,"FID":3330,"Lead__ppm":925.33333330000005,"Long":0,"Lat":0,"Date":"6/15/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3331,"geometry":{"type":"Point","coordinates":[-75.097477902810695,39.984070239025684]},"properties":{"OBJECTID":3331,"FID":3331,"Lead__ppm":988.66666669999995,"Long":0,"Lat":0,"Date":"6/9/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3332,"geometry":{"type":"Point","coordinates":[-75.094504479220248,39.991379080170915]},"properties":{"OBJECTID":3332,"FID":3332,"Lead__ppm":1019.333333,"Long":0,"Lat":0,"Date":"6/15/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3333,"geometry":{"type":"Point","coordinates":[-75.09627712477041,39.98952549700352]},"properties":{"OBJECTID":3333,"FID":3333,"Lead__ppm":1060.333333,"Long":0,"Lat":0,"Date":"6/15/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3334,"geometry":{"type":"Point","coordinates":[-75.093750792696866,39.992137374722766]},"properties":{"OBJECTID":3334,"FID":3334,"Lead__ppm":1096,"Long":0,"Lat":0,"Date":"6/15/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3335,"geometry":{"type":"Point","coordinates":[-75.098718925375707,39.990465922137055]},"properties":{"OBJECTID":3335,"FID":3335,"Lead__ppm":1100,"Long":0,"Lat":0,"Date":"6/15/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3336,"geometry":{"type":"Point","coordinates":[-75.094762295706786,39.990714103015783]},"properties":{"OBJECTID":3336,"FID":3336,"Lead__ppm":1188,"Long":0,"Lat":0,"Date":"6/15/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3337,"geometry":{"type":"Point","coordinates":[-75.09663546273724,39.990884098826648]},"properties":{"OBJECTID":3337,"FID":3337,"Lead__ppm":1249.666667,"Long":0,"Lat":0,"Date":"6/9/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3338,"geometry":{"type":"Point","coordinates":[-75.095932800522007,39.99056688767822]},"properties":{"OBJECTID":3338,"FID":3338,"Lead__ppm":1344.333333,"Long":0,"Lat":0,"Date":"6/9/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3339,"geometry":{"type":"Point","coordinates":[-75.094573918991728,39.990405012382631]},"properties":{"OBJECTID":3339,"FID":3339,"Lead__ppm":1489,"Long":0,"Lat":0,"Date":"6/15/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3340,"geometry":{"type":"Point","coordinates":[-75.098809116230228,39.989896396606269]},"properties":{"OBJECTID":3340,"FID":3340,"Lead__ppm":1884.333333,"Long":0,"Lat":0,"Date":"6/15/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3341,"geometry":{"type":"Point","coordinates":[-75.045875708450424,40.014772216446417]},"properties":{"OBJECTID":3341,"FID":3341,"Lead__ppm":34.333333330000002,"Long":0,"Lat":0,"Date":"6/21/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3342,"geometry":{"type":"Point","coordinates":[-75.046939942567533,40.014618723354545]},"properties":{"OBJECTID":3342,"FID":3342,"Lead__ppm":43.333333330000002,"Long":0,"Lat":0,"Date":"6/21/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3343,"geometry":{"type":"Point","coordinates":[-75.053565916103196,40.018776124498537]},"properties":{"OBJECTID":3343,"FID":3343,"Lead__ppm":72.666666669999998,"Long":0,"Lat":0,"Date":"6/21/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3344,"geometry":{"type":"Point","coordinates":[-75.053565916103196,40.016908080682448]},"properties":{"OBJECTID":3344,"FID":3344,"Lead__ppm":114.66666669999999,"Long":0,"Lat":0,"Date":"6/21/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3345,"geometry":{"type":"Point","coordinates":[-75.053505908642208,40.019189518511979]},"properties":{"OBJECTID":3345,"FID":3345,"Lead__ppm":126.33333330000001,"Long":0,"Lat":0,"Date":"6/21/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3346,"geometry":{"type":"Point","coordinates":[-75.05387367891953,40.017605825419402]},"properties":{"OBJECTID":3346,"FID":3346,"Lead__ppm":564,"Long":0,"Lat":0,"Date":"6/21/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3347,"geometry":{"type":"Point","coordinates":[-75.042156773005701,40.032461100320887]},"properties":{"OBJECTID":3347,"FID":3347,"Lead__ppm":102,"Long":0,"Lat":0,"Date":"6/21/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3348,"geometry":{"type":"Point","coordinates":[-75.041871468071463,40.032265001935798]},"properties":{"OBJECTID":3348,"FID":3348,"Lead__ppm":178.66666670000001,"Long":0,"Lat":0,"Date":"6/21/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3349,"geometry":{"type":"Point","coordinates":[-75.053922996428639,40.025933080341218]},"properties":{"OBJECTID":3349,"FID":3349,"Lead__ppm":50.333333330000002,"Long":0,"Lat":0,"Date":"6/21/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3350,"geometry":{"type":"Point","coordinates":[-75.053820139328593,40.026330816027951]},"properties":{"OBJECTID":3350,"FID":3350,"Lead__ppm":64.666666669999998,"Long":0,"Lat":0,"Date":"6/21/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3351,"geometry":{"type":"Point","coordinates":[-74.980723236512986,40.05230841574982]},"properties":{"OBJECTID":3351,"FID":3351,"Lead__ppm":68,"Long":0,"Lat":0,"Date":"6/21/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3352,"geometry":{"type":"Point","coordinates":[-74.979594323695423,40.051167572572396]},"properties":{"OBJECTID":3352,"FID":3352,"Lead__ppm":154,"Long":0,"Lat":0,"Date":"6/21/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3353,"geometry":{"type":"Point","coordinates":[-74.981328701014462,40.05271259875208]},"properties":{"OBJECTID":3353,"FID":3353,"Lead__ppm":162.33333329999999,"Long":0,"Lat":0,"Date":"6/21/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3354,"geometry":{"type":"Point","coordinates":[-74.978377555643092,40.051824603206448]},"properties":{"OBJECTID":3354,"FID":3354,"Lead__ppm":184.66666670000001,"Long":0,"Lat":0,"Date":"6/21/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3355,"geometry":{"type":"Point","coordinates":[-75.049851831560986,40.028318083950033]},"properties":{"OBJECTID":3355,"FID":3355,"Lead__ppm":26.25,"Long":0,"Lat":0,"Date":"6/23/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3356,"geometry":{"type":"Point","coordinates":[-75.047934736913163,40.028373594548881]},"properties":{"OBJECTID":3356,"FID":3356,"Lead__ppm":41,"Long":0,"Lat":0,"Date":"6/23/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3357,"geometry":{"type":"Point","coordinates":[-75.054178656958484,40.050024784893104]},"properties":{"OBJECTID":3357,"FID":3357,"Lead__ppm":77.666666669999998,"Long":0,"Lat":0,"Date":"6/23/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3358,"geometry":{"type":"Point","coordinates":[-75.045293420483262,40.046326598419391]},"properties":{"OBJECTID":3358,"FID":3358,"Lead__ppm":677.33333330000005,"Long":0,"Lat":0,"Date":"6/23/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3359,"geometry":{"type":"Point","coordinates":[-75.050385879997407,40.061936299931361]},"properties":{"OBJECTID":3359,"FID":3359,"Lead__ppm":9.6666666669999994,"Long":0,"Lat":0,"Date":"6/23/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3360,"geometry":{"type":"Point","coordinates":[-75.050276914353432,40.062135475585393]},"properties":{"OBJECTID":3360,"FID":3360,"Lead__ppm":48,"Long":0,"Lat":0,"Date":"6/23/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3361,"geometry":{"type":"Point","coordinates":[-75.051594024223022,40.092339973858031]},"properties":{"OBJECTID":3361,"FID":3361,"Lead__ppm":43,"Long":0,"Lat":0,"Date":"6/23/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3362,"geometry":{"type":"Point","coordinates":[-75.033805225640776,40.100407502953168]},"properties":{"OBJECTID":3362,"FID":3362,"Lead__ppm":100.5961538,"Long":0,"Lat":0,"Date":"6/23/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3363,"geometry":{"type":"Point","coordinates":[-75.148064461910721,40.051121913693279]},"properties":{"OBJECTID":3363,"FID":3363,"Lead__ppm":49.666666669999998,"Long":0,"Lat":0,"Date":"6/28/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3364,"geometry":{"type":"Point","coordinates":[-75.147368537060117,40.05115842704636]},"properties":{"OBJECTID":3364,"FID":3364,"Lead__ppm":60,"Long":0,"Lat":0,"Date":"6/28/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3365,"geometry":{"type":"Point","coordinates":[-75.145095979054361,40.036422909778622]},"properties":{"OBJECTID":3365,"FID":3365,"Lead__ppm":32,"Long":0,"Lat":0,"Date":"6/28/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3366,"geometry":{"type":"Point","coordinates":[-75.144943085793003,40.03609380519076]},"properties":{"OBJECTID":3366,"FID":3366,"Lead__ppm":139.66666670000001,"Long":0,"Lat":0,"Date":"6/28/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3367,"geometry":{"type":"Point","coordinates":[-75.155417082679719,40.032599490002816]},"properties":{"OBJECTID":3367,"FID":3367,"Lead__ppm":180.66666670000001,"Long":0,"Lat":0,"Date":"6/28/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3368,"geometry":{"type":"Point","coordinates":[-75.155078777143714,40.032829015411906]},"properties":{"OBJECTID":3368,"FID":3368,"Lead__ppm":358,"Long":0,"Lat":0,"Date":"6/28/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3369,"geometry":{"type":"Point","coordinates":[-75.155061080332629,40.03755409581882]},"properties":{"OBJECTID":3369,"FID":3369,"Lead__ppm":57,"Long":0,"Lat":0,"Date":"6/28/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3370,"geometry":{"type":"Point","coordinates":[-75.155486522451184,40.037196316502722]},"properties":{"OBJECTID":3370,"FID":3370,"Lead__ppm":162.66666670000001,"Long":0,"Lat":0,"Date":"6/28/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3371,"geometry":{"type":"Point","coordinates":[-75.155618305303364,40.036742177539203]},"properties":{"OBJECTID":3371,"FID":3371,"Lead__ppm":339.66666670000001,"Long":0,"Lat":0,"Date":"6/28/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3372,"geometry":{"type":"Point","coordinates":[-75.025809770454458,40.114752987512261]},"properties":{"OBJECTID":3372,"FID":3372,"Lead__ppm":41.333333330000002,"Long":0,"Lat":0,"Date":"6/29/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3373,"geometry":{"type":"Point","coordinates":[-74.993968895377321,40.086793074423063]},"properties":{"OBJECTID":3373,"FID":3373,"Lead__ppm":63.666666669999998,"Long":0,"Lat":0,"Date":"6/29/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3374,"geometry":{"type":"Point","coordinates":[-75.007434371991693,40.122746695082576]},"properties":{"OBJECTID":3374,"FID":3374,"Lead__ppm":24.333333329999999,"Long":0,"Lat":0,"Date":"6/29/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3375,"geometry":{"type":"Point","coordinates":[-75.007729288899469,40.122979488758929]},"properties":{"OBJECTID":3375,"FID":3375,"Lead__ppm":33,"Long":0,"Lat":0,"Date":"6/29/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3376,"geometry":{"type":"Point","coordinates":[-75.007608016336121,40.123280010546871]},"properties":{"OBJECTID":3376,"FID":3376,"Lead__ppm":44.333333330000002,"Long":0,"Lat":0,"Date":"6/29/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3377,"geometry":{"type":"Point","coordinates":[-75.013543993902033,40.125564207475001]},"properties":{"OBJECTID":3377,"FID":3377,"Lead__ppm":83.25,"Long":0,"Lat":0,"Date":"6/29/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3378,"geometry":{"type":"Point","coordinates":[-74.985326473523386,40.114678929780361]},"properties":{"OBJECTID":3378,"FID":3378,"Lead__ppm":21.666666670000001,"Long":0,"Lat":0,"Date":"6/29/2022","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3379,"geometry":{"type":"Point","coordinates":[-75.170254017238349,40.026979969067632]},"properties":{"OBJECTID":3379,"FID":3379,"Lead__ppm":217,"Long":0,"Lat":0,"Date":"12/21/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3380,"geometry":{"type":"Point","coordinates":[-75.170149992328447,40.027090029371102]},"properties":{"OBJECTID":3380,"FID":3380,"Lead__ppm":35,"Long":0,"Lat":0,"Date":"12/21/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3381,"geometry":{"type":"Point","coordinates":[-75.166923962480112,40.034731013300799]},"properties":{"OBJECTID":3381,"FID":3381,"Lead__ppm":326,"Long":0,"Lat":0,"Date":"12/21/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3382,"geometry":{"type":"Point","coordinates":[-75.167188965488933,40.034887968917388]},"properties":{"OBJECTID":3382,"FID":3382,"Lead__ppm":167,"Long":0,"Lat":0,"Date":"12/21/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3383,"geometry":{"type":"Point","coordinates":[-75.170420025902857,40.016560031217665]},"properties":{"OBJECTID":3383,"FID":3383,"Lead__ppm":170,"Long":0,"Lat":0,"Date":"12/21/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3384,"geometry":{"type":"Point","coordinates":[-75.170679998346088,40.016719986964034]},"properties":{"OBJECTID":3384,"FID":3384,"Lead__ppm":101,"Long":0,"Lat":0,"Date":"12/21/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3385,"geometry":{"type":"Point","coordinates":[-75.169239998945642,40.020160011141478]},"properties":{"OBJECTID":3385,"FID":3385,"Lead__ppm":102,"Long":0,"Lat":0,"Date":"12/21/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3386,"geometry":{"type":"Point","coordinates":[-75.169170020185007,40.020180030373417]},"properties":{"OBJECTID":3386,"FID":3386,"Lead__ppm":113,"Long":0,"Lat":0,"Date":"12/21/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3387,"geometry":{"type":"Point","coordinates":[-75.171099960741415,40.026899968873082]},"properties":{"OBJECTID":3387,"FID":3387,"Lead__ppm":117,"Long":0,"Lat":0,"Date":"12/21/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3388,"geometry":{"type":"Point","coordinates":[-75.171010039381471,40.026759985503887]},"properties":{"OBJECTID":3388,"FID":3388,"Lead__ppm":384,"Long":0,"Lat":0,"Date":"12/21/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3389,"geometry":{"type":"Point","coordinates":[-75.170920028189983,40.027079986375774]},"properties":{"OBJECTID":3389,"FID":3389,"Lead__ppm":108,"Long":0,"Lat":0,"Date":"12/21/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3390,"geometry":{"type":"Point","coordinates":[-75.171020010681119,40.026770028546338]},"properties":{"OBJECTID":3390,"FID":3390,"Lead__ppm":139,"Long":0,"Lat":0,"Date":"12/21/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3391,"geometry":{"type":"Point","coordinates":[-75.177000993842796,40.034849177115866]},"properties":{"OBJECTID":3391,"FID":3391,"Lead__ppm":10,"Long":0,"Lat":0,"Date":"12/21/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3392,"geometry":{"type":"Point","coordinates":[-75.177106995046302,40.034881022160242]},"properties":{"OBJECTID":3392,"FID":3392,"Lead__ppm":11,"Long":0,"Lat":0,"Date":"12/21/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3393,"geometry":{"type":"Point","coordinates":[-75.177277585118759,40.034751509716486]},"properties":{"OBJECTID":3393,"FID":3393,"Lead__ppm":15,"Long":0,"Lat":0,"Date":"12/21/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3394,"geometry":{"type":"Point","coordinates":[-75.177029739931868,40.034570480758404]},"properties":{"OBJECTID":3394,"FID":3394,"Lead__ppm":12,"Long":0,"Lat":0,"Date":"12/21/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3395,"geometry":{"type":"Point","coordinates":[-75.119109963672983,40.079139986376056]},"properties":{"OBJECTID":3395,"FID":3395,"Lead__ppm":68,"Long":0,"Lat":0,"Date":"12/21/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3396,"geometry":{"type":"Point","coordinates":[-75.177370021761504,40.051420002359599]},"properties":{"OBJECTID":3396,"FID":3396,"Lead__ppm":60,"Long":0,"Lat":0,"Date":"12/21/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3397,"geometry":{"type":"Point","coordinates":[-75.162100009404398,40.053100001578024]},"properties":{"OBJECTID":3397,"FID":3397,"Lead__ppm":55,"Long":0,"Lat":0,"Date":"12/21/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3398,"geometry":{"type":"Point","coordinates":[-75.164489977217798,40.056500030447197]},"properties":{"OBJECTID":3398,"FID":3398,"Lead__ppm":31,"Long":0,"Lat":0,"Date":"12/21/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3399,"geometry":{"type":"Point","coordinates":[-75.156030003198069,40.036539970212537]},"properties":{"OBJECTID":3399,"FID":3399,"Lead__ppm":138,"Long":0,"Lat":0,"Date":"12/21/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3400,"geometry":{"type":"Point","coordinates":[-75.124570013801403,40.072430008287476]},"properties":{"OBJECTID":3400,"FID":3400,"Lead__ppm":59,"Long":0,"Lat":0,"Date":"12/21/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3401,"geometry":{"type":"Point","coordinates":[-75.154789968779866,40.03183002055232]},"properties":{"OBJECTID":3401,"FID":3401,"Lead__ppm":210,"Long":0,"Lat":0,"Date":"12/21/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3402,"geometry":{"type":"Point","coordinates":[-75.188059973642538,40.05768602633507]},"properties":{"OBJECTID":3402,"FID":3402,"Lead__ppm":55,"Long":0,"Lat":0,"Date":"12/19/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3403,"geometry":{"type":"Point","coordinates":[-75.191650000843978,40.053716994823034]},"properties":{"OBJECTID":3403,"FID":3403,"Lead__ppm":688,"Long":0,"Lat":0,"Date":"12/19/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3404,"geometry":{"type":"Point","coordinates":[-75.1918600269574,40.053361088111885]},"properties":{"OBJECTID":3404,"FID":3404,"Lead__ppm":162,"Long":0,"Lat":0,"Date":"12/19/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3405,"geometry":{"type":"Point","coordinates":[-75.189300008060712,39.936789988576884]},"properties":{"OBJECTID":3405,"FID":3405,"Lead__ppm":3,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3406,"geometry":{"type":"Point","coordinates":[-75.236065044110575,39.95288523180443]},"properties":{"OBJECTID":3406,"FID":3406,"Lead__ppm":410,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3407,"geometry":{"type":"Point","coordinates":[-75.189140018108617,39.936820019641729]},"properties":{"OBJECTID":3407,"FID":3407,"Lead__ppm":92,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3408,"geometry":{"type":"Point","coordinates":[-75.188932956435636,40.012799071190628]},"properties":{"OBJECTID":3408,"FID":3408,"Lead__ppm":435,"Long":0,"Lat":0,"Date":"4/22/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3409,"geometry":{"type":"Point","coordinates":[-75.188841058782074,40.012822532683082]},"properties":{"OBJECTID":3409,"FID":3409,"Lead__ppm":383,"Long":0,"Lat":0,"Date":"4/22/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3410,"geometry":{"type":"Point","coordinates":[-75.188812312692974,40.012800378429404]},"properties":{"OBJECTID":3410,"FID":3410,"Lead__ppm":387,"Long":0,"Lat":0,"Date":"4/22/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3411,"geometry":{"type":"Point","coordinates":[-75.188867289588359,40.01284331088965]},"properties":{"OBJECTID":3411,"FID":3411,"Lead__ppm":584,"Long":0,"Lat":0,"Date":"4/22/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3412,"geometry":{"type":"Point","coordinates":[-75.1888806744861,40.012763913337828]},"properties":{"OBJECTID":3412,"FID":3412,"Lead__ppm":43,"Long":0,"Lat":0,"Date":"4/22/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3413,"geometry":{"type":"Point","coordinates":[-75.142239965271557,40.033959985942111]},"properties":{"OBJECTID":3413,"FID":3413,"Lead__ppm":283,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3414,"geometry":{"type":"Point","coordinates":[-75.142239965271557,40.033959985942111]},"properties":{"OBJECTID":3414,"FID":3414,"Lead__ppm":862,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3415,"geometry":{"type":"Point","coordinates":[-75.142239965271557,40.033959985942111]},"properties":{"OBJECTID":3415,"FID":3415,"Lead__ppm":419,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3416,"geometry":{"type":"Point","coordinates":[-75.142239965271557,40.033959985942111]},"properties":{"OBJECTID":3416,"FID":3416,"Lead__ppm":3141,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3417,"geometry":{"type":"Point","coordinates":[-75.18472003741617,39.932589986813682]},"properties":{"OBJECTID":3417,"FID":3417,"Lead__ppm":60,"Long":0,"Lat":0,"Date":"5/4/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3418,"geometry":{"type":"Point","coordinates":[-75.185299989763593,39.932659971734395]},"properties":{"OBJECTID":3418,"FID":3418,"Lead__ppm":165,"Long":0,"Lat":0,"Date":"5/4/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3419,"geometry":{"type":"Point","coordinates":[-75.156099981958704,39.925110004801653]},"properties":{"OBJECTID":3419,"FID":3419,"Lead__ppm":308,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3420,"geometry":{"type":"Point","coordinates":[-75.176454009666287,40.036654967105861]},"properties":{"OBJECTID":3420,"FID":3420,"Lead__ppm":81,"Long":0,"Lat":0,"Date":"12/20/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3421,"geometry":{"type":"Point","coordinates":[-75.335836970130487,40.062837020265889]},"properties":{"OBJECTID":3421,"FID":3421,"Lead__ppm":68,"Long":0,"Lat":0,"Date":"12/20/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3422,"geometry":{"type":"Point","coordinates":[-75.176454009666287,40.036654967105861]},"properties":{"OBJECTID":3422,"FID":3422,"Lead__ppm":37,"Long":0,"Lat":0,"Date":"12/20/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3423,"geometry":{"type":"Point","coordinates":[-75.33532996098414,40.063523982537312]},"properties":{"OBJECTID":3423,"FID":3423,"Lead__ppm":57,"Long":0,"Lat":0,"Date":"12/20/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3424,"geometry":{"type":"Point","coordinates":[-75.335836970130487,40.062844995448124]},"properties":{"OBJECTID":3424,"FID":3424,"Lead__ppm":22,"Long":0,"Lat":0,"Date":"12/20/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3425,"geometry":{"type":"Point","coordinates":[-75.336023999372657,40.062879989986556]},"properties":{"OBJECTID":3425,"FID":3425,"Lead__ppm":78,"Long":0,"Lat":0,"Date":"12/20/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3426,"geometry":{"type":"Point","coordinates":[-75.335836970130487,40.062844995448124]},"properties":{"OBJECTID":3426,"FID":3426,"Lead__ppm":35,"Long":0,"Lat":0,"Date":"12/20/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3427,"geometry":{"type":"Point","coordinates":[-75.176454009666287,40.036654691993917]},"properties":{"OBJECTID":3427,"FID":3427,"Lead__ppm":127,"Long":0,"Lat":0,"Date":"12/20/2022","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3428,"geometry":{"type":"Point","coordinates":[-75.230032228157029,40.083167470372786]},"properties":{"OBJECTID":3428,"FID":3428,"Lead__ppm":497,"Long":0,"Lat":0,"Date":"1/16/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3429,"geometry":{"type":"Point","coordinates":[-75.223905987413929,40.087858065794364]},"properties":{"OBJECTID":3429,"FID":3429,"Lead__ppm":39,"Long":0,"Lat":0,"Date":"1/16/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3430,"geometry":{"type":"Point","coordinates":[-75.230593765041135,40.082549987777618]},"properties":{"OBJECTID":3430,"FID":3430,"Lead__ppm":38,"Long":0,"Lat":0,"Date":"1/16/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3431,"geometry":{"type":"Point","coordinates":[-75.226882555107849,40.086541875333332]},"properties":{"OBJECTID":3431,"FID":3431,"Lead__ppm":6,"Long":0,"Lat":0,"Date":"1/16/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3432,"geometry":{"type":"Point","coordinates":[-75.228077224604206,40.084054782506016]},"properties":{"OBJECTID":3432,"FID":3432,"Lead__ppm":58,"Long":0,"Lat":0,"Date":"1/16/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3433,"geometry":{"type":"Point","coordinates":[-75.226000768824946,40.079096270825467]},"properties":{"OBJECTID":3433,"FID":3433,"Lead__ppm":25,"Long":0,"Lat":0,"Date":"1/16/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3434,"geometry":{"type":"Point","coordinates":[-75.228337736036593,40.084826617814713]},"properties":{"OBJECTID":3434,"FID":3434,"Lead__ppm":28,"Long":0,"Lat":0,"Date":"1/16/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3435,"geometry":{"type":"Point","coordinates":[-75.22575705588838,40.080183996115849]},"properties":{"OBJECTID":3435,"FID":3435,"Lead__ppm":20,"Long":0,"Lat":0,"Date":"1/16/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3436,"geometry":{"type":"Point","coordinates":[-75.181970024836886,40.031800031221259]},"properties":{"OBJECTID":3436,"FID":3436,"Lead__ppm":41,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3437,"geometry":{"type":"Point","coordinates":[-75.172909976207393,40.032170013353692]},"properties":{"OBJECTID":3437,"FID":3437,"Lead__ppm":12,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3438,"geometry":{"type":"Point","coordinates":[-75.172759957554931,40.024190018650344]},"properties":{"OBJECTID":3438,"FID":3438,"Lead__ppm":221,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3439,"geometry":{"type":"Point","coordinates":[-75.181840038615277,40.031990009283753]},"properties":{"OBJECTID":3439,"FID":3439,"Lead__ppm":53,"Long":0,"Lat":0,"Date":"2/1/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3440,"geometry":{"type":"Point","coordinates":[-75.172930008638204,40.03210996619476]},"properties":{"OBJECTID":3440,"FID":3440,"Lead__ppm":10,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3441,"geometry":{"type":"Point","coordinates":[-75.172909976207393,40.032619987059057]},"properties":{"OBJECTID":3441,"FID":3441,"Lead__ppm":33,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3442,"geometry":{"type":"Point","coordinates":[-75.172960012368705,40.033180008273142]},"properties":{"OBJECTID":3442,"FID":3442,"Lead__ppm":473,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3443,"geometry":{"type":"Point","coordinates":[-75.170629962184748,40.033159992855808]},"properties":{"OBJECTID":3443,"FID":3443,"Lead__ppm":377,"Long":0,"Lat":0,"Date":null,"Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3444,"geometry":{"type":"Point","coordinates":[-75.142090036450625,40.013339990705667]},"properties":{"OBJECTID":3444,"FID":3444,"Lead__ppm":62,"Long":0,"Lat":0,"Date":"2/9/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3445,"geometry":{"type":"Point","coordinates":[-75.154159980271132,40.016770003156999]},"properties":{"OBJECTID":3445,"FID":3445,"Lead__ppm":25,"Long":0,"Lat":0,"Date":"2/9/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3446,"geometry":{"type":"Point","coordinates":[-75.188320035917286,40.057760008582001]},"properties":{"OBJECTID":3446,"FID":3446,"Lead__ppm":49,"Long":0,"Lat":0,"Date":"2/9/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3447,"geometry":{"type":"Point","coordinates":[-75.166369971444396,40.024369974513661]},"properties":{"OBJECTID":3447,"FID":3447,"Lead__ppm":122,"Long":0,"Lat":0,"Date":"2/9/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3448,"geometry":{"type":"Point","coordinates":[-75.169790037394094,40.065529966224979]},"properties":{"OBJECTID":3448,"FID":3448,"Lead__ppm":25,"Long":0,"Lat":0,"Date":"2/9/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3449,"geometry":{"type":"Point","coordinates":[-75.182500030854513,40.056890024531782]},"properties":{"OBJECTID":3449,"FID":3449,"Lead__ppm":35,"Long":0,"Lat":0,"Date":"2/9/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3450,"geometry":{"type":"Point","coordinates":[-75.112300015167136,40.031269988253442]},"properties":{"OBJECTID":3450,"FID":3450,"Lead__ppm":314,"Long":0,"Lat":0,"Date":"1/8/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3451,"geometry":{"type":"Point","coordinates":[-75.191306035921698,40.05336101935076]},"properties":{"OBJECTID":3451,"FID":3451,"Lead__ppm":243,"Long":0,"Lat":0,"Date":"1/11/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3452,"geometry":{"type":"Point","coordinates":[-75.191556037065268,40.052833000540659]},"properties":{"OBJECTID":3452,"FID":3452,"Lead__ppm":148,"Long":0,"Lat":0,"Date":"1/11/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3453,"geometry":{"type":"Point","coordinates":[-75.549889961481753,40.217199976032319]},"properties":{"OBJECTID":3453,"FID":3453,"Lead__ppm":8,"Long":0,"Lat":0,"Date":"2/20/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3454,"geometry":{"type":"Point","coordinates":[-75.550250006247623,40.216870030607311]},"properties":{"OBJECTID":3454,"FID":3454,"Lead__ppm":17,"Long":0,"Lat":0,"Date":"2/20/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3455,"geometry":{"type":"Point","coordinates":[-75.550060012565055,40.216810009177451]},"properties":{"OBJECTID":3455,"FID":3455,"Lead__ppm":18,"Long":0,"Lat":0,"Date":"2/20/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3456,"geometry":{"type":"Point","coordinates":[-75.549879990182106,40.217320018148015]},"properties":{"OBJECTID":3456,"FID":3456,"Lead__ppm":18,"Long":0,"Lat":0,"Date":"2/20/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3457,"geometry":{"type":"Point","coordinates":[-75.550940002217359,40.217149969853949]},"properties":{"OBJECTID":3457,"FID":3457,"Lead__ppm":24,"Long":0,"Lat":0,"Date":"2/20/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3458,"geometry":{"type":"Point","coordinates":[-75.472449973762011,40.241729969191276]},"properties":{"OBJECTID":3458,"FID":3458,"Lead__ppm":50,"Long":0,"Lat":0,"Date":"2/20/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3459,"geometry":{"type":"Point","coordinates":[-75.472530013653824,40.241580004868517]},"properties":{"OBJECTID":3459,"FID":3459,"Lead__ppm":45,"Long":0,"Lat":0,"Date":"2/20/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3460,"geometry":{"type":"Point","coordinates":[-75.472859964857676,40.241650015688812]},"properties":{"OBJECTID":3460,"FID":3460,"Lead__ppm":11,"Long":0,"Lat":0,"Date":"2/20/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3461,"geometry":{"type":"Point","coordinates":[-75.472729978636067,40.241489971258609]},"properties":{"OBJECTID":3461,"FID":3461,"Lead__ppm":37,"Long":0,"Lat":0,"Date":"2/20/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3462,"geometry":{"type":"Point","coordinates":[-75.472359962570536,40.241580004868517]},"properties":{"OBJECTID":3462,"FID":3462,"Lead__ppm":62,"Long":0,"Lat":0,"Date":"2/20/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3463,"geometry":{"type":"Point","coordinates":[-75.32637851867247,40.246174508551952]},"properties":{"OBJECTID":3463,"FID":3463,"Lead__ppm":24,"Long":0,"Lat":0,"Date":"2/20/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3464,"geometry":{"type":"Point","coordinates":[-75.326385795026269,40.246052666279198]},"properties":{"OBJECTID":3464,"FID":3464,"Lead__ppm":18,"Long":0,"Lat":0,"Date":"2/20/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3465,"geometry":{"type":"Point","coordinates":[-75.326754643281944,40.245990202316555]},"properties":{"OBJECTID":3465,"FID":3465,"Lead__ppm":22,"Long":0,"Lat":0,"Date":"2/20/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3466,"geometry":{"type":"Point","coordinates":[-75.326762278961851,40.246066722376987]},"properties":{"OBJECTID":3466,"FID":3466,"Lead__ppm":21,"Long":0,"Lat":0,"Date":"2/20/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3467,"geometry":{"type":"Point","coordinates":[-75.326717363197645,40.246001721470975]},"properties":{"OBJECTID":3467,"FID":3467,"Lead__ppm":31,"Long":0,"Lat":0,"Date":"2/20/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3468,"geometry":{"type":"Point","coordinates":[-75.334729976205878,40.120140024646837]},"properties":{"OBJECTID":3468,"FID":3468,"Lead__ppm":69,"Long":0,"Lat":0,"Date":"2/20/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3469,"geometry":{"type":"Point","coordinates":[-75.334609961283917,40.120199994233595]},"properties":{"OBJECTID":3469,"FID":3469,"Lead__ppm":50,"Long":0,"Lat":0,"Date":"2/20/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3470,"geometry":{"type":"Point","coordinates":[-75.334609961283917,40.120199994233595]},"properties":{"OBJECTID":3470,"FID":3470,"Lead__ppm":70,"Long":0,"Lat":0,"Date":"2/20/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3471,"geometry":{"type":"Point","coordinates":[-75.334770041067543,40.120250003195665]},"properties":{"OBJECTID":3471,"FID":3471,"Lead__ppm":137,"Long":0,"Lat":0,"Date":"2/20/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3472,"geometry":{"type":"Point","coordinates":[-75.334889966157974,40.120169975099991]},"properties":{"OBJECTID":3472,"FID":3472,"Lead__ppm":564,"Long":0,"Lat":0,"Date":"2/20/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3473,"geometry":{"type":"Point","coordinates":[-75.409779996112221,40.123079983392635]},"properties":{"OBJECTID":3473,"FID":3473,"Lead__ppm":43,"Long":0,"Lat":0,"Date":"2/20/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3474,"geometry":{"type":"Point","coordinates":[-75.409719988651247,40.123020016346103]},"properties":{"OBJECTID":3474,"FID":3474,"Lead__ppm":51,"Long":0,"Lat":0,"Date":"2/20/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3475,"geometry":{"type":"Point","coordinates":[-75.409569969998785,40.123210014847935]},"properties":{"OBJECTID":3475,"FID":3475,"Lead__ppm":42,"Long":0,"Lat":0,"Date":"2/20/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3476,"geometry":{"type":"Point","coordinates":[-75.409390037447395,40.123350006173702]},"properties":{"OBJECTID":3476,"FID":3476,"Lead__ppm":40,"Long":0,"Lat":0,"Date":"2/20/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3477,"geometry":{"type":"Point","coordinates":[-75.409420041177881,40.123420001728469]},"properties":{"OBJECTID":3477,"FID":3477,"Lead__ppm":43,"Long":0,"Lat":0,"Date":"2/20/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3478,"geometry":{"type":"Point","coordinates":[-75.281432660904471,39.989369813549153]},"properties":{"OBJECTID":3478,"FID":3478,"Lead__ppm":19,"Long":0,"Lat":0,"Date":"2/20/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3479,"geometry":{"type":"Point","coordinates":[-75.529279464760563,40.046805567478216]},"properties":{"OBJECTID":3479,"FID":3479,"Lead__ppm":25,"Long":0,"Lat":0,"Date":"2/20/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3480,"geometry":{"type":"Point","coordinates":[-75.1497100856797,39.996818270397085]},"properties":{"OBJECTID":3480,"FID":3480,"Lead__ppm":34,"Long":0,"Lat":0,"Date":"4/11/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3481,"geometry":{"type":"Point","coordinates":[-75.145046661545251,40.017005704833075]},"properties":{"OBJECTID":3481,"FID":3481,"Lead__ppm":222,"Long":0,"Lat":0,"Date":"4/12/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3482,"geometry":{"type":"Point","coordinates":[-75.14335163043566,40.015857391061829]},"properties":{"OBJECTID":3482,"FID":3482,"Lead__ppm":87,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3483,"geometry":{"type":"Point","coordinates":[-75.141796916173433,40.057300024721521]},"properties":{"OBJECTID":3483,"FID":3483,"Lead__ppm":174,"Long":0,"Lat":0,"Date":"4/14/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3484,"geometry":{"type":"Point","coordinates":[-75.143170170748249,40.015834481004489]},"properties":{"OBJECTID":3484,"FID":3484,"Lead__ppm":55,"Long":0,"Lat":0,"Date":"4/15/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3485,"geometry":{"type":"Point","coordinates":[-75.143344533744909,40.01585202474277]},"properties":{"OBJECTID":3485,"FID":3485,"Lead__ppm":53,"Long":0,"Lat":0,"Date":"4/16/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3486,"geometry":{"type":"Point","coordinates":[-75.1497100856797,39.996818270397085]},"properties":{"OBJECTID":3486,"FID":3486,"Lead__ppm":21,"Long":0,"Lat":0,"Date":"4/17/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3487,"geometry":{"type":"Point","coordinates":[-75.149671458122498,39.996788816222704]},"properties":{"OBJECTID":3487,"FID":3487,"Lead__ppm":31,"Long":0,"Lat":0,"Date":"4/18/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3488,"geometry":{"type":"Point","coordinates":[-75.142126777545741,40.014880920444284]},"properties":{"OBJECTID":3488,"FID":3488,"Lead__ppm":82,"Long":0,"Lat":0,"Date":"4/19/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3489,"geometry":{"type":"Point","coordinates":[-75.144230991267278,40.014608196921877]},"properties":{"OBJECTID":3489,"FID":3489,"Lead__ppm":78,"Long":0,"Lat":0,"Date":"4/20/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3490,"geometry":{"type":"Point","coordinates":[-75.144518003000556,40.015344905688472]},"properties":{"OBJECTID":3490,"FID":3490,"Lead__ppm":54,"Long":0,"Lat":0,"Date":"4/21/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3491,"geometry":{"type":"Point","coordinates":[-75.145592208417298,40.018644930368161]},"properties":{"OBJECTID":3491,"FID":3491,"Lead__ppm":99,"Long":0,"Lat":0,"Date":"4/22/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3492,"geometry":{"type":"Point","coordinates":[-75.143335460760525,40.015877893148705]},"properties":{"OBJECTID":3492,"FID":3492,"Lead__ppm":104,"Long":0,"Lat":0,"Date":"4/23/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3493,"geometry":{"type":"Point","coordinates":[-75.143560039581573,40.017149973670939]},"properties":{"OBJECTID":3493,"FID":3493,"Lead__ppm":54,"Long":0,"Lat":0,"Date":"4/24/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3494,"geometry":{"type":"Point","coordinates":[-75.146273760223352,40.017623712688227]},"properties":{"OBJECTID":3494,"FID":3494,"Lead__ppm":182,"Long":0,"Lat":0,"Date":"4/25/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3495,"geometry":{"type":"Point","coordinates":[-75.145301244096771,40.016498594351781]},"properties":{"OBJECTID":3495,"FID":3495,"Lead__ppm":221,"Long":0,"Lat":0,"Date":"4/26/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3496,"geometry":{"type":"Point","coordinates":[-75.143267098967428,40.018712212968907]},"properties":{"OBJECTID":3496,"FID":3496,"Lead__ppm":74,"Long":0,"Lat":0,"Date":"4/27/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3497,"geometry":{"type":"Point","coordinates":[-75.141470019241538,40.018850011380714]},"properties":{"OBJECTID":3497,"FID":3497,"Lead__ppm":85,"Long":0,"Lat":0,"Date":"4/28/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3498,"geometry":{"type":"Point","coordinates":[-75.144048633264603,40.014728115597883]},"properties":{"OBJECTID":3498,"FID":3498,"Lead__ppm":40,"Long":0,"Lat":0,"Date":"4/29/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3499,"geometry":{"type":"Point","coordinates":[-75.143241227487223,40.015512776203778]},"properties":{"OBJECTID":3499,"FID":3499,"Lead__ppm":100,"Long":0,"Lat":0,"Date":"4/30/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3500,"geometry":{"type":"Point","coordinates":[-75.143241227487223,40.015512776203778]},"properties":{"OBJECTID":3500,"FID":3500,"Lead__ppm":90,"Long":0,"Lat":0,"Date":"5/1/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3501,"geometry":{"type":"Point","coordinates":[-75.1497100856797,39.996818270397085]},"properties":{"OBJECTID":3501,"FID":3501,"Lead__ppm":21,"Long":0,"Lat":0,"Date":"5/2/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3502,"geometry":{"type":"Point","coordinates":[-75.142179957810583,40.017070030747398]},"properties":{"OBJECTID":3502,"FID":3502,"Lead__ppm":68,"Long":0,"Lat":0,"Date":"5/3/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3503,"geometry":{"type":"Point","coordinates":[-75.145063460041072,40.015555706957734]},"properties":{"OBJECTID":3503,"FID":3503,"Lead__ppm":116,"Long":0,"Lat":0,"Date":"5/4/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3504,"geometry":{"type":"Point","coordinates":[-75.143338065874872,40.015884979438979]},"properties":{"OBJECTID":3504,"FID":3504,"Lead__ppm":77,"Long":0,"Lat":0,"Date":"5/5/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3505,"geometry":{"type":"Point","coordinates":[-75.149671458122498,39.996788472131826]},"properties":{"OBJECTID":3505,"FID":3505,"Lead__ppm":25,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3506,"geometry":{"type":"Point","coordinates":[-75.143312284226212,40.015869224481825]},"properties":{"OBJECTID":3506,"FID":3506,"Lead__ppm":101,"Long":0,"Lat":0,"Date":"5/7/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3507,"geometry":{"type":"Point","coordinates":[-75.143324141987961,40.015538231942543]},"properties":{"OBJECTID":3507,"FID":3507,"Lead__ppm":34,"Long":0,"Lat":0,"Date":"5/8/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3508,"geometry":{"type":"Point","coordinates":[-75.141796916173433,40.015729975269977]},"properties":{"OBJECTID":3508,"FID":3508,"Lead__ppm":70,"Long":0,"Lat":0,"Date":"5/9/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3509,"geometry":{"type":"Point","coordinates":[-75.141796916173433,40.015729975269977]},"properties":{"OBJECTID":3509,"FID":3509,"Lead__ppm":43,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3510,"geometry":{"type":"Point","coordinates":[-75.146438780741065,39.999315084854629]},"properties":{"OBJECTID":3510,"FID":3510,"Lead__ppm":151,"Long":0,"Lat":0,"Date":"5/11/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3511,"geometry":{"type":"Point","coordinates":[-75.156120014389529,40.041590021846538]},"properties":{"OBJECTID":3511,"FID":3511,"Lead__ppm":123.33333330000001,"Long":0,"Lat":0,"Date":"3/9/2023","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3512,"geometry":{"type":"Point","coordinates":[-75.156120014389529,40.041919993953314]},"properties":{"OBJECTID":3512,"FID":3512,"Lead__ppm":177,"Long":0,"Lat":0,"Date":"3/9/2023","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3513,"geometry":{"type":"Point","coordinates":[-75.156300036772478,40.041420014752198]},"properties":{"OBJECTID":3513,"FID":3513,"Lead__ppm":190.33333329999999,"Long":0,"Lat":0,"Date":"3/9/2023","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3514,"geometry":{"type":"Point","coordinates":[-75.191050016065716,40.007890006527717]},"properties":{"OBJECTID":3514,"FID":3514,"Lead__ppm":229.66666670000001,"Long":0,"Lat":0,"Date":"3/9/2023","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3515,"geometry":{"type":"Point","coordinates":[-75.141609976762808,40.016469974247521]},"properties":{"OBJECTID":3515,"FID":3515,"Lead__ppm":237.66666670000001,"Long":0,"Lat":0,"Date":"3/9/2023","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3516,"geometry":{"type":"Point","coordinates":[-75.141880010337204,40.016749982924615]},"properties":{"OBJECTID":3516,"FID":3516,"Lead__ppm":303,"Long":0,"Lat":0,"Date":"3/9/2023","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3517,"geometry":{"type":"Point","coordinates":[-75.025654900899468,40.114672815548424]},"properties":{"OBJECTID":3517,"FID":3517,"Lead__ppm":40,"Long":0,"Lat":0,"Date":"6/6/2023","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3518,"geometry":{"type":"Point","coordinates":[-75.025262606614902,40.114840510182411]},"properties":{"OBJECTID":3518,"FID":3518,"Lead__ppm":56.666666669999998,"Long":0,"Lat":0,"Date":"6/6/2023","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3519,"geometry":{"type":"Point","coordinates":[-75.024636570693403,40.114519409976161]},"properties":{"OBJECTID":3519,"FID":3519,"Lead__ppm":84.333333330000002,"Long":0,"Lat":0,"Date":"6/6/2023","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3520,"geometry":{"type":"Point","coordinates":[-74.990190221966202,40.095342981268558]},"properties":{"OBJECTID":3520,"FID":3520,"Lead__ppm":39,"Long":0,"Lat":0,"Date":"6/6/2023","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3521,"geometry":{"type":"Point","coordinates":[-74.989974266971899,40.096513320430567]},"properties":{"OBJECTID":3521,"FID":3521,"Lead__ppm":110.33333330000001,"Long":0,"Lat":0,"Date":"6/6/2023","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3522,"geometry":{"type":"Point","coordinates":[-74.980617235309452,40.08743127401501]},"properties":{"OBJECTID":3522,"FID":3522,"Lead__ppm":135,"Long":0,"Lat":0,"Date":"6/6/2023","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3523,"geometry":{"type":"Point","coordinates":[-75.023887285914924,40.077786715878453]},"properties":{"OBJECTID":3523,"FID":3523,"Lead__ppm":132.69999999999999,"Long":0,"Lat":0,"Date":"6/6/2023","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3524,"geometry":{"type":"Point","coordinates":[-75.022917015576553,40.077536789555118]},"properties":{"OBJECTID":3524,"FID":3524,"Lead__ppm":674.29999999999995,"Long":0,"Lat":0,"Date":"6/7/2023","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3525,"geometry":{"type":"Point","coordinates":[-75.050812669588893,40.061808007676042]},"properties":{"OBJECTID":3525,"FID":3525,"Lead__ppm":36,"Long":0,"Lat":0,"Date":"6/6/2023","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3526,"geometry":{"type":"Point","coordinates":[-75.0555360113528,40.050168777608313]},"properties":{"OBJECTID":3526,"FID":3526,"Lead__ppm":93.299999999999997,"Long":0,"Lat":0,"Date":"6/6/2023","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3527,"geometry":{"type":"Point","coordinates":[-75.054726000461116,40.049741680850332]},"properties":{"OBJECTID":3527,"FID":3527,"Lead__ppm":98,"Long":0,"Lat":0,"Date":"6/6/2023","Organization":"La Salle University","SymbolID":null}},{"type":"Feature","id":3528,"geometry":{"type":"Point","coordinates":[-75.180199984401071,39.909049021102106]},"properties":{"OBJECTID":3528,"FID":3528,"Lead__ppm":39,"Long":0,"Lat":0,"Date":"4/25/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3529,"geometry":{"type":"Point","coordinates":[-75.183337889520018,39.903148922178623]},"properties":{"OBJECTID":3529,"FID":3529,"Lead__ppm":105,"Long":0,"Lat":0,"Date":"4/25/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3530,"geometry":{"type":"Point","coordinates":[-75.147130034352188,39.944489976657039]},"properties":{"OBJECTID":3530,"FID":3530,"Lead__ppm":56,"Long":0,"Lat":0,"Date":"4/25/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3531,"geometry":{"type":"Point","coordinates":[-75.182773298363941,39.904383684352261]},"properties":{"OBJECTID":3531,"FID":3531,"Lead__ppm":27,"Long":0,"Lat":0,"Date":"4/25/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3532,"geometry":{"type":"Point","coordinates":[-74.965146000328716,40.09792421514836]},"properties":{"OBJECTID":3532,"FID":3532,"Lead__ppm":22,"Long":0,"Lat":0,"Date":"4/25/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3533,"geometry":{"type":"Point","coordinates":[-74.970843565018242,40.096504799450202]},"properties":{"OBJECTID":3533,"FID":3533,"Lead__ppm":209,"Long":0,"Lat":0,"Date":"4/25/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3534,"geometry":{"type":"Point","coordinates":[-75.180240588251905,39.90076071956458]},"properties":{"OBJECTID":3534,"FID":3534,"Lead__ppm":20,"Long":0,"Lat":0,"Date":"4/25/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3535,"geometry":{"type":"Point","coordinates":[-75.175800036139435,39.905110004647895]},"properties":{"OBJECTID":3535,"FID":3536,"Lead__ppm":124,"Long":0,"Lat":0,"Date":"4/25/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3536,"geometry":{"type":"Point","coordinates":[-75.20731221765412,40.073123129271139]},"properties":{"OBJECTID":3536,"FID":3537,"Lead__ppm":216,"Long":0,"Lat":0,"Date":"4/25/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3537,"geometry":{"type":"Point","coordinates":[-75.176206613637021,39.946396088723411]},"properties":{"OBJECTID":3537,"FID":3538,"Lead__ppm":13,"Long":0,"Lat":0,"Date":"4/25/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3538,"geometry":{"type":"Point","coordinates":[-75.179440009670699,39.905489975973914]},"properties":{"OBJECTID":3538,"FID":3539,"Lead__ppm":3,"Long":0,"Lat":0,"Date":"4/25/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3539,"geometry":{"type":"Point","coordinates":[-75.176689997091415,39.905590033361051]},"properties":{"OBJECTID":3539,"FID":3540,"Lead__ppm":174,"Long":0,"Lat":0,"Date":"4/25/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3540,"geometry":{"type":"Point","coordinates":[-75.180199984401071,39.909049021102106]},"properties":{"OBJECTID":3540,"FID":3541,"Lead__ppm":49,"Long":0,"Lat":0,"Date":"4/25/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3541,"geometry":{"type":"Point","coordinates":[-75.182700894152049,39.901106188852111]},"properties":{"OBJECTID":3541,"FID":3542,"Lead__ppm":72,"Long":0,"Lat":0,"Date":"4/25/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3542,"geometry":{"type":"Point","coordinates":[-75.168794524396233,40.097090408217127]},"properties":{"OBJECTID":3542,"FID":3543,"Lead__ppm":38,"Long":0,"Lat":0,"Date":"4/25/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3543,"geometry":{"type":"Point","coordinates":[-75.18356058187895,39.902169669250043]},"properties":{"OBJECTID":3543,"FID":3544,"Lead__ppm":92,"Long":0,"Lat":0,"Date":"4/25/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3544,"geometry":{"type":"Point","coordinates":[-75.187542274544285,40.00888233373874]},"properties":{"OBJECTID":3544,"FID":3545,"Lead__ppm":38,"Long":0,"Lat":0,"Date":"4/25/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3545,"geometry":{"type":"Point","coordinates":[-75.180199984401071,39.904940002286004]},"properties":{"OBJECTID":3545,"FID":3546,"Lead__ppm":37,"Long":0,"Lat":0,"Date":"4/25/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3546,"geometry":{"type":"Point","coordinates":[-75.180967235485227,39.901059120228624]},"properties":{"OBJECTID":3546,"FID":3547,"Lead__ppm":109,"Long":0,"Lat":0,"Date":"4/25/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3547,"geometry":{"type":"Point","coordinates":[-75.177199970678217,39.90354999147052]},"properties":{"OBJECTID":3547,"FID":3548,"Lead__ppm":25,"Long":0,"Lat":0,"Date":"4/25/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3548,"geometry":{"type":"Point","coordinates":[-75.177199970678217,39.90354999147052]},"properties":{"OBJECTID":3548,"FID":3549,"Lead__ppm":39,"Long":0,"Lat":0,"Date":"4/25/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3549,"geometry":{"type":"Point","coordinates":[-75.182492305343075,40.008768184504703]},"properties":{"OBJECTID":3549,"FID":3550,"Lead__ppm":26,"Long":0,"Lat":0,"Date":"4/25/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3550,"geometry":{"type":"Point","coordinates":[-75.176689997091415,39.905590033361051]},"properties":{"OBJECTID":3550,"FID":3551,"Lead__ppm":160,"Long":0,"Lat":0,"Date":"4/25/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3551,"geometry":{"type":"Point","coordinates":[-75.179440009670699,39.905489975973914]},"properties":{"OBJECTID":3551,"FID":3552,"Lead__ppm":2,"Long":0,"Lat":0,"Date":"4/25/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3552,"geometry":{"type":"Point","coordinates":[-75.179440009670699,39.905489975973914]},"properties":{"OBJECTID":3552,"FID":3553,"Lead__ppm":3,"Long":0,"Lat":0,"Date":"4/25/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3553,"geometry":{"type":"Point","coordinates":[-75.176689997091415,39.905590033361051]},"properties":{"OBJECTID":3553,"FID":3554,"Lead__ppm":129,"Long":0,"Lat":0,"Date":"4/25/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3554,"geometry":{"type":"Point","coordinates":[-75.17387000575151,39.943600021696625]},"properties":{"OBJECTID":3554,"FID":3555,"Lead__ppm":15,"Long":0,"Lat":0,"Date":"6/19/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3555,"geometry":{"type":"Point","coordinates":[-75.17387000575151,39.943400017843373]},"properties":{"OBJECTID":3555,"FID":3556,"Lead__ppm":64,"Long":0,"Lat":0,"Date":"6/19/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3556,"geometry":{"type":"Point","coordinates":[-75.17387000575151,39.943500019843079]},"properties":{"OBJECTID":3556,"FID":3557,"Lead__ppm":106,"Long":0,"Lat":0,"Date":"6/19/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3557,"geometry":{"type":"Point","coordinates":[-75.173499989685979,39.943600021696625]},"properties":{"OBJECTID":3557,"FID":3558,"Lead__ppm":165,"Long":0,"Lat":0,"Date":"6/19/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3558,"geometry":{"type":"Point","coordinates":[-75.173650008338427,39.943600021696625]},"properties":{"OBJECTID":3558,"FID":3559,"Lead__ppm":53,"Long":0,"Lat":0,"Date":"6/19/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3559,"geometry":{"type":"Point","coordinates":[-75.173729958398724,39.943200013405523]},"properties":{"OBJECTID":3559,"FID":3560,"Lead__ppm":7,"Long":0,"Lat":0,"Date":"6/19/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3560,"geometry":{"type":"Point","coordinates":[-75.173800026990889,39.943500019843079]},"properties":{"OBJECTID":3560,"FID":3561,"Lead__ppm":332,"Long":0,"Lat":0,"Date":"6/19/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3561,"geometry":{"type":"Point","coordinates":[-75.173849973320671,39.943600021696625]},"properties":{"OBJECTID":3561,"FID":3562,"Lead__ppm":31,"Long":0,"Lat":0,"Date":"6/19/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3562,"geometry":{"type":"Point","coordinates":[-75.173450043356183,39.943400017843373]},"properties":{"OBJECTID":3562,"FID":3563,"Lead__ppm":163,"Long":0,"Lat":0,"Date":"6/19/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3563,"geometry":{"type":"Point","coordinates":[-75.173800026990889,39.943600021696625]},"properties":{"OBJECTID":3563,"FID":3564,"Lead__ppm":50,"Long":0,"Lat":0,"Date":"6/19/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3564,"geometry":{"type":"Point","coordinates":[-75.173909980781673,39.943629980901108]},"properties":{"OBJECTID":3564,"FID":3565,"Lead__ppm":147,"Long":0,"Lat":0,"Date":"6/19/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3565,"geometry":{"type":"Point","coordinates":[-75.173379974764046,39.943600021696625]},"properties":{"OBJECTID":3565,"FID":3566,"Lead__ppm":52,"Long":0,"Lat":0,"Date":"6/19/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3566,"geometry":{"type":"Point","coordinates":[-75.173550025847319,39.943400017843373]},"properties":{"OBJECTID":3566,"FID":3567,"Lead__ppm":127,"Long":0,"Lat":0,"Date":"6/19/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3567,"geometry":{"type":"Point","coordinates":[-75.173590000877454,39.943600021696625]},"properties":{"OBJECTID":3567,"FID":3568,"Lead__ppm":78,"Long":0,"Lat":0,"Date":"6/19/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3568,"geometry":{"type":"Point","coordinates":[-75.173900009481997,39.943650022568555]},"properties":{"OBJECTID":3568,"FID":3569,"Lead__ppm":238,"Long":0,"Lat":0,"Date":"6/19/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3569,"geometry":{"type":"Point","coordinates":[-75.173939984512145,39.943600021696625]},"properties":{"OBJECTID":3569,"FID":3570,"Lead__ppm":62,"Long":0,"Lat":0,"Date":"6/19/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3570,"geometry":{"type":"Point","coordinates":[-75.177909999078778,39.93171999112635]},"properties":{"OBJECTID":3570,"FID":3571,"Lead__ppm":401,"Long":0,"Lat":0,"Date":"6/19/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3571,"geometry":{"type":"Point","coordinates":[-75.177419608765192,39.938416881870097]},"properties":{"OBJECTID":3571,"FID":3572,"Lead__ppm":309,"Long":0,"Lat":0,"Date":"6/19/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3572,"geometry":{"type":"Point","coordinates":[-75.156370015533113,39.954169985573301]},"properties":{"OBJECTID":3572,"FID":3572,"Lead__ppm":662,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3573,"geometry":{"type":"Point","coordinates":[-75.232338203491366,39.97703810277028]},"properties":{"OBJECTID":3573,"FID":3573,"Lead__ppm":88,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3574,"geometry":{"type":"Point","coordinates":[-75.232300025091789,39.977109969686573]},"properties":{"OBJECTID":3574,"FID":3574,"Lead__ppm":105,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3575,"geometry":{"type":"Point","coordinates":[-75.232517237727478,39.97691708532097]},"properties":{"OBJECTID":3575,"FID":3575,"Lead__ppm":82,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3576,"geometry":{"type":"Point","coordinates":[-75.232286640194047,39.977053797850402]},"properties":{"OBJECTID":3576,"FID":3576,"Lead__ppm":67,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3577,"geometry":{"type":"Point","coordinates":[-75.232520561494042,39.976998107834952]},"properties":{"OBJECTID":3577,"FID":3577,"Lead__ppm":127,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3578,"geometry":{"type":"Point","coordinates":[-75.23251346480329,39.977090006661818]},"properties":{"OBJECTID":3578,"FID":3578,"Lead__ppm":161,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3579,"geometry":{"type":"Point","coordinates":[-75.232497025633592,39.977008984256848]},"properties":{"OBJECTID":3579,"FID":3579,"Lead__ppm":152,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3580,"geometry":{"type":"Point","coordinates":[-75.232381412456533,39.977044573549399]},"properties":{"OBJECTID":3580,"FID":3580,"Lead__ppm":89,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3581,"geometry":{"type":"Point","coordinates":[-75.232568890856328,39.977091108070262]},"properties":{"OBJECTID":3581,"FID":3581,"Lead__ppm":188,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3582,"geometry":{"type":"Point","coordinates":[-75.232606799761314,39.97704326562598]},"properties":{"OBJECTID":3582,"FID":3582,"Lead__ppm":113,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3583,"geometry":{"type":"Point","coordinates":[-75.232550026235359,39.977069974793253]},"properties":{"OBJECTID":3583,"FID":3583,"Lead__ppm":87,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3584,"geometry":{"type":"Point","coordinates":[-75.232635276355822,39.976874474461589]},"properties":{"OBJECTID":3584,"FID":3584,"Lead__ppm":94,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3585,"geometry":{"type":"Point","coordinates":[-75.232490018774385,39.976949989972894]},"properties":{"OBJECTID":3585,"FID":3585,"Lead__ppm":205,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3586,"geometry":{"type":"Point","coordinates":[-75.232390215946296,39.977110589228595]},"properties":{"OBJECTID":3586,"FID":3586,"Lead__ppm":127,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3587,"geometry":{"type":"Point","coordinates":[-75.232335508545503,39.977121878660583]},"properties":{"OBJECTID":3587,"FID":3587,"Lead__ppm":198,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3588,"geometry":{"type":"Point","coordinates":[-75.232450043744223,39.977019998353242]},"properties":{"OBJECTID":3588,"FID":3588,"Lead__ppm":58,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3589,"geometry":{"type":"Point","coordinates":[-75.232370003852409,39.977090006661818]},"properties":{"OBJECTID":3589,"FID":3589,"Lead__ppm":194,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3590,"geometry":{"type":"Point","coordinates":[-75.232514632613174,39.976920733745509]},"properties":{"OBJECTID":3590,"FID":3590,"Lead__ppm":140,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3591,"geometry":{"type":"Point","coordinates":[-75.232473040615503,39.976917016482787]},"properties":{"OBJECTID":3591,"FID":3591,"Lead__ppm":109,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3592,"geometry":{"type":"Point","coordinates":[-75.232293018232582,39.976980278759804]},"properties":{"OBJECTID":3592,"FID":3592,"Lead__ppm":48,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3593,"geometry":{"type":"Point","coordinates":[-75.232454175994533,39.976947718313347]},"properties":{"OBJECTID":3593,"FID":3593,"Lead__ppm":51,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3594,"geometry":{"type":"Point","coordinates":[-75.232499990074018,39.97694400105204]},"properties":{"OBJECTID":3594,"FID":3594,"Lead__ppm":106,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3595,"geometry":{"type":"Point","coordinates":[-75.232499990074018,39.97709998817492]},"properties":{"OBJECTID":3595,"FID":3595,"Lead__ppm":95,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3596,"geometry":{"type":"Point","coordinates":[-75.232629976295655,39.976959971506403]},"properties":{"OBJECTID":3596,"FID":3596,"Lead__ppm":159,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3597,"geometry":{"type":"Point","coordinates":[-75.232499990074018,39.97709998817492]},"properties":{"OBJECTID":3597,"FID":3597,"Lead__ppm":122,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3598,"geometry":{"type":"Point","coordinates":[-75.228623040970831,39.968720029244473]},"properties":{"OBJECTID":3598,"FID":3598,"Lead__ppm":88,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3599,"geometry":{"type":"Point","coordinates":[-75.228730030321159,39.9688000287805]},"properties":{"OBJECTID":3599,"FID":3599,"Lead__ppm":50,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3600,"geometry":{"type":"Point","coordinates":[-75.228618998552051,39.968890974783015]},"properties":{"OBJECTID":3600,"FID":3600,"Lead__ppm":87,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3601,"geometry":{"type":"Point","coordinates":[-75.228516410946611,39.968823092312654]},"properties":{"OBJECTID":3601,"FID":3601,"Lead__ppm":202,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3602,"geometry":{"type":"Point","coordinates":[-75.228535455230627,39.968614418698181]},"properties":{"OBJECTID":3602,"FID":3602,"Lead__ppm":99,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3603,"geometry":{"type":"Point","coordinates":[-75.228749972920468,39.968640029614875]},"properties":{"OBJECTID":3603,"FID":3603,"Lead__ppm":161,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3604,"geometry":{"type":"Point","coordinates":[-75.228783929238205,39.968753006689376]},"properties":{"OBJECTID":3604,"FID":3604,"Lead__ppm":61,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3605,"geometry":{"type":"Point","coordinates":[-75.22884995541159,39.968760029024189]},"properties":{"OBJECTID":3605,"FID":3605,"Lead__ppm":150,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3606,"geometry":{"type":"Point","coordinates":[-75.228611003546021,39.968888909394408]},"properties":{"OBJECTID":3606,"FID":3606,"Lead__ppm":72,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3607,"geometry":{"type":"Point","coordinates":[-75.228790037782133,39.96873999471407]},"properties":{"OBJECTID":3607,"FID":3607,"Lead__ppm":55,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3608,"geometry":{"type":"Point","coordinates":[-75.228689965459509,39.96873999471407]},"properties":{"OBJECTID":3608,"FID":3608,"Lead__ppm":81,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3609,"geometry":{"type":"Point","coordinates":[-75.228913735796766,39.968735726234833]},"properties":{"OBJECTID":3609,"FID":3609,"Lead__ppm":35,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3610,"geometry":{"type":"Point","coordinates":[-75.228611093377538,39.968611114063037]},"properties":{"OBJECTID":3610,"FID":3610,"Lead__ppm":54,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3611,"geometry":{"type":"Point","coordinates":[-75.228929995303403,39.968560029891655]},"properties":{"OBJECTID":3611,"FID":3611,"Lead__ppm":70,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3612,"geometry":{"type":"Point","coordinates":[-75.228527370393067,39.968668876307937]},"properties":{"OBJECTID":3612,"FID":3612,"Lead__ppm":169,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3613,"geometry":{"type":"Point","coordinates":[-75.228573992956314,39.968667017452212]},"properties":{"OBJECTID":3613,"FID":3613,"Lead__ppm":111,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3614,"geometry":{"type":"Point","coordinates":[-75.228522429659023,39.968689392564364]},"properties":{"OBJECTID":3614,"FID":3614,"Lead__ppm":100,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3615,"geometry":{"type":"Point","coordinates":[-75.228611093377538,39.968611114063037]},"properties":{"OBJECTID":3615,"FID":3615,"Lead__ppm":120,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3616,"geometry":{"type":"Point","coordinates":[-75.228611093377538,39.968611114063037]},"properties":{"OBJECTID":3616,"FID":3616,"Lead__ppm":89,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3617,"geometry":{"type":"Point","coordinates":[-75.228719609863873,39.968720511169671]},"properties":{"OBJECTID":3617,"FID":3617,"Lead__ppm":29,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3618,"geometry":{"type":"Point","coordinates":[-75.228469968046426,39.968789977208829]},"properties":{"OBJECTID":3618,"FID":3618,"Lead__ppm":172,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3619,"geometry":{"type":"Point","coordinates":[-75.228998985917229,39.968862885493067]},"properties":{"OBJECTID":3619,"FID":3619,"Lead__ppm":147,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3620,"geometry":{"type":"Point","coordinates":[-75.228730030321159,39.968659995107785]},"properties":{"OBJECTID":3620,"FID":3620,"Lead__ppm":62,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3621,"geometry":{"type":"Point","coordinates":[-75.228471495182404,39.968836379657489]},"properties":{"OBJECTID":3621,"FID":3621,"Lead__ppm":306,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3622,"geometry":{"type":"Point","coordinates":[-75.228494312390609,39.968906602887813]},"properties":{"OBJECTID":3622,"FID":3622,"Lead__ppm":257,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3623,"geometry":{"type":"Point","coordinates":[-75.23878999369343,39.972850003419964]},"properties":{"OBJECTID":3623,"FID":3623,"Lead__ppm":211,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3624,"geometry":{"type":"Point","coordinates":[-75.239079969867149,39.972899982909418]},"properties":{"OBJECTID":3624,"FID":3624,"Lead__ppm":16,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3625,"geometry":{"type":"Point","coordinates":[-75.239075208796137,39.972967585962344]},"properties":{"OBJECTID":3625,"FID":3625,"Lead__ppm":77,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3626,"geometry":{"type":"Point","coordinates":[-75.239039006690192,39.972943009300124]},"properties":{"OBJECTID":3626,"FID":3626,"Lead__ppm":73,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3627,"geometry":{"type":"Point","coordinates":[-75.239106829494148,39.97295450594715]},"properties":{"OBJECTID":3627,"FID":3627,"Lead__ppm":182,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3628,"geometry":{"type":"Point","coordinates":[-75.239039006690192,39.972943009300124]},"properties":{"OBJECTID":3628,"FID":3628,"Lead__ppm":82,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3629,"geometry":{"type":"Point","coordinates":[-75.239039006690192,39.972943009300124]},"properties":{"OBJECTID":3629,"FID":3629,"Lead__ppm":88,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3630,"geometry":{"type":"Point","coordinates":[-75.239160009758976,39.972869967683209]},"properties":{"OBJECTID":3630,"FID":3630,"Lead__ppm":135,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3631,"geometry":{"type":"Point","coordinates":[-75.239069998567501,39.973000010620837]},"properties":{"OBJECTID":3631,"FID":3631,"Lead__ppm":102,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3632,"geometry":{"type":"Point","coordinates":[-75.239169981058609,39.972920016000273]},"properties":{"OBJECTID":3632,"FID":3632,"Lead__ppm":112,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3633,"geometry":{"type":"Point","coordinates":[-75.239139977328122,39.972929998122424]},"properties":{"OBJECTID":3633,"FID":3633,"Lead__ppm":84,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3634,"geometry":{"type":"Point","coordinates":[-75.238819997423931,39.972890000782868]},"properties":{"OBJECTID":3634,"FID":3634,"Lead__ppm":237,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3635,"geometry":{"type":"Point","coordinates":[-75.238780022393769,39.972890000782868]},"properties":{"OBJECTID":3635,"FID":3635,"Lead__ppm":50,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3636,"geometry":{"type":"Point","coordinates":[-75.238769961262605,39.972910033876708]},"properties":{"OBJECTID":3636,"FID":3636,"Lead__ppm":84,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3637,"geometry":{"type":"Point","coordinates":[-75.238859972454065,39.972869967683209]},"properties":{"OBJECTID":3637,"FID":3637,"Lead__ppm":47,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3638,"geometry":{"type":"Point","coordinates":[-75.239053828892381,39.972975020917232]},"properties":{"OBJECTID":3638,"FID":3638,"Lead__ppm":79,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3639,"geometry":{"type":"Point","coordinates":[-75.239038018543383,39.972975020917232]},"properties":{"OBJECTID":3639,"FID":3639,"Lead__ppm":120,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3640,"geometry":{"type":"Point","coordinates":[-75.239031730336379,39.97298018407988]},"properties":{"OBJECTID":3640,"FID":3640,"Lead__ppm":103,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3641,"geometry":{"type":"Point","coordinates":[-75.239071166377357,39.972942733931319]},"properties":{"OBJECTID":3641,"FID":3641,"Lead__ppm":21,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3642,"geometry":{"type":"Point","coordinates":[-75.239002804584246,39.972979220289538]},"properties":{"OBJECTID":3642,"FID":3642,"Lead__ppm":147,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3643,"geometry":{"type":"Point","coordinates":[-75.239019962406175,39.972939980243119]},"properties":{"OBJECTID":3643,"FID":3643,"Lead__ppm":194,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3644,"geometry":{"type":"Point","coordinates":[-75.23894998364554,39.972939980243119]},"properties":{"OBJECTID":3644,"FID":3644,"Lead__ppm":312,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3645,"geometry":{"type":"Point","coordinates":[-75.238960044776718,39.972950031204491]},"properties":{"OBJECTID":3645,"FID":3645,"Lead__ppm":4422,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3646,"geometry":{"type":"Point","coordinates":[-75.27290998447792,39.972950031204491]},"properties":{"OBJECTID":3646,"FID":3646,"Lead__ppm":123,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3647,"geometry":{"type":"Point","coordinates":[-75.238989958675688,39.972969995438568]},"properties":{"OBJECTID":3647,"FID":3647,"Lead__ppm":148,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3648,"geometry":{"type":"Point","coordinates":[-75.236940003197304,39.962479983544874]},"properties":{"OBJECTID":3648,"FID":3648,"Lead__ppm":44,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3649,"geometry":{"type":"Point","coordinates":[-75.236870024436683,39.96246999989674]},"properties":{"OBJECTID":3649,"FID":3649,"Lead__ppm":41,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3650,"geometry":{"type":"Point","coordinates":[-75.236807411861378,39.962503806589126]},"properties":{"OBJECTID":3650,"FID":3650,"Lead__ppm":28,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3651,"geometry":{"type":"Point","coordinates":[-75.236840020706197,39.96246999989674]},"properties":{"OBJECTID":3651,"FID":3651,"Lead__ppm":228,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3652,"geometry":{"type":"Point","coordinates":[-75.236910358792954,39.96251578696085]},"properties":{"OBJECTID":3652,"FID":3652,"Lead__ppm":33,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3653,"geometry":{"type":"Point","coordinates":[-75.236832205363214,39.962490724571651]},"properties":{"OBJECTID":3653,"FID":3653,"Lead__ppm":196,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3654,"geometry":{"type":"Point","coordinates":[-75.236780282739801,39.962485767174904]},"properties":{"OBJECTID":3654,"FID":3654,"Lead__ppm":45,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3655,"geometry":{"type":"Point","coordinates":[-75.236844602114161,39.962491413098959]},"properties":{"OBJECTID":3655,"FID":3655,"Lead__ppm":29,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3656,"geometry":{"type":"Point","coordinates":[-75.236856998865065,39.962517370573018]},"properties":{"OBJECTID":3656,"FID":3656,"Lead__ppm":248,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3657,"geometry":{"type":"Point","coordinates":[-75.236764831716911,39.962501396743981]},"properties":{"OBJECTID":3657,"FID":3657,"Lead__ppm":104,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3658,"geometry":{"type":"Point","coordinates":[-75.23678998454487,39.962420012781152]},"properties":{"OBJECTID":3658,"FID":3658,"Lead__ppm":63,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3659,"geometry":{"type":"Point","coordinates":[-75.236960035628158,39.962540023108673]},"properties":{"OBJECTID":3659,"FID":3659,"Lead__ppm":57,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3660,"geometry":{"type":"Point","coordinates":[-75.236859963305491,39.962479983544874]},"properties":{"OBJECTID":3660,"FID":3660,"Lead__ppm":215,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3661,"geometry":{"type":"Point","coordinates":[-75.236979978227467,39.962500019689607]},"properties":{"OBJECTID":3661,"FID":3661,"Lead__ppm":80,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3662,"geometry":{"type":"Point","coordinates":[-75.236799955844518,39.962540023108673]},"properties":{"OBJECTID":3662,"FID":3662,"Lead__ppm":177,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3663,"geometry":{"type":"Point","coordinates":[-75.236729977083897,39.962529970616565]},"properties":{"OBJECTID":3663,"FID":3663,"Lead__ppm":120,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3664,"geometry":{"type":"Point","coordinates":[-75.236900028167184,39.962529970616565]},"properties":{"OBJECTID":3664,"FID":3664,"Lead__ppm":23,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3665,"geometry":{"type":"Point","coordinates":[-75.236772557228363,39.96250022624772]},"properties":{"OBJECTID":3665,"FID":3665,"Lead__ppm":434,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3666,"geometry":{"type":"Point","coordinates":[-75.236750009514722,39.962519986975721]},"properties":{"OBJECTID":3666,"FID":3666,"Lead__ppm":68,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3667,"geometry":{"type":"Point","coordinates":[-75.236900028167184,39.962510003333364]},"properties":{"OBJECTID":3667,"FID":3667,"Lead__ppm":230,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3668,"geometry":{"type":"Point","coordinates":[-75.236894638275473,39.962523498463348]},"properties":{"OBJECTID":3668,"FID":3668,"Lead__ppm":303,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3669,"geometry":{"type":"Point","coordinates":[-75.236727641464157,39.962490380307969]},"properties":{"OBJECTID":3669,"FID":3669,"Lead__ppm":88,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3670,"geometry":{"type":"Point","coordinates":[-75.236859963305491,39.96246999989674]},"properties":{"OBJECTID":3670,"FID":3670,"Lead__ppm":457,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3671,"geometry":{"type":"Point","coordinates":[-75.236900028167184,39.962479983544874]},"properties":{"OBJECTID":3671,"FID":3671,"Lead__ppm":24,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3672,"geometry":{"type":"Point","coordinates":[-75.236840020706197,39.962580026504384]},"properties":{"OBJECTID":3672,"FID":3672,"Lead__ppm":337,"Long":0,"Lat":0,"Date":"5/10/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3673,"geometry":{"type":"Point","coordinates":[-75.2295651042093,39.978103019548641]},"properties":{"OBJECTID":3673,"FID":3673,"Lead__ppm":210,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3674,"geometry":{"type":"Point","coordinates":[-75.229499976351192,39.973800020518105]},"properties":{"OBJECTID":3674,"FID":3674,"Lead__ppm":158,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3675,"geometry":{"type":"Point","coordinates":[-75.229349957698744,39.973870032125248]},"properties":{"OBJECTID":3675,"FID":3675,"Lead__ppm":72,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3676,"geometry":{"type":"Point","coordinates":[-75.22967002743448,39.973939974819537]},"properties":{"OBJECTID":3676,"FID":3676,"Lead__ppm":159,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3677,"geometry":{"type":"Point","coordinates":[-75.229525578336791,39.973815165611249]},"properties":{"OBJECTID":3677,"FID":3677,"Lead__ppm":210,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3678,"geometry":{"type":"Point","coordinates":[-75.229583878998739,39.973783911642556]},"properties":{"OBJECTID":3678,"FID":3678,"Lead__ppm":165,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3679,"geometry":{"type":"Point","coordinates":[-75.229599958842314,39.973910028891275]},"properties":{"OBJECTID":3679,"FID":3679,"Lead__ppm":139,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3680,"geometry":{"type":"Point","coordinates":[-75.229470242115283,39.973831412162014]},"properties":{"OBJECTID":3680,"FID":3680,"Lead__ppm":215,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3681,"geometry":{"type":"Point","coordinates":[-75.229379961429231,39.973810002511684]},"properties":{"OBJECTID":3681,"FID":3681,"Lead__ppm":221,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3682,"geometry":{"type":"Point","coordinates":[-75.229552707458353,39.973807317699745]},"properties":{"OBJECTID":3682,"FID":3682,"Lead__ppm":356,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3683,"geometry":{"type":"Point","coordinates":[-75.229369001982775,39.973841669516247]},"properties":{"OBJECTID":3683,"FID":3683,"Lead__ppm":435,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3684,"geometry":{"type":"Point","coordinates":[-75.229526207157491,39.973804908253044]},"properties":{"OBJECTID":3684,"FID":3684,"Lead__ppm":188,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3685,"geometry":{"type":"Point","coordinates":[-75.229444011308985,39.973889032313089]},"properties":{"OBJECTID":3685,"FID":3685,"Lead__ppm":259,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3686,"geometry":{"type":"Point","coordinates":[-75.229722039889424,39.973889032313089]},"properties":{"OBJECTID":3686,"FID":3686,"Lead__ppm":288,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3687,"geometry":{"type":"Point","coordinates":[-75.229528632608762,39.973802085758258]},"properties":{"OBJECTID":3687,"FID":3687,"Lead__ppm":277,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3688,"geometry":{"type":"Point","coordinates":[-75.229460001321044,39.973870032125248]},"properties":{"OBJECTID":3688,"FID":3688,"Lead__ppm":116,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3689,"geometry":{"type":"Point","coordinates":[-75.229599958842314,39.973880014108651]},"properties":{"OBJECTID":3689,"FID":3689,"Lead__ppm":144,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3690,"geometry":{"type":"Point","coordinates":[-75.22947958459423,39.973808488002412]},"properties":{"OBJECTID":3690,"FID":3690,"Lead__ppm":45,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3691,"geometry":{"type":"Point","coordinates":[-75.229428290791517,39.973832169416397]},"properties":{"OBJECTID":3691,"FID":3691,"Lead__ppm":259,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3692,"geometry":{"type":"Point","coordinates":[-75.22947895577353,39.973834028131712]},"properties":{"OBJECTID":3692,"FID":3692,"Lead__ppm":148,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3693,"geometry":{"type":"Point","coordinates":[-75.229410593980418,39.973833202036047]},"properties":{"OBJECTID":3693,"FID":3693,"Lead__ppm":92,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3694,"geometry":{"type":"Point","coordinates":[-75.229538334413817,39.973792103763479]},"properties":{"OBJECTID":3694,"FID":3694,"Lead__ppm":133,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3695,"geometry":{"type":"Point","coordinates":[-75.229349957698744,39.973810002511684]},"properties":{"OBJECTID":3695,"FID":3695,"Lead__ppm":211,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3696,"geometry":{"type":"Point","coordinates":[-75.229722039889424,39.973889032313089]},"properties":{"OBJECTID":3696,"FID":3696,"Lead__ppm":167,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3697,"geometry":{"type":"Point","coordinates":[-75.229481291393284,39.973824528030804]},"properties":{"OBJECTID":3697,"FID":3697,"Lead__ppm":51,"Long":0,"Lat":0,"Date":"4/13/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3698,"geometry":{"type":"Point","coordinates":[-75.240000024381146,39.970666979315901]},"properties":{"OBJECTID":3698,"FID":3698,"Lead__ppm":55,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3699,"geometry":{"type":"Point","coordinates":[-75.244510016265053,39.973300024034899]},"properties":{"OBJECTID":3699,"FID":3699,"Lead__ppm":157,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3700,"geometry":{"type":"Point","coordinates":[-75.244400421800393,39.973344495851585]},"properties":{"OBJECTID":3700,"FID":3700,"Lead__ppm":277,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3701,"geometry":{"type":"Point","coordinates":[-75.244470041234919,39.973310006101556]},"properties":{"OBJECTID":3701,"FID":3701,"Lead__ppm":49,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3702,"geometry":{"type":"Point","coordinates":[-75.240000024381146,39.970666979315901]},"properties":{"OBJECTID":3702,"FID":3702,"Lead__ppm":46,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3703,"geometry":{"type":"Point","coordinates":[-75.240167021192462,39.970666979315901]},"properties":{"OBJECTID":3703,"FID":3703,"Lead__ppm":43,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3704,"geometry":{"type":"Point","coordinates":[-75.244489983834242,39.973420015263443]},"properties":{"OBJECTID":3704,"FID":3704,"Lead__ppm":52,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3705,"geometry":{"type":"Point","coordinates":[-75.244480012534567,39.973359985254625]},"properties":{"OBJECTID":3705,"FID":3705,"Lead__ppm":81,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3706,"geometry":{"type":"Point","coordinates":[-75.244399074327461,39.973328799919578]},"properties":{"OBJECTID":3706,"FID":3706,"Lead__ppm":153,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3707,"geometry":{"type":"Point","coordinates":[-75.244395121740226,39.97331468734609]},"properties":{"OBJECTID":3707,"FID":3707,"Lead__ppm":62,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3708,"geometry":{"type":"Point","coordinates":[-75.244570023726055,39.973329970230431]},"properties":{"OBJECTID":3708,"FID":3708,"Lead__ppm":60,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3709,"geometry":{"type":"Point","coordinates":[-75.244399972642753,39.973300024034899]},"properties":{"OBJECTID":3709,"FID":3709,"Lead__ppm":57,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3710,"geometry":{"type":"Point","coordinates":[-75.244489983834242,39.973300024034899]},"properties":{"OBJECTID":3710,"FID":3710,"Lead__ppm":78,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3711,"geometry":{"type":"Point","coordinates":[-75.244420005073593,39.973319988166701]},"properties":{"OBJECTID":3711,"FID":3711,"Lead__ppm":2054,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3712,"geometry":{"type":"Point","coordinates":[-75.244429976373254,39.973340021134504]},"properties":{"OBJECTID":3712,"FID":3712,"Lead__ppm":44,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3713,"geometry":{"type":"Point","coordinates":[-75.240000024381146,39.970666979315901]},"properties":{"OBJECTID":3713,"FID":3713,"Lead__ppm":44,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3714,"geometry":{"type":"Point","coordinates":[-75.240000024381146,39.970666979315901]},"properties":{"OBJECTID":3714,"FID":3714,"Lead__ppm":49,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3715,"geometry":{"type":"Point","coordinates":[-75.240000024381146,39.970666979315901]},"properties":{"OBJECTID":3715,"FID":3715,"Lead__ppm":42,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3716,"geometry":{"type":"Point","coordinates":[-75.244470041234919,39.973310006101556]},"properties":{"OBJECTID":3716,"FID":3716,"Lead__ppm":92,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3717,"geometry":{"type":"Point","coordinates":[-75.240000024381146,39.970666979315901]},"properties":{"OBJECTID":3717,"FID":3717,"Lead__ppm":72,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3718,"geometry":{"type":"Point","coordinates":[-75.244397996349136,39.973326528139665]},"properties":{"OBJECTID":3718,"FID":3718,"Lead__ppm":64,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3719,"geometry":{"type":"Point","coordinates":[-75.240000024381146,39.970666979315901]},"properties":{"OBJECTID":3719,"FID":3719,"Lead__ppm":47,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3720,"geometry":{"type":"Point","coordinates":[-75.244031034555576,39.973326321614209]},"properties":{"OBJECTID":3720,"FID":3720,"Lead__ppm":109,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3721,"geometry":{"type":"Point","coordinates":[-75.240000024381146,39.970666979315901]},"properties":{"OBJECTID":3721,"FID":3721,"Lead__ppm":163,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3722,"geometry":{"type":"Point","coordinates":[-75.240000024381146,39.970666979315901]},"properties":{"OBJECTID":3722,"FID":3722,"Lead__ppm":40,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3723,"geometry":{"type":"Point","coordinates":[-75.233960021905304,39.973939974819537]},"properties":{"OBJECTID":3723,"FID":3723,"Lead__ppm":114,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3724,"geometry":{"type":"Point","coordinates":[-75.233960021905304,39.973939974819537]},"properties":{"OBJECTID":3724,"FID":3724,"Lead__ppm":231,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3725,"geometry":{"type":"Point","coordinates":[-75.233999996935452,39.973880014108651]},"properties":{"OBJECTID":3725,"FID":3725,"Lead__ppm":73,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3726,"geometry":{"type":"Point","coordinates":[-75.233990025635805,39.973920010868845]},"properties":{"OBJECTID":3726,"FID":3726,"Lead__ppm":148,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3727,"geometry":{"type":"Point","coordinates":[-75.238333020708396,39.970999979331445]},"properties":{"OBJECTID":3727,"FID":3727,"Lead__ppm":57,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3728,"geometry":{"type":"Point","coordinates":[-75.233828778042295,39.973867622680807]},"properties":{"OBJECTID":3728,"FID":3728,"Lead__ppm":53,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3729,"geometry":{"type":"Point","coordinates":[-75.233870010713844,39.973880014108651]},"properties":{"OBJECTID":3729,"FID":3729,"Lead__ppm":82,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3730,"geometry":{"type":"Point","coordinates":[-75.233960021905304,39.973840017325053]},"properties":{"OBJECTID":3730,"FID":3730,"Lead__ppm":151,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3731,"geometry":{"type":"Point","coordinates":[-75.23390001444433,39.973910028891275]},"properties":{"OBJECTID":3731,"FID":3731,"Lead__ppm":49,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3732,"geometry":{"type":"Point","coordinates":[-75.233898487308352,39.973905485370004]},"properties":{"OBJECTID":3732,"FID":3732,"Lead__ppm":80,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3733,"geometry":{"type":"Point","coordinates":[-75.233960021905304,39.973840017325053]},"properties":{"OBJECTID":3733,"FID":3733,"Lead__ppm":53,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3734,"geometry":{"type":"Point","coordinates":[-75.235000001509746,39.970999979331445]},"properties":{"OBJECTID":3734,"FID":3734,"Lead__ppm":66,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3735,"geometry":{"type":"Point","coordinates":[-75.236667005182483,39.970999979331445]},"properties":{"OBJECTID":3735,"FID":3735,"Lead__ppm":114,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3736,"geometry":{"type":"Point","coordinates":[-75.236667005182483,39.970999979331445]},"properties":{"OBJECTID":3736,"FID":3736,"Lead__ppm":87,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3737,"geometry":{"type":"Point","coordinates":[-75.233979964504613,39.973910028891275]},"properties":{"OBJECTID":3737,"FID":3737,"Lead__ppm":210,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3738,"geometry":{"type":"Point","coordinates":[-75.236667005182483,39.970999979331445]},"properties":{"OBJECTID":3738,"FID":3738,"Lead__ppm":49,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3739,"geometry":{"type":"Point","coordinates":[-75.233960021905304,39.973840017325053]},"properties":{"OBJECTID":3739,"FID":3739,"Lead__ppm":101,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3740,"geometry":{"type":"Point","coordinates":[-75.233909985743992,39.973899978071032]},"properties":{"OBJECTID":3740,"FID":3740,"Lead__ppm":83,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3741,"geometry":{"type":"Point","coordinates":[-75.233867405599526,39.973921318851986]},"properties":{"OBJECTID":3741,"FID":3741,"Lead__ppm":76,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3742,"geometry":{"type":"Point","coordinates":[-75.233960021905304,39.973840017325053]},"properties":{"OBJECTID":3742,"FID":3742,"Lead__ppm":123,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3743,"geometry":{"type":"Point","coordinates":[-75.233898487308352,39.973905485370004]},"properties":{"OBJECTID":3743,"FID":3743,"Lead__ppm":77,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3744,"geometry":{"type":"Point","coordinates":[-75.233849978283004,39.973800020518105]},"properties":{"OBJECTID":3744,"FID":3744,"Lead__ppm":140,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3745,"geometry":{"type":"Point","coordinates":[-75.23390001444433,39.973899978071032]},"properties":{"OBJECTID":3745,"FID":3745,"Lead__ppm":64,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3746,"geometry":{"type":"Point","coordinates":[-75.233898487308352,39.973905485370004]},"properties":{"OBJECTID":3746,"FID":3746,"Lead__ppm":86,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3747,"geometry":{"type":"Point","coordinates":[-75.233870010713844,39.973889996090598]},"properties":{"OBJECTID":3747,"FID":3747,"Lead__ppm":70,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3748,"geometry":{"type":"Point","coordinates":[-75.236050042245338,39.965860018755876]},"properties":{"OBJECTID":3748,"FID":3748,"Lead__ppm":112,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3749,"geometry":{"type":"Point","coordinates":[-75.236030908129806,39.96588322097854]},"properties":{"OBJECTID":3749,"FID":3749,"Lead__ppm":41,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3750,"geometry":{"type":"Point","coordinates":[-75.236030009814513,39.965950004780311]},"properties":{"OBJECTID":3750,"FID":3750,"Lead__ppm":41,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3751,"geometry":{"type":"Point","coordinates":[-75.235166998321063,39.959667015801763]},"properties":{"OBJECTID":3751,"FID":3751,"Lead__ppm":55,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3752,"geometry":{"type":"Point","coordinates":[-75.236000006084026,39.9659599879203]},"properties":{"OBJECTID":3752,"FID":3752,"Lead__ppm":64,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3753,"geometry":{"type":"Point","coordinates":[-75.236000006084026,39.965929969646616]},"properties":{"OBJECTID":3753,"FID":3753,"Lead__ppm":25,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3754,"geometry":{"type":"Point","coordinates":[-75.235939998623024,39.965940021638822]},"properties":{"OBJECTID":3754,"FID":3754,"Lead__ppm":47,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3755,"geometry":{"type":"Point","coordinates":[-75.236020038514852,39.965860018755876]},"properties":{"OBJECTID":3755,"FID":3755,"Lead__ppm":21,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3756,"geometry":{"type":"Point","coordinates":[-75.236020038514852,39.965980023045205]},"properties":{"OBJECTID":3756,"FID":3756,"Lead__ppm":67,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3757,"geometry":{"type":"Point","coordinates":[-75.235000001509746,39.95949997197615]},"properties":{"OBJECTID":3757,"FID":3757,"Lead__ppm":33,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3758,"geometry":{"type":"Point","coordinates":[-75.235000001509746,39.95949997197615]},"properties":{"OBJECTID":3758,"FID":3758,"Lead__ppm":40,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3759,"geometry":{"type":"Point","coordinates":[-75.235000001509746,39.959667015801763]},"properties":{"OBJECTID":3759,"FID":3759,"Lead__ppm":24,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3760,"geometry":{"type":"Point","coordinates":[-75.234833004698416,39.959667015801763]},"properties":{"OBJECTID":3760,"FID":3760,"Lead__ppm":41,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3761,"geometry":{"type":"Point","coordinates":[-75.236020038514852,39.965879985060724]},"properties":{"OBJECTID":3761,"FID":3761,"Lead__ppm":40,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3762,"geometry":{"type":"Point","coordinates":[-75.236050042245338,39.96588996821098]},"properties":{"OBJECTID":3762,"FID":3762,"Lead__ppm":41,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3763,"geometry":{"type":"Point","coordinates":[-75.23603530987468,39.965849829053191]},"properties":{"OBJECTID":3763,"FID":3763,"Lead__ppm":46,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3764,"geometry":{"type":"Point","coordinates":[-75.236036028526911,39.965843908009056]},"properties":{"OBJECTID":3764,"FID":3764,"Lead__ppm":38,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3765,"geometry":{"type":"Point","coordinates":[-75.236020038514852,39.965919986502243]},"properties":{"OBJECTID":3765,"FID":3765,"Lead__ppm":298,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3766,"geometry":{"type":"Point","coordinates":[-75.236040340440269,39.965869588813078]},"properties":{"OBJECTID":3766,"FID":3766,"Lead__ppm":22,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3767,"geometry":{"type":"Point","coordinates":[-75.236023182618339,39.965885217608601]},"properties":{"OBJECTID":3767,"FID":3767,"Lead__ppm":62,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3768,"geometry":{"type":"Point","coordinates":[-75.236020038514852,39.965860018755876]},"properties":{"OBJECTID":3768,"FID":3768,"Lead__ppm":43,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3769,"geometry":{"type":"Point","coordinates":[-75.236020038514852,39.965860018755876]},"properties":{"OBJECTID":3769,"FID":3769,"Lead__ppm":42,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3770,"geometry":{"type":"Point","coordinates":[-75.236030009814513,39.9659599879203]},"properties":{"OBJECTID":3770,"FID":3770,"Lead__ppm":40,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3771,"geometry":{"type":"Point","coordinates":[-75.236020038514852,39.965860018755876]},"properties":{"OBJECTID":3771,"FID":3771,"Lead__ppm":35,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3772,"geometry":{"type":"Point","coordinates":[-75.236020038514852,39.965860018755876]},"properties":{"OBJECTID":3772,"FID":3772,"Lead__ppm":26,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3773,"geometry":{"type":"Point","coordinates":[-75.230013992356746,39.970809831495643]},"properties":{"OBJECTID":3773,"FID":3773,"Lead__ppm":109,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3774,"geometry":{"type":"Point","coordinates":[-75.230052979240085,39.970828488312499]},"properties":{"OBJECTID":3774,"FID":3774,"Lead__ppm":95,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3775,"geometry":{"type":"Point","coordinates":[-75.23001003976951,39.979789987228258]},"properties":{"OBJECTID":3775,"FID":3775,"Lead__ppm":124,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3776,"geometry":{"type":"Point","coordinates":[-75.230040043499997,39.970799986752588]},"properties":{"OBJECTID":3776,"FID":3776,"Lead__ppm":265,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3777,"geometry":{"type":"Point","coordinates":[-75.230035911249672,39.97079571840198]},"properties":{"OBJECTID":3777,"FID":3777,"Lead__ppm":109,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3778,"geometry":{"type":"Point","coordinates":[-75.230021807699728,39.970718612668335]},"properties":{"OBJECTID":3778,"FID":3778,"Lead__ppm":108,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3779,"geometry":{"type":"Point","coordinates":[-75.230249979781888,39.970940016041325]},"properties":{"OBJECTID":3779,"FID":3779,"Lead__ppm":146,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3780,"geometry":{"type":"Point","coordinates":[-75.230029982368819,39.970809969184309]},"properties":{"OBJECTID":3780,"FID":3780,"Lead__ppm":238,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3781,"geometry":{"type":"Point","coordinates":[-75.230020011069158,39.970879983854338]},"properties":{"OBJECTID":3781,"FID":3781,"Lead__ppm":358,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3782,"geometry":{"type":"Point","coordinates":[-75.230040043499997,39.970769970604195]},"properties":{"OBJECTID":3782,"FID":3782,"Lead__ppm":143,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3783,"geometry":{"type":"Point","coordinates":[-75.230099961129454,39.970609976049516]},"properties":{"OBJECTID":3783,"FID":3783,"Lead__ppm":112,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3784,"geometry":{"type":"Point","coordinates":[-75.230040043499997,39.970839985315145]},"properties":{"OBJECTID":3784,"FID":3784,"Lead__ppm":128,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3785,"geometry":{"type":"Point","coordinates":[-75.230048577495182,39.970782018371771]},"properties":{"OBJECTID":3785,"FID":3785,"Lead__ppm":173,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3786,"geometry":{"type":"Point","coordinates":[-75.230016417808017,39.907593975643501]},"properties":{"OBJECTID":3786,"FID":3786,"Lead__ppm":99,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3787,"geometry":{"type":"Point","coordinates":[-75.230040582489167,39.970757578612449]},"properties":{"OBJECTID":3787,"FID":3787,"Lead__ppm":123,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3788,"geometry":{"type":"Point","coordinates":[-75.230089989829793,39.970689973373645]},"properties":{"OBJECTID":3788,"FID":3788,"Lead__ppm":153,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3789,"geometry":{"type":"Point","coordinates":[-75.230110022260618,39.970700024665931]},"properties":{"OBJECTID":3789,"FID":3789,"Lead__ppm":145,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3790,"geometry":{"type":"Point","coordinates":[-75.230040043499997,39.970679990924395]},"properties":{"OBJECTID":3790,"FID":3790,"Lead__ppm":205,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3791,"geometry":{"type":"Point","coordinates":[-75.229999978638318,39.970719989557168]},"properties":{"OBJECTID":3791,"FID":3791,"Lead__ppm":99,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3792,"geometry":{"type":"Point","coordinates":[-75.230025760286978,39.970860225542751]},"properties":{"OBJECTID":3792,"FID":3792,"Lead__ppm":103,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3793,"geometry":{"type":"Point","coordinates":[-75.230089989829793,39.970849967741074]},"properties":{"OBJECTID":3793,"FID":3793,"Lead__ppm":279,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3794,"geometry":{"type":"Point","coordinates":[-75.230020011069158,39.970719989557168]},"properties":{"OBJECTID":3794,"FID":3794,"Lead__ppm":124,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3795,"geometry":{"type":"Point","coordinates":[-75.230033216303838,39.970701608088582]},"properties":{"OBJECTID":3795,"FID":3795,"Lead__ppm":153,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3796,"geometry":{"type":"Point","coordinates":[-75.230059986099306,39.970820020458959]},"properties":{"OBJECTID":3796,"FID":3796,"Lead__ppm":109,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3797,"geometry":{"type":"Point","coordinates":[-75.230031240010206,39.970804392791621]},"properties":{"OBJECTID":3797,"FID":3797,"Lead__ppm":95,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3798,"geometry":{"type":"Point","coordinates":[-75.236639965892422,39.962849997173883]},"properties":{"OBJECTID":3798,"FID":3798,"Lead__ppm":154,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3799,"geometry":{"type":"Point","coordinates":[-75.236720275278842,39.962859429947692]},"properties":{"OBJECTID":3799,"FID":3799,"Lead__ppm":37,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3800,"geometry":{"type":"Point","coordinates":[-75.236745787432895,39.962894406937046]},"properties":{"OBJECTID":3800,"FID":3800,"Lead__ppm":45,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3801,"geometry":{"type":"Point","coordinates":[-75.23677390470128,39.962883803678388]},"properties":{"OBJECTID":3801,"FID":3801,"Lead__ppm":41,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3802,"geometry":{"type":"Point","coordinates":[-75.236686408792607,39.962849928321532]},"properties":{"OBJECTID":3802,"FID":3802,"Lead__ppm":480,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3803,"geometry":{"type":"Point","coordinates":[-75.236960035628158,39.962840013579715]},"properties":{"OBJECTID":3803,"FID":3803,"Lead__ppm":195,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3804,"geometry":{"type":"Point","coordinates":[-75.236859963305491,39.962920019996702]},"properties":{"OBJECTID":3804,"FID":3804,"Lead__ppm":132,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3805,"geometry":{"type":"Point","coordinates":[-75.239084281780521,39.963198871234511]},"properties":{"OBJECTID":3805,"FID":3805,"Lead__ppm":29,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3806,"geometry":{"type":"Point","coordinates":[-75.239115093994769,39.963218907168518]},"properties":{"OBJECTID":3806,"FID":3806,"Lead__ppm":22,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3807,"geometry":{"type":"Point","coordinates":[-75.329080022226393,39.963220008800484]},"properties":{"OBJECTID":3807,"FID":3807,"Lead__ppm":89,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3808,"geometry":{"type":"Point","coordinates":[-75.239090030998327,39.963210025260345]},"properties":{"OBJECTID":3808,"FID":3808,"Lead__ppm":55,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3809,"geometry":{"type":"Point","coordinates":[-75.236657932198099,39.96284118407015]},"properties":{"OBJECTID":3809,"FID":3809,"Lead__ppm":39,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3810,"geometry":{"type":"Point","coordinates":[-75.239102068423136,39.963265175694772]},"properties":{"OBJECTID":3810,"FID":3810,"Lead__ppm":119,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3811,"geometry":{"type":"Point","coordinates":[-75.239055535691421,39.963264900286973]},"properties":{"OBJECTID":3811,"FID":3811,"Lead__ppm":301,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3812,"geometry":{"type":"Point","coordinates":[-75.239037479554213,39.963202313835275]},"properties":{"OBJECTID":3812,"FID":3812,"Lead__ppm":28,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3813,"geometry":{"type":"Point","coordinates":[-75.236669969622909,39.963859985106126]},"properties":{"OBJECTID":3813,"FID":3813,"Lead__ppm":276,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3814,"geometry":{"type":"Point","coordinates":[-75.239082305486889,39.963227720223564]},"properties":{"OBJECTID":3814,"FID":3814,"Lead__ppm":37,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3815,"geometry":{"type":"Point","coordinates":[-75.239037479554213,39.963202313835275]},"properties":{"OBJECTID":3815,"FID":3815,"Lead__ppm":157,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3816,"geometry":{"type":"Point","coordinates":[-75.239037479554213,39.963202313835275]},"properties":{"OBJECTID":3816,"FID":3816,"Lead__ppm":193,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3817,"geometry":{"type":"Point","coordinates":[-75.239000019806852,39.963180005779215]},"properties":{"OBJECTID":3817,"FID":3817,"Lead__ppm":48,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3818,"geometry":{"type":"Point","coordinates":[-75.239109973597635,39.963800015552827]},"properties":{"OBJECTID":3818,"FID":3818,"Lead__ppm":99,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3819,"geometry":{"type":"Point","coordinates":[-75.23919998478911,39.96330001477277]},"properties":{"OBJECTID":3819,"FID":3819,"Lead__ppm":66,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3820,"geometry":{"type":"Point","coordinates":[-75.239069998567501,39.963149986284897]},"properties":{"OBJECTID":3820,"FID":3820,"Lead__ppm":46,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3821,"geometry":{"type":"Point","coordinates":[-75.2391500384593,39.963130019182763]},"properties":{"OBJECTID":3821,"FID":3821,"Lead__ppm":160,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3822,"geometry":{"type":"Point","coordinates":[-75.239130006028489,39.963210025260345]},"properties":{"OBJECTID":3822,"FID":3822,"Lead__ppm":40,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3823,"geometry":{"type":"Point","coordinates":[-75.239069998567501,39.963279978862474]},"properties":{"OBJECTID":3823,"FID":3823,"Lead__ppm":244,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3824,"geometry":{"type":"Point","coordinates":[-75.239079969867149,39.963140002734534]},"properties":{"OBJECTID":3824,"FID":3824,"Lead__ppm":168,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3825,"geometry":{"type":"Point","coordinates":[-75.239160009758976,39.963220008800484]},"properties":{"OBJECTID":3825,"FID":3825,"Lead__ppm":85,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3826,"geometry":{"type":"Point","coordinates":[-75.239040713489217,39.963257188868091]},"properties":{"OBJECTID":3826,"FID":3826,"Lead__ppm":564,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3827,"geometry":{"type":"Point","coordinates":[-75.239169981058609,39.963229992339116]},"properties":{"OBJECTID":3827,"FID":3827,"Lead__ppm":166,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3828,"geometry":{"type":"Point","coordinates":[-75.239120034728813,39.963260011798305]},"properties":{"OBJECTID":3828,"FID":3828,"Lead__ppm":140,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3829,"geometry":{"type":"Point","coordinates":[-75.239090030998327,39.963199972866747]},"properties":{"OBJECTID":3829,"FID":3829,"Lead__ppm":113,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3830,"geometry":{"type":"Point","coordinates":[-75.23907619694296,39.963273919891918]},"properties":{"OBJECTID":3830,"FID":3830,"Lead__ppm":41,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}},{"type":"Feature","id":3831,"geometry":{"type":"Point","coordinates":[-75.239160009758976,39.963229992339116]},"properties":{"OBJECTID":3831,"FID":3831,"Lead__ppm":33,"Long":0,"Lat":0,"Date":"5/6/2023","Organization":"CEET","SymbolID":null}}]} \ No newline at end of file diff --git a/examples/philly-park-lead-levels/favicon.ico b/examples/philly-park-lead-levels/favicon.ico deleted file mode 100644 index 7bd0dcb..0000000 Binary files a/examples/philly-park-lead-levels/favicon.ico and /dev/null differ diff --git a/examples/philly-park-lead-levels/img/lead-h1-background.png b/examples/philly-park-lead-levels/img/lead-h1-background.png deleted file mode 100644 index 86829ce..0000000 Binary files a/examples/philly-park-lead-levels/img/lead-h1-background.png and /dev/null differ diff --git a/examples/philly-park-lead-levels/index.html b/examples/philly-park-lead-levels/index.html deleted file mode 100644 index 188e78b..0000000 --- a/examples/philly-park-lead-levels/index.html +++ /dev/null @@ -1,149 +0,0 @@ - - - -
- - - - -- 400 ppm: Max soil lead level safe for children's access. -
- -Green Space: ${l.feature.properties.SITE_NAME}
`; - }).bindPopup((l) => { - return `Parent: ${l.feature.properties.CHILD_OF}
-Type: ${l.feature.properties.USE_}
-Area (acre): ${l.feature.properties.ACREAGE.toFixed(2)}
`; - }); - phillyParkLayer.addTo(map); - - soilLayer = L.geoJSON(leadSamples, - {style: calLeadStyle, - pointToLayer: (parks, latlng) => L.circleMarker(latlng), // just type latlng or any names and leaflet know how to find goejson's coordinate - // Can also do the latlng manually, remember to flip the lon lat (leaflet and geojson read it in the opposite way) - // pointToLayer: (parks) => L.circleMarker([parks.geometry.coordinates[1], parks.geometry.coordinates[0]]), - }).bindTooltip((l) => { - return `Lead (ppm): ${l.feature.properties.Lead__ppm}
`; - }); - - soilLayer.addTo(map); - - cityLayer = L.geoJSON(cityLimits, - { stroke: true, - fill: false, - color: '#446E5F', - dashArray: '5 6', - weight: 2, - }); - cityLayer.addTo(map); - - // make the zoom level fit different browser size - map.fitBounds(cityLayer.getBounds()); - - // add legend - const legend = L.control({position: 'bottomright'}); - legend.onAdd = (map) => { - return legendStyle(map); // remeber to return the function - }; - legend.addTo(map); - - // add back button - const backView = L.control({position: 'topleft'}); - backView.onAdd = (map) => { - return backButtonStyle(map); - }; - backView.addTo(map); - - // call clear button function - handleClearButton(map); - - // change map and chart when inputting park nane or click on park list - events.addEventListener('zoom-map', (evt) => { - // match the clicked park by polygon ID of geojson file - const ID = evt.detail.mapZoomSelect; - currentLocationLayer.clearLayers(); - routeLayer.clearLayers(); - idToPark(ID); - }); - - // change map and chart when inputting address - events.addEventListener('address-zoom-map', (evt) => { - const lat = parseFloat(evt.detail.lat); // original object is string, will cause error later, need to change to float here - const lon = parseFloat(evt.detail.lon); - - const addressPoint = turf.point([lon, lat]); - phillyParkLayer.resetStyle(); - - // need to loop through each shape to get center points because the turf function only take one shape each time - const parkCenters = []; - for (const park of parks.features) { - const parkCenter = turf.pointOnFeature(park); - parkCenter.properties = park.properties; // add all park properties to point properties (although we don't need it later) - parkCenter.id = park.id; // add the park ID to point feature - parkCenters.push(parkCenter); - } - - // find nearest center point and use that to get the park shape - const parkNear = turf.nearestPoint(addressPoint, turf.featureCollection(parkCenters)); // truf function take turf feature collection, not just simple array - console.log(parkNear.geometry.coordinates[0]); - const ID = parkNear.id; - - async function fetchData() { - const toPoint = parkNear.geometry.coordinates; - const url = `https://api.mapbox.com/directions/v5/mapbox/walking/${lon},${lat};${toPoint[0]},${toPoint[1]}` + - `?geometries=geojson` + - `&access_token=${mapboxApiKey}`; - - console.log(url); - - let resp; - let data; - try { - resp = await fetch(url); - - if (resp.status !== 200) { - throw new Error('Routing generation failed'); - } - - data = await resp.json(); - // Handle the response data here... - } catch (err) { - alert('Something exceptional happened.'); - console.error(err); // Log the error for debugging purposes - return; - } - console.log(data); - - if (data.routes.length < 1) { - alert('Looks like there are no routes to the nearest park from where you are.'); - } - - const routeGeom = data.routes[0].geometry; - routeLayer.clearLayers(); - routeLayer.addData(routeGeom).addTo(map); - } - - // Call the async function - fetchData(); - - - idToPark(ID, addressPoint); - - currentLocationLayer.clearLayers(); - const currentLocationMarker = L.circleMarker([lat, lon], { - stroke: false, - fillColor: '#EA7A8F', - fillOpacity: 1, - radius: 8, - }).bringToFront(); - currentLocationLayer.addLayer(currentLocationMarker).addTo(map); - }); - - // define a function for getting park shape from park ID and set the chart - function idToPark(ID, addressPoint=null) { - phillyParkLayer.resetStyle(); // clear all the red boundaries - phillyParkLayer.eachLayer((layer) => { // .eachLayer is to get each object from this layer; this is because we change geojson object into a leaflet layer; if it is a geojson, we don't need this function - if (layer.feature.id == ID) { // still need feature, if not, it will be an array; the feature here is a leaflet attribute, which get each feature from geojson "features", not the geojson path - // specify the highlight color of zoomed in park - layer.setStyle({ - stroke: true, - color: '#EA7A8F', - dashArray: '5 6', - weight: 3, - }); - layer.bringToFront(); // this is because some of parks overlapped - - // set zoomin level - if (addressPoint != null) { - const featureCollection = turf.featureCollection([layer.feature, addressPoint]); - const zoomBuffer = turf.buffer(featureCollection, 0.25); // calculate buffer, 0.25km - const [minLon, minLat, maxLon, maxLat] =turf.bbox(zoomBuffer); // this is because turf use bottom left and top right points but leaflet use top left and bottom right points as bounding box input - map.flyToBounds([[minLat, minLon], [maxLat, maxLon]]); // .fitBounds will just show the final results, .flyToBound is fancy - } else { - const zoomBuffer = turf.buffer(layer.feature, 0.25); - const [minLon, minLat, maxLon, maxLat] =turf.bbox(zoomBuffer); - map.flyToBounds([[minLat, minLon], [maxLat, maxLon]]); - } - - - // updateSoilChart(layer.feature, leadSamples) - const parkBuffer = turf.buffer(layer.feature, 0.2); // calculate buffer, 0.2km - const parkLead = leadAnalysis(parkBuffer, leadSamples); // do the calculations - setLeadLevel(parkLead); // change the chart - } - }); - } - - - return map; -} - -export { - initializeMap, - cityLayer, - phillyParkLayer, - currentLocationLayer, - routeLayer, -}; diff --git a/examples/philly-park-lead-levels/js/park-input.js b/examples/philly-park-lead-levels/js/park-input.js deleted file mode 100644 index 6cae7a6..0000000 --- a/examples/philly-park-lead-levels/js/park-input.js +++ /dev/null @@ -1,62 +0,0 @@ -const parkEntry = document.querySelector('#entry'); -const parkChoiceList = document.querySelector(`#park-choices`); - -// if checkbox is checked, see input -function initializeParkEntry(parks, events) { - if (parkEntry.mycustomfunc) { // first need to remove all exsting event listener on the search box to avoid duplicates - parkEntry.removeEventListener('input', parkEntry.mycustomfunc); - } - parkEntry.mycustomfunc = (evt) => { - handleSearchboxInput(parks, events); // define customized attribute - }; - parkEntry.addEventListener('input', parkEntry.mycustomfunc); // need to have a customized attribute to remove this event listener later -} - -function handleSearchboxInput(parks, events) { - parkChoiceList.classList.remove('hidden'); // First remove the hidden style of ol - console.log('handling park inputs'); - const lowerCaseValue = parkEntry.value.toLowerCase(); - - let html = ''; - for (const feature of parks.features) { - if (lowerCaseValue != ``) { - if (feature.properties.ASSET_NAME.toLowerCase().includes(lowerCaseValue) || feature.properties.SITE_NAME.toLowerCase().includes(lowerCaseValue)) {// make it case insensitive - const lihtml = ` -\n", - " | PA Code | \n", - "NSC Code | \n", - "NCES Code | \n", - "AUN Code | \n", - "ULCS Code | \n", - "SRC School ID | \n", - "School Name (ULCS) | \n", - "Publication Name | \n", - "Publication Name Alpha List | \n", - "Abbreviated Name | \n", - "... | \n", - "Grade 3 | \n", - "Grade 4 | \n", - "Grade 5 | \n", - "Grade 6 | \n", - "Grade 7 | \n", - "Grade 8 | \n", - "Grade 9 | \n", - "Grade 10 | \n", - "Grade 11 | \n", - "Grade 12 | \n", - "
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | \n", - "3847.0 | \n", - "393345 | \n", - "4.218990e+11 | \n", - "126515001 | \n", - "1010 | \n", - "101 | \n", - "JOHN BARTRAM HIGH SCHOOL | \n", - "John Bartram High School | \n", - "Bartram, John High School | \n", - "Bartram | \n", - "... | \n", - "0 | \n", - "0 | \n", - "0 | \n", - "0 | \n", - "0 | \n", - "0 | \n", - "1 | \n", - "1 | \n", - "1 | \n", - "1 | \n", - "
1 | \n", - "3860.0 | \n", - "393555 | \n", - "4.218990e+11 | \n", - "126515001 | \n", - "1020 | \n", - "102 | \n", - "WEST PHILADELPHIA HIGH SCHOOL | \n", - "West Philadelphia High School | \n", - "West Philadelphia High School | \n", - "West Philadelphia | \n", - "... | \n", - "0 | \n", - "0 | \n", - "0 | \n", - "0 | \n", - "0 | \n", - "0 | \n", - "1 | \n", - "1 | \n", - "1 | \n", - "1 | \n", - "
2 | \n", - "7903.0 | \n", - "392779 | \n", - "4.218990e+11 | \n", - "126515001 | \n", - "1030 | \n", - "103 | \n", - "HIGH SCHOOL OF THE FUTURE | \n", - "High School of the Future | \n", - "High School of the Future | \n", - "HS of Future | \n", - "... | \n", - "0 | \n", - "0 | \n", - "0 | \n", - "0 | \n", - "0 | \n", - "0 | \n", - "1 | \n", - "1 | \n", - "1 | \n", - "1 | \n", - "
3 | \n", - "7780.0 | \n", - "393347 | \n", - "4.218990e+11 | \n", - "126515001 | \n", - "1050 | \n", - "105 | \n", - "PAUL ROBESON HIGH SCHOOL | \n", - "Paul Robeson High School for Human Services | \n", - "Robeson, Paul High School for Human Services | \n", - "Robeson | \n", - "... | \n", - "0 | \n", - "0 | \n", - "0 | \n", - "0 | \n", - "0 | \n", - "0 | \n", - "1 | \n", - "1 | \n", - "1 | \n", - "1 | \n", - "
4 | \n", - "7245.0 | \n", - "393944 | \n", - "4.218990e+11 | \n", - "126515001 | \n", - "1100 | \n", - "110 | \n", - "SAYRE HIGH SCHOOL | \n", - "William L. Sayre High School | \n", - "Sayre, William L. High School | \n", - "Sayre | \n", - "... | \n", - "0 | \n", - "0 | \n", - "0 | \n", - "0 | \n", - "0 | \n", - "0 | \n", - "1 | \n", - "1 | \n", - "1 | \n", - "1 | \n", - "
5 rows × 56 columns
\n", - "\n", - " | Publication Name | \n", - "School Name (ULCS) | \n", - "Upper Publication Name | \n", - "
---|---|---|---|
3 | \n", - "Paul Robeson High School for Human Services | \n", - "PAUL ROBESON HIGH SCHOOL | \n", - "PAUL ROBESON HIGH SCHOOL FOR HUMAN SERVICES | \n", - "
4 | \n", - "William L. Sayre High School | \n", - "SAYRE HIGH SCHOOL | \n", - "WILLIAM L. SAYRE HIGH SCHOOL | \n", - "
5 | \n", - "William T. Tilden School | \n", - "TILDEN MIDDLE SCHOOL | \n", - "WILLIAM T. TILDEN SCHOOL | \n", - "
7 | \n", - "John Barry School | \n", - "JOHN BARRY ELEMENTARY SCHOOL | \n", - "JOHN BARRY SCHOOL | \n", - "
11 | \n", - "Sadie Alexander School | \n", - "PENN ALEXANDER SCHOOL | \n", - "SADIE ALEXANDER SCHOOL | \n", - "
... | \n", - "... | \n", - "... | \n", - "... | \n", - "
314 | \n", - "Philadelphia Learning Academy South | \n", - "PHILA LEARNING ACADEMY-SOUTH | \n", - "PHILADELPHIA LEARNING ACADEMY SOUTH | \n", - "
315 | \n", - "Philadelphia Learning Academy North | \n", - "PHILA LEARNING ACADEMY-NORTH | \n", - "PHILADELPHIA LEARNING ACADEMY NORTH | \n", - "
319 | \n", - "John Hancock Demonstration School | \n", - "HANCOCK DEMONSTRATION SCHOOL | \n", - "JOHN HANCOCK DEMONSTRATION SCHOOL | \n", - "
321 | \n", - "One Bright Ray Mansion | \n", - "ONE BRIGHT RAY MANSION ACCEL | \n", - "ONE BRIGHT RAY MANSION | \n", - "
323 | \n", - "One Bright Ray - Simpson Campus | \n", - "ONE BRIGHT RAY-SIMPSON CAMPUS | \n", - "ONE BRIGHT RAY - SIMPSON CAMPUS | \n", - "
155 rows × 3 columns
\n", - "dots represent submarine volcanoes
+© 2024 Emily Zhou. All rights reserved.
+Data Source: + NOAA + USGS + World Atlas +
+Published: Oct 2024
++ Welcome to the Volcano Explorer Dashboard! + At the heart of the dashboard, you'll find an interactive 3D globe displaying the spatial distribution of volcanoes worldwide. + Two donut charts provide a breakdown of volcanoes by continent and by type, + giving insights into regional distribution and geological classifications. + Additionally, a lollipop chart highlights the impact of volcanoes by illustrating the number of deaths and the Volcanic Explosivity Index (VEI) + across different eruption types. You can also browse a timeline of major historical eruptions, filtered by year and country, + to explore significant volcanic events and their global impact.
+ +Name: ${eruptionInfo.Name}
+Volcano Type: ${eruptionInfo.Type}
+Deaths: ${eruptionInfo.Deaths}
+