ํ‹ฐ์Šคํ† ๋ฆฌ ๋ทฐ

์ง€์˜ค๋ฉ”ํŠธ๋ฆฌ๋ฅผ ๊ฐ€์ง€๊ณ  ์žˆ๋Š” ํ…Œ์ด๋ธ”์„ ์กฐํšŒํ•  ๋•Œ geojson์œผ๋กœ ๊ฐ€์ ธ์™€์•ผ ํ•  ๊ฒฝ์šฐ์— 

 

๊ธฐ๋ณธ select๋ฌธ์œผ๋กœ ์กฐํšŒ๋ฅผ ํ•œ ๋’ค 

 

์ž๋ฐ”๋‚˜ ์ž๋ฐ”์Šคํฌ๋ฆฝํŠธ๋กœ GEOJSON ํฌ๋งทํ˜•ํƒœ๋กœ ๋…ธ๊ฐ€๋‹ค ์ˆ˜์ค€์˜ ๋ฐฉ๋ฒ•์„ ์‚ฌ์šฉ ํ–ˆ์—ˆ๋‹ค...

 

ํ—Œ๋ฐ .. ์ฟผ๋ฆฌ๋กœ ์‰ฝ๊ฒŒ ๊ฐ€์ ธ์˜ฌ ์ˆ˜ ์žˆ๋Š” ๋ฐฉ๋ฒ•์ด ์žˆ์—ˆ๋‹ค๋‹ˆ ...

 

 

SQL - ์ „์ฒด Feature ๊ฒฐ๊ณผ ํฌ๋งท 

SELECT row_to_json(fc)
 FROM ( SELECT 'FeatureCollection' As type, 'geojson' as name  , '{"type":"name", "properties":{"name":"urn:ogc:def:crs:EPSG::5179"}}'::json as crs , array_to_json(array_agg(f)) As features
 FROM  (SELECT 'Feature' As type
	    	, ST_AsGeoJSON(lg.the_geom)::json As geometry
	    	, row_to_json((SELECT l FROM (SELECT "CITY_CODE") As l)) As properties
	   		FROM grid_base_data.jeju_bus As lg   
	   		) As f ,
	   	(select 'src' as type) as c
   		)  As fc;

 

SQL - ์„ ํƒ ์ง€์—ญ์— ์†ํ•œ Feature ๊ฒฐ๊ณผ ํฌ๋งท

SELECT row_to_json(fc)
 FROM ( SELECT 'FeatureCollection' As type, 'geojson' as name  , '{"type":"name", "properties":{"name":"urn:ogc:def:crs:EPSG::5179"}}'::json as crs , array_to_json(array_agg(f)) As features
 FROM  (SELECT 'Feature' As type
	    	, ST_AsGeoJSON(lg.the_geom)::json As geometry
	    	, row_to_json((SELECT l FROM (SELECT "CITY_CODE") As l)) As properties
	   		FROM grid_base_data.jeju_bus As lg   
	   		where st_contains((select the_geom from grid_base_data.tb_umd where "EMD_CD"= '50110104'),st_transform(lg.the_geom,5179))) As f ,
	   	(select 'src' as type) as c
   		)  As fc;

 

์ถœ๋ ฅ์˜ˆ์‹œ

{"type":"FeatureCollection","name":"geojson","crs":{"type":"name", "properties":{"name":"urn:ogc:def:crs:EPSG::5179"}},"features":[{"type":"Feature","geometry":{"type":"Point","coordinates":[166430.962821643,-25517.3951851274]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166396.714596445,-25559.7560739559]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165868.16788725,-25709.5308309605]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165813.873014896,-25701.9089134653]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165084.708245795,-25770.9660789238]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165093.253744849,-25752.474466198]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164753.368833893,-22228.450078467]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164960.547315016,-22452.799813672]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164959.097042694,-22441.7033229868]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165157.666380492,-22472.0316080618]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165141.971957924,-22510.794659802]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165212.294321853,-22823.4873798378]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165212.373792834,-22801.3051702062]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165482.119718828,-22909.4092402788]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165488.156850932,-22966.7724171009]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165702.565661049,-23368.7020433088]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165760.855386397,-23507.7699165247]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165926.915940946,-23809.8133902285]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165935.674039277,-23889.1463364331]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171517.954814926,-24539.4276700796]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171468.413409641,-24531.9621125227]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170930.908287152,-24514.6188855468]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170802.926957959,-24474.9723488345]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162212.311007885,-22185.6186066447]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162254.981031871,-22158.9436395522]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162713.918832399,-21716.1778237364]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163515.248674511,-21576.0341623632]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163543.884860941,-21589.3403923179]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164722.366342213,-22224.5664427721]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164146.7241882,-21725.2357715745]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164177.684355339,-21740.1014779896]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160203.735932365,-21399.4255679685]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161205.437954162,-21741.9878560057]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161255.208277023,-21733.4244749414]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161608.754151978,-21782.7435507756]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161624.055294866,-21752.5247576941]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162075.194285923,-23094.5701349981]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162043.192646076,-23083.6865708831]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162092.876811687,-22812.3658575261]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162158.88618752,-22749.181112215]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162151.771636943,-22614.837831281]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162176.963545489,-22508.3486494136]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162188.868249384,-22249.856877823]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163321.98169951,-22810.8747944765]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163221.958593537,-22904.3286689623]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163255.575862959,-22980.7638804549]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163309.344156098,-23123.2681642693]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163423.226657348,-23406.5249892769]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163435.595145548,-23412.1171905065]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163385.20615708,-23607.799041344]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163372.632208015,-23631.9305817719]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163328.063722987,-23938.5466087978]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163340.321089181,-23973.7521494268]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163047.324428772,-24392.4460809199]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163010.979194402,-24395.4133348046]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162660.763166924,-24544.1384723341]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162597.640376572,-24581.2732337784]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162380.956134313,-24720.6302550555]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162333.590938805,-24729.9852570809]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162127.726026152,-24912.3017948777]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162074.075637302,-24980.0819748907]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161774.861347486,-25252.4201424217]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161619.516043776,-25259.2390977069]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159700.118321941,-24685.0381869467]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159713.397506525,-24673.1146431544]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159688.068042039,-25389.0634240324]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159705.844667504,-25393.7954686541]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159739.6558635,-25486.4368786816]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159794.284811827,-25479.5645567158]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160226.513533894,-25504.6343455837]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160230.664142054,-25514.9662137305]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161100.56344838,-25347.7916668862]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161097.455086218,-25332.9169313065]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160555.194263944,-26571.1784383708]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160548.793472454,-26609.9718591463]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160772.208580659,-26274.3670801223]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160762.927647954,-26265.12389044]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161059.861307701,-25879.1219375802]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161001.318503013,-25932.2362203142]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161302.131388421,-25456.2923986294]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161275.564288953,-25459.4030607753]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161584.655690729,-23778.0839256215]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161567.686639707,-23852.3284045912]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161602.348737921,-23991.9937785082]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161706.791364982,-24604.0897116773]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161693.280842862,-24675.3533123885]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161706.66564595,-24825.1381527727]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161701.402382626,-24978.6204957771]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161475.266752896,-25169.8274127493]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171320.311713586,-15139.4809993054]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171867.090650312,-16175.3473332377]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173010.043368275,-18289.1529420391]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173145.950783716,-18634.023867999]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173214.467566154,-18738.8036542966]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173283.487281098,-19033.2440576875]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173314.32405566,-20109.6192901901]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173277.915196332,-20379.3677236393]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173375.694204062,-20549.4427406092]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173763.031939638,-21124.3558842127]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173935.097816323,-21867.3732627693]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173907.38055388,-23516.2193848368]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173338.762182923,-24196.7790733467]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172843.244231844,-24361.99472611]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172584.383153776,-24447.8891374219]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172227.213803426,-24506.6555283134]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172565.865137807,-24440.2948753334]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172783.429525679,-24363.60185627]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173282.957228024,-24197.4020718323]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173896.481604726,-23516.1900842843]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173923.24996296,-21874.5506795719]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173748.95507309,-21232.7894584673]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173362.235154985,-20567.2625917184]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173244.410969773,-20371.9551591476]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173292.784434401,-20119.9857111313]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173031.374116672,-18319.0477245372]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171225.896287259,-14995.7903627568]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170600.049120346,-12890.5513715463]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158949.143994835,-27035.0232050703]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163649.1933144,-17869.817837059]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164598.863623563,-12334.2967061686]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[190342.402117746,-9863.7168981845]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168826.505365094,-24431.1204734124]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168844.495333981,-24428.1835729977]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178276.656832505,-18824.3429747681]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[189338.731571398,-5548.26223663858]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[189014.088817378,-5508.96652465971]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[189025.052478734,-5515.96656429087]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187382.857623446,-6280.80759850971]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165765.299377929,-23409.8500284603]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165772.154780826,-23420.6326846417]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[192141.967413908,-6720.20624088525]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[192132.184052456,-6743.71175570186]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167802.112953113,-23044.0411798255]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181121.149792901,-18476.2749133323]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181105.148113425,-18469.9217484027]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129677.520747425,-24592.085505304]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[185339.216846865,-13538.4761062482]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140494.888883378,-25945.6155831711]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140488.216989772,-25969.9763948695]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159702.941861807,-26723.7382346103]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159696.499549377,-26749.2214455311]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159001.799901722,-27520.5991192947]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147520.1221074,-28327.9142920591]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147514.048535087,-28313.4626463691]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[148742.816867117,-27984.2734209496]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[148696.372827786,-27972.2717666435]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[192798.764018144,-4988.48252344131]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[192825.799271598,-4891.45380532584]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[188196.654126376,-6381.43945241917]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[188193.038462161,-6372.56197563786]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[185507.147895793,-12819.3537777908]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[185493.66026926,-12816.2279871499]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172294.023434902,-16841.277540274]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172367.11077861,-17000.4240065385]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180129.571065992,-10734.0607463256]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180093.395926707,-10727.3314913146]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181121.088725315,-11450.5493126753]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181149.45709704,-11454.7084781114]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[182841.339891708,-18381.5413444769]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[186844.573866806,-11240.7698753636]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170649.418360844,-11248.6263529727]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170640.509308904,-11179.9437385267]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[182790.999149926,-18365.480746451]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134512.223333754,-27060.7219962778]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137505.600003489,-26851.9175920965]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137494.576843044,-26319.3337108864]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137461.318674025,-26274.3094263328]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137489.702595733,-26831.406729852]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135744.251897384,-28644.5161722277]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160216.751129872,-21382.5091626666]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159912.542804636,-20870.5008748805]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162863.857279024,-21646.8774021918]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133751.275639032,-21005.0794122653]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133721.039003906,-21000.2144912045]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130606.30340021,-29881.3761983621]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130591.683017635,-29879.16458398]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130187.120420539,-30265.3753443095]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130200.715640898,-30579.9263279705]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132722.424591607,-24429.2839869021]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161456.667904804,-25160.8806639214]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158929.796460337,-25658.6242572489]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159034.013239727,-25625.7900937693]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159504.507564159,-24541.1472638088]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159498.860554134,-24487.7745606141]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152047.210288594,-29032.0594513479]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152164.319933954,-28986.4955793507]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152428.584702998,-28945.3107136013]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152465.333201929,-28921.3110845438]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152825.333401344,-28819.6910445722]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152843.797602181,-28798.5960395288]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153156.69489957,-28721.4692568828]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153183.129371677,-28729.0276391637]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153613.117513009,-28782.7719598467]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153630.226115647,-28791.5047186858]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145195.248518772,-26932.8766117962]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159002.211469821,-27511.3951059488]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159250.792376423,-27459.4233485879]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159532.691685464,-27395.1617399039]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159390.83345817,-27198.5879918289]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159297.852525936,-27148.2886669307]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158975.685344819,-26928.7698942607]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158828.898443911,-26029.755781643]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159071.933212266,-27286.9797011752]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159112.071531878,-27670.4624979966]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159092.623219533,-27685.5757624166]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159261.203478792,-27844.1117192863]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159260.614270007,-27829.0251477048]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159440.587584676,-27759.7913237506]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159734.544304978,-27508.6865064605]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160340.240950484,-26953.5069621518]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163071.048787334,-28228.1020729656]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163063.383565436,-28209.5506883106]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160584.138185717,-27477.0069251041]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159763.449186271,-27505.145996007]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160088.669082953,-26717.1213751725]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160206.694527319,-26704.6282694682]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159933.956659819,-26225.0312589393]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159873.249715249,-26213.4678245136]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156523.127300135,-26471.6905889269]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156519.08724549,-26458.2520288606]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156219.729633849,-26406.7762005778]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156220.786910621,-26420.3123784856]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155585.547876041,-26705.9176159748]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155598.343448948,-26944.5505566406]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155585.793492168,-26937.838463045]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155586.489836212,-27499.7281290374]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155600.505235795,-27491.806351489]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140862.806329228,-28455.6751555004]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140847.302125571,-28460.9049268484]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140916.951281433,-28825.6868508188]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140917.996778007,-28791.642001258]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141504.139119421,-28677.2778261211]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141515.132685728,-28693.6485013535]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142525.338674261,-28093.2889824031]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142528.162637239,-28072.7862537446]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142889.694708538,-27676.283432265]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142877.760385191,-27677.1007155813]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143177.595739783,-27547.199158308]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143180.165105777,-27538.1190783513]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143305.522653683,-27409.0789338683]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143297.428382361,-27406.7025433525]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143427.997526794,-27182.1928679297]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143409.216685287,-27206.5960138582]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143799.164583423,-26751.2183891902]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143877.563889292,-26698.2096446726]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144418.773853785,-26329.4169903827]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144432.224494029,-26307.5325567692]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160503.481726895,-27533.688733142]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160495.689557958,-27524.7841004867]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159334.634638767,-28381.3462187351]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158877.857771652,-27673.3572357955]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145261.457992859,-27157.076359372]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144795.51391193,-27152.5583095328]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144747.559309101,-27424.4723471903]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144546.365238816,-27715.8116024379]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159670.960169625,-25560.0200782882]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159647.154146295,-25840.5307183693]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160035.408484348,-26933.6258167257]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158861.484620684,-27115.5082083066]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158739.745220032,-27298.8858387917]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146303.844902778,-27914.4447125285]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160341.325343536,-25316.9953939361]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146957.711735733,-27971.2695014531]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146976.179418844,-27472.6972137236]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146966.284560406,-27475.6379901125]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130219.130603564,-30547.1154856224]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133386.617634615,-21931.8641275391]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133342.978495583,-21952.1956968892]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138400.898533777,-20443.8295010918]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184869.224182517,-4854.7239227643]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184885.043993461,-4845.65385617333]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158935.192916596,-26896.1015809833]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173891.23513429,-23735.114894328]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173928.975723564,-23834.5928200844]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173619.89561144,-23897.5319289202]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173609.299520191,-23888.7411412548]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173627.37511626,-24093.4215569571]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173631.611635232,-24111.4006861412]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[183576.086037349,-7015.30594047188]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[183651.247101972,-7002.78957391274]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130228.330372781,-30681.5034652626]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147325.094819421,-28422.0255362885]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147334.360488509,-28432.1689034888]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[182989.05710272,-6935.53977509472]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[182966.529865665,-6948.36594448856]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[183324.504664194,-18461.798231386]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[183306.063468663,-18465.5374328292]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168460.473847824,-23883.587238151]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178847.179130365,-15522.4273707315]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178542.388874095,-14960.2076771411]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160122.886421752,-27121.8707095446]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155961.049560296,-26756.6487648677]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155437.135639695,-27227.0858812298]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155486.433699499,-27247.6087131748]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158568.775563437,132.220976619341]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154187.711606016,-27324.3208363465]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139490.505957633,-22496.2219065143]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134856.96642261,-28966.9354824513]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134887.476901944,-28976.4566096379]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138918.737473525,-26531.2468862948]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138801.127922707,-26531.9496857206]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139519.484298209,-22509.8233444634]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184894.510920886,-19010.7244438045]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184909.410818417,-18949.5247190716]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[183782.989859218,-17050.6745811687]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[183778.187972954,-16916.463537415]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181498.741437384,-13047.4216215542]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181509.077493719,-13043.670381279]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191091.015906296,-5573.89148446644]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191148.09970377,-5580.70992042503]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[189116.016145887,-5983.4577145201]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[189141.007821677,-6002.23025574017]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[185121.794091818,-18948.9662389151]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191797.94483631,-5576.62820156041]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191817.388438516,-5564.11160876957]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158935.78435493,-27020.8808954535]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134456.959465167,-27046.7070360048]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150630.886938029,-28386.8920943539]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150617.576276008,-28401.7979527905]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[189602.927518898,-5856.66796069586]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[189596.861419996,-5877.18032046081]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187191.326951892,-6332.90575681982]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187198.381796215,-6342.12092385313]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[186174.183134876,-5518.61655049166]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[186182.93885784,-5507.7596133427]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141157.488208666,-28816.9393136569]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145386.453324787,-26489.0705654308]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145375.197543633,-26468.9316897214]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145272.253620969,-26033.3428868609]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145282.277562867,-26023.8605589475]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191652.336297862,-5470.69175056095]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191673.427072433,-5488.67796594067]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129847.326327314,-29770.5671059031]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141020.541610979,-22689.309593835]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141018.262733515,-22727.118427731]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133305.703234164,-22456.6207910585]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133222.70578458,-22537.797901198]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133016.564227914,-22969.4062187474]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133079.579725862,-22936.3428975589]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132713.254852719,-23237.0655215249]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132635.63416612,-23226.3232598031]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[174063.495385464,-22614.1518426103]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[174036.161834411,-22629.8281790733]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145188.133310692,-26988.2941764789]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140694.171539573,-23416.1580240891]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140691.475017816,-23400.0586205997]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[123072.129826953,-23728.5730298972]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[123062.215974081,-23721.6174384883]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172003.294186827,-24522.9820714669]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171993.29556978,-24501.1037058574]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158837.262021536,-25837.024556705]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132063.666483388,-29734.5895766071]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157531.923286318,-467.432007749157]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158525.489979721,136.732952372578]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136588.948555885,-3296.06065432518]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146822.913130812,-4965.41906348895]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146836.907436799,-4956.84447753394]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156845.596717469,1669.55946904072]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156869.848986829,1649.15289226832]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156334.687752283,1307.05348283437]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156327.519897302,1263.1625412982]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152235.412434063,-2102.86340326356]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152280.019143056,-2123.71493539069]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152624.862309176,-1993.08985623321]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152646.546375656,-2006.61740825354]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155376.205064836,-3518.68030983355]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155321.035929923,-3527.52022194292]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155923.311853717,-3537.16703969473]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155930.999681733,-3563.71132791392]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156564.643280727,-3627.2560401854]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156572.316466659,-3657.45997952489]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157139.920182178,-4002.84166815906]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157147.549794603,-4022.39690071606]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156127.995557971,2093.40203744709]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156107.080140288,2029.94136706321]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152802.175636189,1207.13774536038]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152813.048072588,1226.27336735436]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152881.816100205,1246.78944711277]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145466.426581919,-1459.57513767242]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145477.306559895,-1442.22230457363]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153902.389718998,1604.55458171305]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154774.8941447,441.991090240481]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157203.252641435,818.223816941318]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157207.095030376,783.71139521501]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157562.675643942,1113.00549542985]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157567.719697169,1097.89849258674]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157522.668781581,1501.72605952289]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157539.886774061,1529.26862540928]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157498.960817349,1730.09910738451]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157523.273968945,1723.22587272851]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154433.363216442,1988.79988206591]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154451.763592225,1989.60019052302]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154283.07724673,2272.46456604789]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154243.677396695,2310.25298745965]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156630.934978309,1374.26232757565]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156775.774655271,1100.86472626223]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155133.366041413,-3241.92494699941]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155156.521919019,-3240.14700606948]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155871.193959617,1607.53466903878]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155871.208109952,1590.34233033669]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156121.057398341,1712.54156986467]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131758.81082216,-9457.99671991303]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166745.772693036,4901.21224383067]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166639.771007771,4840.90785906039]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164494.500082399,4046.43597431807]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164510.831777123,4092.18441951851]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[175470.067990324,-6649.16606629681]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[175442.93085667,-6642.66404278565]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155200.798864943,-113.256256914174]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155200.522266316,-132.7764919459]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169068.705954501,1478.90490706952]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169076.797633285,1481.4299804825]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154293.162055764,1578.29042969894]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154257.248806582,1568.25643326499]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154022.817319532,2151.36067160894]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154044.824937881,2187.74775734957]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169082.963583315,4556.78314101015]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154762.157849206,-3085.35104992794]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133205.604639454,-13242.3941490602]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133202.505114073,-13260.0091136551]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132016.410231767,-9152.78036162717]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132003.752147428,-9180.19987873925]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131674.332538157,-11923.400671951]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156653.802872924,-48.6916863446822]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156527.457523156,-101.36299736402]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156619.232071558,-28.1273145513842]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156785.351382836,-431.171199685836]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161604.604328706,2749.26482349291]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161623.202852715,2753.73826548195]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158576.731320816,-1022.23848489748]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158572.645377277,-978.186870642181]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156474.975992444,1611.44245636405]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156489.317508853,1639.21802655089]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137501.813158812,-6094.11080717522]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154449.375387433,-28643.4215460976]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155602.587455223,-27668.6114642111]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159599.455667547,-27677.8225533005]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159410.673152045,-27848.7293099134]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159390.049908674,-28056.0496079156]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159348.309260688,-28231.4497356961]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159037.904091646,-28219.9440021332]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159053.111026658,-28216.347895307]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159281.797037667,-28379.3506640582]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159338.104573002,-28220.0940257871]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159398.314810623,-27862.2090684725]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159567.379755658,-27681.7930552815]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159077.551164051,-27457.9197105221]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159027.90718767,-27075.0620592039]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158741.86133648,-25680.0110897056]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147075.023255055,-26468.9009316373]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147012.613450832,-26464.235478673]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146595.679580329,-26263.4173385077]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146577.257501037,-26275.1840909232]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146300.185589505,-26669.2926565128]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146413.068408757,-26477.5883472885]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146431.673505967,-26483.4584091519]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146309.494409287,-26671.118679764]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146217.064627791,-26820.3435072381]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146223.173931945,-26827.8085915892]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145831.991315096,-26788.7036179311]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146228.375365795,-26982.6748008977]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146190.593325931,-26972.9272122765]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146517.293208797,-27012.4397532592]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146570.182151935,-27003.524405878]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146865.273790115,-27029.3199695976]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146806.501327135,-27040.5339644047]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147211.242916203,-27073.572786439]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147201.618579402,-27061.0980978033]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147601.781995027,-27010.1333183362]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147599.270065253,-27026.6460917812]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159581.296414926,-27338.0220297361]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159385.139884703,-27446.2320455874]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158578.586964711,-27546.312647262]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155578.035799475,-26718.4165150364]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155468.215777274,-26422.9956724499]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155456.484911242,-26420.7236818665]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155898.00471805,-26418.2993897351]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155900.858035327,-26405.5572969599]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157065.857340203,-26656.886561797]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157072.153105377,-26645.0466529983]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164232.276535201,-25759.1046628248]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158733.921251291,-27287.7698630088]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163887.596397519,-25688.9537754274]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164689.703600613,-25753.0132647862]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166470.021599008,-24944.8918259997]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166443.889472593,-24957.8892259642]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163979.713974739,-21553.1462269083]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163968.682423718,-21564.3074801309]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158952.819002839,-27577.5125701458]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159680.296017962,-26297.0742002304]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158878.688018455,-27124.2321458489]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155452.96859255,-27534.4989839077]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159649.648714784,-26990.9276114625]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159630.934085025,-26986.9680102366]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161769.00985666,-23471.9153840443]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161758.403422168,-23539.530472417]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159697.275943773,-27393.9595325402]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159771.784644939,-26233.5674149699]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159615.487060869,-25859.6980557808]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159651.107370795,-25584.0057831621]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154696.316466881,-27454.1420671149]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144962.074369444,-27148.5107139496]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144934.19305318,-27134.9322059586]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144649.815307854,-27453.8639948521]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144708.905301667,-27190.8869086355]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144546.924372158,-26080.8102293372]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144531.38406365,-26077.0614020838]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145160.040948492,-25871.6615691761]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145161.4692679,-25882.7611709003]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158030.106109031,-25717.5586668812]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158117.379760074,-25725.3662040434]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158755.393034199,-27608.6203878835]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159308.312527462,-28368.3703384286]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157713.041318277,-26763.3147917934]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157656.850323683,-26698.8517045419]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158379.248708965,-28024.271892565]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160326.453572938,-23026.5820603473]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160349.877627976,-23016.0300524726]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160921.225423966,-27591.7193920162]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131983.164543627,-29728.5927770848]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159365.048808941,-25541.4437639045]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159358.811694353,-25562.3802264059]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133615.468857893,-20979.527958093]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145192.509179842,-26939.4051830728]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154170.691855088,-27297.177786196]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159714.633642496,-26263.3881453752]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155667.257494807,-26402.7205978677]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155658.817463579,-26414.4389359491]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158422.741666917,-27006.7227385051]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159659.413216285,-26591.4607918509]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159675.778178366,-26600.0689401763]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154173.089943924,-27322.2555285966]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[183452.81839127,-15459.1980409399]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[183462.007717152,-15419.5073237458]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147005.133652853,-27769.1083964952]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146995.294522008,-27744.653557697]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142545.066956336,-25573.6181534022]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168560.631777394,-24484.05581088]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139072.980194417,-19531.3347956228]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139075.838669244,-19565.5154491932]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139791.608158159,-18195.2666430003]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179102.529280837,-20465.6530417131]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[188204.534672762,-10579.1621530795]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171641.626584339,-20348.6567873849]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171684.367544658,-20349.6689624916]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137827.084376624,-25559.1309511658]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137823.145560311,-25461.0549549614]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136402.92795814,-22665.7272273679]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136415.767539398,-22682.3380458897]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172908.8109304,-22499.6420397618]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172895.116942711,-22500.269273403]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166288.68751311,-24469.560948869]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166335.279286846,-24574.3125668342]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133950.255417218,-31320.8173621392]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133949.256888697,-31289.3101008598]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133737.90923238,-31725.3329930888]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[192669.577123438,-6630.34029154899]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[192711.715937024,-6611.84991995606]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[192414.898506961,-6365.83719616686]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[192468.732699109,-6373.4216342438]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153717.110749932,-28768.7373569615]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153778.669465837,-28779.5666394684]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149674.102564123,-27998.007040488]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149686.447497689,-28007.8313218959]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132320.624385061,-27020.6588148734]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132299.100421221,-27006.6442981981]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160400.062982132,-26725.9364178297]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178846.111711148,-21127.0155161066]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[186574.56563847,-13797.4770529141]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[186601.099638813,-13788.8627724294]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172681.765133659,-17560.2043833082]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172760.262446247,-17653.7027273763]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163557.338017773,-21975.2567838508]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163569.495992798,-21986.837351155]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163244.424131631,-22899.9772153329]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161240.811408525,-23193.6488678213]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161202.068125051,-23214.9003902165]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163444.460511175,-22492.3515781508]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172015.38303069,-21138.3265737389]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171999.731302596,-21140.277824974]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178955.794390161,-15953.0032168119]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178972.448594189,-15956.3667784612]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137827.252299042,-24454.5066970793]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137849.642364153,-24435.3502344666]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179195.209130484,-16511.1864912302]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179200.725988873,-16499.6635018334]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180185.188999709,-18054.4937541498]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180200.831737152,-18053.6384569787]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[185350.44987402,-13310.7907142883]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[185690.990122149,-13527.4687571235]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142312.481989641,-20804.9373272871]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142302.368531161,-20814.1942543193]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158441.482110418,-26982.7347524061]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187755.084787239,-12433.276235097]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187734.503181946,-12447.6686669426]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[185283.944642543,-16775.7957170008]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[185274.623994457,-16783.54533483]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159643.309654995,-27260.9734593879]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159657.653149652,-27262.9184734171]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159389.420837292,-28005.8036289476]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139345.860771591,-20450.2229055791]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139315.603816126,-20433.6180067863]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160430.701275794,-26707.9823874135]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135086.407493202,-29561.9860846594]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135117.548069343,-29561.195335304]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135467.440092703,-29245.7423534786]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135467.467683584,-29199.3791525408]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160855.272164717,-27584.5776492832]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137500.035295631,-6110.18277415022]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[186997.703609301,2450.39765288134]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187072.92665453,2429.00050178671]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172636.739870302,2208.3524435974]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172650.228378175,2116.2541235236]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157628.912224787,-3077.2933036504]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177319.849878228,-5666.33619977126]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177315.122409205,-5660.11390425428]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128129.331784204,-16930.2439237212]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128271.484984174,-16440.9139404912]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128198.662393599,-15614.2332501921]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128210.68075477,-15612.8802861311]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159243.133005171,608.618061951536]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159288.286463515,606.763396550843]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156915.226284883,306.40298126213]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156940.530890541,312.723088321975]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161098.58753475,2411.44601105124]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160541.066337518,-4737.7490268526]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160540.28622489,-4678.40572378068]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142194.482205846,-3089.01265125838]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142207.772879402,-3089.53593265236]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147468.097064409,-5206.20518729428]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154439.772622203,2165.24045790825]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154450.73527658,2165.07768419228]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145114.996301132,-4171.88684507878]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145136.951182408,-4169.57142669067]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132879.168842767,-13224.3866607877]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132879.244272618,-13240.3597315413]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167921.676947348,-7714.440501448]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167926.003115729,-7727.98644648714]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160121.510438134,-5740.03700365784]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160138.528313491,-5739.66361323465]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156245.493320099,-1925.89840640739]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156262.878026825,-1925.20084653364]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191053.217787374,-137.763924907893]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191010.722382185,-166.783656451269]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157588.635425184,-1983.69722721312]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179492.789551681,1945.6186733974]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179509.965574642,1939.92540435819]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156883.119543747,690.543122929172]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156906.811401297,668.919120575767]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158228.679370326,-569.636753446073]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158235.731622126,-550.700481696869]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160082.012077599,-4206.23647568544]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160097.01921871,-4174.35466048546]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155041.827885607,-962.367370181484]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155064.492438448,-965.135058590793]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157342.66232331,-267.610572548991]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157312.130375368,-194.935442046728]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151366.970023686,-1972.18794907635]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151623.267039387,-1817.63695434469]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145066.342186878,-2364.18177822436]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145067.335733676,-2385.59486879053]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156433.751369941,1864.52146519261]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150102.863294553,-3350.98935199867]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150144.663613732,-3375.49647501903]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131915.594294527,-14640.3286935823]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131941.596680216,-14635.519936663]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132147.18941242,-14371.8618688738]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132175.575163295,-14358.86107773]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178725.95254146,952.37720135937]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178757.664192221,1006.43359147309]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181692.928965045,5486.80082167371]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181775.412472608,5492.52245214832]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[182820.27048462,5140.21499619633]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[182892.325107607,5077.64109252201]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168230.335824306,4489.46251667774]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168303.273272465,4524.38241219596]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191480.075023939,9.36300678527914]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191481.544908385,-9.71549812844023]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179731.103789456,-3526.40915019118]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179757.459105307,-3503.94900126895]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152138.254968083,-4112.65597519634]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155561.242053591,2436.18625852856]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153710.179444922,2191.34694444202]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151164.09855289,-239.284356997523]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150696.521847631,-1461.77650105412]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178780.47251035,983.978463874082]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158509.351678991,-6470.06019827031]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158519.303146992,-6469.77019584912]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140639.551982996,-15033.0070881754]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140767.00329974,-14861.1982122154]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131770.950691085,-9464.62672024826]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136826.443343404,-16621.5508263298]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129629.403053137,-19119.9463965117]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129633.518493738,-19130.2918311195]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142485.765440215,-5628.26042689377]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142497.546108897,-5633.1001027961]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143292.63243764,-4993.02730306622]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162816.120837013,-21635.6033606141]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158946.6112811,-27988.5284357279]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144723.587643374,-27280.368103264]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163283.392378707,-28441.7455932731]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159357.387057287,-26817.2415131492]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159411.192804466,-26786.1888432639]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160968.301965493,-22554.0310258766]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160037.288891939,-26408.0187359453]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160054.245075719,-26386.1277037909]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160042.585565011,-26593.04276276]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160051.820123923,-26613.4886224578]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140002.643757321,-26029.2175381765]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139668.674213015,-26239.002649721]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140011.032389831,-26059.1058439972]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140864.441221906,-25855.8087928419]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140971.608581126,-25854.5742082808]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141289.484525487,-25587.0823845306]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141320.747537281,-25517.39374748]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153471.182478676,-25914.0907321925]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153470.167906458,-25931.3884347898]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139759.978072481,-23384.7902404761]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139766.31092583,-23370.0775203495]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140767.780082778,-24637.1349596117]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145780.996041867,-26742.167903793]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146947.88258976,-27004.8149254194]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160479.806268186,-26777.8351295068]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159714.010013931,-27403.7891545331]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139577.425089601,-26272.1549556969]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177182.242949727,-18672.0964756138]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181141.431137433,-18675.51146376]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181128.750911436,-18684.5815038328]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181045.186584422,-18851.4509745441]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180547.574883194,-19195.2880757612]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180492.194815674,-19323.2794054761]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177197.946907653,-15285.544309778]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177888.001843086,-16060.31474198]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177897.123344786,-16060.5573993074]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178524.854007525,-18460.1077868358]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178168.172658881,-18871.2365876403]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132532.718223708,-27171.427616943]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129648.003790412,-24563.6984370152]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140269.030592991,-20062.855088734]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132526.89467487,-27298.943249515]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130539.906833397,-22301.4759507814]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130142.403460783,-22564.2786083556]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[123126.706843341,-23954.8408794292]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[123127.761661959,-23962.8355643829]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[125697.150495514,-24771.347372436]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[125703.85969965,-24759.0864526189]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[127587.640286559,-23465.2156022399]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128563.599563248,-24329.8482356635]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128800.618112917,-26214.8906546581]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128802.147863116,-26222.3334523261]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133750.397102625,-31712.5514857505]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140424.082983309,-23951.3437812835]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140430.682488533,-23969.0200081053]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140101.786304132,-27029.0753461784]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140111.999337098,-26989.8737979126]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142382.66299892,-18365.0665808229]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142165.500293637,-20792.0838758274]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142183.461912169,-20809.9375662279]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169405.715232208,-23244.2096848122]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169380.790375294,-23261.1006317615]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177166.733320216,-18655.4231675206]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177235.434273349,-18502.0828890913]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179108.804200452,-20449.1407783583]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179147.399060113,-20646.3133071761]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179159.549396557,-20669.1871661181]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180345.234833126,-19520.2937566236]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184731.888189832,-15799.9159098238]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184738.108020942,-15810.3514291744]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184931.463386891,-15910.6970396893]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184928.380164086,-15918.1233157952]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184980.961355485,-16043.8680405385]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184952.919734071,-16059.3520728718]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[185030.283324152,-16291.6101763326]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[185054.656492526,-16301.1862751131]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[185078.736205449,-16500.9752176538]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[185084.35866062,-16537.1410600981]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187042.422364293,-13902.5951375261]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187044.016745905,-13893.3915908301]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[186166.52075501,-13651.8283984552]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[186172.644021871,-13664.8138665183]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[185788.024337911,-13544.1379071607]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[185794.047284489,-13561.6708636176]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[189593.656275632,-10047.8280692233]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[189594.697022935,-10031.6359846435]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178345.616084749,-15301.6008938265]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178355.419165166,-15288.0915329154]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173771.021528102,-20374.05925891]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173779.198985869,-20380.5142606056]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134689.554754381,-29773.0705942548]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[176728.223731172,-20196.0526818631]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[176728.271857167,-20214.7968557345]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178871.356220029,-21081.4860371274]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130212.324135813,-30794.5255136969]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170480.775871273,-14104.1345124044]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173352.923656188,-19618.0526628607]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173361.554332895,-19594.7848575347]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154539.896861022,-26744.5645933597]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146970.527675804,-27962.5770763729]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177302.354162498,-19306.9046283953]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177263.001150071,-19371.8066220673]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141152.558921729,-28799.7175581093]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154749.152623926,-27014.5054719123]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155143.344603406,-26611.1646397285]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154999.709145898,-26336.7666893346]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154045.934374867,-27014.9798355422]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153848.220232831,-27164.4426055379]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139872.075247562,-18206.9684431904]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163226.499603103,-28427.4449278365]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154001.818758566,-27239.4821538782]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187062.246134859,-6135.19695610495]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180391.6950226,-16901.5431094837]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180347.754584667,-16856.6456205315]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154777.602928922,-26728.0374483154]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145566.663842933,-27490.9795175737]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145579.177283413,-27486.5019881906]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[185335.664062139,-13304.2244661119]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137383.935394424,-27062.0996834741]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137475.407754372,-27127.130670358]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136708.691992627,-27054.7363657476]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136740.661949191,-27082.7844773094]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137495.602847896,-22218.3877578253]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137562.627833575,-22181.4394708146]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159866.497906356,-27782.0764737086]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159877.355102189,-27793.4343263609]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130218.992244426,-30149.9157974623]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154946.601588889,-26335.1898403235]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169111.708457145,-23835.8808729258]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169093.197081554,-23827.3926819843]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155116.541737226,-26603.6097868158]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[186021.775463504,-16510.1482939719]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[186012.161481549,-16528.2129651239]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151769.337469085,-25970.1289309749]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170505.99638663,-14104.1004880819]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155518.197819292,-26537.5761010633]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155514.866699375,-26512.0507903729]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187624.719928841,-14107.7694888417]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163226.452368187,-18597.7015150184]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159315.770004496,-28345.7753838141]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145219.40488937,-26912.8260734094]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154778.43216939,-26750.1130826975]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155089.776439579,-27052.1309061297]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155066.112118509,-27050.8015753406]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[148179.051177621,-25726.0593731414]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[148184.553144488,-25742.7259220997]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149558.713680029,-25752.6128366349]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149735.156462719,-25760.1813436125]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154536.077663797,-26764.1784322382]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154001.513315156,-27402.6344758782]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153966.497929676,-27613.8699534071]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153890.260871063,-27752.0398740952]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153752.146733209,-26927.6294713194]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153743.380062931,-26948.6613735593]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153518.846888268,-26937.1651805335]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153520.237902041,-26919.0929012713]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153797.996376632,-26535.2130739598]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153872.883773191,-26562.0768912655]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[148743.363472823,-27968.9701133189]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140196.681916548,-23767.4889826442]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140225.910601105,-23741.1596388963]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130286.135065865,-29769.3917401799]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130173.378172494,-29737.4159860595]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154986.133322185,-26713.0332316089]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155000.720662169,-26742.4927891493]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143298.309029295,-5023.89620206895]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143418.192272791,-1910.75558266923]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171257.843657742,-1548.21774818911]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171277.232962624,-1560.25439922482]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143937.385231316,-3789.10321061919]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143941.669230677,-3771.82467205456]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144181.995049467,-4190.05206194619]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144230.879297746,-4257.88439582894]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172991.958688214,-4509.11231914879]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142383.29502812,-5861.68960416334]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142388.459301199,-5868.93016508501]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159551.499367424,1769.50911428418]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158159.102898949,-133.985000832763]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158159.025362156,-173.249361390423]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158158.885905661,-5155.5211058805]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158180.18900106,-5110.13768641656]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152531.431459276,-466.952924824145]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152549.630903287,-507.971324082115]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168179.965819625,4537.76680089306]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180340.213358431,3400.38492499379]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180354.260822007,3410.3385653405]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131753.162059063,-12185.2864979189]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131752.377763446,-12151.3391602504]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165342.985333298,-774.202360790398]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165349.20442909,-750.488690773782]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149934.337795444,-1771.0833829387]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149917.152086589,-1787.07733004272]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145081.544010935,-7521.4434960623]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144782.998236574,-6983.89462385391]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144839.103195196,-7060.85984104936]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166011.801040962,3765.54995320737]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166032.667150574,3782.00285401213]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159919.64618961,-3141.43186344649]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159923.482487826,-3202.56276441098]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160369.4853993,-4045.81640749372]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160377.670640304,-4044.851774788]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160471.049996792,-4466.71625715122]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160470.890269554,-4414.91775864706]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[123858.016540025,-21455.1026187128]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[123852.586724804,-21470.4781623975]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128204.334129648,-21845.14235769]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128202.450475577,-21860.5463611001]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152752.005562671,-8037.71213221463]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152773.981601312,-8089.50680349668]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152699.286821664,-8338.26079879625]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152644.204315145,-8418.18396548554]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131295.627460899,-9483.89025645709]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131295.125378565,-9502.18873894343]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165859.446950145,-1584.17919575545]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165854.374574944,-1599.24578358774]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154913.523508487,-1548.74411486235]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156247.183277363,-1614.8940195645]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[125802.056767724,-22075.5540476266]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179684.734967081,-2723.84789967613]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[175424.679749519,6564.25225854066]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157384.532164509,-2022.50574302539]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179509.37357621,-5896.28048217611]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179505.784559721,-5922.44848290895]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173297.659321137,-4371.32038299239]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180847.451049752,-6113.98136263061]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[122869.558357463,-19379.6049878747]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[122859.090150547,-19384.4023809286]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128142.235314166,-18833.4110309033]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128134.54249409,-18841.1185234257]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143249.322416575,-4151.33844499371]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143236.237715638,-4147.15749591542]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167731.108928603,-1544.26407611417]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128258.288257452,-16437.821436743]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158020.179045425,-4466.90397232492]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158024.685943794,-4478.12614473299]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156261.103447093,2249.74543613143]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156250.101900782,2261.77454865392]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168331.318365026,4155.71453506383]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168312.38714154,4161.21178589819]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169400.236530927,-418.480869696999]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169420.143654353,-441.614520200121]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145420.405037412,-2463.91122320341]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134563.097032417,-6136.2144380525]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134575.563050817,-6135.52241365844]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172008.808706848,-1202.37672710675]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166457.828486329,-7573.70833718765]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166484.596978483,-7578.34876455023]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167618.852482532,5643.03885203257]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130391.405025935,-15488.5814010419]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130377.836543975,-15498.466820651]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144424.889165898,-5942.97601770045]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144382.092113644,-6140.49807419465]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144641.665977342,-7936.87502469757]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[185521.435176705,-13468.4327207804]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187376.702573565,-6294.44184376817]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187249.840720903,-6033.62888184306]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187085.414671515,-6124.02582490159]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[189566.288026377,-5860.39933985885]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[189550.760418785,-5859.82792276744]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[190669.937323658,-5638.26526686223]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[190688.325889181,-5660.68753130076]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191439.27560344,-5520.63699378795]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191430.363174457,-5505.32304858754]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[183960.000890295,-19889.0792381735]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[193424.341468869,-2893.44764277147]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[185160.210972363,-13878.1480963085]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184603.470230053,-14611.5141335371]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184666.033701351,-14949.6729683761]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184762.018855353,-15285.5548014952]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184624.944432902,-15036.4516659132]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[185176.728279919,-13848.4490401112]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178225.673303777,-14957.0600219706]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184766.071638814,-15312.5127509273]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184599.223163701,-14648.5519403326]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[185329.678860869,-13568.8515214653]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181340.362780701,-11555.0113888561]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184298.241388446,-18834.4249508722]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178568.335725127,-18501.4632408088]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178811.076209895,-16750.4777071372]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178651.66753781,-15924.8309424558]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[185245.504934067,-19030.6753208719]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[126310.517068759,-26175.2738630704]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139310.123225469,-26398.3779516906]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[192154.961841306,-5269.91909195168]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178019.495536467,-21902.3320118856]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184319.905469807,-18967.9971768436]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[192113.940341606,-5292.28993556218]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130107.554812907,-30232.3057554575]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154086.314574663,-27364.3262466002]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130265.941012862,-30246.3073011481]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128735.939944165,-28799.611998497]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[127586.252791477,-27594.3092272826]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132944.911728795,-27174.0547044335]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[127257.96715761,-27273.4110060261]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[127270.460683919,-27260.3049317944]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[176178.207762107,-19794.4365473946]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[176288.822033469,-19646.3078878079]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[176195.378752015,-19741.352021722]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[176502.829691012,-19981.5604694199]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[176524.175974253,-20011.0037724455]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177049.869363186,-20431.0646568723]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177082.824132203,-20435.8008968284]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177873.218579967,-20985.4285453141]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177899.283813441,-20990.2571813975]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178108.645172883,-21193.6998598357]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178138.416312205,-21207.4091181142]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178219.433825867,-21500.7299288323]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178233.234068722,-21493.4407728347]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181349.717009836,-18189.2351832213]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181368.319477144,-18198.5875659763]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181150.462631725,-18244.9705799733]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181152.486923997,-18257.2857013222]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180864.883858934,-18072.8302434867]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180872.841885109,-18144.6057616769]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172965.6650499,-22687.3520451977]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172975.376890984,-22678.5061676817]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[127936.497125051,-27797.3400239741]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137958.353228535,-27126.1178814847]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137964.585897891,-27113.29125567]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135665.994581713,-28582.1075654307]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133007.955127758,-27167.9447270182]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132603.066499313,-27335.1867280465]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130227.725751907,-29893.7567896348]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132577.004332385,-27330.3476422401]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149404.559759535,-20339.4894019095]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149166.85606678,-20809.8602150973]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149487.154811039,-21343.5931519296]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149363.584066689,-22982.9419597291]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[189353.410307144,-5559.25889102538]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187185.642456039,-10679.4578605748]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187164.418700944,-10689.1899320285]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178656.419395673,-15880.476575618]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178664.248303726,-15918.0930459935]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178877.435088071,-16202.0519380625]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178878.766083944,-16189.2999566337]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[182678.325448065,-15879.1959526705]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[182869.546039051,-15859.9051085662]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130697.751334644,-31389.4055404945]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130683.59670827,-31413.1522646511]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[148135.954608286,-25647.634621672]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129972.548320679,-30311.9739675564]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129964.189191436,-30333.5429767513]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146388.205717431,-27015.3894742989]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146333.590566456,-27066.8856912313]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[126438.124506045,-24606.4962762912]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[126439.862905756,-24635.3487233913]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153798.05853758,-28229.4175682445]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168404.009784899,-24201.7207433798]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168343.225042888,-24243.6693263085]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[125229.206929196,-25221.2042578349]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[125300.885125969,-25278.9900680656]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136477.085298029,-21581.987949293]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136563.528011104,-20953.6466473726]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133671.000318839,-21058.2162248611]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133688.337660511,-21056.2271667079]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134839.494329599,-21172.1652960649]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134831.320772733,-21168.7828902662]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158734.554496985,-23253.8655187566]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[185051.64507684,-14937.8549001515]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[185053.658499682,-14959.929465562]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[182826.157600868,-17073.424114182]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138570.905030495,-20466.6465878658]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153834.557024518,-28178.2378794284]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134309.437998573,-21296.1509111852]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134296.153451246,-21318.5775580273]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133552.905721998,-23645.2554273459]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133535.077344768,-23663.8787727648]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136640.62513441,-22727.3977096455]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136634.739907873,-22744.2188601642]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139248.534721145,-23518.8110577423]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139291.894141481,-23572.1004166753]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138396.801853448,-20458.3337523806]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140293.609779023,-20063.89364446]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161277.098201369,-25167.9307807653]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161312.323590184,-25166.2964561344]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134905.434635324,-21367.0478739203]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134912.686158334,-21382.9578360231]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181154.456721867,-11848.7907437909]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181174.190302824,-11844.2817992092]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161344.274648201,-21142.2791714744]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162734.417910819,-21713.9273664203]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173915.851766795,-23899.7733929979]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173945.726320487,-23910.6119998094]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165068.62934363,-25215.2389112362]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165133.627539148,-25199.1682494321]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[182825.394760721,-17083.6266285805]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181650.090148853,-10868.5008404926]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181662.340007027,-10884.4955367378]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[182906.989382934,-10059.3702388227]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[183007.33920883,-10019.7297363017]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[185061.981620289,-8800.31598417927]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[185080.467613254,-8815.42874059436]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146625.467210057,-25793.7442893413]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146630.116408279,-25812.514470398]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163372.913654868,-26078.5481861387]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163410.090796762,-26103.7543375357]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163753.563940284,-26075.8711217329]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163697.562320011,-26100.9501300763]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164258.407841799,-26077.1857680528]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164329.210145971,-26106.504783022]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164667.79254039,-25808.278763177]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164701.702164807,-25810.1765550058]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163675.696899435,-27763.88320904]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163683.915047264,-27784.3216800096]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164222.083890093,-26984.4232512744]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164289.499064433,-26846.6966089924]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164275.918227353,-25927.0751723686]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164290.529809187,-25957.1860353255]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164676.406634956,-26514.819513366]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164271.16072187,-25396.2321952368]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164282.481012332,-25383.6298153212]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163953.104521134,-25637.2900294845]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163973.497472578,-25414.432110694]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163990.296840408,-25406.8414237786]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163657.985560127,-24898.180729329]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163706.031761765,-24905.9023333247]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151289.451412062,-27198.8838282722]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151300.88943012,-27203.8213070252]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151272.093436974,-27371.1572836514]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172965.426899109,1441.10794322001]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160067.146404678,-4495.99908686301]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160086.026577567,-4494.41344512039]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162310.999076333,-633.715383008006]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167604.162759545,5638.42983102391]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167493.453920427,5857.53146759805]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171569.615270158,5698.97899689589]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171578.725656251,5701.94679650676]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[182789.664220736,495.488603218226]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[182810.835646342,487.13215854828]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154995.87585601,322.939909477311]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[122911.672131689,-18122.6344672308]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[122898.308681102,-18116.9821585716]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[122524.28129768,-18675.4926319484]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[122653.297833215,-18950.0565241424]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[189123.143457884,3019.07456556504]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[189135.865559376,3014.73448325275]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153798.894138899,2401.33310910821]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153815.867046349,2375.85138337925]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152414.71722159,-426.557861158799]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152467.722120327,-420.164279013639]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142751.095555356,-4822.34361509897]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142764.622197774,-4830.52092279674]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145413.651170849,-5483.31022631639]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145417.216074522,-5494.20041313005]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179914.092155169,-2570.93455794477]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179933.254358501,-2564.20873110858]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144153.105529198,-4523.19722501549]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144168.668701063,-4533.04812421836]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144600.032716477,-6486.92971412209]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144610.781389448,-6526.14566819865]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161088.238927506,3206.98630097398]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161087.703592761,3189.46353061765]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144337.535515377,-5981.40557543078]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168301.178159649,-2831.00013647764]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143447.840060036,-3148.46021777223]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156141.450669449,1702.02240670886]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[174866.393699579,-539.885838282469]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[174979.951271535,-649.876404859009]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170421.444917928,4439.54971960007]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170422.058612976,4427.67979308619]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164124.317070789,-3393.5716154098]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163031.330426305,-7625.86593587371]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163102.625923932,-7684.47992224008]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157117.729844851,-7723.43587491044]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157165.217264476,-7774.00243701407]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136832.67984979,-16607.3938373781]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138276.947665036,-3034.58165999921]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138308.235681686,-3055.52390291629]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139495.114704767,-2402.39521715749]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139505.007246344,-2410.99813334987]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140759.177992103,-1807.83090290462]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140758.284239329,-1817.14272760833]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142015.091753135,-1228.25081222388]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142027.318821045,-1235.20137105143]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143767.585629654,-1259.37040781463]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143765.582743199,-1268.12139410432]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178794.953371676,-4256.87107396871]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178822.430912226,-4233.30679881462]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178347.46809839,-5055.34424111462]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178389.470109736,-5024.27165858215]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172959.337592478,1456.43138449523]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167697.076041339,5373.46983005782]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167735.506352204,5311.8929351978]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143578.158864038,-3024.10576864902]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161271.858758403,-15.0062792085228]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161360.57439601,-92.6713976960164]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132760.504174413,-8084.04240586294]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[124819.262169274,-16768.1600332267]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[124827.787689583,-16749.258438207]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156599.264556506,-1077.98170338367]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156622.270472994,-1066.99351069849]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130752.216857901,-17638.0319192606]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[122687.306662137,-18398.2664622908]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[122695.631818844,-18405.2099845893]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170301.292125312,-756.709128367424]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170311.293909072,-768.164242369647]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171629.995173247,-1514.60412714217]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171637.404765278,-1523.38823539292]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146840.429277246,-5296.71820478694]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146842.099529866,-5263.56277006137]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143188.250983327,-692.057843491435]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143182.346924676,-700.342057621514]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141847.002083299,-1405.0438559688]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141852.901028009,-1413.28751734016]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164440.268092489,2743.4741986079]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164475.340313125,2680.89857555204]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163618.667601176,686.932391008129]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163642.679488689,696.935135103296]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129449.81145606,-13779.1338998961]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129455.841839546,-13820.1077749315]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138041.348763701,-3212.65279227553]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138048.979896275,-3225.90135526692]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150561.61312805,-3356.67810199526]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150730.634446654,-3390.70705871575]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187851.479739123,2518.26824400329]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187725.559179662,2489.14698696072]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141266.423942008,-4708.82979689381]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147443.382479304,-5202.74315474078]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173320.815114914,6159.25211094407]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172652.921985577,5774.80821002135]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178819.322727206,-16768.01984375]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178411.55617751,-18120.9096402489]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178426.320524127,-18138.3556856325]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178546.699469631,-18475.5729201545]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178336.680309663,-18713.5656956894]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178119.669056491,-18868.4652901882]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177025.257450147,-19460.3080127434]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177091.899549314,-19472.2224014802]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[176453.445750066,-19572.3983554111]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[176467.326957241,-19569.5483631979]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[176219.441637962,-19346.1216356489]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[176213.443188365,-19362.0782112145]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[175547.894291476,-19202.3726105983]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[175542.186752461,-19213.3384836073]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129637.030982349,-24599.335109941]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128583.593946125,-24347.6313729072]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[127862.967640141,-23649.5046767241]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[127861.866570433,-23609.5652592842]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[127617.236979604,-23494.1643892921]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134735.101020883,-23457.7164642488]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134749.074567416,-23457.8102894609]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135113.618540383,-25453.448383395]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135137.147721145,-25446.2847545567]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135122.79224387,-26369.2470653595]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135102.846959412,-26383.6442606134]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135096.640304155,-26727.3368586237]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135067.092824825,-26756.0892338206]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131200.608747462,-29194.5712315094]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136676.296520596,-27235.3206797829]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137856.845614202,-27026.7540762083]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137979.50278309,-26439.8985175784]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167740.685344845,-23000.47065481]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167837.679619266,-23020.9784285194]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169756.402789129,-22536.1377883732]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169760.559674964,-22487.4603960513]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169798.898726088,-22469.2792862092]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170230.056252053,-21895.0891440219]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170246.633886481,-21834.6929485722]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171208.790679837,-20472.6013345413]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171098.645495674,-20527.7298154538]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173547.056110046,-18634.4614745775]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173580.595351138,-18661.0609633892]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[174929.760584021,-19006.5866494069]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[174979.292652796,-19043.7592381964]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187895.832595056,-10530.8654377214]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187937.857769984,-10549.7732027025]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[188260.243479498,-10515.4555343376]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[188355.864620952,-10448.2476829783]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[188369.804953754,-10459.6884840756]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[188948.259743671,-10533.127502444]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[188947.902382618,-10520.2612617149]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[193538.604798702,-3963.94991549751]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[193533.970240945,-3943.64966669737]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[193698.282192236,-3736.68404538068]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[193766.592630077,-3620.269773721]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[193896.093485259,-3466.18365677318]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[193871.893029171,-3369.00813576038]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[193827.179634686,-3368.97943057102]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[193374.91312171,-3128.32818947773]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[193339.333352645,-3095.5840829112]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[193411.336126228,-2881.34914791078]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[192722.689181925,-3055.5398254178]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[192702.597807592,-3072.38339948672]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191480.551982387,-3431.73406404309]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191841.021539633,-3247.26543630444]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191878.207877374,-3243.6368287548]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[192183.692291266,-3100.03577494674]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[192188.166491252,-3084.95519261627]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130493.145752559,-30127.3627553153]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135022.936116956,-27088.5474777097]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136677.726708583,-27201.7220707354]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137967.588533133,-26437.7151318679]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[183210.457782475,-14971.4334522217]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[183212.548348619,-15000.2741829604]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[183520.490617333,-15783.3978913045]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[183479.810252163,-15786.2121927907]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[183912.901545806,-17636.8369143716]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[183932.400444182,-17667.8136050866]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184072.911980659,-18329.6322925684]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184085.341395977,-18301.259438324]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184209.17665694,-18638.7435292564]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184313.992104677,-18824.9121217679]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184670.9832392,-18463.1370451074]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184552.647961319,-18637.6341261185]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151284.247861455,-27363.3432555471]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151430.987120821,-28585.5713674738]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151455.27654239,-28611.7572750364]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156028.197473157,-26765.60380262]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138401.176744346,-20458.6942650332]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138397.358278772,-20444.0288736995]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161385.768493977,-22909.6235335418]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161379.501164937,-22939.6560363336]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159603.230942083,-27801.0620109956]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159628.41144886,-27819.3561827315]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136031.184343278,-24161.3453237374]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135835.548901371,-24314.1209796361]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177557.798881075,-15355.1511373049]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[176338.453234647,-19646.3182588575]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158302.857195006,-26886.2018487721]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158316.467235207,-26885.1510595463]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158082.399000425,-25777.6773239943]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158096.943108778,-25775.7435844721]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158216.181076267,-26259.7265150518]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158203.997956669,-26275.8674482666]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164288.951223585,-26361.5655870249]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163869.062182415,-25160.4990220444]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163885.112955282,-25153.6821210413]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163201.245177457,-28032.2813574014]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163248.689366976,-28030.6861169502]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170975.099443111,-24504.1035392649]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160701.445635695,-22735.9614520184]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160707.001244072,-22744.1915039383]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132431.903600056,-26080.8440452031]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132418.079413829,-26098.9386476534]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131587.334303239,-30314.0190987076]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131594.274086349,-30308.1891747083]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156258.546195413,-27452.0857082284]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156230.134213463,-27490.777501532]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157054.341510489,-26711.2940397494]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157091.616137129,-26711.3476472218]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[148064.849152193,-28128.306255303]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[148033.332499009,-28200.787026167]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146911.369670451,-28282.6872471919]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146897.117101655,-28281.2785215855]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164838.151422621,-26160.3766594898]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147634.820804235,-26706.7373922868]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147653.106974638,-26737.4483000987]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160631.870020073,-23148.0546145656]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138011.719236041,-28287.646040583]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[175126.899763641,-20122.3131725166]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[175186.848833391,-20094.1842869702]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[188769.424589472,-12080.5898863111]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[188782.176137315,-12076.6118905037]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137750.019123518,-25530.7977661627]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147962.400071149,-25710.2616770978]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[148003.101777659,-25730.9986537567]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151206.949728728,-28709.6725449463]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164691.079458461,-22324.4958961408]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164723.60926445,-22343.9129432082]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[188529.944561302,-5272.48928443732]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[188535.69662391,-5283.03289340704]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[188988.923552066,-5399.4664721716]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[189001.669264565,-5392.82625959138]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156564.073409045,-27235.2886601723]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156614.592502516,-27233.2958457276]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157763.504002839,-28211.8338141345]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159769.167130848,-27902.7908612411]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160184.996677369,-25449.562566223]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180797.497100285,-12437.0335897777]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180801.38413386,-12447.5780009552]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180986.820318254,-12356.5527086767]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180997.96773866,-12365.7803730927]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136454.965697539,-21588.8311006709]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129474.513037986,-24114.4374922704]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132713.725471277,-23545.8668545112]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132671.497194588,-23441.9762253931]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168479.459577622,-23889.3053798442]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165207.458687871,-22483.3014221331]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165733.429574474,-20800.7425084375]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165782.61487029,-20823.431363808]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170733.509649217,-24478.4235120409]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164439.082667142,-26510.5161206635]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143462.293000788,-27198.2531396234]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143474.053823118,-27195.1049158253]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143338.240356471,-27536.1569614148]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143358.562635651,-27535.2770280482]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143027.64476897,-27801.095680017]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143011.033227531,-27820.7414052526]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142824.320738565,-27873.6622306199]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142828.165997547,-27885.4418795271]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154059.313610174,-27319.5006436642]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150878.388121157,-26163.3186077679]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151002.430853144,-26215.6303773948]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146546.418269491,-26172.529079946]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[176327.667457804,-1488.69329145277]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[176323.548032805,-1500.8837805934]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173316.039557069,6178.56479185208]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178634.253724028,-4614.87931139662]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129064.476480148,-17382.4763422265]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152291.981941139,-4724.24003632437]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[127920.132148189,-12000.665673709]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156132.113822898,-696.086053696636]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144518.94038967,-5580.2572602104]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144527.726093208,-5588.62664534361]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[126270.965496193,-17944.3152354051]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[126344.024781918,-17973.1551701432]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132376.172163836,-15209.4694078109]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132709.930485067,-15831.5032644965]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132713.961732173,-15800.5845411838]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150499.141496389,29.7575044363039]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150519.758135588,26.9895984134637]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169594.059261085,-7182.58082848275]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169598.306282809,-7162.85142745118]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140939.148281553,-4767.61762701103]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141013.193926018,-4792.58352693875]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141221.003145645,-1846.81606927322]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141251.569024949,-1849.33159591287]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161656.726161278,-260.894884108042]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161643.969452676,-220.470452830137]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166868.18504041,-2392.05947951053]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166876.483977241,-2384.43481922225]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164038.169259341,3510.40531229333]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160914.176496096,2070.34614172211]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160914.651108555,2049.9354600237]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184585.679426833,2701.85969217634]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184605.273897233,2697.05894265341]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[127755.322181491,-17996.0795434185]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[127770.957338813,-17997.0833296689]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180864.503475699,6893.0500379997]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180859.001029223,6881.19303263933]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181274.597669462,6522.22693478968]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181286.648842009,6511.33371274447]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[183422.212548147,-4185.30805795745]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[183424.23091951,-4200.95035838755]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159207.106799717,-1844.04752074345]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159135.136864887,-1894.54267117509]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158471.066302633,-1775.57558702194]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158458.612514253,-1775.30010872352]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158431.107581106,-1644.18868634774]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158429.898776536,-1579.62981515465]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158158.309376694,-1130.35027490364]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158143.815130133,-1065.06811791024]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157983.914657365,-840.209035574109]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157982.717710552,-858.948814870324]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157601.072251106,-1036.74176487903]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157612.716218603,-1051.87770364404]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134865.109991907,-5575.88491494511]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134884.380927458,-5600.19566395762]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144719.238183898,-5823.31984914083]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144734.653305068,-5843.26253546448]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132279.654130982,-12918.0654445438]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132275.59848577,-12885.8700843317]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142964.376596997,-2905.36289683048]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142939.753399422,-2934.83289140131]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129144.744401141,-19165.8906493486]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129162.946706586,-19172.678750998]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170214.217637051,1859.17239466769]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170218.989928343,1840.08010160958]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159205.714929033,835.269341448438]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159245.164454933,803.269133694412]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134856.272483621,-23698.6674442395]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134884.564762874,-23744.777172437]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144970.15541602,-27318.0349975849]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139995.009874144,-17269.0308897104]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139915.734767171,-17456.8788891436]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140572.907867381,-24416.9961329288]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140559.454083148,-24423.1252177987]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143171.168603035,-25552.5627619802]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143169.718306811,-25577.5103784609]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142342.325334904,-25586.5045953828]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142622.131068249,-25588.6031496318]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145189.007925937,-26518.7945135926]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145187.708404973,-26534.4262580369]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144447.793239859,-26208.4629640756]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144427.523960326,-26216.8876792856]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147967.53262928,-25935.2245640873]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147952.592531745,-25958.4367452043]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147380.770356438,-26451.4823173601]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147376.616682064,-26444.1394620511]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146959.130676732,-27009.9783408497]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151305.169354495,-27112.1168274571]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151260.996931517,-27037.5832127077]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150980.47489925,-26892.7617818322]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150842.244578981,-26917.0199293935]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150518.61096922,-26877.1137402663]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150579.418192033,-26904.485917768]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146308.961390006,-27949.965709036]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145900.570389005,-27863.0759932211]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145898.935568307,-27888.9100992644]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184390.62996414,-18818.8249826362]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184186.270005117,-19096.2149696765]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184159.643289246,-19094.3968591242]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[183839.363847067,-18802.5036884669]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[183827.497380164,-18771.761449907]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179776.701583644,-16564.4365845374]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179730.060388859,-16566.6681719323]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178876.763724047,-15827.2785485797]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178879.812944683,-15794.898866086]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178202.427014224,-14947.4692204269]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181231.983276724,-12172.2517304318]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181219.230395773,-12175.2215898791]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181267.118833624,-12478.438395883]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181286.274738673,-12484.5756963214]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181389.953555866,-11699.2934275109]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181408.867486905,-11733.7127443361]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181309.013593148,-11552.5107080045]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179304.650173614,-10046.775630223]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179311.667118743,-10028.0463637052]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178517.376253759,-9548.83132464765]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178424.267351626,-9463.88608680374]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177842.285877286,-8880.0517697871]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177861.838902351,-8871.2235536722]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172400.432128604,-21646.8513003028]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173395.721800189,-23468.8024560481]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173362.01195625,-23430.5564986908]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172714.353881619,-22290.694323845]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172706.942283241,-22243.4251188052]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172341.728380395,-21623.9472177904]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171642.514908333,-20490.7377426169]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171572.032636641,-20422.5423184633]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172010.312313059,-20216.8551772212]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172027.024324845,-20201.9302680523]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173101.426003649,-20654.8285939102]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173078.822695022,-20678.8337554437]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173965.504688972,-20359.0556872793]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173984.66485067,-20367.7582313238]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162422.917504066,-19897.8539804096]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162371.522344228,-19943.9056365739]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[124080.453257902,-22968.370338454]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[124086.644037062,-23058.3758874132]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[124587.65143432,-23888.1948116487]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[124602.787773941,-23966.7333747791]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[125306.691022364,-24523.1104256925]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[125342.025985818,-24556.6580030633]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[125558.729905242,-24668.7963747014]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[125677.210050384,-24795.8193538315]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[126109.0859256,-25862.6148371079]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[126104.055476654,-25874.6669342845]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[126340.016856771,-26266.8954473374]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[127617.890533068,-27576.1319022867]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128065.349050733,-27917.6423247304]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128519.013312772,-28179.8695987818]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128495.770077307,-28222.6246417784]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128666.838291854,-28561.9610516554]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128921.112182517,-29073.8260701031]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128913.240409041,-29092.2920751015]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129334.698420856,-29461.3914429093]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129367.082466343,-29494.9019740606]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130171.59529657,-29752.044445116]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130606.273506179,-29793.9723233797]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130586.094986265,-29773.7523230464]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129765.428548375,-29816.0081424956]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130520.16415679,-30129.7738593377]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130736.483675498,-30059.3283260319]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130765.982635889,-30066.8586295665]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131109.737426021,-29956.8246283524]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131152.543314713,-29954.5761443803]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131611.40869253,-29819.6045601879]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131639.516643381,-29799.5038565915]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131501.268390462,-29918.6569406801]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131482.966997717,-29896.3446060073]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133985.70598507,-29295.3733654941]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134053.22324344,-29208.649620773]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134444.973810552,-29186.5600613845]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134494.156241187,-29150.2882670704]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135398.114045005,-28834.2234341506]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135445.92237511,-28793.5011294758]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135655.779430879,-28590.4697701276]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135843.514253588,-28659.7009196066]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135840.523218948,-28646.81481624]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137666.795112398,-27540.1931694904]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137666.868991504,-27528.6582831044]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137955.842944556,-27519.8568124969]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137967.403538291,-27504.6239814664]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138354.007414356,-27222.8008303065]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138448.538266728,-27129.6745349439]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136174.242229838,-27051.0236561606]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163918.118161087,-27382.1394933463]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163964.497123235,-27340.1649207431]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151769.143746449,-25952.8253647968]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180066.609263687,-16682.9373149298]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180104.691050111,-16723.9421467137]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134652.745509609,-29854.4588357084]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137412.721193041,-27078.3678486074]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159891.023279112,-27801.1436454083]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159696.340568032,-27687.208336175]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159713.144960759,-27680.1795422086]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147109.15638041,-26789.6307844114]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147115.426183657,-26801.9764262383]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136491.916610886,-21008.9704523629]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136173.559878925,-21266.09930256]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136169.447149325,-21282.4881819455]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[186024.646036933,-5087.16970531596]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[186041.63925555,-5101.94582811015]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[186781.327897413,-6411.32193845877]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[186866.767696634,-6423.75016283628]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130526.683284499,-22274.871614854]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129466.243242479,-24162.7384413889]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129454.074294794,-24144.9030107843]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180827.159145311,-6124.4778245858]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[192016.065634808,-5478.76483401365]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[188636.742408149,-10582.6758763181]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[188634.208534386,-10601.4170746587]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[188393.973174639,-10784.5798681414]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[188388.285348493,-10795.3315149837]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184759.513291768,-12802.6752288074]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184804.559383262,-12855.6513103148]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181574.56390104,-17355.1668969256]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181592.223279509,-17370.1735697726]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[182149.935551461,-18186.861671006]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[182158.282224792,-18204.5119814604]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178886.382042756,-19784.2994674199]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178885.789990856,-19799.603959982]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142324.887986662,-25604.3696130061]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155605.702055927,-26577.7938161694]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155592.562575467,-26577.8447437162]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151793.902675466,-28949.0650288013]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151681.291940862,-28914.2343973799]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165381.92456323,-25435.8549200409]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165361.064502625,-25458.9612071551]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134977.273451037,-23227.9641702735]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134988.941536599,-23224.4928472879]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135634.878699872,-24114.6949755927]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135661.263622286,-24125.9614372518]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159274.782706401,-23802.2822291133]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159290.412471949,-23785.0452766606]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[148722.489422053,-27933.0347973716]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164850.885810141,-25086.9048446281]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164875.470424015,-25090.3211001855]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134782.233881323,-22556.488286196]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134781.558104095,-22573.8979467017]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134972.342025508,-22892.9578463055]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134986.229024587,-22891.9415863182]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163328.610945223,-22387.4348776087]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180763.257118536,-19037.1154517982]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180769.389175098,-19043.782314614]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[182680.294787022,-17066.9530911425]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[183729.301917838,-16980.0446863124]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165619.012330935,-22341.135870819]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165634.921286363,-22346.405084774]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159475.228751289,-27274.3605417052]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132521.707453134,-24741.9038406422]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132541.038255207,-24749.0258476686]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173404.072143244,-20592.6653155331]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173423.250815252,-20594.6033921517]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132648.256719663,-24954.4139712973]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132663.505137826,-24945.6460842432]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[176186.297278695,-19799.2256272701]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177701.765081636,-19043.4184851285]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177708.981505673,-19063.5101046675]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163197.962022679,-24296.3021188563]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163210.008855331,-24288.6947798751]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163431.989614945,-24592.7674587725]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163446.090413577,-24584.0584339513]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158189.476408493,-28093.5550687867]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158243.939438759,-28107.3202898654]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180429.746303239,-13002.5041718052]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180441.262788946,-13013.3969003353]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138219.904527426,-28220.2011613697]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138285.839801446,-28184.6824028152]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180562.18673655,-19198.6447498988]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180508.669548054,-19326.4180866557]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180355.316417464,-19507.8921278364]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179781.961833242,-10444.8550031671]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179798.363939408,-10430.9142955623]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168313.581327198,-22821.7923600157]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141894.285824819,-25560.6564509402]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141891.056599661,-25586.4806420071]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141362.445053653,-25447.8788513158]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141304.233564749,-25381.9760793929]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149997.173954073,-26866.4616257981]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149967.530192476,-26832.0366777385]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149758.417760929,-26794.911743925]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149659.254773752,-26742.7129694095]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[148538.627888126,-26889.0240520906]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[148456.385216404,-26880.6027989106]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154406.853862088,-26817.8102693496]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154370.320182212,-26878.1977338449]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153913.998952999,-27246.2759008633]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153775.599737598,-27208.6850647136]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153528.776914262,-27199.4124500557]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153528.75036744,-27224.4787987084]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152842.367431437,-27228.1634064498]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152774.175459764,-27203.7643345853]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152246.354967493,-27142.0707005691]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152256.303001248,-27165.8550915316]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151787.642583669,-27183.7301382662]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151698.569482232,-27161.105518765]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145328.203601519,-27170.3177999011]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152086.73615741,-26003.0866313917]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152081.093492368,-26013.5956650284]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152561.214989314,-26117.7686837418]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152609.229024802,-26093.4907970774]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154236.36233298,-26075.7739923288]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154261.19713061,-26065.4649509052]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154305.534580104,-26227.7182244434]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154288.983269874,-26299.5124699938]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154336.985083786,-26475.5360270517]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154372.490207591,-26554.6731244153]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[148110.370155483,-25675.1159438982]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154293.249190604,-27196.2685434367]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154258.902708469,-27246.9054801554]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154166.850294541,-27321.338826541]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154131.34935177,-27280.577174051]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153887.023290695,-27039.07246506]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153983.239235591,-26734.5157483153]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153966.300126239,-26710.3673413139]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154269.484443385,-26661.2209445009]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154164.234351678,-26650.2996409917]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154040.032818393,-26548.1166695789]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154041.022416317,-26516.1782213604]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149588.982149255,-26816.2180574011]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149609.031403571,-26849.5962577307]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149440.975653994,-27681.1366447554]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149426.105309937,-27673.1844543422]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149473.256306044,-27907.9021889847]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149485.415681284,-27917.5039399468]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149631.02225825,-27930.1264892789]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149648.547695727,-27947.4088867141]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149921.576897885,-28047.3094879885]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149900.876774447,-28012.9304724851]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150294.11100808,-28118.6515605293]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150257.035167017,-28115.0237911686]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150865.147839262,-28453.1840067093]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150886.807835484,-28482.9073377013]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151068.29205627,-28647.0865909491]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151090.151509725,-28637.3251244022]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151295.53165696,-28758.5854980515]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151474.466228502,-28819.5944046058]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151466.3453814,-28803.2495999295]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156249.773336158,-27827.9306192755]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156278.07155802,-27856.2297303363]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155604.486342495,-27681.375143096]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155305.345443771,-27900.0573459724]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155303.026691672,-27917.9037166225]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154847.274242639,-28261.2942191203]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154842.118930869,-28287.6676396518]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154690.394686859,-28385.6751709792]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154722.663082504,-28381.3888228392]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154625.700073324,-28508.0437655]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154572.643416501,-28572.9023120455]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154431.236418553,-28635.6836258335]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154317.209436608,-28702.9170737953]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154199.15667978,-28694.3765199307]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154081.611600368,-28716.5599023732]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158373.502629818,-28060.2939193479]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158325.927728338,-27787.4669309231]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158325.133950771,-27733.4490485345]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158229.881176349,-27496.0200418088]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158195.516634492,-27468.6988012379]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157408.429713023,-27802.0160763012]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157383.442970865,-27825.5310960879]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156887.71175675,-27786.1912593453]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156845.57967238,-27808.7416267672]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136031.134267191,-27030.7843084992]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135489.209744138,-27058.1526637882]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135431.291372684,-27036.6941879354]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135094.542889244,-27055.7500639556]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134968.944094603,-27037.4974345189]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131121.433050213,-29265.3320373773]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128099.834750999,-26265.1966543144]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128112.433227854,-26237.5598448493]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128521.702810539,-25923.1236067093]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128551.219871523,-25913.5795248146]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129648.922069759,-24604.1906895629]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130908.981568654,-25459.2055906175]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132209.13425788,-26850.7322112448]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132209.61395816,-26822.0076833131]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132523.58540312,-27104.1478164623]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132560.009914206,-27119.8179522959]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137039.493986334,-22815.9518637151]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137015.969959888,-22780.416610792]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138305.531153407,-20883.6788749133]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138285.376153898,-20933.5747462465]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138483.508700111,-20516.8935940357]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138537.45216781,-20528.4379463706]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138553.049546343,-20433.1473162486]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138508.655856697,-20428.4295203927]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139230.149126678,-26386.4542762554]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133150.434857989,-27007.8713919335]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133172.002894954,-26988.4979427115]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132721.627877385,-27198.5794002983]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132537.811453657,-27297.1333199291]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130863.214662301,-25408.8558984374]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130910.959512946,-25403.760144477]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131183.576781046,-25065.6153837091]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131194.319706228,-25074.8976742171]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132741.343550866,-24617.0892498303]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132788.054223085,-24572.1574533794]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133179.135813611,-23929.6396206142]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133174.719433485,-23894.4480514103]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134027.7104589,-23817.0857930659]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134094.418568263,-23830.5157735287]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134573.865470794,-23412.2650535717]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134580.293607629,-23384.5787337833]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134962.481911189,-23113.5084190401]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134971.88337053,-23100.7048106156]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135348.981079416,-22905.3427875887]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135373.759403307,-22905.5076150537]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137405.224188628,-23046.3616829073]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137394.404648115,-23033.9801145945]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137645.415952427,-23142.6296121578]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137672.4930402,-23147.5727784215]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173933.981842039,-24017.1661847195]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173815.434051217,-24035.5912070635]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172289.86870474,-24489.5323259773]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[174137.577528659,-23930.8671433611]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[174231.717689522,-23911.8189031849]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[174746.77089999,-23703.2173943784]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[174819.81892283,-23697.8615839337]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[175259.472736452,-23567.7841311279]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[175335.76966412,-23566.4255384577]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[175786.760955451,-23442.0096069034]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[175882.847574537,-23423.6157641091]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[176171.159355494,-23270.4941519728]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[176260.194997175,-23239.4354121062]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[176423.428537233,-23110.9546000726]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[176543.352421398,-23055.9005558527]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177367.318233405,-22471.2484488377]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177493.26329566,-22384.5871068607]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177647.284532324,-22238.9841329262]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178027.565100155,-21917.1014856645]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178220.443976553,-21714.458134696]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178222.195390842,-21681.0777925361]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178478.409874641,-21430.5467863775]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178550.368306106,-21403.7547992996]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179218.028382811,-20931.8397071828]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179289.418503888,-20950.4037529313]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179569.078583779,-20953.3263209067]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179568.847352259,-20930.4781212288]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180046.842410053,-20947.3341002055]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180055.447676702,-20974.4141384381]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180752.146921788,-21021.0743767344]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180726.39800528,-20996.9554965863]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181262.211368751,-21024.0702753047]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181328.672252264,-21041.5006652497]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181660.927477736,-21008.8617458839]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181755.632770265,-21012.7005589899]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168390.690541756,-22827.1456711976]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168348.332659718,-22848.1918747017]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167886.187049802,-24098.6490712258]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167901.564947166,-24096.7034872642]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181047.314402658,-18858.4425600038]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165090.691550411,-21592.3648995327]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165068.364814113,-21636.8714720841]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158958.238029169,-27994.012202711]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[148094.653862461,-25826.4308913546]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184878.558925825,-15516.4342508183]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184893.089904688,-15509.3586174992]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180813.295202689,-18078.1628249267]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146820.68846957,-25792.2627329655]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146821.885002464,-25812.0121710728]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[185423.39458516,-17082.3444068232]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[185411.002580716,-17089.5349663222]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[188040.912294166,-6370.26687840914]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[188039.313996624,-6384.35085072974]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179406.887568548,-20803.1420393721]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135397.636508465,-21248.3240438301]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135300.988269542,-21257.663314196]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[183850.412590144,-14750.5888636425]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[183854.858409174,-14763.4620726722]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184317.094835613,-14959.3170361324]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184323.48812741,-14976.9623915883]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187260.302943464,-14800.6051034257]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[188451.009935784,-12564.2341510379]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132737.661689869,-27198.024724681]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132114.998223151,-23608.3658583602]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132091.635676016,-23618.6290452346]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129306.412026308,-28863.4446614607]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129316.277567755,-28878.3794061783]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140795.70973798,-24763.0845535805]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[148080.939925732,-25812.0496653348]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[182970.718653575,-20520.0271499269]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[182699.747353572,-20612.4905195115]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178416.959847972,-19414.8172592376]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178426.099575363,-19408.2938295645]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133066.436660804,-23519.130582986]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133081.654972833,-23541.4191195676]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184633.3341251,-14969.5851709603]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131368.502958261,-28968.2625226958]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131451.319602673,-28922.5929402822]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173855.060532318,-19978.8853825535]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173870.10807159,-19958.407244269]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172627.95324752,-20495.5653285652]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172657.569925879,-20527.5915095145]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163548.331039272,-24747.8164922909]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163546.689038245,-24713.6493160049]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141368.44008421,-21813.7298194246]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141399.290687583,-21779.5317419596]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[190636.369423792,-9844.9302984883]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[190940.64701068,-10038.652552158]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[190884.932066806,-10425.2402676896]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[189939.829304777,-9928.0776650781]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[189990.891910887,-9934.56377713109]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178653.028448003,-18347.5938847197]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154560.27405777,-27170.1238627948]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154549.766305173,-27185.1590014704]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181749.152354746,-11911.4889264144]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181769.758640711,-11937.4813625853]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149936.835556843,-15243.6709089102]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170409.894114954,-10382.6579899588]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170409.719278193,-10287.8261151247]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[186641.504389473,-7461.58636621159]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[186673.69040017,-7455.5307182353]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137490.693927611,-27286.3947950325]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187718.409871144,-6603.66564918286]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187720.995362239,-6617.97672684147]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187410.943643874,-6847.05548476503]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187440.066600562,-6834.67124715017]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173228.686578131,-23168.660596261]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173236.645926675,-23153.5985871879]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146762.075840156,-27512.4557535908]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146797.8510649,-27497.677911325]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165372.888256695,-25147.7841432646]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165417.8134085,-25169.2392360657]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156185.488113972,-22737.711991091]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158742.044698896,-23266.8741984114]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[183655.756857476,-16486.2531291411]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[183666.863431488,-16413.7356641951]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[183358.085140661,-15016.0534420011]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178658.805348233,-17035.9633433545]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178675.935320542,-17035.4465268818]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164083.981723873,-27160.1532310451]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164117.865803643,-27144.9724667788]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134081.998592971,-21473.0782393621]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134093.313456881,-21466.4998980736]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166590.226833938,-25346.2524351452]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158455.700236171,-22611.0425447006]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[189259.523670842,-10290.6922644025]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[189270.487389148,-10302.6830120846]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136546.723251074,-20418.2450621548]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136658.141025805,-20441.8218003279]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136588.969609295,-20466.4378076456]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173816.774806306,-10143.1541959043]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173833.536148514,-10136.9884409784]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158297.302826071,-27225.3494190285]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158298.856185988,-27123.8708719097]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157740.444913615,-28242.1237805599]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155388.9763448,-25983.193454523]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155479.215569958,-25994.6983846255]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155857.188358768,-25967.0295606976]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155890.570957497,-25982.2652738204]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156085.68668032,-25962.5185382364]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156148.6096681,-25977.3321623377]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156701.708721994,-25918.8085271708]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156614.823326234,-25907.3299037537]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156934.874251561,-25869.9330870887]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156967.420530098,-25884.9395589881]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157340.349246521,-25836.6720126026]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157497.445395867,-25794.7693716781]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155577.503360068,-27610.4893762498]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155057.598255521,-27501.8467374108]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154811.953705772,-27437.8210324498]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154474.241544276,-27392.6576095123]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154371.077855106,-27392.1743057828]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154613.544823307,-26079.3163534335]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154632.813803478,-26063.545624773]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158314.753748524,-25676.3036146109]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158504.248658533,-25682.6599248248]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158516.615008329,-25666.9630533624]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158737.082124863,-25664.4629907631]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158868.971267459,-26094.587594538]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158932.16502915,-26399.4213777712]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158964.116218831,-26401.996345407]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158973.600652303,-26693.9588209015]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158995.367001581,-26681.1847393202]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159047.21459627,-26916.094555977]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162686.153793796,-28148.9951280658]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162667.627712425,-28119.3105612712]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162486.311428041,-28009.5866058317]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162466.059379821,-28016.8286840849]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162309.458774331,-27951.5615161415]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162294.875809159,-27962.9289471474]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162089.68624312,-27882.7184609548]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162019.26031367,-27874.6799116746]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161456.362135714,-27635.7793285828]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161435.617760879,-27602.6452659217]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161051.131653,-27453.9327569734]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161018.844970549,-27464.3400923798]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160618.459457868,-27470.6021070955]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160483.005740122,-27068.3279396667]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160488.884350814,-27043.507430436]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160264.404845629,-27039.9310011553]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160025.76901027,-27238.3738433466]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160058.275485795,-27129.1476454115]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160026.003539323,-26999.912872015]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162829.876117787,-28195.6846631782]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162829.636352744,-28185.2580255502]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162247.970134207,-26193.3647471089]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162190.219296492,-26187.8165380498]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161867.039269218,-26289.8137906978]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161777.040944572,-26285.8002948464]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161232.885625285,-26442.0288937696]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161399.181692494,-26404.4256903911]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160977.655433251,-26558.0206402477]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160919.681473437,-26561.2261078566]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160622.597904769,-26701.6629075302]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164650.408152022,-25771.7254879785]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164524.681718233,-25754.6306300297]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164182.682610297,-25740.2888068267]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163981.243955448,-25737.7698626671]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163690.802141405,-25740.4603073224]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163596.2711477,-25753.7489447457]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163234.769000742,-25870.5099467693]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163176.223252205,-25903.0074644563]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154050.112599902,-27037.9586767849]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170297.992927584,-24409.778171716]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170254.548676281,-24389.2374930497]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169645.61481245,-24485.3994941666]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169618.322224657,-24483.9832284302]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169233.973422412,-24528.4691025882]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169169.548341735,-24514.4008811056]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168906.564916882,-24479.2909372397]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168890.400026575,-24465.0424802636]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168577.155242186,-24502.5206270091]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168232.805442606,-24535.561486795]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168096.610159159,-24532.1205433971]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167917.032273966,-24603.6218270181]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167739.854502015,-24652.9454202241]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167483.311128384,-24753.7963355676]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167345.502627806,-24785.9422229143]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167071.127998447,-24950.1639891411]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166684.266471009,-25337.9241590555]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166987.082327826,-25007.2202395458]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166656.055212359,-25386.4067983991]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181926.400321239,-20979.7472245162]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[182091.054248568,-20928.3683664242]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[182371.574619519,-20765.2889712296]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[182437.4402732,-20751.5446983948]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[183358.490978416,-20410.5663916675]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[183394.051677401,-20417.8366356809]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[183969.291409262,-19901.9603073754]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184113.822856461,-19440.9191926169]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184165.091476873,-19349.8342129259]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184229.509202094,-19188.5636116152]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184248.922221451,-19103.1936041949]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184459.571250639,-18909.1067332193]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184420.907912094,-18923.4630409493]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[185286.593905242,-17604.4191135498]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[185421.660342075,-17368.2714494595]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[185484.225749951,-17302.151437491]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[185853.166154908,-16849.2922153721]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[185940.372724639,-16797.6237538148]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[186298.981630197,-16446.9928282322]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[186328.557517101,-16399.0100176246]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[186775.742730479,-15918.4979389294]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[186769.454895366,-15888.0995634538]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187370.075492605,-14838.3483345945]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187387.305075389,-14686.8654378722]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187662.435740666,-14160.7226871626]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187735.675188179,-14088.5014931393]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[188165.589502256,-13281.8215414809]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[188202.289868064,-13175.6128448975]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[188356.981787857,-12913.9375950503]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[188402.2591504,-12868.6291236045]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[188473.986399503,-12647.4456426397]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[188540.831838271,-12538.3878433277]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[188808.294716706,-12259.8689820982]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[188919.321389716,-12238.9238807848]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[189626.990644599,-11660.4172782011]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[189645.963700483,-11580.2482061947]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[190207.028699864,-10438.8825327368]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[190300.657946177,-10210.7197215746]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[190334.586697366,-9957.98458009766]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[190412.26042183,-9771.39667838451]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[190511.812499952,-9468.26072683535]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[190535.088795239,-9446.10114720353]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191262.097931639,-7827.46526169847]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191247.408029655,-7822.57174742932]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191482.308797203,-6903.42684586142]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191548.201316076,-6737.11574290029]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191657.234512974,-6147.48712350801]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191744.112715857,-6005.26083466428]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191768.922396296,-4180.76143377996]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191765.838600231,-4199.28130420734]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191940.315756727,-4890.75127930933]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191932.577214196,-4916.5875430099]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[192025.31192872,-5205.03907600266]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[192017.17883759,-5369.96005752461]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191884.480031372,-5721.88683083898]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191870.440607605,-5720.87674411229]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191907.30570083,-5447.61816938344]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191907.878619038,-5429.7616508411]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191587.5854242,-3814.47951250378]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191583.667410558,-3723.85988646228]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191430.126251332,-3478.16190418752]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191410.206053159,-3404.05396054935]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191174.967426168,-3054.46335500415]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191166.588303956,-3068.65257440705]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[190286.620646511,-2190.36585444876]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[190325.244211375,-2232.88475592004]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[190484.62229691,-2449.32549933478]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[190534.061045999,-2554.74224673427]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149610.745181838,-17990.5918717379]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149118.251855685,-23314.6273160665]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149107.206071848,-23307.0272399079]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149374.64960801,-22933.0878386231]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149465.151158506,-21383.8518367298]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149143.592821075,-20806.0781636796]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149405.400153888,-20321.1927231519]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151535.262395386,-17200.477238575]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149603.094320698,-17975.8003089983]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149949.305476841,-15244.1789965206]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173265.731931778,-19022.7693648426]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171826.645774597,-16127.3154562734]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163706.166670736,-17572.6721865426]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170613.366096635,-12948.3777148702]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169798.569574698,-22515.1958057995]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169978.10459009,-22621.2299650513]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170029.534039802,-22647.2313581797]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171396.727158324,-22870.5179043078]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171417.730788228,-22886.7728780766]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171904.221677616,-23055.5587850525]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171926.791804134,-23078.1391379145]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172339.420935502,-23348.7277830682]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172376.932177147,-23391.757340725]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172579.030978008,-23572.006848194]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172599.059406954,-23571.952483207]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191362.000053366,-9465.17926582322]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191377.074221823,-9459.3144268528]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191652.419421642,-8587.78517048038]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191636.185858631,-8752.14344426186]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178075.796849337,-20975.7957995895]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178078.73860587,-20992.7718864256]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178283.213787502,-21134.0894019671]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178295.767764151,-21142.4358592022]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161616.401279119,-23547.732511563]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146651.08706453,-1064.11894413375]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161629.660780105,-23539.7991703277]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165502.232222596,-25745.0616654053]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165645.636907738,-25743.3513497564]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155741.759131956,1829.18798423762]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155750.8887382,1793.98504557385]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155717.964229583,1705.95659534633]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155688.431846488,1688.90013355482]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155761.586604354,1311.22117057978]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155746.973947158,1285.66626015736]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163736.625883966,-2761.01049873512]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163751.529928887,-2752.74783336447]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163522.750547054,-2265.07483290142]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163492.198936452,-2257.30600087054]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157359.747986102,1430.01671241777]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157422.245248094,1527.01499815914]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158111.784753081,1871.27436411864]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158204.017208819,1885.84751131863]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159160.637826953,1030.23099828581]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159196.883661269,1031.85207874369]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159899.920921036,630.485587685718]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159851.921067428,685.145783604879]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153880.865927998,970.871029705682]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154175.547738178,1054.53913847648]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154231.667995784,1131.91504530702]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154336.307828425,1310.7730790294]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154341.15499909,1353.23174477142]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154416.946107793,1464.6782832155]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154400.671815249,1481.39302695065]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154696.809492651,1582.59497827257]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154706.214057272,1606.61997924378]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154926.573004848,1697.98107100639]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157227.582546192,2007.37464650633]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156903.965110917,2026.56423203018]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156863.044735615,2038.50472293771]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156516.814964888,1967.29967391142]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156462.299864172,1972.64818687137]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157589.945745303,1925.02400339767]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157450.318919443,1950.59636434942]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157332.783197182,1992.04501075775]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153126.783260649,-1230.87451664457]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153117.705191024,-804.128991051519]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153140.863748498,-896.303507447825]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153158.509736768,-439.850731967716]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153128.963151551,-476.642820831039]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155109.83845199,1805.71399201197]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155182.728170201,1835.4333431329]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155416.768979938,1934.06245083624]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155408.645795675,1965.60077862203]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155330.92595952,1394.84413209179]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155307.516944938,1356.13142557803]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155301.654276546,1113.91385556036]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155321.508413673,1047.16009665356]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156227.395083344,-732.567360777874]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156615.48182524,-592.902118948405]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156633.770749205,-555.938002546667]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156939.950018857,-337.250571793236]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156959.669341038,-291.751599996118]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157117.178938981,-190.18787076656]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157146.07010486,-150.829787731869]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157342.460498245,-19.2657086838153]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157396.044998684,-6.52541345579084]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157648.459853935,166.058561095037]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157593.585400692,3194.35082826135]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149387.63648207,4.47262517648051]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149392.674730335,25.9644263646915]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149869.162306734,-40.6365810870775]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149855.42709393,-19.1578190220171]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151034.50780194,-521.690834730747]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151057.787614103,-512.713739967323]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151298.342371719,-763.498322781816]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151342.049068724,-850.56805835542]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151441.086618785,-913.181621625728]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151607.602724813,-1142.06673864124]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151796.393559825,-1490.51898469229]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151892.259571992,-1464.15552753548]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145825.714811468,-739.736625482969]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145936.589400214,-690.556122570066]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146035.815502499,-580.30348957784]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146282.994899108,-420.185181961861]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146325.003917312,-369.839910393173]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146821.91001138,-273.320886966714]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146821.557927872,-252.909790311824]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142401.794169906,-2123.03075876547]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142395.497113864,-2103.47124445083]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143373.048437044,-1778.82887483685]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143472.101960067,-1784.29034257965]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143707.530539897,-1707.35782651731]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144354.369928276,-1642.78470411047]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147251.359253945,-189.385113673168]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147362.520013674,-136.307830391801]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147741.511713684,-135.04228870559]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147739.041932302,-110.626685946365]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[148108.273674474,-230.306544157269]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[148107.247453863,-213.77408003551]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[148295.883530775,-183.064852671931]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[148383.146900988,-183.421590613551]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[148833.812827259,-55.6053882622509]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[148776.772473416,-51.7530343718245]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144254.768191238,-1635.88714390097]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144576.162499947,-1526.81973715191]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144569.612488605,-1518.24128680356]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144731.094298407,-1399.26395290869]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144773.839955581,-1384.75651840301]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144946.061093568,-1256.07622763503]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144973.619043206,-1215.41511428729]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145284.969190906,-1037.9407239742]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145249.446141769,-1024.87243493937]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145418.706865076,-940.756714884483]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143936.642640709,-2220.80828601605]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143880.293906528,-2239.89159302204]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147016.519106096,-1135.45822297136]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147039.354554049,-1140.68594428594]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[148397.777073786,-1478.47808881913]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[148391.450698192,-1496.96767473296]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146862.247787016,-1233.88199969608]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146793.839563977,-1217.19969323598]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146634.715927487,-1016.11125061178]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146652.942363092,-779.177667679323]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146639.071342911,-783.315844471857]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147033.904307988,-288.685637235933]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147048.085530559,-278.669888640638]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147024.676340099,-733.421064018679]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147041.942529162,-737.176248787669]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147038.887012879,-971.975360560929]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143750.873137637,-1734.45325802657]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153908.861265602,-986.410701534303]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153901.674095035,-973.398954121454]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154140.80067698,-936.383642016037]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154114.238326738,-952.007582046557]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154234.43918466,-867.615907905798]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154241.927884709,-856.337841189583]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154606.856761188,-707.880425450276]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154618.238286184,-698.727839702507]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155257.522769183,-466.016186471796]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155276.283812922,-488.619537639664]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155065.372005707,-357.754012928344]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154965.105747141,-315.802831648674]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154608.650953937,-287.399589498702]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154587.067670873,-311.921677409206]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154158.476946523,-248.666182235233]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154155.295726362,-272.720234943961]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143534.272571301,-2993.67894692865]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143532.318772813,-3025.72327106819]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143645.741356633,-2817.41385343188]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143642.288663972,-2771.91665813519]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153597.625118791,-228.679259201977]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153509.731915113,-204.852024886291]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152825.152460169,-192.319595091278]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152451.950091528,-188.600213208469]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152392.008580043,-169.670075359638]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152101.94033864,-193.078706039407]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151974.789822005,-177.915730895125]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151756.084762023,-203.000301348569]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151725.694917765,-184.546622546157]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151457.214902603,-183.531033819483]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151379.997486593,-199.890535398328]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151130.984429346,-171.789024666999]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150868.968469948,-178.886885314249]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150816.520478625,-149.004166108265]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156229.035164667,-698.855901417381]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156772.372239943,2599.2683176244]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156756.474966531,2617.6411565803]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156507.040964001,2395.26499701338]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156501.360893173,2371.8869736573]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156066.01643316,2315.74234452465]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155990.193793883,2334.05728560721]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155762.122253469,2196.56570929562]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155776.983833555,2256.39317969675]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158051.174843305,-3710.14387041295]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158069.713331193,-3893.9024075747]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158021.238460362,-3454.01796512835]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158007.023971445,-3601.47531615966]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157886.116720887,-2932.00936907431]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157850.665195509,-2939.84054445953]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157705.664153947,-2766.84109835222]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157666.922729126,-2677.16122744617]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157694.579089606,-2496.59893066931]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157670.31991681,-2432.60434521624]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152091.30878401,-1472.35616290465]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159709.763378206,-6142.94927963446]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159590.990281428,-5971.30956169625]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158865.954791475,-5537.00606785039]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158841.478772713,-5542.00390486821]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157622.614099697,-2183.38628061465]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157565.57296174,-2112.92500897613]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158584.217071092,-5297.88618205627]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158602.319347233,-5282.99012060498]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158201.583782304,-4764.39289970766]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158237.928708723,-4766.43579613842]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160677.875359496,-4271.12870716659]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160667.895960848,-4278.85216877755]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156002.585511035,-384.815746028209]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155929.945986721,-356.754504889541]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160544.611157989,-6327.52204724553]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160533.563156631,-6345.88893095136]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159887.072908709,-6327.14242697513]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159879.164562596,-6350.51283769938]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155445.770196829,490.220772344735]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155438.123812671,464.41228593979]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154843.163076135,494.578763604513]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154829.084475044,524.259829033632]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155105.510625063,478.157161136216]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155141.793013872,506.937745691976]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155293.514496162,681.371885576635]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155316.700886856,671.725397473085]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155295.891847098,853.283538628079]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154634.037535755,91.0434639247833]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155398.693744139,-345.104691765795]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155508.589494135,-375.116681737883]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155980.831863861,549.542766695726]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155843.366093029,522.996902102313]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155862.587079191,499.505200111133]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155679.69030909,495.575244371779]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155669.745937812,475.101205439772]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154487.50886607,509.007567831548]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154416.083643882,536.076415356714]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154112.605956835,520.546356170031]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153757.444352265,424.303508463898]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153743.239546219,465.744128626538]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152855.032478015,45.5645865414408]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152879.683236098,31.4683467978612]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164084.807141071,3586.20923390158]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163999.743379479,3544.04589878104]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163409.443753284,3068.77468488889]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163407.206043911,3091.07749784598]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162842.151159016,2792.54634346615]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162766.650592494,2800.15860202775]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152538.872758748,-767.688620629022]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152515.972965546,-869.509595392621]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152608.443654881,-1059.52355493762]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152755.689796505,-1054.14569563267]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152982.531721137,-1079.10192637937]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152990.790451132,-1062.72633624659]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157962.011134023,338.49305471062]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153396.973586346,-1095.42245628568]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153463.976978521,-1077.77738867397]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169193.411421421,4994.10505378607]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169573.394163493,4879.20586957043]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169701.515768766,4684.80856039427]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169805.940484675,4307.69733711611]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169791.668613203,4288.55363097053]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169159.138800563,4994.21491241397]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159619.34973832,-3638.19441191253]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159169.592917912,-3965.50167158374]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159172.950468505,-3941.0033448718]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158772.005412093,-4086.92847953882]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158767.133552581,-4073.93043579475]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158461.079420599,-4203.05570959585]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158454.072969014,-4189.27190135472]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158249.898012607,-4363.74980566785]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158157.794895444,-4313.32757720182]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157322.836636366,963.328075356956]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157323.887081711,1032.64689098543]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157166.87314381,1476.45961411408]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157127.838414825,1516.00904642924]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157097.429491652,1677.1969241781]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157048.304117877,1745.63026586513]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157047.518461682,1902.80419557053]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157024.736272117,2002.73180969403]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157161.231278198,2756.36474211758]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157020.182587847,2731.03857102065]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162232.014153472,2828.75056483923]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162137.057003569,2873.26859661209]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161473.416584995,2816.89384596545]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161432.513751184,2833.69521105645]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161124.734362975,2835.48780309642]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160944.275697971,2825.23743740894]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166160.148005964,4424.87068271689]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166136.926644547,4424.95240064134]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165808.440647042,4335.6062394685]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165757.49629629,4323.80842781538]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165152.300503955,4417.37719539972]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165188.598535093,4437.32173627592]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164783.396979384,4302.25779813703]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164771.409999551,4275.68161772151]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164511.768847332,4094.39930209616]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164493.006896203,4044.55589661188]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163107.201793562,-1235.18980550318]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163130.004787389,-1202.44583395513]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162234.719199229,-557.328049397212]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160523.452304824,2831.72337216098]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160414.006385808,2830.17628817994]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160227.851405989,2565.74016440252]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160249.487075775,2585.50501448911]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160238.529234851,1934.2439654019]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160262.075724062,1853.84270203375]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162810.758724806,-598.38890076743]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162801.493996301,-590.921743750689]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163393.458573164,305.234507297515]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163379.533680499,308.947672019538]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166094.910834661,4363.43066680746]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157792.885712601,254.1587708281]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158129.743170567,445.019790977298]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158143.528346696,473.798402302549]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158362.575567856,758.128661554481]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158351.029811768,752.743617464963]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158071.886815028,923.214347412519]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158023.23729051,868.743915838189]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157715.756241941,677.868624430208]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157621.107904548,645.009243414854]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157492.61602914,671.197207724326]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157474.433501798,657.080007688375]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162600.967891771,-751.196339813119]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162639.595009763,-712.192651545571]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159746.930991321,3089.05088663293]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159487.285640548,3069.73130161874]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159315.021838904,3019.65758057439]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159521.820567163,2577.88878787152]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155939.554468254,951.91917182703]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155997.378822773,876.452653628308]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156070.510047236,754.442172491283]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156061.389407814,730.969204397523]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156455.425728571,719.086808435153]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156457.465312409,738.599097723374]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156905.556916159,990.918504674337]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156894.384641557,1006.82970727305]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157077.565869764,1160.40912680572]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157123.418908114,1232.85596957162]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155982.797791303,1955.86082601902]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156065.850172095,1933.07618166704]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144993.924116771,-3278.29866497591]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145017.067816229,-3279.0960671893]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[148026.893715308,-4365.36229311838]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[148127.376075164,-4352.37070842413]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153182.054705794,-1658.17687839089]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153200.50344482,-1668.02719645243]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154422.924630283,-3069.66795643431]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154416.147232098,-3087.49363671028]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154348.830258247,-2913.47868162254]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154344.504736245,-2864.98729511455]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154178.067730506,-2638.70295609668]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154205.601771264,-2634.72975860152]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153832.286725292,-2460.14073660522]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153816.881480321,-2435.44328517449]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153652.661553408,-2312.86806434422]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153606.881838549,-2225.91036865156]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157438.298948758,-1992.01916884992]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156656.236869889,-2111.98668186634]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156678.792651621,-2118.9648911744]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156468.413255839,-2125.7817887867]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156426.335693202,-2242.72031484754]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156218.751931477,-2247.32610066317]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156182.717056313,-2261.02710852848]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155890.274945316,-2304.50465756835]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155898.507029502,-2313.41568221262]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155509.914042277,-2767.27923483419]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155522.268455338,-2769.22179834766]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155377.354154004,-3189.81620817533]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155379.346946939,-3201.1389788863]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155176.451895644,-3172.35827062791]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155238.022374428,-3185.95418933878]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154790.772836898,-3148.48621463287]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154711.835411783,-3131.47840617469]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159187.902085325,-1945.455102932]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159153.05995835,-1942.20190664998]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158037.725542826,-1993.53694971761]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158033.178059999,-1970.55735298363]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157604.422735904,-2008.05747183814]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159791.113995313,-2108.04199195519]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159793.031243008,-2094.07448901125]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159328.641745957,-1809.73304654157]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159350.784323845,-1826.7966818494]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147409.113098442,-5280.53219935595]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147532.466219708,-5304.27421607415]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160434.898453207,-2876.13949195994]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160072.790559618,-2682.98368796776]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160100.922905198,-2668.57004345913]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161844.755189632,-864.472811876272]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161802.337092718,-897.579760819382]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161841.893766322,-1634.33268056961]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161829.403237224,-1643.37838161312]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161457.212659313,-1838.33066506294]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161454.575749978,-1823.6791549967]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161259.867450074,-2721.87611885805]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161277.500458328,-2705.86406351655]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160975.195429924,-2800.69917643256]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160946.495994273,-2771.74476315436]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159362.819313711,-118.616307076882]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159375.543216689,-120.444626173354]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160063.56531695,-1498.91076966305]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160059.992587728,-1508.76755589212]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151064.966361473,-343.488641202915]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151169.236772909,-233.986301813391]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150593.35992063,-770.892274544109]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150566.233511616,-841.075539604062]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150486.97138989,-1254.28372506826]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150517.318919718,-1263.09113942774]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150703.101568347,-1465.5813622151]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150699.883178914,-1440.60828199558]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149829.591698247,-1108.5773696758]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149789.772368205,-1062.6716488275]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149523.007823091,-480.61952311988]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149495.971522945,-461.288982075988]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149391.147411985,-211.837510878919]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149359.934590826,-173.961193291529]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153894.181056042,510.497164634464]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157942.606756262,1853.59936439904]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162467.985593662,-724.61402720277]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162404.435194783,-696.082636814099]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151588.810815976,-1182.56847617927]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159269.392904783,2445.29780279496]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161700.002074022,2465.49157056381]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161715.387205437,2456.11334255995]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153179.526073081,2.83213653316488]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151664.808163083,-1318.3808496928]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158416.69566505,-1882.48700140283]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157677.804399765,161.271108670218]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152646.019986823,-599.730912961473]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152750.294253935,-618.987718632561]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152871.345021645,-628.564631086076]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152874.232307034,-608.280739148031]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152994.755712621,-611.642115426017]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153012.038904973,-631.358866494033]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149888.052716842,571.86963202589]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149833.537961195,560.395865944331]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149631.446445214,422.801409737964]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149583.332621144,391.662949768943]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149321.105194608,112.080740430101]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149314.282135788,122.32115443662]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151515.844175156,-296.741032760998]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151529.718771493,-309.788258618384]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151769.900336618,-599.380566393491]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151771.350947489,-625.231782088522]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152070.271115147,-656.115899601777]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152155.416298057,-634.57703813375]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151649.399250797,-962.256133481627]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151682.309564266,-960.424587692425]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151886.140043903,-809.264124906331]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151800.817684665,-847.215653410065]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166035.930808928,2627.34952536836]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166008.06716831,2576.86995878082]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167008.156800194,3084.27107885695]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166991.620831511,3111.39139852748]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162157.533685864,-451.543647439394]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162150.351871838,-410.80906786886]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162221.533072125,38.0128725764807]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162238.790303641,30.9574788371683]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162253.139838067,609.997145295667]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162246.779337593,694.207857924805]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161927.584433183,1210.45085226034]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161941.336115981,1210.39650360058]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161831.821411837,1477.3631564278]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161806.288376067,1505.5263621693]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161754.147589308,1688.85716080526]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161763.349418436,1689.70795587427]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161734.812830227,1873.72165297519]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161742.634559154,1901.41982304718]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161737.430519987,2088.22474856622]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161723.215544667,2088.2812460704]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154742.405186994,1715.48236441321]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154756.333740871,1713.64223929174]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154850.100237543,1578.21494854096]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154885.718399583,1565.07064913434]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155168.719015249,1480.56085022329]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155184.957920878,1495.90288858023]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155267.812719585,1790.226918181]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152390.567053407,-593.259554290795]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152426.655309838,-606.304219545505]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153944.76149431,730.316752196231]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153904.685376648,763.783820886514]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168957.746815791,5072.28265960218]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168878.727970061,5079.08214896923]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168762.73747388,5141.34968272696]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168732.376354539,5144.5540235943]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168554.618795225,5233.86695608805]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168500.495576923,5241.47551738773]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168135.164255323,5313.33314121986]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168211.75052064,5301.87706492632]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167755.020409125,5287.09304973349]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167742.132314029,5265.9511835]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167400.8954207,5100.94867118611]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167341.971286941,5062.32773948507]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167013.505647808,4969.16954055388]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166991.822328037,4983.99586701795]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166644.613918992,4844.66223296919]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166740.746006062,4898.01303896628]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166476.918720649,4699.27876928786]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166371.462659864,4636.75707282522]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153460.933049811,2505.56002132298]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153416.044765984,2656.29345963342]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152883.924157452,2722.32785865181]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152890.519846018,2703.2175866047]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152550.924959363,2622.69425182621]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152493.696038766,2622.97641357017]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151870.905576924,1685.58923992864]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158393.33324261,1941.26293503982]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158475.651646381,2005.57255331147]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158695.363662183,2108.55736669915]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158722.257657362,2096.90662761556]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158772.179477378,2168.789140357]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158916.391986423,2216.31097172765]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159205.344621932,2436.91739294794]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159830.668462677,2763.26926863292]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150051.774032154,-2463.15735072683]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150013.079150622,-2450.0903999451]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150540.776286982,-1872.37509528478]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150563.072925602,-1838.32657016965]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150970.444833727,-1551.02036600193]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150990.890550007,-1496.66341903858]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151218.731212349,-1307.15016140137]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151202.289674778,-1286.87984693277]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151405.558384788,-1120.97439454135]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145317.42432503,-4101.82563808816]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145337.843758039,-4124.34692508128]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145553.543043407,-4058.01628369815]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145594.252319753,-4060.24235460744]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146363.60075078,-4009.31032978004]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146416.015992197,-4029.78865896957]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151624.46974894,-1800.22884401411]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151137.738784868,-1883.29308927146]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151349.972759893,-1969.66202958394]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151141.504365168,-1910.59803963272]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151568.0349667,-2099.31354800088]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151722.067253095,-2115.7252013688]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151789.434439766,-2101.75373316888]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151881.923275405,-2045.5364742364]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151826.292905303,-1924.35811632453]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154088.49049465,1953.39098880003]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154175.149486081,1947.43237517995]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154394.84103617,1898.36203354009]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154346.830968998,1923.43516051729]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147531.704426468,-3819.1827239939]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147505.011586706,-3838.22649891977]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147841.176642038,-3789.02646858105]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147852.638553422,-3801.28944119049]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[148312.789948016,-3809.86515053076]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[148313.170436307,-3825.61760509404]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[148661.461215432,-3785.43843283161]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[148669.170220429,-3751.87117090338]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[148901.195081506,-3598.48224677192]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151996.267881554,-2565.64595822868]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151953.377163194,-2330.61914967769]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159602.127742077,2542.39066317497]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160190.307516369,2698.10881691304]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160048.527877527,2651.44532626966]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142166.624694505,-10604.2905182]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142167.614768117,-10454.2235063596]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142847.639321542,-9865.51584378688]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142825.824452549,-9810.37129083578]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144937.70049327,-8021.200172638]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144859.950068587,-7987.48142493999]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151878.541994246,-1810.37335730286]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151948.074643733,-1827.69050869526]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152176.425119205,-1814.18436011387]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152335.461041851,-1814.19524369977]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152367.906983086,-1831.65874882304]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152499.095051082,-1673.24943500973]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152516.052427662,-1627.19107041258]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152520.577850014,-1349.91836977238]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152497.396899598,-1338.71239948453]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151377.180802594,1488.74778842006]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151341.91058144,1496.35742300685]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150894.7237996,1555.97150529758]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150903.392760503,1543.17165867711]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150418.963609554,1063.59937649232]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150415.426516245,1080.47723795875]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150356.333944708,811.026993844425]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150320.306315447,654.040766775841]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150289.133058944,681.709381325461]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149168.293216546,-4021.38215356437]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149195.303539986,-4065.11521979736]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149030.966957932,-3600.38858549955]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149073.59694751,-3555.46987906017]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149358.554965353,-3286.77245165]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149431.099820147,-3227.25701146486]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151738.856108345,-1639.85975619627]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151775.309907794,-1691.95178815577]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152043.016787763,-2829.08661357459]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144898.202024275,-1921.76362503628]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144885.390093417,-1935.33352308639]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144994.157608831,-2258.95167837333]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144978.979825438,-2279.82888889557]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145006.05949029,-2551.84662098548]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144998.817234316,-2550.36338633823]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144920.411873208,-2834.53508359799]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144903.289808136,-2853.84820857371]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158421.644495433,-1898.81312488875]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154992.283887641,-167.632748093747]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164121.194766798,-3383.24483418168]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161974.4763687,3625.26244749315]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161959.745322105,3635.1922998699]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161837.385270914,3537.07130033511]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161638.320978587,3376.81084923755]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152186.702454832,-1503.55392263806]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160006.440288775,-728.57883586426]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160269.200420611,-970.133090454328]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160253.4527501,-980.050677882391]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169824.967516308,4243.74983660149]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146941.649962039,-4322.41175984347]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146318.491124916,-3461.00950732984]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146327.716256505,-3557.4493311944]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169822.150574857,4174.87966042547]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147654.426577236,-1300.21830770513]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153116.630449645,1019.03776338481]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153136.530324408,1022.04666155059]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150806.019615906,-1095.97238666489]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150725.526605325,-1187.84548082366]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145594.967535231,-883.852841360087]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150983.809729838,-951.463854773843]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151044.255872057,-871.466062841879]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151811.713766893,1684.66506091581]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152027.622934898,-2821.57858386962]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153157.257798817,86.5726056830608]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152013.838322301,2027.06014261668]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147751.979277378,-1376.17222279246]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[148886.184160954,-1694.15385163727]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[148921.620570812,-1672.26877817727]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152027.759337352,2023.88507382502]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153778.104005047,972.916329459753]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152857.55599752,1245.13343512866]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150094.45209563,-72.419214040332]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150093.621363823,-89.274553259369]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147026.116806453,-927.981224002433]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159146.445321596,1408.40821187396]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159261.559796893,1032.68751744024]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161399.261180934,-2221.09318315244]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161384.097027386,-2224.35996148427]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161459.487522485,-1920.30699398514]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161445.987150371,-1926.02067578293]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161879.85230663,-590.980564915692]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161893.795496222,-590.25928931887]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162049.654802804,-470.640742924705]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162077.641153103,-467.312497444509]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162313.634353157,396.467518456746]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162306.361066286,390.062805797148]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159987.239449426,-719.62579986098]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159250.118593953,1029.85206109664]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159116.085919941,1436.04452601023]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159149.419982824,1540.16538216639]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157665.9766527,1889.30675992178]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160453.82515127,-2885.0904214725]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157141.148842988,-923.236190915515]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157158.771530116,-931.300566210295]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154611.655964702,-1603.45226356987]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154499.650840051,-1564.99059638695]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153608.170170569,-1552.31320743787]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153496.165179311,-1514.72716697055]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[148786.048753203,-632.240943657642]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156843.236866614,105.520778639824]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157221.872960502,365.819552249508]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155288.684295616,341.320263260684]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155283.746306064,-82.0299067108426]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155305.577791203,-63.607913236483]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155307.750541689,344.781187393877]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157206.460825492,389.846159639477]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156755.877385486,62.8764096808154]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144771.938393227,-2447.46518903627]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144776.490854336,-2464.12915708224]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152178.360187957,-4987.77244831889]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152164.310034787,-5064.90141210204]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144132.361894733,-1795.01413336303]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144111.791545783,-1799.886353279]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144633.686542836,-1528.70300177392]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144664.492142772,-1554.16945461481]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153112.129703473,-1147.94757485547]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146988.103340083,-3973.05139086931]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147047.459196047,-3948.75325106404]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151925.424587363,-1038.72800830001]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152287.637678573,-1053.61556822871]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162885.54105698,-1040.78989051806]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157983.634234826,1716.6589218619]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158042.1264375,1706.64318071312]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170194.887876905,-453.914091254584]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158185.042403169,-4311.7819226943]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167003.135625123,3110.02091182012]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142670.995678335,-2919.92957238294]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142688.293969247,-2934.34097729123]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145187.577002195,-1133.88761644764]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134273.120044358,-15192.9041125967]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184981.806478222,3590.65779486258]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144448.777500643,-4296.07678926073]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179331.678792631,5873.58474587661]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172005.387357076,-1196.37736844271]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144736.17932696,-5170.32628974575]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144715.206474594,-5163.10743029852]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144906.228511565,-4733.2789921161]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144938.275446839,-4722.36990171077]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144088.409777781,-3990.63223353459]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144081.346720342,-3990.14764357964]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142247.741474121,-6090.59413206443]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142192.409645022,-5950.9484393688]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144590.104577679,-7991.48426102573]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144438.204245323,-5939.9468873369]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144194.836607605,-5764.84485418024]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144144.153570699,-5749.46691177349]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141348.93560662,-4335.08787129127]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141353.708200513,-4314.70761100744]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141307.653083721,-3983.55371062952]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141307.799420798,-3959.48497810966]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141226.006958146,-3650.29707442084]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141238.506468195,-3628.18917927251]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131151.504920296,-10885.910712053]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131672.428878506,-11889.8890914446]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131627.759934297,-11627.0236000999]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131641.533456101,-11573.9896845476]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131402.803670545,-10834.3421206354]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131392.042901589,-10829.8289877022]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131415.917518712,-9994.98249443085]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131453.404986395,-9969.40349072526]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131061.741269728,-10752.2769976367]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130933.008139461,-10538.8336409031]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130947.775950728,-10542.3776009124]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133332.338912736,-9111.80436378182]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133346.151958509,-9132.1981180429]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134455.168774175,-6322.38508546562]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134432.937117831,-6309.47830832854]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134373.04624371,-5857.84402079636]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134349.937154315,-5837.38840821123]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179859.679801162,-2143.2466113033]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179863.195631267,-2106.54134241643]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[182298.974825341,-344.019608343369]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[182306.815246711,-325.400414663425]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128080.210129158,-17553.2564387716]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128043.373499548,-17322.821978037]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130448.394824393,-18419.3994443993]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[127932.434890637,-17730.7426139895]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[125478.292562331,-17728.6166562167]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[125481.543283906,-17717.5494494788]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[123947.507429229,-15944.6406784311]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[124275.74741431,-16123.9093686018]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[124294.206601566,-16144.3523160315]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[124521.270958618,-16286.883015111]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[125119.70819925,-17345.3932442139]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[125178.600201883,-17556.2665726483]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[127950.83879373,-18637.769399061]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128125.198667337,-17550.8168692181]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128464.124307152,-17497.861817227]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128495.342632982,-17481.4538566494]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128818.342087978,-17441.2359453688]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128819.992349328,-17432.0416229886]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129057.191376415,-17372.8838700076]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130956.725963406,-20484.8102446151]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130947.439086259,-20481.0838489693]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130860.331279314,-20772.7376209714]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130850.687359609,-20779.8787357186]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130137.81219466,-22555.0392651573]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128575.600188579,-22012.5956860844]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128575.456937203,-21994.0709602408]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[127270.790311878,-21872.2506193648]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[127237.801815471,-21861.6879751497]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[127052.538553069,-21972.2175008139]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[127029.016793164,-22003.4313906729]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[126759.143989978,-22178.8736933894]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[126743.468497859,-22207.0402851268]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[125778.954347955,-22051.3077302671]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[124913.422598349,-21747.0551261677]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[123592.116130994,-21403.9872399888]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[122390.500431251,-22540.6177133495]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[122379.710066938,-22538.6458546104]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[122374.107143768,-22820.2317662635]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[122406.348458364,-22865.8562833336]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137156.475602884,-6588.12899067556]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136273.194788286,-7741.46427293116]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[127906.718626682,-11990.0282081514]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128052.656272044,-17326.5512366843]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[127956.408531667,-17724.7091076024]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[127964.598693947,-18628.1105145208]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[125192.394423769,-17578.5573389776]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[125128.399628333,-17449.7269570855]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[124608.431401853,-16319.839490511]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[123934.401322111,-15953.966274882]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173742.918179562,-677.63968602597]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179090.707655412,-2790.56732846581]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179461.672414252,-2711.28526897461]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171981.090767124,1792.30876620935]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167289.732586071,1990.11855234043]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167299.029496884,1991.8616276008]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138210.771515214,-10362.3231250481]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138376.84228261,-10215.637440848]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137978.957857784,-9414.69454175612]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137956.940528245,-9381.05554470897]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137863.175612507,-8772.27981572313]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137852.742230438,-8716.75279022759]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137670.628076994,-8584.25131850492]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137663.760674384,-8552.92759978533]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136753.839654815,-8428.5557352156]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136741.516890635,-8421.15438243165]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132732.719386292,-9497.7621794655]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132681.71092783,-9475.22309119662]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131635.014034863,-9428.39389847603]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131650.732545844,-9428.83774551767]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132090.540006558,-10267.5051873715]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132135.310077762,-10277.9131385456]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132396.726759937,-11052.1971993245]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132431.502963798,-11055.3240018527]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135545.081587821,-14885.4373819158]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135588.505060527,-14920.1111597972]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178833.124670049,-3216.35904816003]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178800.385777566,-3308.7894875551]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178733.675438587,3856.22812019871]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167191.607503074,2722.50010758289]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167180.719084447,2716.99141193822]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169993.553528331,2246.28877942439]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169978.680585039,2243.78409272392]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169375.05455353,1919.9255412214]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169386.129108896,1925.65794470982]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172017.464289801,-1134.1890464896]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172004.659390338,-1127.05327729578]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172304.767503902,-4133.38139137893]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173105.635660936,-4185.5595543448]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173121.119028189,-4167.41273424804]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169556.040327278,1771.94416840904]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169541.957375474,1725.73677807039]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169559.01273664,1742.32021841675]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169861.309431308,1848.62470588647]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169862.963907519,1872.57736012182]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168179.126023801,2626.68027010275]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168174.401670544,2602.73798614077]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166085.02085536,949.677365360083]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166109.219201675,960.794720162638]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166032.396691523,1572.99050468288]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166009.28591862,1606.34696213715]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166045.681315154,2336.38119535829]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166072.683486891,2379.54340834182]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[189776.674689918,485.073197188904]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172774.503934465,6368.97418561543]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177128.946730043,6609.06825646386]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[186900.472530674,2615.12700086186]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[190274.736344588,-158.74571553868]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187968.550828093,2603.19223087101]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[186506.086693744,2999.6595125281]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[123767.663736701,-17648.7716304793]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[123394.489864346,-19169.4604025267]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[123778.583181755,-16981.9922785084]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[123813.89797936,-16622.7701848943]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[123844.427688165,-16232.4519565346]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[125861.402322538,-13995.9218239515]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135656.011457252,-4581.01010229537]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140132.930760517,-3011.33370031253]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[189749.623311616,474.787035351328]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156418.608384197,1864.92272974813]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156602.860446966,1371.28307143878]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156780.993608468,1042.16587215551]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[123745.383741785,-17794.3484112673]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[123906.47391141,-15882.7566986913]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168295.777421809,-3003.45568754844]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154803.388979012,454.612957236764]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168092.581925219,340.321444307454]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168242.548544736,251.093149206019]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168231.694550682,256.674732835847]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168680.982352644,-175.593373630138]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168724.077554338,-183.164736080565]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169100.459026874,-324.133075764286]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170025.56439484,-543.341201608127]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170389.909042361,-498.881679681886]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173730.283445889,-710.103345921205]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173752.230013199,-739.112003071874]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[176375.699845563,-1382.66586960398]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[176402.550747743,-1386.39187189599]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[176889.093188656,-1698.46521034039]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[176848.823581433,-1670.08529193618]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178680.093192935,-2763.93532920018]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178702.800946872,-2793.82148449216]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179091.328967721,-2804.10021099064]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179402.938460892,-2705.28141892975]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179842.731023776,-2736.04761397344]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179862.816647527,-2732.42945468082]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128506.238045763,-22223.1666159712]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128525.720148011,-22208.6684959318]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129026.502294155,-20602.2225455585]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129009.285190203,-20613.1887169207]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129581.528069617,-19185.5967722744]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129571.900258666,-19177.7624847324]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130252.464444823,-18693.9626905239]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130286.795923936,-18672.0253428986]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131956.879029794,-14884.8655463372]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131984.930816875,-14866.6496766747]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132872.953235368,-15236.5489270369]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132834.107170422,-15227.517103547]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132322.718230886,-15146.3154003834]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132390.784990741,-15182.9504898776]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131205.151122504,-15450.7992892268]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131198.796617351,-15467.3922685446]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130938.388438711,-15656.9893151523]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130976.275498245,-15656.9264079985]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130674.155391003,-16002.506595991]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130687.738524,-15990.6242937379]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130675.181955031,-16223.4677449986]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130650.534268956,-16415.6277249255]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130753.720405907,-16957.9898609667]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130778.80118389,-16978.9110337246]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130707.928927291,-17659.7887958516]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130691.681473716,-17822.7255824308]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130700.926068706,-17831.998012458]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130574.186066737,-18199.014431117]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130584.221013783,-18201.9701616039]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130420.572930463,-18494.6257534516]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131746.797535434,-19409.2622206913]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131765.288829684,-19401.7387741745]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131927.001697003,-19580.3458301816]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131925.39509081,-19596.9725146636]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136317.112475258,-16622.655693817]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134297.376831997,-15170.9955521378]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134371.137617497,-15220.0781850183]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134573.659683188,-14851.5301697967]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134593.17216478,-14801.4152381439]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134103.81295891,-14685.0724273472]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134051.361196391,-14623.9314616438]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133579.75850921,-14173.3694690432]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133558.137530436,-14163.9039245591]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133397.11065423,-13285.7517951878]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133364.216991224,-13332.4448403575]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133246.888602867,-12073.2442588413]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133263.246934184,-12062.4868215463]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132991.868318714,-11705.0006498247]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133008.950130101,-11710.6649138253]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134203.314227087,-9618.79809064273]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134228.252770724,-9604.10431616212]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134492.644716804,-8559.58314756956]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134485.125201384,-8529.91634218459]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134514.368735234,-8332.34258493339]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134540.692057585,-8112.56476076494]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134551.518732431,-8107.09201497107]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134441.717308745,-6701.31146582449]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134331.765352616,-6691.35844599444]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133912.53426594,-7246.76699004782]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133803.292729479,-7349.508902653]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133409.625730547,-7790.48983733699]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133370.286119675,-7830.37225878052]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131908.022233346,-8375.34580281685]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131917.284453268,-8380.95710054378]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132284.607971144,-8181.99225956888]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132361.745141448,-8151.47419437702]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132750.18524663,-8002.99804306746]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132848.137564907,-8001.6823206711]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133016.27922738,-7965.24643329845]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133095.425553782,-7952.92761423247]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133271.797848928,-8003.95021566562]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133286.17099996,-8023.79338762624]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134073.311549751,-8451.35833952954]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134099.393074581,-8473.27663789416]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134461.355080396,-8372.69133931171]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134462.999440541,-8363.38513287366]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135033.275634565,-8433.6752532305]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135043.741242195,-8454.26589610946]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135812.39102338,-8572.87076966563]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135812.053331789,-8553.67928387778]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135974.360429368,-8386.48902951059]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135985.475644263,-8351.40083679016]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136266.724593619,-7735.32098808949]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137143.456424212,-6573.73556617013]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137394.953858878,-6382.58860623365]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137526.210871438,-6175.24054480786]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137569.72910737,-6118.17598411918]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138224.604259477,-5447.43534342787]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138637.208521287,-4902.89540248743]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138623.730193155,-4902.25514545286]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138735.644173611,-4761.43138517882]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138951.367886038,-4701.23683295719]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138958.141279774,-4732.89195248904]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139237.398876245,-4726.88882130763]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139569.526545833,-4607.62635342788]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139566.75121779,-4590.52726957784]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140632.850322321,-4725.69721774483]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141309.781566159,-4765.21884604439]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141310.526671716,-4780.30846575659]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142102.894198317,-4704.23158883594]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142132.957409154,-4683.55891906872]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142786.54485988,-4724.16817067721]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142801.891838345,-4786.04122932692]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143064.172263456,-4883.31475768122]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143256.595470253,-4922.93644031702]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143268.282453213,-4943.63610312203]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143695.697265779,-4691.91085464304]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143704.091434271,-4703.38448435068]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144453.14569013,-4312.51795957971]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144787.934242762,-4266.18864682334]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144771.16609898,-4288.16563192161]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[186602.21530524,2984.55142592796]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[186325.155204638,3023.76212496002]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[186291.045860844,3012.71929253457]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178655.358908145,712.070161062467]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178624.556174392,691.39746073226]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172536.767944079,1718.61204951286]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172526.026984802,1731.50890991098]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171930.011392909,1799.77802893822]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171439.164948686,2051.33696882881]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171446.907897067,2061.96190648089]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170854.725264743,3386.63116115169]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170825.810605119,3409.34567342652]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145080.706006194,-7505.24463324749]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169395.231330385,-6947.36852945696]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169401.333831584,-6958.47932240338]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168004.550144777,-2384.25144647533]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167973.763295058,-2334.23727692908]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167417.724927994,-905.222701624036]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167405.42662305,-886.769096311764]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167664.811958827,247.469457940082]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167781.080238439,280.354626550165]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167764.105724373,289.617438788933]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166693.770456184,716.625499051239]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166650.565562659,690.931548683147]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166127.211206893,792.47153564787]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166013.495745046,798.307028577372]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165434.177125347,992.808465371898]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165400.029385764,979.953872658603]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164000.002031129,979.539310026623]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168428.253658381,-2914.82536270103]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168655.188102896,-2878.07636688097]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168748.828759835,-2896.45950302714]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169843.080646055,-2996.55109323468]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170151.223544667,-3060.2878641173]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172175.933826836,-4126.35568891908]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172166.309033436,-4175.57402439002]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172868.95838135,-4773.076372326]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172900.592185274,-4864.33698814502]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[175271.316210904,-6623.70319252583]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177304.708854931,-8190.47444953735]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177321.040433144,-8166.88825612119]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[176813.24458589,-7539.24205921387]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[176810.258994357,-7504.51891655469]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[176445.085952068,-7260.06819220749]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[176458.989616779,-7240.80312714103]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[175480.066252105,-6740.02996086905]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[175238.500582747,-6764.5906485304]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[175464.57416313,-6652.03586193884]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173680.914164769,-6882.36347960785]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173589.557365307,-6929.58516708546]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171034.080044648,-6734.25582614122]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170988.902334579,-6728.574447666]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169967.52278923,-6559.85575962276]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169813.60241534,-6625.36984005675]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141939.685125952,-2252.03371284687]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141945.481900263,-2277.35836859583]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141679.214194486,-2361.16092553287]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141705.184856441,-2370.63516688801]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141183.126576536,-2555.58735538233]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141189.148729295,-2574.14773283905]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140145.91083796,-3031.93447821512]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139446.722791112,-3151.69270152698]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139380.583392121,-3158.26548637782]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138384.642254356,-3566.80191446026]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138465.800847708,-3494.44476583181]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138062.589434427,-3553.42684608471]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138066.945023103,-3570.09290637815]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137670.469223059,-3549.68262571463]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137546.981606672,-3495.97517413594]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137194.723605584,-3438.67275357922]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137095.683251469,-3443.13017401221]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136773.441723443,-3345.74350862578]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136694.180162325,-3339.67791324347]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136372.42978107,-3352.20383766259]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136309.972079419,-3349.68440285628]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136028.720915349,-3535.61415669194]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136036.842705403,-3558.62867828325]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135670.058132621,-4747.48543511808]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135532.360307686,-5108.50288164488]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135541.863003583,-5133.63448123913]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135376.341117595,-5315.54825151694]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135294.537624398,-5381.22050184937]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135058.180185817,-5489.33529594849]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134968.754587329,-5540.2010871981]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134536.71286083,-5569.6717764418]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134534.695223656,-5551.79977285978]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134289.935079709,-5621.90399015666]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134160.987139519,-5644.8740700921]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133908.937423199,-5787.46167926263]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133784.355407552,-5824.21092949231]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133593.208757931,-5898.76917821297]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133493.83718896,-5920.2699065606]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133276.467961746,-6034.35134519998]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133191.692922814,-6056.06072964636]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133009.494297284,-6233.60473436501]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132890.77054141,-6322.62735025428]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132767.181131211,-6549.26841196953]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132724.402117669,-6682.7421224821]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132591.331397737,-6880.80815631227]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132586.436223196,-6915.93615465809]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132256.010344609,-7285.43496444065]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132217.870566513,-7299.69830742729]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132026.051839453,-7556.46591747162]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131950.627640686,-7608.4011844382]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131943.11397364,-8900.58419839409]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130551.456581838,-9903.84970061947]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130354.295669384,-10075.3592570272]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130315.348639485,-10109.3536149255]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130711.648000153,-9827.35319955007]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130724.325664461,-9797.82792201405]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131052.444223909,-9302.24511729542]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131050.371695856,-9266.73542917409]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131198.54363179,-9033.96784381999]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131215.794110321,-9002.03420173784]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131404.543754089,-8857.06922748394]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131489.313734253,-8840.14452394401]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131526.528237866,-7985.53514622495]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131478.24708822,-8025.90133832069]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131550.86640404,-8554.95734472893]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131543.67631673,-8598.27678821312]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129690.296935835,-10691.829664859]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129650.882836968,-10712.6183526628]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129306.657974802,-11078.592145942]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129291.603470515,-11076.0418936435]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129128.311579886,-11342.834652407]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129108.18696343,-11346.458621172]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128490.520489445,-11828.0859491579]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128497.074012184,-11847.8784510486]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[127932.51548139,-11974.6911845385]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[127136.610099309,-13065.8650256151]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[127097.547998673,-13087.3118056803]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[125891.721172931,-13998.9268404958]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[125492.264340121,-14311.8809381381]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[125400.480318551,-14337.4633323358]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[124811.433413586,-14644.8245306843]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[124758.498372963,-14641.3078436358]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[123838.943774666,-16598.7858275718]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[123851.988202774,-16206.2227016829]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[123881.471507228,-15948.8921113836]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[124089.375127755,-15552.9758872244]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[124094.607138325,-15502.9907875198]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[123807.737257661,-16980.3356761051]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[123433.544322691,-19153.130245559]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[123421.557926718,-20755.5261007097]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[123461.447404713,-20811.3015063384]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[123516.930580937,-21063.198416515]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[123499.625878676,-21143.480437954]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[123591.892771051,-21385.0178668121]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140354.460731055,-15833.0845732062]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140259.858706282,-15897.721880141]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141432.996856157,-12717.3141189859]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141649.600553776,-11749.9707662384]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143426.535354634,-9423.80304910702]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143501.243833564,-9374.32644598483]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146374.956115358,-6535.43340801005]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147095.612830164,-5748.44828598754]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147075.095924772,-5674.46424430906]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146363.908996803,-6448.19022569206]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141550.708635133,-11901.2216208771]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141345.958355099,-12707.0264187772]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[189459.57914094,1375.28057356447]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[189426.940304341,1351.58082498139]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[189191.224318868,2182.59166983172]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[189166.032051604,2169.5321806724]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[189027.855749641,2391.51800239988]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[189015.664395189,2373.23106848769]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[188684.22868008,2412.54712255375]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[188686.708968645,2388.69759165373]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187722.84912698,2694.67506960401]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187670.226555387,2735.44815250108]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187275.417434744,2749.82764906116]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187266.854411768,2737.63839881751]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[186905.365860746,2729.02960079646]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[186878.999803592,2742.04260048491]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[186889.036678451,2608.59864860831]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187195.809858482,2268.34255765594]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187245.288941146,2238.66253936791]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187411.255877264,2054.76916162128]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187486.541859546,2007.31029063364]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[190279.401522613,-140.227808322117]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[190303.872045649,-386.14878435689]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[190285.842837721,-386.796040035144]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[185962.332200283,3112.46282296511]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[185942.81116602,3103.84003095003]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[185369.028300599,3498.44442612148]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[185272.778228264,3550.94333554269]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184948.854523417,3606.57020197529]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184988.832039469,3687.58638520038]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184948.457616406,3708.94523039629]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184855.371421861,3821.11559322738]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184836.888721948,3822.69756645308]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184495.003660936,4138.0200096069]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184453.62297404,4224.4896682126]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184094.939810621,4531.97888043831]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184082.574002548,4524.56806208577]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[183875.469379203,4706.03789649945]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[183849.097315393,4709.85332955653]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181218.590584556,6089.98759726447]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181255.74143818,6091.68965201679]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[182067.306922168,6332.3789634268]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[182119.779479918,6284.14377842704]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[182659.269817644,5887.62982444762]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[182685.538728949,5880.15108482796]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180519.361843836,6172.12715967145]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180528.430269264,6156.02601148223]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179390.298916948,5925.47820756433]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179241.610802991,5881.43214854546]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178429.673874791,6186.35369732277]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178396.038747121,6220.14767383964]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177663.854799964,6613.5770684203]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177573.310059222,6652.38678652851]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177128.911340492,6594.20560821582]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[176823.878880281,6528.38719263335]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[176825.421986547,6513.63165113982]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[176517.204905267,6438.62458351144]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[176439.521771227,6457.22684239497]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[176084.115186721,6565.3608399377]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[176051.635687311,6574.6477845909]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173238.685853966,6314.09770482837]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173230.947017134,6303.02763536008]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172774.451455495,6350.4513114781]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172201.140110457,6143.23719829181]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172083.445261578,6101.09739546222]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171601.046302942,5775.30743763759]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171619.293625264,5758.83792602259]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170849.229126798,5404.10252774722]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170711.302926862,5341.63214847847]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170053.714372199,4948.12997098063]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170024.202007735,4955.76424038038]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151278.814528683,-9518.35000525852]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152483.528630816,-8559.36902284384]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151291.102528152,-9535.04944597016]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152036.640830086,-11645.6368195047]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152038.704921601,-11660.9535161353]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152471.194610031,-8551.87695745297]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163824.267809435,-1278.83569861151]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164611.806979299,-12280.7724658861]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160870.525984079,221.869695996633]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166342.463386129,-2334.22619861062]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166921.364357876,-2741.18237128924]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168116.17347255,-2893.83374380611]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168565.363877101,-4369.92562119785]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168684.0681083,-5378.63942461833]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169428.036901044,-6866.17211346299]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169761.020943493,-7915.36185101327]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169973.183597284,-8717.26815063221]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169968.202606031,-8733.77887814969]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169643.713656252,-7776.35094013682]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169385.835798848,-6830.98940226767]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168708.883164409,-5525.34934354515]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168525.513694923,-4444.88517286663]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167032.085300677,-2792.3608544874]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166339.376287657,-2366.49187664851]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163927.327713128,-1282.2166688366]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161061.302925112,82.8944711953518]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161347.34487298,-6945.90670731774]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163479.446386413,-7963.08877095429]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164281.111618111,-8479.28949177323]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164265.425672229,-8495.53599072382]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163486.048844407,-7987.95871524035]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161369.325002862,-7007.44188725058]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168775.940279347,937.027398862701]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168792.714919139,952.168497225095]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167855.457939363,1683.1935434675]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165982.785862468,-346.238926523714]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143041.836652542,-4870.98190204281]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137376.127427412,-6417.62838448148]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139134.43002393,-4497.18986579124]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139334.686729535,-4307.66722947627]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139343.097052116,-4315.70633472572]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138160.876202882,-5525.00458992069]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168189.855362065,334.342992476886]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170395.313669627,-524.408843495999]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169105.578863005,-350.43650067877]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138699.50220332,-4757.09796194854]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135992.95038265,-8388.49776087771]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139565.719354541,-4101.80613259104]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139560.66153062,-4092.90084501903]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139126.125969759,-4487.0437642482]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140602.901343164,-4697.00660864922]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166065.007739146,834.173161973362]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167861.651925254,1673.85591156437]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136849.245089912,-16593.9696363331]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136338.364218528,-16618.6912466027]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164844.634523183,2401.69653196656]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164852.393023104,2414.64544764929]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167279.647548764,2221.1913896795]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167271.873325105,2202.69480013737]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137994.985027639,-15062.2557398466]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138182.092565804,-14899.0694005988]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138246.93836919,-14962.1520156219]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134498.798181707,-8337.78315712139]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136861.553308007,-16590.944064669]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139173.823198198,-4723.27186697989]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169934.797327567,2055.36397899617]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169928.328459716,2036.75031213602]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164006.186142969,968.424546245718]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[123475.767733041,-21381.6634129109]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128526.402743259,-22242.5041702246]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166073.609316336,1192.06955713429]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166069.905847497,1169.4556868957]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166914.383269366,3802.66658990731]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166901.665333148,3778.08685234748]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173490.498616371,-309.375603682187]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173498.691610093,-337.68151188246]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173236.063138887,95.613999349589]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173225.78908902,76.897884825943]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172701.242846503,1463.92574308073]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172705.426604615,1432.08112707461]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144144.126102138,-7089.25591705146]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144130.573974489,-7100.82404425752]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144319.364588985,-5955.67857999401]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169968.647843891,2035.73710366397]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171092.80221312,1804.25245386682]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171093.493555637,1817.89301467541]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168965.513336304,4572.02422129596]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139343.868117977,-4281.76956001332]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146844.795860026,-5077.78910929826]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136802.279324861,-3371.44422192819]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169552.764946451,1764.52316071821]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154817.517991159,-2142.25805206428]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152792.23559706,1188.66307695652]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165535.985359344,-6168.27541490173]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162460.458068479,-7343.60318804492]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[162397.795096017,-7314.74329268222]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152239.027270279,-4527.76508210803]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152249.501144192,-4515.50504990225]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159318.613250587,328.56603054452]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171386.454761469,-3434.71029718168]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171356.207487283,-3383.82148498535]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169849.093835127,-8273.77939646359]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169857.070764849,-8250.95595657988]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165180.864451006,-8076.29256779136]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165121.168292671,-8072.30612901709]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131340.354576175,-17561.3519582205]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131374.749364141,-17569.0270115577]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131714.373307968,-17453.6267666346]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131712.525191957,-17438.4177031138]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131401.465701313,-17266.9585101175]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131419.770975796,-17258.8798700245]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[122533.342491692,-18671.9045262702]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[122664.037079714,-18946.2598209022]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157940.124882934,-5577.49475151621]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156470.770945588,-7726.86528914829]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158049.806608566,-8113.40416406642]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158036.916274289,-8126.10353149864]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154652.056212812,720.861500221014]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154836.617596766,1239.20168787078]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155121.560566551,2108.02206665371]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157179.527646667,2504.38893381081]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157050.890061633,2283.79171708657]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155564.119055266,2435.5074734363]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157029.430125664,2221.77348427445]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157174.112371221,2519.27600598719]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155558.64760566,2417.56399354571]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155132.008722528,2117.06866927515]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154843.288916878,1235.17736564332]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160329.29251135,2382.52992391726]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160409.655096862,2404.6044373003]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156499.762352033,-698.861312644149]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152276.591845595,-5373.6965919878]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152265.868312655,-5379.85496126238]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159464.313258511,1783.62944082468]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156985.568018444,-1360.66640991659]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156992.928672312,-1377.44774553896]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159693.084681257,-299.466991928115]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159696.598291288,-281.513140043127]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[124652.02466629,-21678.2564873992]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[124646.071129481,-21665.2325060525]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128422.468571091,-22353.2138080047]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128404.051515408,-22362.1735679493]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130734.483906294,-22094.6690637722]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130754.985333797,-22080.3956677863]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130887.348666034,-21268.9629524807]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130872.791725329,-21272.741541728]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128919.564983092,-21189.9833426758]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128933.23976711,-21192.3018201178]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134566.449709805,-5902.08245024038]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134563.169334272,-5864.6797722929]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[127486.683002306,-12076.0727462719]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[127504.271780054,-12088.2949739984]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131704.95363102,-7823.96420800395]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131727.294211265,-7821.45988659514]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136023.936022872,-8021.33416712959]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136000.308151162,-8021.73238046392]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137294.570364446,-8453.15252264915]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137292.184407039,-8448.14564241178]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179132.916985967,-2829.81155944057]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179111.981780536,-2839.1939003414]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180080.255745447,-2812.73972368741]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180025.156841302,-2801.53421711078]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180160.168509963,-1382.66548795643]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180149.47463186,-1385.41630545782]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177180.923150312,334.460487431672]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177154.575602605,313.449154146307]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170987.931192481,517.724551851396]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170612.808834322,4232.99165455881]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170626.619522427,4223.29975689866]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160061.531033618,-4752.08133025345]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160080.262767219,-4764.02685131109]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160141.276188226,-6020.07053266175]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161339.634100544,3209.52263050433]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161355.286139678,3197.59162814223]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160862.52299048,3259.81075261312]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160879.521876793,3213.71094942017]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145596.076950797,-1033.15669694962]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145663.018194781,-1260.1425035118]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145537.634757484,-1523.5343244946]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145568.846746617,-1032.78119204188]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145633.741546182,-1292.92056414048]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145521.59038297,-1517.23222432454]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155307.982364606,1696.75838968233]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155188.715464079,2523.09776650224]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179748.377338618,6043.1743869998]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155195.946543754,2539.70184320211]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160058.388530631,-4927.31584962405]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160079.793660397,-4922.41317329207]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150201.868003796,-1748.73190283222]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150223.594005154,-1753.3917118556]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155535.027733295,-1634.92905448284]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155528.603441984,-1617.15264034964]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157953.180939603,-87.94544816087]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157970.71482293,-158.787144177826]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158763.585133221,1333.28489193443]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158600.581941841,1262.44238554587]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158623.530393633,1348.41567466501]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158761.736642391,1248.77377619559]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152839.103945902,-170.980664917384]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152634.483109573,-1510.42228322511]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152237.198900521,-1029.07477113156]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152738.037839149,-1488.85769749939]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160221.307956922,-5170.00754788559]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160240.704343358,-5178.84982584143]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160628.524762692,-5064.64305243321]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160633.892071177,-5025.28975199914]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156711.663535292,-1236.21144781332]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156835.49323989,-1291.78159893537]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157338.297260821,-1148.93987200706]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157330.290350488,-1173.08438600588]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[188951.580966196,3439.74775351374]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[188906.506585142,3421.72069186665]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172331.602867132,-4274.31999591138]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130037.609462351,-19732.1824138006]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130051.355964446,-19750.1396254901]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159949.265575983,-2567.78385327017]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159966.268837159,-2726.35416215577]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159969.236701958,-2347.25373336661]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159951.531754414,-2357.82821794384]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161503.042643264,3046.70668039494]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161533.675679412,3017.41298878111]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154629.289231654,-29.2800587923266]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154982.408883248,-172.799764268973]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153426.294180666,-2010.08152167033]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153427.065331096,-1985.12875342509]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156870.966371516,-1984.50731677015]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156828.491112799,-1983.87359470758]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169729.612209795,4492.72386285028]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170003.655764322,3251.7110757184]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149511.420298613,-1753.01738483115]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149626.182931804,-1776.46668343659]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154972.731113616,-1608.25073202117]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154839.188471834,-1583.77896319289]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156179.278939552,-1585.74716635345]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156292.575023165,-1566.40717917588]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157421.989756296,-696.878517773584]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157443.871623628,-708.510542239062]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157667.305401089,-536.463505036023]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157688.115440318,-495.848251403193]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157859.997900796,45.7841474625748]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157846.585649669,38.8550162763568]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146479.940299946,-4540.14762449625]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146480.106086389,-4560.55758195015]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144905.475793758,-3627.07868747751]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144924.964377389,-3616.87443142931]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154674.652334267,783.423831473454]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153709.921512149,2195.67400087696]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153680.660010489,2254.71235448134]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150322.58274599,843.256465807557]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146617.81158578,-392.9840424594]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146599.840009341,-365.709274544963]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169665.104745949,4802.38380457123]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146558.822442118,-2485.03664201905]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146612.89308552,-2507.29796603508]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145926.542208921,-2532.53634619969]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145795.965303589,-2510.95081682614]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147462.099512549,-2635.63432538783]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147327.681549316,-2550.60310513718]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147949.333847173,-2869.20795433805]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147870.105594243,-2805.22381960327]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145358.176203912,-2421.85333395132]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164477.491712307,-4577.23941096012]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164743.698357494,-4952.55542552395]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164769.663985163,-4971.17312549811]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164520.688747643,-4612.2258077549]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164602.507337213,-4738.52629908163]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168893.658134799,-5865.45681737963]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168871.940973238,-5794.95592835872]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150825.56345539,-270.949760732765]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150839.551926176,-261.482118814369]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143812.654228291,-9043.82891955809]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143850.338330296,-9106.05126136111]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159343.695627061,2725.93774513504]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178789.649741603,4427.98409290344]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178791.947381277,4416.88748093491]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[182922.205242703,-3990.89017735724]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[182922.93559638,-3998.43360595347]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181251.244162445,-597.360260330839]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157600.749102273,474.175049964979]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157584.010038888,471.364869618439]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160561.758268271,2249.36156006868]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145347.249596107,-1561.2791551082]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145341.663998067,-1579.21644779411]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150082.186681746,-1292.68203243922]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150117.63204072,-1286.21034415025]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167554.316640892,328.587805844785]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170734.987621244,1677.55869829957]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170777.755910188,1686.96752655605]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129711.540203991,-19325.0787190128]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129706.763866116,-19328.8154189924]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138369.46502172,-10030.1328742969]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138362.536262728,-10007.9048059008]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144501.441736385,-7866.08131360251]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144504.070103604,-7861.88149920903]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143299.641159815,-5715.59639864543]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143307.533968465,-5701.66691171419]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144368.484090798,-6162.04889719497]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144416.174936138,-6116.07025710837]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168404.646060481,-3736.62989227509]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168390.04127895,-3739.46583415603]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154651.116682483,402.753268787346]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154916.830289552,489.575271277223]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128800.994206387,-11593.0016043392]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128806.794805252,-11601.363404762]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147249.313878543,-3894.95378876844]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159220.114565073,1624.60664240358]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159082.568571935,1573.28069316276]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160165.970342537,-6029.933037585]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165541.834548614,-6118.71722463641]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165291.027730581,-5658.07522982493]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165271.641458558,-5670.7607585502]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[175420.752426358,6589.99483406445]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181837.524379611,6365.08733547438]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160559.225731734,3490.64782830555]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157925.124553146,-5563.01026703487]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152770.315011154,1152.50020198146]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[188507.973967357,1157.20601676381]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[188554.898809943,1159.14642631297]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171597.382514817,-6625.23711572599]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171605.51909932,-6609.51121986646]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[174966.827047591,-6816.01935209293]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[175041.282320199,-6792.69843048014]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165109.07673929,-1720.47003824887]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165136.352409454,-1811.5197667242]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147267.934290052,-3907.14566525526]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143435.229879655,-1906.08595433214]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137691.456946108,-5873.27305247897]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137699.26435078,-5845.03868924023]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159306.55448244,333.719138688233]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172605.090212323,-981.151253192162]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172630.820882951,-953.051945592277]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164316.355410239,-8506.48295002111]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169578.439258431,1391.98644343717]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169560.710487696,1397.69918758242]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166182.099749995,-62.5518626495032]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166167.381962349,-72.4826333857491]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131136.667476839,-17596.7335347987]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130411.334601673,-18575.3094508164]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129074.214898659,-12922.9614128963]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129092.052205815,-13003.3992224864]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129860.88689717,-14591.0666783077]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129876.399576149,-14582.5271085947]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129491.952222587,-14971.3998672346]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129508.970181089,-14986.3870903641]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129446.945187459,-15195.4656873138]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129469.029578389,-15179.4319484089]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129875.945883681,-15674.4298122659]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129878.971936009,-15719.3746553144]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132122.834388392,-19981.1387397868]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132136.354759534,-20032.0344227445]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163793.845547889,-3391.11679047125]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163773.690450362,-3361.64842148277]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163781.395851427,-3017.83816799585]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163752.639934652,-2976.80217264633]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163195.979491853,-1619.85394701344]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163234.756988807,-1614.7888463657]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163640.49105483,-2445.31439681305]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[163660.981419652,-2434.52186604968]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151605.194324222,-5477.83407174167]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179680.462650054,6030.34070566157]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161530.895248126,3274.7520770636]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136827.392107233,-3824.27741602762]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136810.607013614,-3831.93203108665]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181181.502180067,-618.852455271408]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161839.343626401,3515.54558900127]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131586.558710644,-8479.89417224418]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168241.519621875,1516.9801280658]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168255.548775282,1544.88470462558]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169858.743313617,-6582.91970540647]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169713.503138093,4892.96087291942]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161018.864874609,2386.36842207873]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160798.120102357,2409.78087626991]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161426.945480312,2371.41480558598]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161444.865087808,2391.75177985331]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161606.651970173,2354.16986516141]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161182.423127763,2051.07062060636]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160598.944332896,2050.55659521825]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143235.864191569,-2408.82339087641]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143274.299404035,-2417.14659035095]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143760.184595877,-2640.49932633538]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143634.026732333,-2610.81313382782]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147621.14615689,-5000.61750876112]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147631.222151598,-5028.62359195837]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146634.874973014,-3995.50710498024]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146649.87763357,-4006.12731717777]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140208.708818155,-3114.29387652763]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140221.698606025,-3118.36747751478]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138379.298972636,-10224.3048162861]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131775.689964493,-19670.7922343449]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131783.223786382,-19685.3756646158]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130874.287042866,-21023.4046858019]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132763.524598696,-11263.1726902837]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129449.43674726,-19422.3398773617]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129431.655830931,-19421.545095527]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131147.01845993,-17607.5662758489]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132736.678657696,-11283.6174323357]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136206.013640714,-15623.7639591041]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136201.684067431,-15645.1428735331]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[134446.29751729,-15034.9071859822]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170979.193602341,2674.17442442186]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170999.921772825,2677.77215814509]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172773.925984852,979.684788424056]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172790.327861466,996.719392981031]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[183806.948352763,1303.84128243243]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[183771.459129975,1306.34124362399]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178025.324411229,739.331357342075]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178011.298782808,741.692606104712]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178283.719648238,772.906576657668]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178310.216058737,779.168967441772]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178771.218791279,1211.81802828255]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178723.591634375,1271.37361929048]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167454.907331054,-352.765887576272]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167467.585698359,-341.051627816632]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144287.745892908,-5794.77472450811]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144287.809228559,-5783.79411348864]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144245.205753677,-7510.66525663645]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[144253.033733152,-7491.85423711169]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130406.973144323,-20755.4122597094]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130408.994625684,-20720.2651390291]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168268.087190284,471.842435572646]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168239.994313765,491.012561560143]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165993.047758106,2112.2939365402]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166015.930471835,2119.97728195955]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167396.623030452,356.516516844917]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167414.25181127,375.978071172663]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168516.491973617,-34.416037824587]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168524.331287733,-24.237406616623]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170323.143505832,-360.808304101403]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170287.309330584,-348.608054641169]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170198.378225964,-76.7012305675307]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170183.700554574,-105.050186522363]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169959.576705214,527.865202934481]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169906.497692267,551.323212763411]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151892.261847112,-1016.60079874814]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150788.395245081,-579.335334402742]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150790.013809612,-608.182397989847]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157214.980828575,2788.73558902176]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142686.305501465,-5822.23026946146]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142669.822353301,-5810.59684432921]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172981.606941832,-3226.46671801811]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173005.168443912,-3244.38998868887]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152428.792272374,-606.425683099718]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152311.106989022,-4711.13534765138]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152393.727941932,-593.053327917762]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158804.48036084,-7676.53668717999]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158791.361507866,-7655.96130333602]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154978.54207066,411.866074649617]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154767.725682786,498.592867641884]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151195.248023463,-1943.70192194293]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178033.162592861,-5401.68296459242]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160774.916342621,1799.6090759582]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155896.103493226,-867.707687900751]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155934.566379315,-870.767432182038]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155602.02764018,-608.807244459749]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155601.203402284,-646.515424909245]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168813.032269809,3809.5235074269]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168815.016191431,3791.10496339336]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172189.103712722,4518.57152546901]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172201.231554325,4536.83760842751]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[122173.205698253,-20454.7636788173]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[122165.382314296,-20477.9946582062]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[123164.156198281,-17622.1585745834]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[123193.690011105,-17608.0834553657]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[175450.192367407,-6639.46601464058]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172999.767632274,-4509.35601128568]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172218.652477196,-1820.00467804162]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172233.312356138,-1764.36758201965]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[176954.056818484,357.738522156549]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[176975.897463212,320.307933485892]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178719.425647609,648.041338810814]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181131.978708689,1092.21232336946]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181150.664736969,1097.16684844758]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181293.822571395,-685.287311579101]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184113.813984561,-1134.45651999972]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184090.090956733,-1148.83615652734]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184717.106436263,-3515.0912903577]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184739.047663843,-3513.57330183458]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184269.465940672,-3648.90869571769]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[184256.22940611,-3670.84797617927]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180022.663271856,-2928.19298042078]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180028.569420708,-2948.94616592093]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131340.074474729,-19100.9201740355]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131337.616051756,-19132.5149566054]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129863.557586863,-19499.8795608531]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129864.229767691,-19522.8449094289]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130695.96132179,-21005.3848304874]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130691.580579944,-21018.8857794153]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131634.87875387,-17345.5851871989]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131639.923434584,-17369.5794907648]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179572.059125363,-5538.49495847238]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[179594.429615662,-5512.47759762802]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191651.777845669,86.2972043600166]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[191694.646420467,120.532393991598]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150132.476096406,630.830627905263]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150267.71460563,546.83175637509]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170013.52733393,3259.55534813745]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156228.292274241,447.147623439436]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156281.869035238,376.471699089103]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156460.310196824,52.0063104752917]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156517.692127462,-0.05125194392167]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156719.438073088,-270.599763132108]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156689.306650563,-213.231001906912]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157047.61162728,-681.907500978559]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157099.181197767,-726.060408978781]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157443.703208008,-1188.78132753709]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157443.0376178,-1150.06829500356]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157523.250668124,-1760.9098502156]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157529.783871521,-1775.9124306041]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160776.736018763,1835.76064842712]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165965.115569068,-349.947670093447]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145009.643314275,-7326.59447362064]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145025.637931793,-7310.60228575533]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169366.4623873,4590.37096653605]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169370.57220752,4568.39642917539]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164605.854621421,452.215667602664]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[164619.373798313,464.477719033021]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169686.750218795,-476.951833454019]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[169663.091946534,-493.847440494574]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[180990.10794792,4246.91297405999]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181012.759920785,4240.65693388274]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[124379.251884651,-21228.4577630399]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[124409.150415485,-21264.407227887]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[125189.175078063,-21137.7846824533]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[125201.704942106,-21155.6285957524]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[125555.397729841,-17072.107855364]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[125554.945613166,-17094.6215233613]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[126512.704563835,-16859.7838619812]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[126512.413957619,-16885.8482410144]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159069.346299621,-1496.40498630702]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159055.403572305,-1518.52915692545]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159463.005587877,-1907.3509959295]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159326.326058528,-1741.73129887047]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157169.791674362,-40.9051794760744]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157171.820316177,-2.64768890646519]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157541.059884511,-524.150984993496]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152859.355954891,1195.21135960345]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152906.438103431,1246.44722027518]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165930.61318161,2558.62073605461]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[165920.182243039,2577.62438490469]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130608.710698089,-16471.0106132961]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145239.687188639,-1188.53422411159]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153728.137902426,1868.15550114872]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153750.533237933,1868.82436635025]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153962.930285512,1809.90748768579]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153977.685238138,1806.0657546455]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160584.851673981,2239.395365423]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160620.404983574,2072.87407961237]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161207.142697926,2075.48368069297]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161617.615687501,2377.64057469636]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140359.652798605,-4639.04894019495]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140345.414278529,-4611.00913445046]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173600.312919928,6348.36874368286]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[155868.07671882,501.03290396533]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157174.132264731,2502.8600797336]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156285.09276338,1230.30148654414]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156124.907838416,2088.64663311437]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[152791.966784835,2688.28255675803]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154989.534361572,2147.79230953706]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150653.834975579,1365.20192042977]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156510.674311504,2397.46694525424]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173512.541043492,6343.84089128452]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146352.892150594,-4095.98931794864]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146331.980176985,-4094.76388757036]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146951.842708143,-4328.67921901029]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170098.74377612,-6616.82948270719]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170111.038567747,-6610.43451542401]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177698.433114567,540.436512754008]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177715.899137124,538.954164220544]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178540.233797873,2379.9327343179]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178575.348436599,2378.4125517059]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[148705.941868317,-3025.5510176706]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130558.603353133,-18619.9561450972]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130581.082073277,-18653.725806381]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130752.404976806,-17624.7228242782]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157603.578738969,2974.35672468174]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171927.714551497,-3900.81228473218]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[171959.248086921,-3990.52311215847]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139722.605271903,-4587.06466780236]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160079.875255822,-5374.84028318181]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[160092.209737171,-5337.62348202319]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157611.737254553,3181.51532867091]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153376.172601805,1079.11609383969]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[157619.538297986,2927.70097000391]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[123279.156764114,-19811.5650709802]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[123300.832659923,-19767.3675137564]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130957.75376361,-18795.3960848791]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131033.627357611,-18797.8212626334]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[188992.115429593,633.234661947354]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[189018.060566631,569.651148851262]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187970.436247643,2625.0400279531]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[181771.033305466,6316.74328364566]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136541.791428415,-7248.08224757458]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136562.864306321,-7183.2211611821]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[124893.167868948,-21752.4446116648]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187201.102198658,2823.46279886184]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[187188.640755941,2813.82984995097]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166484.938458062,4601.75497459702]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[127274.328432507,-12448.3985925654]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[127302.008969092,-12455.1508528984]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138491.190281717,-5171.39211879327]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138498.285988546,-5196.06163207314]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159855.33759333,-2042.31416830869]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[159859.995612656,-2106.77612467669]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161458.908709098,2163.31724230846]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[161487.010478266,2150.89300318633]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153902.945053203,1623.5189443272]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173387.331234333,1467.43922967999]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173406.942775033,1436.2177877996]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[156482.187694483,-680.369696598966]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166116.377293786,-6975.57267526048]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[166071.589700791,-6991.60900593956]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[167747.699518159,-1530.34424046491]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172298.934129461,-4125.15695447457]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177743.226223987,-2433.17748460756]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177754.23076747,-2457.71497923165]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137328.20170369,-5648.52747767558]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[137368.691455428,-5642.46762139065]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172543.452531184,-6898.27237508679]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172541.371643676,-6910.57792892546]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154866.999521969,-2175.32129744109]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154199.915480807,-1541.94268762437]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[154296.430499449,-1592.97906477685]},"properties":{"CITY_CODE":39}},{"type":"Feature","geometry":{"type":"Point","coordinates":[178108.150245919,-5381.44532608596]},"properties":{"CITY_CODE":39}}]}

 

 

์ด๋ ‡๊ฒŒ ์ถœ๋ ฅ๋œ ์˜ˆ์‹œ๋ฅผ ๊ฐ€์ง€๊ณ  

์•„๋ž˜ ์‚ฌ์ดํŠธ์—์„œ geojson ํฌ๋งท๊ฒ€์ฆ์„ ํ•  ์ˆ˜ ์žˆ๋‹ค.

https://mapster.me/right-hand-rule-geojson-fixer/

 

Right Hand Rule GeoJSON Fixer – Mapster

What is the “right-hand-rule”? When you construct a polygon, you can order the coordinates in one direction or another. If you’re drawing a circle, you might start on the left and go counter-clockwise around to meet the original point. Or, you might

mapster.me

 

 

์ด์ƒ ! 

 

๊ณ ๋งˆ์›Œ์š” ์ฟผ๋ฆฌ๋งจ!

๋Œ“๊ธ€
๋ฐ˜์‘ํ˜•