Skip to content

Instantly share code, notes, and snippets.

@rolldone
Last active November 2, 2023 13:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rolldone/2bcf3511ea77a71158b9e8430425e4d8 to your computer and use it in GitHub Desktop.
Save rolldone/2bcf3511ea77a71158b9e8430425e4d8 to your computer and use it in GitHub Desktop.
Split KML with single folder
import os
import argparse
import xml.dom.minidom
def get_size_in_kb(string):
return len(string.encode('utf-8')) / 1024
def prettify_xml(elem):
rough_string = xml.dom.minidom.parseString(elem).toprettyxml(indent=" ")
return '\n'.join([line for line in rough_string.split('\n') if line.strip()])
def split_kml(input_file, output_folder, chunk_size_kb):
with open(input_file, 'r', encoding='utf-8') as f:
kml_file = f.read()
if not os.path.exists(output_folder):
os.makedirs(output_folder)
chunk_index = 0
placemarks = kml_file.split('<Placemark>')[1:]
chunk_header = kml_file.split('<Placemark>')[0]
current_chunk = chunk_header + '\n'
current_chunk_size = get_size_in_kb(current_chunk)
for placemark in placemarks:
if current_chunk_size + get_size_in_kb(placemark) > chunk_size_kb:
current_chunk += '\n </Document>\n</Folder>\n</kml>'
output_file = os.path.join(output_folder, f'output_{chunk_index}.kml')
with open(output_file, 'w', encoding='utf-8') as f_out:
f_out.write(prettify_xml(current_chunk))
current_chunk = chunk_header + '\n'
current_chunk_size = get_size_in_kb(current_chunk)
chunk_index += 1
current_chunk += f'<Placemark>{placemark}'
current_chunk_size += get_size_in_kb(placemark)
if current_chunk_size > get_size_in_kb(chunk_header):
current_chunk += ''#'\n </Document>\n</Folder>\n</kml>'
output_file = os.path.join(output_folder, f'output_{chunk_index}.kml')
with open(output_file, 'w', encoding='utf-8') as f_out:
f_out.write(prettify_xml(current_chunk))
if __name__ == '__main__':
parser = argparse.ArgumentParser(description='Split a KML file into smaller chunks.')
parser.add_argument('input_file', help='Path to the input KML file')
parser.add_argument('output_folder', help='Path to the output folder')
parser.add_argument('chunk_size', type=int, help='Size of each chunk in kilobytes')
args = parser.parse_args()
split_kml(args.input_file, args.output_folder, args.chunk_size)
donny@donny-Lenovo-V330-14IKB:~/Documents/test$ python kml_split.py VUdkBamkTs_1698295831_164.kml . 2048
<?xml version="1.0" ?>
<kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2" xmlns:kml="http://www.opengis.net/kml/2.2" xmlns:atom="http://www.w3.org/2005/Atom">
<Folder>
<name>Jalur Hijau</name>
<visibility>0</visibility>
<Document>
<name>Jalur_Hijau.kml</name>
<visibility>0</visibility>
<Schema name="C:/Users/HP/Downloads/Maping Bali/RDTR/RDTR Mengwi/Jalur Hijau/Jalur_Hijau.kml" id="temp108">
<SimpleField type="double" name="OBJECTID"/>
<SimpleField type="string" name="NAMOBJ"/>
<SimpleField type="string" name="NAMZON"/>
<SimpleField type="string" name="KODZON"/>
<SimpleField type="string" name="NAMSZN"/>
<SimpleField type="string" name="KODSZN"/>
<SimpleField type="string" name="JNSRPR"/>
<SimpleField type="string" name="KODEWP"/>
<SimpleField type="string" name="KODSWP"/>
<SimpleField type="string" name="KODBLK"/>
<SimpleField type="string" name="KODSBL"/>
<SimpleField type="string" name="WADMPR"/>
<SimpleField type="string" name="WADMKK"/>
<SimpleField type="string" name="WADMKC"/>
<SimpleField type="string" name="WADMKD"/>
<SimpleField type="string" name="KKOP_1"/>
<SimpleField type="string" name="LP2B_2"/>
<SimpleField type="string" name="KRB_03"/>
<SimpleField type="string" name="TOD_04"/>
<SimpleField type="string" name="TEB_05"/>
<SimpleField type="string" name="PUSLIT"/>
<SimpleField type="string" name="CAGBUD"/>
<SimpleField type="string" name="RESAIR"/>
<SimpleField type="string" name="KSMPDN"/>
<SimpleField type="string" name="HANKAM"/>
<SimpleField type="string" name="KKARST"/>
<SimpleField type="string" name="PTBGMB"/>
<SimpleField type="string" name="MGRSAT"/>
<SimpleField type="string" name="RDBUMI"/>
<SimpleField type="string" name="TPZ_00"/>
<SimpleField type="string" name="REMARK"/>
<SimpleField type="string" name="NOTHPR"/>
</Schema>
<StyleMap id="m_ylw-pushpin71">
<Pair>
<key>normal</key>
<styleUrl>#s_ylw-pushpin71</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#s_ylw-pushpin_hl71</styleUrl>
</Pair>
</StyleMap>
<Style id="s_ylw-pushpin71">
<IconStyle>
<scale>1.1</scale>
<Icon>
<href>http://maps.google.com/mapfiles/kml/pushpin/ylw-pushpin.png</href>
</Icon>
<hotSpot x="20" y="2" xunits="pixels" yunits="pixels"/>
</IconStyle>
<PolyStyle>
<color>cc00f300</color>
<outline>0</outline>
</PolyStyle>
</Style>
<Style id="s_ylw-pushpin_hl71">
<IconStyle>
<scale>1.3</scale>
<Icon>
<href>http://maps.google.com/mapfiles/kml/pushpin/ylw-pushpin.png</href>
</Icon>
<hotSpot x="20" y="2" xunits="pixels" yunits="pixels"/>
</IconStyle>
<PolyStyle>
<color>cc00f300</color>
<outline>0</outline>
</PolyStyle>
</Style>
<Placemark>
<visibility>0</visibility>
<styleUrl>#m_ylw-pushpin71</styleUrl>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
115.1826310710001,-8.459394816999975,0 115.182626601,-8.459393994999971,0 115.1826247820001,-8.459406598999976,0 115.182616044,-8.459467164999978,0 115.1826157950001,-8.459468891999961,0 115.1826137300001,-8.459483218999935,0 115.182599899,-8.459579091999956,0 115.182599446,-8.459630402999949,0 115.1825980440001,-8.459790176999945,0 115.1825977840001,-8.459791218999953,0 115.1825970140001,-8.459794286999966,0 115.1825957540001,-8.459817925999971,0 115.182591591,-8.459896187999959,0 115.1825681620001,-8.45997932299997,0 115.1825569020001,-8.460017321999942,0 115.18250578,-8.460189878999927,0 115.182500289,-8.460206558999971,0 115.1824832420001,-8.460258352999972,0 115.182457588,-8.460336302999963,0 115.182445926,-8.460371745999964,0 115.182384475,-8.460503015999961,0 115.1823692910001,-8.460535449999952,0 115.182318481,-8.460656739999934,0 115.182313926,-8.460667613999931,0 115.1822972480001,-8.460707428999967,0 115.1822835280001,-8.460756114999981,0 115.1822354290001,-8.46092678499997,0 115.1822107400001,-8.461013618999971,0 115.1822038600001,-8.46103781599993,0 115.182203369,-8.46103954199998,0 115.1821797340001,-8.461122675999945,0 115.182137793,-8.461272285999939,0 115.182107405,-8.461380686999973,0 115.182097053,-8.461424682999962,0 115.1820828900001,-8.461484870999925,0 115.182064219,-8.46157280999995,0 115.182047602,-8.461632058999953,0 115.1820242660001,-8.461690317999967,0 115.181998097,-8.461737080999967,0 115.1819651390001,-8.461798164999948,0 115.1819640860001,-8.461800424999979,0 115.181946181,-8.461838903999933,0 115.1819390700001,-8.461854181999968,0 115.1819389230001,-8.461854496999933,0 115.1819184780001,-8.46191085199996,0 115.1819177140001,-8.461914097999966,0 115.1819103800001,-8.46194524699996,0 115.1819063590001,-8.461962325999934,0 115.1819047500001,-8.461969153999974,0 115.1818990710001,-8.46198652399994,0 115.1818778630001,-8.462051396999925,0 115.1818738810001,-8.462063568999952,0 115.181872577,-8.46206755999998,0 115.1818541760001,-8.462112194999975,0 115.181799747,-8.462244237999926,0 115.181777309,-8.462298671999974,0 115.181722946,-8.462415154999974,0 115.181690932,-8.462479111999926,0 115.181689416,-8.462481600999979,0 115.1816658560001,-8.462520285999972,0 115.181661875,-8.462526821999973,0 115.181661637,-8.462527342999977,0 115.1816443990001,-8.462565008999945,0 115.1816278700001,-8.462606079999944,0 115.1816069500001,-8.46267176799995,0 115.18157422,-8.462774552999974,0 115.181564135,-8.462803239999971,0 115.181556537,-8.46282485699993,0 115.1815255180001,-8.462913065999942,0 115.181506341,-8.462972365999974,0 115.181494313,-8.463009559999932,0 115.1814826410001,-8.463039171999981,0 115.1814610140001,-8.463142406999964,0 115.1814608560001,-8.463143258999935,0 115.181455161,-8.463173858999937,0 115.1814217550001,-8.463353364999932,0 115.1814136900001,-8.463396703999933,0 115.1814101980001,-8.463424575999966,0 115.1814077,-8.463444516999971,0 115.1814024030001,-8.463523020999958,0 115.1813963390001,-8.463612868999974,0 115.1813855920001,-8.463843193999935,0 115.1813847310001,-8.463861627999961,0 115.181379243,-8.463979255999959,0 115.181376943,-8.464059620999933,0 115.181380512,-8.464118006999968,0 115.18139279,-8.464243427999975,0 115.1813933510001,-8.464249154999948,0 115.1813934160001,-8.464249843999937,0 115.1813950240001,-8.464266838999947,0 115.181401593,-8.46433626299995,0 115.1814051240001,-8.464403259999926,0 115.1814076280001,-8.464483644999973,0 115.181409051,-8.464589860999979,0 115.1814085640001,-8.464694153999972,0 115.181406601,-8.46473436399998,0 115.1814032450001,-8.464803206999932,0 115.1813986540001,-8.464962017999937,0 115.1813983300001,-8.465031130999932,0 115.1813982910001,-8.465039523999963,0 115.1813983730001,-8.465043193999975,0 115.18139957,-8.465096482999968,0 115.1813998800001,-8.465110332999927,0 115.1814041870001,-8.465216560999977,0 115.1814046390001,-8.46523790699996,0 115.1814049220001,-8.465251421999938,0 115.181405044,-8.465257138999959,0 115.1814057590001,-8.465291204999971,0 115.1814015210001,-8.465375389999963,0 115.1813843330001,-8.46555615099993,0 115.1813743610001,-8.465632684999946,0 115.1813574180001,-8.465762702999939,0 115.18133948,-8.465898488999926,0 115.1813284090001,-8.466004646999977,0 115.1813250260001,-8.466110837999963,0 115.1813195620001,-8.466198847999976,0 115.181316709,-8.46624475699997,0 115.181314151,-8.466275949999954,0 115.1813075350001,-8.466356661999953,0 115.1813045470001,-8.466375067999934,0 115.1812917020001,-8.466454187999943,0 115.181267172,-8.466561239999976,0 115.181244629,-8.466654903999938,0 115.1812388100001,-8.466694139999959,0 115.181236632,-8.466708848999929,0 115.1812277560001,-8.466768688999935,0 115.1812236830001,-8.466797414999974,0 115.1811833590001,-8.46708186099994,0 115.181178957,-8.467112907999933,0 115.181178024,-8.467119489999959,0 115.1811571860001,-8.467266490999975,0 115.181154202,-8.467285069999946,0 115.181099451,-8.467625934999944,0 115.181090659,-8.467680682999969,0 115.1810587540001,-8.467867645999945,0 115.181049149,-8.467923908999978,0 115.1810406620001,-8.468012277999946,0 115.181039625,-8.468044107999958,0 115.1810396200001,-8.468044344999953,0 115.1810381500001,-8.468089370999962,0 115.1810379680001,-8.468094936999933,0 115.18103897,-8.46810170599997,0 115.1810457920001,-8.468147792999957,0 115.1810561200001,-8.46826058399995,0 115.181053183,-8.468312093999941,0 115.181053472,-8.468314086999953,0 115.1810535530001,-8.468320781999978,0 115.1810535620001,-8.468321532999937,0 115.1810535940001,-8.468324172999928,0 115.1810540140001,-8.468358740999975,0 115.1810385230001,-8.46844510699998,0 115.1810337820001,-8.468471540999928,0 115.1810229900001,-8.468531711999958,0 115.1809917280001,-8.468706005999934,0 115.1809695840001,-8.468822103999969,0 115.1809581680001,-8.468881961999955,0 115.1809571450001,-8.468887329999973,0 115.1809571240001,-8.468887441999925,0 115.180957065,-8.468887749999965,0 115.1809552620001,-8.46889719099994,0 115.180950714,-8.468921084999977,0 115.1809029030001,-8.469172192999963,0 115.1808806470001,-8.469268616999955,0 115.180880354,-8.46926988499996,0 115.1808807150001,-8.469273772999941,0 115.1808816050001,-8.46927558699997,0 115.1808842840001,-8.469278401999929,0 115.1808860780001,-8.469279311999969,0 115.1808905060001,-8.469280259999948,0 115.1810923840001,-8.469323414999963,0 115.1811466930001,-8.469335024999964,0 115.181237953,-8.46935452699995,0 115.1815635740001,-8.469439842999975,0 115.1818790040001,-8.469511268999952,0 115.181952894,-8.46952680499993,0 115.181998828,-8.469536464999976,0 115.1821150830001,-8.46956090599997,0 115.182318957,-8.469598197999971,0 115.1825378430001,-8.46963526199994,0 115.1825703450001,-8.469640764999951,0 115.18258284,-8.469643535999978,0 115.182759816,-8.469682772999931,0 115.182905781,-8.469708490999949,0 115.1829184290001,-8.469710719999966,0 115.182933809,-8.469712535999975,0 115.1830371960001,-8.469724741999926,0 115.1832274720001,-8.46973918499998,0 115.1832724530001,-8.469742830999962,0 115.1832925580001,-8.469744471999945,0 115.1834392200001,-8.469756437999933,0 115.1835415170001,-8.469770202999939,0 115.183556939,-8.469772058999979,0 115.1836571370001,-8.469784122999954,0 115.1836877120001,-8.469789424999931,0 115.183757633,-8.469801549999943,0 115.183762105,-8.469802325999979,0 115.183764128,-8.469802244999926,0 115.183764708,-8.469802018999928,0 115.183767804,-8.469800809999981,0 115.1837680200001,-8.469800629999952,0 115.183769309,-8.469799552999973,0 115.1837713460001,-8.469796130999953,0 115.183771478,-8.469795292999947,0 115.1837976050001,-8.469629257999941,0 115.183803847,-8.469589588999952,0 115.1838062070001,-8.469574588999933,0 115.183814414,-8.469522440999981,0 115.1838254170001,-8.469443135999938,0 115.1838316930001,-8.469407477999937,0 115.183845882,-8.469326799999976,0 115.1838511640001,-8.469291664999957,0 115.183851599,-8.469288770999981,0 115.1838567360001,-8.469279128999972,0 115.183863768,-8.46927356499998,0 115.1838665050001,-8.469271399999968,0 115.183881432,-8.469267299999956,0 115.183906319,-8.46926046599998,0 115.1839123360001,-8.469255433999933,0 115.1839179100001,-8.469248046999951,0 115.183921173,-8.469238928999971,0 115.1839235660001,-8.469223306999936,0 115.1839298460001,-8.469149623999954,0 115.1839393560001,-8.469038061999981,0 115.183947812,-8.468938861999959,0 115.1839626090001,-8.468897985999945,0 115.183979878,-8.468881780999936,0 115.1839919370001,-8.468870463999963,0 115.184006249,-8.468863880999947,0 115.184031032,-8.468852479999953,0 115.1841002690001,-8.468842309999957,0 115.184487458,-8.468857385999968,0 115.184556421,-8.468860072999973,0 115.184707257,-8.46885666999998,0 115.184753426,-8.468855621999978,0 115.184991512,-8.468850248999956,0 115.185146075,-8.468832690999932,0 115.1851695920001,-8.468830018999938,0 115.1852093890001,-8.468821853999941,0 115.18526523,-8.468810398999949,0 115.18530337,-8.468804789999979,0 115.1853085,-8.468804605999935,0 115.1853122800001,-8.468804469999952,0 115.1853152810001,-8.468803578999939,0 115.1853160530001,-8.468803034999951,0 115.1853178330001,-8.468801781999957,0 115.1853195680001,-8.468799171999933,0 115.1853208440001,-8.468794848999948,0 115.1853323270001,-8.468755949999945,0 115.185334331,-8.468749156999934,0 115.1853393880001,-8.468712843999981,0 115.185395853,-8.468307340999957,0 115.185415411,-8.468093926999927,0 115.1854177020001,-8.468068926999933,0 115.185418075,-8.468064860999959,0 115.1854234970001,-8.46800572099994,0 115.185431629,-8.467916936999927,0 115.185443874,-8.467783336999958,0 115.185454785,-8.467664282999976,0 115.185464214,-8.467561385999943,0 115.1854681090001,-8.467518889999951,0 115.185477298,-8.467418584999962,0 115.1854787540001,-8.467402684999968,0 115.1854810670001,-8.46737744099994,0 115.185487177,-8.467310744999963,0 115.185494564,-8.467230142999938,0 115.1855029630001,-8.467138512999952,0 115.1855063790001,-8.467101241999956,0 115.1855116480001,-8.467043690999958,0 115.1855172270001,-8.466982859999973,0 115.1855240130001,-8.466908584999942,0 115.185541295,-8.46674113399996,0 115.185551615,-8.466641090999929,0 115.18555186,-8.466638718999945,0 115.1855520470001,-8.466636907999941,0 115.18555515,-8.466606827999954,0 115.185565726,-8.466504463999968,0 115.185576251,-8.466402548999952,0 115.1856010810001,-8.466162416999964,0 115.185610685,-8.466069522999931,0 115.1856361250001,-8.465955053999949,0 115.1856363860001,-8.465953887999945,0 115.185640969,-8.465933263999943,0 115.18569329,-8.465697857999942,0 115.1858050970001,-8.464895521999949,0 115.1859418390001,-8.464124487999982,0 115.185951605,-8.464021938999963,0 115.185980802,-8.463715524999941,0 115.1859826680001,-8.463695950999977,0 115.1861554180001,-8.461882945999946,0 115.186172433,-8.461704374999954,0 115.1861737180001,-8.461690865999969,0 115.1861851420001,-8.461571023999966,0 115.1861865970001,-8.461555718999932,0 115.1861925970001,-8.461492791999945,0 115.186206197,-8.461350019999941,0 115.1862083320001,-8.461327619999963,0 115.1862084750001,-8.461326117999931,0 115.1862092040001,-8.461318480999978,0 115.1862100540001,-8.461309571999948,0 115.186310378,-8.460256645999948,0 115.186358237,-8.459754377999957,0 115.1863848200001,-8.459475390999955,0 115.1863755390001,-8.459477057999948,0 115.1863491960001,-8.45975352399995,0 115.186301337,-8.460255792999931,0 115.1862010120001,-8.461308715999962,0 115.1862001630001,-8.461317623999946,0 115.1862001300001,-8.46131797399994,0 115.1861992910001,-8.461326764999967,0 115.1861835550001,-8.461491938999927,0 115.1861775560001,-8.461554865999972,0 115.1861761010001,-8.461570169999959,0 115.1861646780001,-8.461690011999963,0 115.186163455,-8.461702866999929,0 115.186163392,-8.461703522999926,0 115.1861463780001,-8.461882091999939,0 115.1859736270001,-8.46369509699997,0 115.185971761,-8.463714669999945,0 115.1859673,-8.463761491999946,0 115.185942565,-8.464021083999967,0 115.185932833,-8.464123275999953,0 115.185796154,-8.464893949999976,0 115.185796102,-8.464894277999974,0 115.185684345,-8.46569625099994,0 115.1856321020001,-8.465931310999963,0 115.185627521,-8.465951927999981,0 115.18562726,-8.465953093999929,0 115.1856272040001,-8.465953346999981,0 115.185601818,-8.46606756999995,0 115.185601742,-8.466067953999925,0 115.1856016520001,-8.466068597999936,0 115.1855920480001,-8.46616149099998,0 115.185591971,-8.466162233999967,0 115.1855672170001,-8.466401622999967,0 115.1855566920001,-8.466503538999973,0 115.1855461170001,-8.466605903999948,0 115.1855428260001,-8.466637795999929,0 115.185532261,-8.466740209999955,0 115.1855149730001,-8.466907712999955,0 115.185508182,-8.466982037999969,0 115.185502605,-8.467042869999943,0 115.185497335,-8.467100420999941,0 115.1854939200001,-8.467137690999948,0 115.185485521,-8.467229319999944,0 115.185478134,-8.467309922999959,0 115.1854697110001,-8.467401863999953,0 115.185459065,-8.467518067999947,0 115.1854551700001,-8.467560564999928,0 115.1854457410001,-8.467663460999972,0 115.1854348310001,-8.467782515999943,0 115.1854225860001,-8.467916115999969,0 115.185414453,-8.468004898999936,0 115.185408658,-8.468068105999976,0 115.1853868310001,-8.468306291999966,0 115.1853254270001,-8.468747256999961,0 115.1853108560001,-8.468796621999957,0 115.1853098500001,-8.46880003299998,0 115.185303207,-8.468800271999953,0 115.185302706,-8.468800315999943,0 115.1852645040001,-8.468805936999956,0 115.1852643140001,-8.468805970999938,0 115.185168875,-8.468825550999952,0 115.1849912020001,-8.468845733999956,0 115.1847533230001,-8.468851103999953,0 115.1847074310001,-8.468852142999935,0 115.1847071540001,-8.468852149999975,0 115.184556451,-8.468855549999944,0 115.1844876350001,-8.468852869999978,0 115.184100359,-8.468837791999931,0 115.184099607,-8.468837837999956,0 115.1840303060001,-8.46884801799996,0 115.1840294790001,-8.468848231999971,0 115.184029127,-8.468848376999972,0 115.1839900320001,-8.468866359999936,0 115.1839896660001,-8.468866548999927,0 115.183989019,-8.468867000999978,0 115.183988823,-8.468867174999957,0 115.1839594950001,-8.46889469599995,0 115.1839591310001,-8.468895079999982,0 115.1839586770001,-8.468895725999971,0 115.1839583400001,-8.468896445999974,0 115.1839435400001,-8.46893732999996,0 115.183943341,-8.468938077999951,0 115.183943288,-8.468938480999952,0 115.1839348320001,-8.469037679999929,0 115.1839253220001,-8.469149241999958,0 115.1839190540001,-8.469222778999949,0 115.1839167490001,-8.469237819999933,0 115.183913865,-8.46924587999996,0 115.183909016,-8.46925230599993,0 115.183904156,-8.469256370999972,0 115.1838652980001,-8.469267041999956,0 115.183864952,-8.46926715099994,0 115.1838642350001,-8.469267483999943,0 115.18386368,-8.469267859999945,0 115.1838538650001,-8.469275625999956,0 115.183853257,-8.469276222999952,0 115.1838527630001,-8.469276939999929,0 115.1838475870001,-8.469286652999926,0 115.183847332,-8.46928722499996,0 115.183847118,-8.469288043999939,0 115.1838414010001,-8.46932607399998,0 115.1838272210001,-8.469406696999954,0 115.1838209320001,-8.469442435999952,0 115.1838099170001,-8.46952181499995,0 115.1837993610001,-8.469588889999955,0 115.183767051,-8.469794218999937,0 115.183764255,-8.469793540999945,0 115.183763674,-8.469793419999974,0 115.183689271,-8.469780517999936,0 115.1836586950001,-8.46977521499997,0 115.183658227,-8.46977514699995,0 115.1835426680001,-8.469761233999975,0 115.1834404370001,-8.469747478999977,0 115.1834399620001,-8.469747426999959,0 115.1832731940001,-8.469733818999941,0 115.1832281850001,-8.469730170999981,0 115.183038072,-8.46971573999997,0 115.182919756,-8.469701771999951,0 115.1827616050001,-8.469673904999979,0 115.1825848140001,-8.469634708999934,0 115.1825723200001,-8.469631939999942,0 115.182571896,-8.469631855999978,0 115.1823204890001,-8.469589284999927,0 115.182116853,-8.469552036999971,0 115.1820007060001,-8.469527618999962,0 115.1819547700001,-8.469517958999973,0 115.181880972,-8.469502441999964,0 115.181565726,-8.469431056999952,0 115.1812402640001,-8.469345783999927,0 115.181239859,-8.46934568699993,0 115.181148599,-8.469326184999943,0 115.18109429,-8.469314573999952,0 115.1808881310001,-8.469270502999962,0 115.18088505,-8.469269726999926,0 115.180907348,-8.469173119999937,0 115.180955175,-8.46892192599995,0 115.1809597240001,-8.468898032999959,0 115.1809615850001,-8.468888285999981,0 115.180962614,-8.46888288599996,0 115.1809626290001,-8.468882804999964,0 115.1809740450001,-8.468822947999968,0 115.180996194,-8.46870682499997,0 115.181038252,-8.468472335999934,0 115.1810584850001,-8.46835952999993,0 115.181058555,-8.46835871299993,0 115.1810581020001,-8.46832147799995,0 115.1810580130001,-8.468314032999956,0 115.181057967,-8.468313438999928,0 115.181057742,-8.468311896999978,0 115.181060654,-8.468260839999971,0 115.1810606610001,-8.46826058399995,0 115.181060642,-8.468260173999965,0 115.1810503430001,-8.468147791999968,0 115.1810503090001,-8.468147382999973,0 115.1810502750001,-8.468147070999976,0 115.1810501050001,-8.468146238999964,0 115.18104252,-8.468094676999954,0 115.1810441350001,-8.468045165999968,0 115.1810441610001,-8.468044348999967,0 115.181045196,-8.468012568999939,0 115.181053653,-8.467924507999953,0 115.18106323,-8.467868402999954,0 115.181095139,-8.467681417999927,0 115.1811039360001,-8.467626649999943,0 115.181158685,-8.467285784999945,0 115.1811616760001,-8.467267162999974,0 115.181183453,-8.467113540999947,0 115.18122818,-8.466798046999941,0 115.1812322500001,-8.466769333999935,0 115.1812411230001,-8.466709508999941,0 115.1812433030001,-8.466694799999971,0 115.181249094,-8.466655759999981,0 115.181271594,-8.466562267999961,0 115.1812961310001,-8.466455193999934,0 115.181296179,-8.466454940999938,0 115.1813120180001,-8.466357383999934,0 115.1813120600001,-8.466357030999973,0 115.181321238,-8.466245079999965,0 115.1813240940001,-8.466199126999982,0 115.1813295620001,-8.466111047999959,0 115.1813329420001,-8.466004943999963,0 115.1813439890001,-8.465899020999927,0 115.1813619200001,-8.465763287999948,0 115.1813788650001,-8.465633265999941,0 115.1813888460001,-8.465556654999943,0 115.1814060490001,-8.465375714999936,0 115.1814102940001,-8.465291430999969,0 115.181410299,-8.465291157999957,0 115.1814095850001,-8.465257043999941,0 115.181409462,-8.46525132599993,0 115.1814091780001,-8.465237811999941,0 115.1814087270001,-8.465216421999969,0 115.181404419,-8.46511019899998,0 115.181404111,-8.465096380999967,0 115.181402831,-8.465039476999948,0 115.181403195,-8.464962095999965,0 115.181407783,-8.464803374999974,0 115.1814111370001,-8.464734581999949,0 115.1814131030001,-8.464694273999953,0 115.181413591,-8.464589847999946,0 115.1814121680001,-8.464483543999961,0 115.1814096610001,-8.464403069999946,0 115.181406121,-8.464335932999973,0 115.1813995450001,-8.464266413999951,0 115.1813978700001,-8.464248722999969,0 115.1813850410001,-8.464117661999978,0 115.181381488,-8.464059544999941,0 115.18138378,-8.46397944399996,0 115.1813892680001,-8.463861836999968,0 115.181400874,-8.463613123999949,0 115.1814122230001,-8.463444940999977,0 115.1814181780001,-8.463397406999945,0 115.1814596270001,-8.463174681999931,0 115.181465472,-8.463143270999979,0 115.1814870080001,-8.463040465999939,0 115.181498561,-8.463011158999961,0 115.181498635,-8.46301094599994,0 115.1815298290001,-8.462914490999935,0 115.1815608220001,-8.462826350999933,0 115.1815684200001,-8.462804734999963,0 115.181578528,-8.462775981999926,0 115.1816112780001,-8.462673133999942,0 115.1816321460001,-8.462607608999974,0 115.181648575,-8.462566786999957,0 115.1816658990001,-8.462528931999941,0 115.181693298,-8.462483945999963,0 115.1816948400001,-8.462481414999957,0 115.181694996,-8.462481126999933,0 115.1817270370001,-8.462417114999937,0 115.1817814680001,-8.462300482999979,0 115.181803948,-8.462245954999958,0 115.181858377,-8.46211391099996,0 115.181876779,-8.462069275999966,0 115.181876869,-8.462069030999942,0 115.1818781980001,-8.462064966999947,0 115.1818821810001,-8.462052794999977,0 115.1819090680001,-8.461970553999947,0 115.181909171,-8.461970185999974,0 115.1819148010001,-8.461946277999971,0 115.1819228380001,-8.46191214199996,0 115.1819431280001,-8.461856215999944,0 115.181950302,-8.461840803999962,0 115.1819682060001,-8.461802324999951,0 115.1819692030001,-8.461800186999938,0 115.182002072,-8.461739267999974,0 115.1820282330001,-8.461692518999939,0 115.1820284830001,-8.461691990999952,0 115.182051845,-8.46163366899998,0 115.182051976,-8.461633273999951,0 115.1820685920001,-8.461574026999926,0 115.182068662,-8.461573745999942,0 115.182087323,-8.461485851999953,0 115.1821118080001,-8.461381802999938,0 115.182184105,-8.461123899999961,0 115.182208229,-8.461039046999929,0 115.182215109,-8.461014850999959,0 115.182239801,-8.460928009999975,0 115.1822879,-8.460757334999926,0 115.1823015450001,-8.46070891599993,0 115.1823226710001,-8.46065847999995,0 115.182373448,-8.460537271999954,0 115.182450042,-8.460373656999934,0 115.1824502170001,-8.46037322199993,0 115.1824619030001,-8.460337710999966,0 115.182487559,-8.460259758999939,0 115.1825046040001,-8.460207966999974,0 115.182510115,-8.460191222999981,0 115.1825612580001,-8.460018600999945,0 115.1825725240001,-8.459980572999939,0 115.182595963,-8.45989740899995,0 115.182596063,-8.459896972999957,0 115.182596125,-8.459896426999933,0 115.1826002890001,-8.459818164999945,0 115.182601524,-8.459794960999943,0 115.18260219,-8.459792313999969,0 115.1826024510001,-8.459791269999926,0 115.1826025170001,-8.459790960999953,0 115.182602585,-8.459790215999931,0 115.1826039870001,-8.459630440999945,0 115.182604436,-8.459579435999956,0 115.1826182250001,-8.459483860999967,0 115.1826202740001,-8.459469641999931,0 115.18262029,-8.459469531999957,0 115.182620538,-8.459467806999953,0 115.182629277,-8.459407241999941,0 115.1826310710001,-8.459394816999975,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<description>{&quot;OBJECTID&quot;:&quot;1401&quot;,&quot;NAMOBJ&quot;:&quot;Jalur Hijau&quot;,&quot;NAMZON&quot;:&quot;Zona Ruang Terbuka Hijau&quot;,&quot;KODZON&quot;:&quot;RTH&quot;,&quot;NAMSZN&quot;:&quot;Jalur Hijau&quot;,&quot;KODSZN&quot;:&quot;RTH-8&quot;,&quot;JNSRPR&quot;:&quot;Zona Lindung&quot;,&quot;KODEWP&quot;:&quot;I&quot;,&quot;KODSWP&quot;:&quot;A&quot;,&quot;KODBLK&quot;:&quot;3&quot;,&quot;KODSBL&quot;:&quot;Tidak Ada&quot;,&quot;WADMPR&quot;:&quot;Provinsi Bali&quot;,&quot;WADMKK&quot;:&quot;Kabupaten Badung&quot;,&quot;WADMKC&quot;:&quot;Kecamatan Mengwi&quot;,&quot;WADMKD&quot;:&quot;Desa Sembung&quot;,&quot;KKOP_1&quot;:&quot;Tidak Ada&quot;,&quot;LP2B_2&quot;:&quot;Tidak Ada&quot;,&quot;KRB_03&quot;:&quot;Tidak Ada&quot;,&quot;TOD_04&quot;:&quot;Tidak Ada&quot;,&quot;TEB_05&quot;:&quot;Tidak Ada&quot;,&quot;PUSLIT&quot;:&quot;Tidak Ada&quot;,&quot;CAGBUD&quot;:&quot;Tidak Ada&quot;,&quot;RESAIR&quot;:&quot;Tidak Ada&quot;,&quot;KSMPDN&quot;:&quot;Tidak Ada&quot;,&quot;HANKAM&quot;:&quot;Tidak Ada&quot;,&quot;KKARST&quot;:&quot;Tidak Ada&quot;,&quot;PTBGMB&quot;:&quot;Tidak Ada&quot;,&quot;MGRSAT&quot;:&quot;Tidak Ada&quot;,&quot;RDBUMI&quot;:&quot;Tidak Ada&quot;,&quot;TPZ_00&quot;:&quot;Tidak Ada&quot;,&quot;REMARK&quot;:&quot;Tidak Ada&quot;,&quot;NOTHPR&quot;:&quot;Peraturan Bupati Badung Nomor 34 Tahun 2022 tentang Rencana Detail Tata Ruang Wilayah Perencanaan Mengwi Tahun 2022-2042&quot;}</description>
</Placemark>
<Placemark>
<visibility>0</visibility>
<styleUrl>#m_ylw-pushpin71</styleUrl>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
115.1825933760001,-8.459387763999928,0 115.182595364,-8.459373974999949,0 115.1825954530001,-8.459373357999937,0 115.1826008290001,-8.459336096999948,0 115.1826008740001,-8.459335786999929,0 115.182601373,-8.45933075399995,0 115.1826044760001,-8.459299447999967,0 115.1826064190001,-8.459292197999957,0 115.1826122680001,-8.459270388999926,0 115.1826241480001,-8.459242726999946,0 115.182632193,-8.459222786999931,0 115.182636063,-8.459213194999961,0 115.182641889,-8.459197343999961,0 115.1826487390001,-8.459178702999964,0 115.1826750070001,-8.459107538999945,0 115.1826999680001,-8.45900944899995,0 115.182706176,-8.458985052999935,0 115.1827259060001,-8.458907508999971,0 115.1827357680001,-8.458869911999955,0 115.182736003,-8.458869019999952,0 115.1827362070001,-8.458868226999925,0 115.1827362500001,-8.458868062999954,0 115.182738219,-8.45886055699998,0 115.182745092,-8.458834353999976,0 115.1827452860001,-8.45883361999995,0 115.1827461930001,-8.458830152999951,0 115.1827464810001,-8.458829075999972,0 115.182746627,-8.458828559999972,0 115.182756518,-8.458793167999943,0 115.1827620680001,-8.458773307999934,0 115.1827800100001,-8.458709112999941,0 115.182846624,-8.458470776999945,0 115.1828525740001,-8.45844748199994,0 115.1828525860001,-8.458444999999926,0 115.1828526090001,-8.45843989499997,0 115.1828511120001,-8.458435388999931,0 115.1828504720001,-8.45843346099997,0 115.182847411,-8.458430372999942,0 115.1828426410001,-8.458426919999965,0 115.1828408010001,-8.458426290999967,0 115.1828383530001,-8.45842545499994,0 115.1828090140001,-8.458415435999939,0 115.1827178680001,-8.458384308999939,0 115.1826438500001,-8.458357731999968,0 115.1822008910001,-8.458198682999978,0 115.1820267640001,-8.458159548999959,0 115.1819907,-8.458151427999951,0 115.1819301390001,-8.458137792999935,0 115.1818853220001,-8.458127702999946,0 115.181875804,-8.458125973999927,0 115.181820172,-8.458115870999961,0 115.1815584650001,-8.458068331999925,0 115.1814781480001,-8.458046991999936,0 115.1813632860001,-8.458016350999969,0 115.18118084,-8.457929902999979,0 115.1810583140001,-8.457871850999936,0 115.181047258,-8.45786660999994,0 115.180910687,-8.457801923999966,0 115.180605409,-8.457612762999929,0 115.1803434520001,-8.457508496999935,0 115.1803360380001,-8.457508372999939,0 115.1803292130001,-8.457511232999934,0 115.1803282640001,-8.457512202999965,0 115.180324022,-8.457516533999978,0 115.180319421,-8.457529066999939,0 115.180301835,-8.457576969999934,0 115.1800100200001,-8.458371717999967,0 115.179811092,-8.458958244999963,0 115.1797558660001,-8.459105969999939,0 115.179750278,-8.45912091799994,0 115.179747571,-8.459128157999942,0 115.179730066,-8.459174981999979,0 115.1796531540001,-8.459380726999939,0 115.1796409230001,-8.459413448999953,0 115.1795597170001,-8.459630665999953,0 115.179247473,-8.460429264999959,0 115.1790136630001,-8.460980642999971,0 115.1789669420001,-8.461088166999957,0 115.1789276120001,-8.461178673999939,0 115.1788259440001,-8.461412656999926,0 115.178815148,-8.46143720699996,0 115.1788125750001,-8.461443059999965,0 115.178666549,-8.461775230999933,0 115.1786614480001,-8.461786833999952,0 115.1786480060001,-8.461817412999949,0 115.178638381,-8.461826904999953,0 115.1786269370001,-8.46183819099997,0 115.178621503,-8.461841254999968,0 115.1786175540001,-8.461843481999949,0 115.1786155980001,-8.46184537399995,0 115.178615022,-8.461846312999967,0 115.178614164,-8.46184771399993,0 115.1786133290001,-8.461850331999926,0 115.1786130900001,-8.461853036999969,0 115.178613463,-8.461854933999973,0 115.1786136060001,-8.461855661999948,0 115.178614644,-8.461858200999927,0 115.1786162760001,-8.461860378999972,0 115.1786203790001,-8.461863652999966,0 115.1786510810001,-8.46187933799996,0 115.1787539840001,-8.461907205999978,0 115.1787887920001,-8.461915570999963,0 115.1787898340001,-8.461915820999934,0 115.178793431,-8.461916685999938,0 115.17890147,-8.461942649999969,0 115.1789019890001,-8.46194277099994,0 115.1789070960001,-8.461943997999981,0 115.1790452400001,-8.46197719099996,0 115.1790593600001,-8.461980580999978,0 115.1790879240001,-8.461988672999951,0 115.1791038980001,-8.461999952999975,0 115.179105312,-8.462004570999966,0 115.1791075870001,-8.462011985999936,0 115.179109386,-8.462017853999953,0 115.179109645,-8.462018693999937,0 115.1791119740001,-8.462033704999953,0 115.179111902,-8.46204916399995,0 115.179101711,-8.462097657999948,0 115.1790972650001,-8.46211885699995,0 115.179096916,-8.462120518999939,0 115.179095078,-8.462129276999974,0 115.1790589750001,-8.462301375999971,0 115.178993233,-8.462539886999934,0 115.178988966,-8.46255541599993,0 115.1789696420001,-8.462669489999939,0 115.17894245,-8.462830255999961,0 115.178940448,-8.46284209099997,0 115.178940429,-8.46284220299998,0 115.178935611,-8.462870694999935,0 115.1789255850001,-8.462929971999927,0 115.178907177,-8.463038625999957,0 115.1788970250001,-8.463096063999956,0 115.178875488,-8.463217454999949,0 115.1788502590001,-8.463359521999962,0 115.178833875,-8.463451819999932,0 115.1788209600001,-8.463524618999941,0 115.1788054560001,-8.463611121999975,0 115.1788027330001,-8.463626315999932,0 115.1787973500001,-8.463656369999967,0 115.1787783550001,-8.463762412999927,0 115.1787568300001,-8.46388253799995,0 115.178740315,-8.463969870999961,0 115.178710216,-8.464129363999973,0 115.1786931680001,-8.464219673999935,0 115.178689873,-8.464235477999978,0 115.178664817,-8.464356752999947,0 115.178643672,-8.464459340999952,0 115.178641143,-8.464471569999944,0 115.1786233080001,-8.46455784699998,0 115.1786157810001,-8.464594254999952,0 115.1786096740001,-8.464631916999963,0 115.1785934170001,-8.464732178999952,0 115.1785775980001,-8.464829444999964,0 115.1785775930001,-8.464829472999952,0 115.178575248,-8.464843894999944,0 115.1785706480001,-8.464872172999947,0 115.1785703810001,-8.464873817999944,0 115.1785697510001,-8.464877697999952,0 115.178569592,-8.464878677999934,0 115.1785702510001,-8.464882118999981,0 115.1785720360001,-8.46488502099993,0 115.178574795,-8.46488702299996,0 115.1785785310001,-8.464888481999935,0 115.1785914290001,-8.46490029499995,0 115.17859522,-8.464907203999928,0 115.1785953550001,-8.464907231999973,0 115.1785996520001,-8.464908134999973,0 115.178599692,-8.464907988999926,0 115.1785997610001,-8.464907203999928,0 115.178599691,-8.464906416999952,0 115.178599487,-8.464905657999964,0 115.1785992040001,-8.464905035999948,0 115.1785953880001,-8.464898080999944,0 115.178594908,-8.46489738899993,0 115.1785945030001,-8.464896967999948,0 115.178581527,-8.464885084999935,0 115.1785808020001,-8.464884566999956,0 115.1785801890001,-8.464884272999939,0 115.1785769970001,-8.464883026999928,0 115.1785754370001,-8.464881894999962,0 115.1785745570001,-8.464880463999975,0 115.178574202,-8.464878610999961,0 115.178574593,-8.464876004999951,0 115.178574688,-8.464875369999959,0 115.17857486,-8.464874557999963,0 115.1785749510001,-8.464873820999969,0 115.1785751310001,-8.464872894999928,0 115.178579731,-8.464844616999926,0 115.1785820800001,-8.464830166999946,0 115.1785979010001,-8.464732899999944,0 115.17861197,-8.464646124999945,0 115.1786119750001,-8.464646098999935,0 115.1786202510001,-8.464595052999925,0 115.178622646,-8.464583474999927,0 115.1786455880001,-8.464472488999945,0 115.17864812,-8.464460251999981,0 115.1786692650001,-8.46435766299993,0 115.1786943200001,-8.464236390999929,0 115.1786976230001,-8.464220548999947,0 115.1787146790001,-8.464130198999953,0 115.178744778,-8.46397070699993,0 115.1787612970001,-8.463883350999936,0 115.1787828270001,-8.463763207999932,0 115.178807203,-8.463627109999948,0 115.1788254310001,-8.463525407999953,0 115.178838347,-8.463452605999976,0 115.1788547320001,-8.463360308999938,0 115.178879959,-8.463218240999936,0 115.1789014980001,-8.463096847999964,0 115.1789116530001,-8.463039391999928,0 115.1789300630001,-8.462930721999953,0 115.1789449070001,-8.462842953999939,0 115.1789706430001,-8.462690797999926,0 115.17897412,-8.462670240999955,0 115.178993406,-8.462556388999928,0 115.1789976140001,-8.462541080999927,0 115.1790357110001,-8.462402863999955,0 115.179063354,-8.462302572999931,0 115.179063419,-8.462302300999966,0 115.1790888710001,-8.462180974999967,0 115.1791013600001,-8.462121442999944,0 115.1791061560001,-8.462098582999943,0 115.179107487,-8.462092247999976,0 115.1791163600001,-8.462050018999946,0 115.1791164430001,-8.462049184999955,0 115.1791165140001,-8.462033714999961,0 115.179116461,-8.462033014999975,0 115.1791141240001,-8.462017955999954,0 115.1791139870001,-8.462017370999945,0 115.179113729,-8.46201653199995,0 115.1791119300001,-8.462010665999969,0 115.1791096560001,-8.462003249999952,0 115.1791082020001,-8.461998519999952,0 115.17910783,-8.461997692999944,0 115.1791073750001,-8.461997047999944,0 115.1791068150001,-8.461996488999944,0 115.1791065240001,-8.461996265999971,0 115.1790905510001,-8.461984984999958,0 115.1790901950001,-8.461984757999971,0 115.179089477,-8.461984423999979,0 115.179089167,-8.461984323999957,0 115.1790605140001,-8.461976209999932,0 115.1790463040001,-8.461972795999941,0 115.178903041,-8.461938372999953,0 115.1789025220001,-8.461938250999935,0 115.1787909000001,-8.461911426999961,0 115.178755106,-8.461902824999981,0 115.1786527290001,-8.46187509899994,0 115.1786228620001,-8.461859839999931,0 115.1786195670001,-8.461857210999938,0 115.1786186300001,-8.461855961999959,0 115.178617978,-8.461854364999965,0 115.1786177450001,-8.461853180999981,0 115.17862101,-8.461851843999966,0 115.17862203,-8.461851347999925,0 115.178631446,-8.461846038999965,0 115.1786327750001,-8.461845117999928,0 115.1786333270001,-8.461844614999961,0 115.1786543960001,-8.46182383699994,0 115.1786549630001,-8.461823224999932,0 115.17865587,-8.461821933999943,0 115.178656325,-8.461821037999925,0 115.178674869,-8.461778856999956,0 115.1788208950001,-8.461446684999942,0 115.17883427,-8.461416264999968,0 115.178935947,-8.461182263999945,0 115.1789752770001,-8.461091756999963,0 115.1790220140001,-8.46098419499998,0 115.1792558890001,-8.460432662999949,0 115.179568204,-8.459633881999935,0 115.1796494340001,-8.459416601999976,0 115.179661665,-8.459383879999962,0 115.1797385770001,-8.459178135999935,0 115.1797587890001,-8.459124071999952,0 115.179819615,-8.458961367999962,0 115.1798196960001,-8.45896113799995,0 115.1800185880001,-8.45837471599998,0 115.1803103640001,-8.457580074999953,0 115.180331883,-8.457521459999953,0 115.1803344330001,-8.457518855999979,0 115.1803377970001,-8.457517444999951,0 115.180341631,-8.457517508999956,0 115.1806012940001,-8.457620862999931,0 115.1809058890001,-8.457809599999962,0 115.1809061460001,-8.457809753999982,0 115.180906785,-8.457810088999963,0 115.181043356,-8.457874773999947,0 115.1810544120001,-8.457880014999944,0 115.181176938,-8.457938067999976,0 115.1813593830001,-8.458024516999956,0 115.1813601800001,-8.458024849999958,0 115.181360936,-8.458025085999964,0 115.181475803,-8.458055725999941,0 115.1815561230001,-8.458077066999977,0 115.1815568350001,-8.458077226999933,0 115.1818185430001,-8.458124765999969,0 115.1818835180001,-8.45813656699994,0 115.1819886960001,-8.458160246999967,0 115.1820247630001,-8.458168366999928,0 115.182198336,-8.45820737799994,0 115.182640769,-8.45836623799994,0 115.1827148550001,-8.458392837999952,0 115.18283969,-8.458435470999973,0 115.1828472130001,-8.458438049999927,0 115.1828480640001,-8.458440612999937,0 115.1828480360001,-8.458446907999928,0 115.182842238,-8.458469607999973,0 115.1827576930001,-8.458772095999961,0 115.1827422550001,-8.45882734199995,0 115.182742103,-8.458827879999944,0 115.182741802,-8.45882899999998,0 115.1827408930001,-8.458832475999941,0 115.1827407000001,-8.45883320799993,0 115.182731855,-8.458866928999953,0 115.182731609,-8.458867882999925,0 115.1827313760001,-8.458868767999945,0 115.1827215090001,-8.458906382999942,0 115.1827017750001,-8.458983941999975,0 115.182695566,-8.459008337999933,0 115.182670665,-8.459106198999962,0 115.1826444770001,-8.459177145999945,0 115.1826318300001,-8.459211558999925,0 115.1826318200001,-8.459211583999945,0 115.1826199500001,-8.459241006999946,0 115.182608047,-8.459268726999937,0 115.1826078800001,-8.459269221999932,0 115.1826000890001,-8.459298281999963,0 115.1826000050001,-8.459298663999959,0 115.1825999570001,-8.459299003999945,0 115.182596364,-8.459335244999977,0 115.1825909580001,-8.459372714999972,0 115.1825909410001,-8.459372834999954,0 115.1825890260001,-8.459386121999955,0 115.1825933760001,-8.459387763999928,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<description>{&quot;OBJECTID&quot;:&quot;1402&quot;,&quot;NAMOBJ&quot;:&quot;Jalur Hijau&quot;,&quot;NAMZON&quot;:&quot;Zona Ruang Terbuka Hijau&quot;,&quot;KODZON&quot;:&quot;RTH&quot;,&quot;NAMSZN&quot;:&quot;Jalur Hijau&quot;,&quot;KODSZN&quot;:&quot;RTH-8&quot;,&quot;JNSRPR&quot;:&quot;Zona Lindung&quot;,&quot;KODEWP&quot;:&quot;I&quot;,&quot;KODSWP&quot;:&quot;A&quot;,&quot;KODBLK&quot;:&quot;1&quot;,&quot;KODSBL&quot;:&quot;Tidak Ada&quot;,&quot;WADMPR&quot;:&quot;Provinsi Bali&quot;,&quot;WADMKK&quot;:&quot;Kabupaten Badung&quot;,&quot;WADMKC&quot;:&quot;Kecamatan Mengwi&quot;,&quot;WADMKD&quot;:&quot;Desa Kuwum&quot;,&quot;KKOP_1&quot;:&quot;Tidak Ada&quot;,&quot;LP2B_2&quot;:&quot;Tidak Ada&quot;,&quot;KRB_03&quot;:&quot;Tidak Ada&quot;,&quot;TOD_04&quot;:&quot;Tidak Ada&quot;,&quot;TEB_05&quot;:&quot;Tidak Ada&quot;,&quot;PUSLIT&quot;:&quot;Tidak Ada&quot;,&quot;CAGBUD&quot;:&quot;Tidak Ada&quot;,&quot;RESAIR&quot;:&quot;Tidak Ada&quot;,&quot;KSMPDN&quot;:&quot;Tidak Ada&quot;,&quot;HANKAM&quot;:&quot;Tidak Ada&quot;,&quot;KKARST&quot;:&quot;Tidak Ada&quot;,&quot;PTBGMB&quot;:&quot;Tidak Ada&quot;,&quot;MGRSAT&quot;:&quot;Tidak Ada&quot;,&quot;RDBUMI&quot;:&quot;Tidak Ada&quot;,&quot;TPZ_00&quot;:&quot;Tidak Ada&quot;,&quot;REMARK&quot;:&quot;Tidak Ada&quot;,&quot;NOTHPR&quot;:&quot;Peraturan Bupati Badung Nomor 34 Tahun 2022 tentang Rencana Detail Tata Ruang Wilayah Perencanaan Mengwi Tahun 2022-2042&quot;}</description>
</Placemark>
<Placemark>
<visibility>0</visibility>
<styleUrl>#m_ylw-pushpin71</styleUrl>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
115.1825933760001,-8.459387763999928,0 115.1825890260001,-8.459386121999955,0 115.182588881,-8.459387120999963,0 115.182587871,-8.459394112999973,0 115.1825868520001,-8.459401173999936,0 115.182578365,-8.459459993999928,0 115.182578237,-8.459460879999938,0 115.1825616430001,-8.459575895999933,0 115.182561597,-8.459576499999969,0 115.182560705,-8.459678243999974,0 115.182559767,-8.45978531399993,0 115.182559048,-8.459788175999961,0 115.182558982,-8.459788486999969,0 115.182558919,-8.459789032999936,0 115.1825535500001,-8.459889946999965,0 115.182531336,-8.459968765999974,0 115.1824691840001,-8.460178550999956,0 115.1824638750001,-8.460194681999951,0 115.1824296980001,-8.460298533999946,0 115.182421177,-8.460324422999975,0 115.182410223,-8.460357697999939,0 115.182334231,-8.46052003799997,0 115.1822610500001,-8.460694731999979,0 115.1822609080001,-8.460695151999971,0 115.182234654,-8.46078831799997,0 115.1821985490001,-8.460916435999934,0 115.1821428420001,-8.461112354999955,0 115.182070283,-8.461371203999931,0 115.182045634,-8.461476002999973,0 115.1820454650001,-8.461476667999932,0 115.1820453280001,-8.461477542999944,0 115.182026981,-8.461563725999952,0 115.1820112480001,-8.461619822999978,0 115.1819895880001,-8.461673894999933,0 115.181964479,-8.461718763999954,0 115.181954267,-8.461737690999939,0 115.1819354270001,-8.461772610999958,0 115.181930908,-8.461780982999926,0 115.181930789,-8.461781222999946,0 115.1819035350001,-8.461839789999942,0 115.1819033850001,-8.461840149999944,0 115.18188177,-8.46189973099996,0 115.181881619,-8.461900236999952,0 115.1818789810001,-8.461911449999945,0 115.1818678120001,-8.46195888099993,0 115.1818365820001,-8.462054389999935,0 115.1818057490001,-8.462129188999938,0 115.1817421920001,-8.462283377999938,0 115.181732986,-8.462303100999975,0 115.1817280470001,-8.462313686999948,0 115.1816884120001,-8.462398604999976,0 115.1816573440001,-8.462460682999961,0 115.1816280520001,-8.462508773999957,0 115.1816278270001,-8.462509201999978,0 115.1816091620001,-8.462549999999965,0 115.181591807,-8.462593112999969,0 115.181591719,-8.46259336199995,0 115.181550138,-8.462723937999954,0 115.1815378600001,-8.462762491999968,0 115.1814891930001,-8.462900915999967,0 115.181458203,-8.462996729999929,0 115.1814459080001,-8.46302792399996,0 115.18144571,-8.463028599999973,0 115.1814234140001,-8.463135034999937,0 115.18140326,-8.463243329999955,0 115.181399499,-8.463263531999928,0 115.181375827,-8.463390749999974,0 115.1813757900001,-8.46339099599993,0 115.181369557,-8.463440748999972,0 115.1813695320001,-8.463441003999947,0 115.181358077,-8.463610704999951,0 115.1813565760001,-8.463642886999935,0 115.1813475400001,-8.463836561999926,0 115.1813428600001,-8.463936840999963,0 115.181340949,-8.463977830999966,0 115.1813385960001,-8.464060103999941,0 115.1813386040001,-8.464060442999937,0 115.181342308,-8.464121018999947,0 115.181355207,-8.464252790999979,0 115.181363368,-8.464339056999961,0 115.1813668340001,-8.464404826999953,0 115.1813693160001,-8.464484487999925,0 115.181370052,-8.464539603999981,0 115.181370732,-8.464590044999966,0 115.181370248,-8.464693140999941,0 115.1813649530001,-8.464801729999976,0 115.1813603370001,-8.464961379999977,0 115.1813599680001,-8.465039844999978,0 115.1813615770001,-8.465111530999934,0 115.181365882,-8.465217735999943,0 115.181367419,-8.46529064799995,0 115.181363289,-8.465372628999944,0 115.1813462460001,-8.465551910999977,0 115.181319418,-8.465757757999938,0 115.1813014190001,-8.465894031999937,0 115.1812901710001,-8.466001905999974,0 115.181290147,-8.466002230999948,0 115.1812867440001,-8.466109079999967,0 115.181278485,-8.46624202299995,0 115.181276774,-8.466262923999977,0 115.181269465,-8.466352060999952,0 115.18125407,-8.466446882999946,0 115.1812495900001,-8.466466428999979,0 115.1812298570001,-8.466552548999971,0 115.181207016,-8.466647465999927,0 115.181206951,-8.466647795999961,0 115.1811898290001,-8.466763234999974,0 115.1811192890001,-8.467260817999943,0 115.1810528440001,-8.46767448099996,0 115.1810164870001,-8.467887532999953,0 115.1810156410001,-8.467892491999976,0 115.1810111680001,-8.467918726999926,0 115.1810111240001,-8.467919052999946,0 115.1810024150001,-8.468009701999961,0 115.181002397,-8.468009984999981,0 115.1810022080001,-8.468015715999968,0 115.1810017480001,-8.46802990599997,0 115.1810013600001,-8.468041823999954,0 115.1810013280001,-8.468042819999937,0 115.181000741,-8.468060820999938,0 115.1810004350001,-8.46807016799994,0 115.180999571,-8.468096784999943,0 115.1809996180001,-8.468097522999926,0 115.1810075930001,-8.468150972999979,0 115.1810076170001,-8.468155336999928,0 115.1810068960001,-8.468159579999963,0 115.1810054590001,-8.468163637999965,0 115.181003346,-8.468167385999948,0 115.181000615,-8.468170720999979,0 115.1809973540001,-8.468173541999931,0 115.1809936610001,-8.468175764999955,0 115.1809896330001,-8.468177323999953,0 115.180985403,-8.468178174999935,0 115.180981082,-8.468178290999958,0 115.1809768110001,-8.468177668999942,0 115.1809724640001,-8.468176240999981,0 115.180972167,-8.468176120999942,0 115.1809718920001,-8.468176030999928,0 115.180909236,-8.468157729999973,0 115.180902443,-8.468155742999954,0 115.1807646880001,-8.468115501999932,0 115.1806750120001,-8.468089260999932,0 115.1806471790001,-8.468081113999972,0 115.1806072010001,-8.468071591999944,0 115.180606933,-8.468071535999968,0 115.1806061450001,-8.468071466999959,0 115.1806058560001,-8.468071474999931,0 115.180577921,-8.46807324699995,0 115.1805774610001,-8.468073299999958,0 115.180550462,-8.468077789999938,0 115.180549677,-8.468077997999956,0 115.1805493710001,-8.468078120999962,0 115.1804991070001,-8.468100576999973,0 115.180498122,-8.468101016999981,0 115.180497711,-8.468101226999977,0 115.1804970490001,-8.46810168899998,0 115.1804538010001,-8.468138390999968,0 115.1804537390001,-8.468138443999976,0 115.180389083,-8.468193311999926,0 115.1803888590001,-8.468193515999928,0 115.180203093,-8.468373844999974,0 115.1802021580001,-8.468374379999943,0 115.1802010870001,-8.468374708999931,0 115.1802000070001,-8.468374794999932,0 115.1801989830001,-8.468374611999934,0 115.18019802,-8.468374204999975,0 115.18019729,-8.468373662999966,0 115.1800960580001,-8.468235533999973,0 115.1800958690001,-8.468235291999974,0 115.1800953070001,-8.468234733999964,0 115.180053914,-8.468200190999937,0 115.180053268,-8.468199739999932,0 115.1800529660001,-8.468199580999965,0 115.1799915560001,-8.46817017199993,0 115.1798831220001,-8.468108427999937,0 115.1798462060001,-8.468086640999957,0 115.179845467,-8.468086294999978,0 115.179845007,-8.468086172999961,0 115.1798445310001,-8.468088074999969,0 115.179843913,-8.468090543999949,0 115.1798808620001,-8.468112349999956,0 115.179989437,-8.468174172999966,0 115.1800509980001,-8.468203654999968,0 115.1800859150001,-8.468232794999949,0 115.18009239,-8.468238197999938,0 115.1801118010001,-8.468264682999973,0 115.1801940240001,-8.468376877999958,0 115.180195743,-8.468378154999925,0 115.1801976830001,-8.468378972999972,0 115.1801997810001,-8.468379346999939,0 115.1802016830001,-8.468379196999933,0 115.1802019480001,-8.468379175999928,0 115.180202481,-8.468379011999957,0 115.180203977,-8.468378551999933,0 115.1802049720001,-8.468377982999925,0 115.1802058530001,-8.468377479999958,0 115.180392029,-8.468196752999972,0 115.1804566840001,-8.468141884999966,0 115.1804850310001,-8.468117828999937,0 115.180499981,-8.468105141999956,0 115.1805512300001,-8.468082245999938,0 115.1805697090001,-8.468079171999932,0 115.180578209,-8.468077758999925,0 115.180581961,-8.46807752199993,0 115.1806061440001,-8.468075988999942,0 115.180646009,-8.468085480999946,0 115.1806737310001,-8.468093597999939,0 115.1807281670001,-8.468109527999957,0 115.1807634080001,-8.468119839999929,0 115.180768928,-8.468121452999981,0 115.180901164,-8.468160080999951,0 115.180907957,-8.468162068999959,0 115.1809706140001,-8.46818036999997,0 115.1809708860001,-8.468180486999927,0 115.1809709160001,-8.46818049899997,0 115.1809722060001,-8.468180920999941,0 115.1809757640001,-8.468182085999956,0 115.180980813,-8.468182820999971,0 115.1809853190001,-8.468182698999954,0 115.1809859170001,-8.468182682999952,0 115.180990917,-8.468181676999961,0 115.180993788,-8.468180564999955,0 115.18099567,-8.46817983699998,0 115.1810000390001,-8.468177207999929,0 115.1810019610001,-8.468175545999941,0 115.1810038880001,-8.468173877999959,0 115.181007115,-8.468169939999939,0 115.181009611,-8.468165508999959,0 115.181011309,-8.468160714999954,0 115.181012159,-8.468155707999927,0 115.1810121330001,-8.468150627999933,0 115.1810041100001,-8.468096858999957,0 115.1810049730001,-8.468070315999967,0 115.18100528,-8.468060968999964,0 115.1810058980001,-8.46804197199998,0 115.1810062860001,-8.46803005299995,0 115.1810067460001,-8.468015863999938,0 115.181006935,-8.46801013299995,0 115.181015644,-8.467919483999935,0 115.181019878,-8.467894655999942,0 115.1810201180001,-8.467893248999928,0 115.1810202370001,-8.467892550999977,0 115.181020964,-8.467888291999941,0 115.1810573250001,-8.467675211999961,0 115.1811237820001,-8.46726148099998,0 115.1811943230001,-8.466763881999952,0 115.181211433,-8.466648518999932,0 115.1812262420001,-8.466586973999938,0 115.181234278,-8.466553578999935,0 115.1812540180001,-8.466467432999934,0 115.1812585270001,-8.466447757999958,0 115.1812616730001,-8.466428381999947,0 115.1812739750001,-8.466352606999976,0 115.181281299,-8.466263291999951,0 115.1812830140001,-8.466242352999927,0 115.1812912820001,-8.466109263999954,0 115.1812946860001,-8.466002371999934,0 115.181305929,-8.465894559999981,0 115.1813239200001,-8.465758344999927,0 115.1813507610001,-8.465552401999958,0 115.1813678190001,-8.465372957999932,0 115.1813719630001,-8.465290716999959,0 115.1813704210001,-8.465217596999935,0 115.1813693790001,-8.465191900999969,0 115.181366116,-8.465111390999937,0 115.1813645080001,-8.46503981799998,0 115.1813648770001,-8.464961456999959,0 115.1813673500001,-8.464875889999973,0 115.1813694890001,-8.464801903999955,0 115.1813704990001,-8.464781207999977,0 115.1813747870001,-8.464693257999954,0 115.1813752730001,-8.46459000599998,0 115.181374653,-8.464544042999933,0 115.1813745930001,-8.464539543999933,0 115.1813745420001,-8.464535748999936,0 115.1813738550001,-8.464484388999949,0 115.1813713700001,-8.464404660999946,0 115.1813678960001,-8.464338720999933,0 115.1813597260001,-8.464252359999932,0 115.181346834,-8.46412066299996,0 115.181343136,-8.464060167999946,0 115.181345486,-8.46397799999994,0 115.1813473970001,-8.463937051999949,0 115.181362611,-8.463610960999972,0 115.181374062,-8.463441307999972,0 115.181380296,-8.463391553999941,0 115.1813976310001,-8.463298387999941,0 115.1814039640001,-8.463264354999978,0 115.1814059650001,-8.463253605999967,0 115.181407723,-8.463244154999927,0 115.1814278690001,-8.463135908999959,0 115.1814501550001,-8.463029521999943,0 115.181462481,-8.462998253999956,0 115.181493497,-8.462902355999972,0 115.181542172,-8.462763908999932,0 115.1815544650001,-8.462725304999935,0 115.1815960480001,-8.462594727999942,0 115.181613336,-8.462551777999977,0 115.181628863,-8.462517842999944,0 115.1816319600001,-8.462511075999942,0 115.181636794,-8.462503138999978,0 115.1816613240001,-8.462462867999932,0 115.181681131,-8.462423289999947,0 115.1816925050001,-8.462400564999939,0 115.1817049370001,-8.462373929999956,0 115.1817321650001,-8.462315592999971,0 115.181737104,-8.46230500799993,0 115.1817463530001,-8.462285193999946,0 115.1817921280001,-8.462174141999981,0 115.1818099500001,-8.462130904999981,0 115.1818391740001,-8.462060005999945,0 115.181840845,-8.462055950999968,0 115.181872191,-8.461960096999974,0 115.1818834020001,-8.461912480999956,0 115.1818860400001,-8.461901267999963,0 115.181907654,-8.461841690999961,0 115.181934907,-8.461783123999965,0 115.1819394270001,-8.461774749999961,0 115.181958268,-8.461739829999942,0 115.1819684630001,-8.46172093499996,0 115.1819936960001,-8.461675841999977,0 115.182015555,-8.461621272999935,0 115.1820313930001,-8.461564800999952,0 115.1820499170001,-8.461477552999952,0 115.18207468,-8.461372327999982,0 115.182147212,-8.461113577999981,0 115.182202919,-8.460917662999975,0 115.1822390260001,-8.460789539999951,0 115.18226528,-8.460696374999941,0 115.1823383840001,-8.460521863999929,0 115.1824144550001,-8.460359358999938,0 115.1824254920001,-8.460325831999967,0 115.182434012,-8.460299942999939,0 115.1824646340001,-8.460206893999953,0 115.18246819,-8.460196090999943,0 115.1824701470001,-8.460190143999966,0 115.182473522,-8.460179886999981,0 115.1825357,-8.459970015999943,0 115.182549289,-8.459921798999972,0 115.1825580570001,-8.459890683999959,0 115.1825590210001,-8.459872563999966,0 115.182563454,-8.459789271999966,0 115.1825642000001,-8.459786293999969,0 115.182564302,-8.459785888999932,0 115.1825652450001,-8.459678283999949,0 115.1825661370001,-8.459576538999954,0 115.182582732,-8.459461524999938,0 115.1825913470001,-8.459401816999957,0 115.182592364,-8.459394755999938,0 115.1825933760001,-8.459387763999928,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<description>{&quot;OBJECTID&quot;:&quot;1403&quot;,&quot;NAMOBJ&quot;:&quot;Jalur Hijau&quot;,&quot;NAMZON&quot;:&quot;Zona Ruang Terbuka Hijau&quot;,&quot;KODZON&quot;:&quot;RTH&quot;,&quot;NAMSZN&quot;:&quot;Jalur Hijau&quot;,&quot;KODSZN&quot;:&quot;RTH-8&quot;,&quot;JNSRPR&quot;:&quot;Zona Lindung&quot;,&quot;KODEWP&quot;:&quot;I&quot;,&quot;KODSWP&quot;:&quot;A&quot;,&quot;KODBLK&quot;:&quot;3&quot;,&quot;KODSBL&quot;:&quot;Tidak Ada&quot;,&quot;WADMPR&quot;:&quot;Provinsi Bali&quot;,&quot;WADMKK&quot;:&quot;Kabupaten Badung&quot;,&quot;WADMKC&quot;:&quot;Kecamatan Mengwi&quot;,&quot;WADMKD&quot;:&quot;Desa Sembung&quot;,&quot;KKOP_1&quot;:&quot;Tidak Ada&quot;,&quot;LP2B_2&quot;:&quot;Tidak Ada&quot;,&quot;KRB_03&quot;:&quot;Tidak Ada&quot;,&quot;TOD_04&quot;:&quot;Tidak Ada&quot;,&quot;TEB_05&quot;:&quot;Tidak Ada&quot;,&quot;PUSLIT&quot;:&quot;Tidak Ada&quot;,&quot;CAGBUD&quot;:&quot;Tidak Ada&quot;,&quot;RESAIR&quot;:&quot;Tidak Ada&quot;,&quot;KSMPDN&quot;:&quot;Tidak Ada&quot;,&quot;HANKAM&quot;:&quot;Tidak Ada&quot;,&quot;KKARST&quot;:&quot;Tidak Ada&quot;,&quot;PTBGMB&quot;:&quot;Tidak Ada&quot;,&quot;MGRSAT&quot;:&quot;Tidak Ada&quot;,&quot;RDBUMI&quot;:&quot;Tidak Ada&quot;,&quot;TPZ_00&quot;:&quot;Tidak Ada&quot;,&quot;REMARK&quot;:&quot;Tidak Ada&quot;,&quot;NOTHPR&quot;:&quot;Peraturan Bupati Badung Nomor 34 Tahun 2022 tentang Rencana Detail Tata Ruang Wilayah Perencanaan Mengwi Tahun 2022-2042&quot;}</description>
</Placemark>
<Placemark>
<visibility>0</visibility>
<styleUrl>#m_ylw-pushpin71</styleUrl>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
115.1844182530001,-8.45457773399994,0 115.184414884,-8.454575416999944,0 115.1844058290001,-8.454574108999964,0 115.184399975,-8.454576970999938,0 115.1843970960001,-8.454580170999975,0 115.18439187,-8.454585977999955,0 115.1843790800001,-8.45460019199993,0 115.184341001,-8.454642511999964,0 115.184281958,-8.454708125999957,0 115.184276511,-8.454714176999971,0 115.184272241,-8.454718920999937,0 115.184263813,-8.454728283999941,0 115.1842576510001,-8.45473512999996,0 115.184246958,-8.454747013999963,0 115.1842118960001,-8.454779308999946,0 115.184049412,-8.454928975999962,0 115.1840225450001,-8.454953723999949,0 115.1840159410001,-8.454959806999966,0 115.183997018,-8.454977205999967,0 115.1839879700001,-8.454985525999973,0 115.1838790300001,-8.455096023999943,0 115.183876906,-8.455098178999947,0 115.183876628,-8.455098460999977,0 115.183842292,-8.455133299999943,0 115.183820994,-8.45515353299993,0 115.183707354,-8.455261474999929,0 115.183600908,-8.455362580999974,0 115.183571947,-8.455390088999934,0 115.1835454290001,-8.455413389999933,0 115.18349878,-8.455454376999967,0 115.1833960020001,-8.45555711999998,0 115.1833730650001,-8.45558004999998,0 115.183340648,-8.455612459999941,0 115.1829394250001,-8.456067969999935,0 115.1829343200001,-8.456075572999964,0 115.182932348,-8.45607851099993,0 115.182931734,-8.456079422999949,0 115.1826873540001,-8.456443190999948,0 115.182625741,-8.456557825999937,0 115.1825324560001,-8.456731373999958,0 115.182371167,-8.457031437999945,0 115.1822528240001,-8.457265382999935,0 115.1822345160001,-8.457301575999963,0 115.1821476880001,-8.457473222999965,0 115.1820919910001,-8.457583334999981,0 115.1819920250001,-8.457788145999928,0 115.181884757,-8.458007927999972,0 115.1818529340001,-8.458073137999975,0 115.181852292,-8.458082265999963,0 115.1818534030001,-8.458084646999964,0 115.1818561430001,-8.458090510999966,0 115.1818635320001,-8.458095784999955,0 115.1818679500001,-8.458096767999962,0 115.181938668,-8.458112514999925,0 115.1822088760001,-8.458172685999955,0 115.1823352700001,-8.458220963999963,0 115.182419202,-8.458253026999955,0 115.1824751390001,-8.458272289999968,0 115.1826523230001,-8.458333301999971,0 115.182801582,-8.458384695999939,0 115.1832114690001,-8.458524808999925,0 115.183242239,-8.458541674999935,0 115.183375488,-8.458573489999935,0 115.183414039,-8.458582693999972,0 115.18344405,-8.458581543999969,0 115.183481289,-8.458580117999929,0 115.1835075920001,-8.458575991999965,0 115.1835369250001,-8.458564466999974,0 115.1835488580001,-8.458556998999939,0 115.1835506810001,-8.458555856999965,0 115.183552692,-8.458554597999978,0 115.1835599360001,-8.458542697999974,0 115.183559959,-8.458537753999963,0 115.1835600310001,-8.458522358999971,0 115.1835596860001,-8.45843612699997,0 115.1835562430001,-8.458419751999941,0 115.1835467090001,-8.45840921599995,0 115.1835281880001,-8.458398737999971,0 115.1834981390001,-8.458387932999926,0 115.1834925090001,-8.458374704999926,0 115.1834926,-8.458356178999964,0 115.1834979560001,-8.458331437999959,0 115.18358274,-8.458086418999926,0 115.1835863440001,-8.458068167999954,0 115.1835865740001,-8.458067000999961,0 115.1835861730001,-8.458057326999949,0 115.1835797260001,-8.458041837999929,0 115.18356714,-8.458028224999964,0 115.183466788,-8.457983462999948,0 115.183081559,-8.457854316999942,0 115.1827961660001,-8.457734935999952,0 115.182801463,-8.457722484999977,0 115.182806686,-8.457709947999945,0 115.182842151,-8.457724772999939,0 115.1830911850001,-8.457828871999936,0 115.1832518970001,-8.457882746999928,0 115.18347672,-8.457958111999972,0 115.183583267,-8.458005696999976,0 115.1836022640001,-8.458026214999961,0 115.183609538,-8.458040077999954,0 115.1836132960001,-8.45805293799998,0 115.183613421,-8.458055929999944,0 115.183613969,-8.458069117999969,0 115.1836091390001,-8.45809350299993,0 115.1835242010001,-8.458338792999939,0 115.183519762,-8.458359107999968,0 115.1835197160001,-8.458369232999928,0 115.18352098,-8.458372124999926,0 115.183525301,-8.45837576699995,0 115.1835607370001,-8.458388225999954,0 115.183572065,-8.458399844999974,0 115.1835756180001,-8.45840772899993,0 115.1835786370001,-8.45841840199995,0 115.183579236,-8.45851494599998,0 115.183579838,-8.458522733999928,0 115.1835801520001,-8.458526792999976,0 115.1835811200001,-8.458528696999963,0 115.1835820130001,-8.458529151999926,0 115.183584934,-8.458528987999955,0 115.18358791,-8.458527563999951,0 115.183589436,-8.458526832999951,0 115.183590018,-8.45852610999998,0 115.1835922690001,-8.458523308999929,0 115.1835949350001,-8.458519991999935,0 115.183617485,-8.458501564999949,0 115.183632479,-8.458497389999934,0 115.183787852,-8.45849657499997,0 115.183836926,-8.458479686999965,0 115.1838879000001,-8.458462146999977,0 115.184038739,-8.45841500399996,0 115.18406315,-8.458407374999979,0 115.184075138,-8.458403628999974,0 115.18410223,-8.458390736999945,0 115.184118954,-8.458385015999966,0 115.184124128,-8.458383245999926,0 115.1841332590001,-8.458377863999942,0 115.1841387540001,-8.45837462399993,0 115.1841608410001,-8.458361600999979,0 115.1841715850001,-8.458355266999945,0 115.184224393,-8.458318088999931,0 115.1842373820001,-8.458300503999965,0 115.184255139,-8.458276463999937,0 115.1842977750001,-8.458231464999926,0 115.184311501,-8.458216978999928,0 115.1843871840001,-8.458156231999965,0 115.1844474500001,-8.458110683999962,0 115.1845035040001,-8.458084182999926,0 115.1845619640001,-8.458075062999967,0 115.184639582,-8.458062945999927,0 115.1847226630001,-8.458058371999925,0 115.1849031400001,-8.458048438999981,0 115.1849102140001,-8.45804824399994,0 115.1849271000001,-8.458047775999944,0 115.185229992,-8.458039374999942,0 115.1852773490001,-8.458038060999968,0 115.1853107270001,-8.45804032999996,0 115.1856485440001,-8.45806328599997,0 115.1856521240001,-8.458063619999962,0 115.185674959,-8.458065751999925,0 115.185757855,-8.458073486999979,0 115.185778796,-8.458075441999938,0 115.185830726,-8.458080289999941,0 115.185880858,-8.458084974999963,0 115.185897425,-8.458086519999938,0 115.186068265,-8.45810247299994,0 115.1864764940001,-8.458117829999935,0 115.186480112,-8.458115747999955,0 115.1864828770001,-8.458114156999955,0 115.1864849000001,-8.458111452999958,0 115.1864873230001,-8.458108209999978,0 115.1864887830001,-8.458097319999979,0 115.1865273560001,-8.457809560999976,0 115.186556447,-8.457704841999941,0 115.186660027,-8.457331468999939,0 115.1867281870001,-8.457118185999946,0 115.1867758070001,-8.456958867999958,0 115.1868393980001,-8.456745833999946,0 115.186846938,-8.456720624999946,0 115.1868577250001,-8.456684546999952,0 115.1868750780001,-8.456626508999932,0 115.186908806,-8.456529926999963,0 115.1869766760001,-8.45633558399993,0 115.186983495,-8.456316056999981,0 115.1869859520001,-8.456309019999935,0 115.187002663,-8.456275102999939,0 115.1870279860001,-8.456223706999936,0 115.187060736,-8.456157158999929,0 115.1870701710001,-8.456137989999945,0 115.1871229290001,-8.45603080199993,0 115.187142674,-8.455986694999979,0 115.1872132230001,-8.455829111999947,0 115.187248176,-8.45575103699997,0 115.1872613200001,-8.455721675999939,0 115.1872995960001,-8.455636183999957,0 115.18731459,-8.455602692999946,0 115.187325944,-8.455574081999941,0 115.187333082,-8.455556091999938,0 115.1873334060001,-8.455555275999927,0 115.187334747,-8.455551895999974,0 115.1873334320001,-8.455544475999943,0 115.1873301970001,-8.455539768999927,0 115.1873294630001,-8.455538701999956,0 115.1873291930001,-8.455538309999952,0 115.1871262970001,-8.455438028999936,0 115.1869590900001,-8.455359877999967,0 115.1868863400001,-8.45533258699993,0 115.1867582010001,-8.455284523999978,0 115.1867089950001,-8.455266065999979,0 115.1866738230001,-8.455254382999954,0 115.1866736710001,-8.455254329999946,0 115.186659877,-8.455249752999975,0 115.186645859,-8.455248175999941,0 115.186627173,-8.455246071999966,0 115.1866151110001,-8.455246015999933,0 115.1865755110001,-8.455245831999946,0 115.186541786,-8.455252368999936,0 115.186528456,-8.455253207999931,0 115.1865135910001,-8.455254142999934,0 115.1865119810001,-8.455254244999935,0 115.186505684,-8.455254642999932,0 115.1865011630001,-8.455254217999936,0 115.1863970710001,-8.455244532999927,0 115.1863922220001,-8.455244077999964,0 115.186304067,-8.455220189999977,0 115.1861998110001,-8.455191932999981,0 115.1857523790001,-8.455074163999939,0 115.1857446610001,-8.455075120999936,0 115.1857416400001,-8.455076966999968,0 115.185738052,-8.455079157999933,0 115.1857344270001,-8.45508455199996,0 115.185733754,-8.455085552999947,0 115.185683777,-8.455269176999934,0 115.1855891350001,-8.455557541999951,0 115.185566837,-8.455649816999937,0 115.1855590450001,-8.455669219999947,0 115.18552979,-8.455742022999971,0 115.185529534,-8.455742416999954,0 115.1855280440001,-8.455744716999959,0 115.1854787350001,-8.455820611999968,0 115.185397544,-8.455937377999931,0 115.185392736,-8.455934058999958,0 115.1853863480001,-8.45592964399998,0 115.18537544,-8.455922104999956,0 115.1853751540001,-8.455921907999937,0 115.1854010100001,-8.455884732999948,0 115.1854561140001,-8.455805502999965,0 115.1854845840001,-8.455761716999973,0 115.1854998650001,-8.45573821399995,0 115.185505515,-8.45572952699996,0 115.185506626,-8.455726760999937,0 115.1855173260001,-8.455700099999945,0 115.18553039,-8.455667547999951,0 115.185533541,-8.455659697999977,0 115.1855340950001,-8.455658317999962,0 115.185540821,-8.455641562999972,0 115.1855615540001,-8.455555912999955,0 115.1855629610001,-8.455550099999925,0 115.1855653340001,-8.455542867999952,0 115.185581627,-8.45549320799995,0 115.185657686,-8.455261375999953,0 115.185707134,-8.45507874499998,0 115.1857066460001,-8.455070963999958,0 115.185702931,-8.455064081999978,0 115.185698192,-8.455060572999969,0 115.185696664,-8.455059440999946,0 115.1856638300001,-8.455050661999962,0 115.1856199380001,-8.455038925999929,0 115.185403272,-8.454987781999932,0 115.1850914460001,-8.454914174999942,0 115.185068116,-8.454906667999978,0 115.1849369890001,-8.454864470999951,0 115.184720673,-8.45477426399998,0 115.1847206420001,-8.454774250999947,0 115.1847092360001,-8.454767266999966,0 115.1846719670001,-8.454744459999972,0 115.1846614000001,-8.454737995999949,0 115.1845691530001,-8.454681529999959,0 115.1844412490001,-8.454593551999949,0 115.1844182530001,-8.45457773399994,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
<innerBoundaryIs>
<LinearRing>
<coordinates>
115.182256874,-8.457267426999977,0 115.1821517430001,-8.457475256999942,0 115.1820960650001,-8.457585329999972,0 115.1819961100001,-8.457790121999949,0 115.1818888400001,-8.458009904999926,0 115.1818574030001,-8.458074324999927,0 115.181856904,-8.458081418999939,0 115.1818589010001,-8.458085695999955,0 115.1818652410001,-8.458086904999959,0 115.181865515,-8.458086959999946,0 115.1819406500001,-8.458103691999952,0 115.1822108590001,-8.458163860999946,0 115.182212057,-8.458164215999943,0 115.1823385230001,-8.458212522999929,0 115.182422307,-8.458244526999977,0 115.1824781080001,-8.458263744999954,0 115.1826552910001,-8.458324755999968,0 115.18280454,-8.458376146999967,0 115.1832144970001,-8.458516283999927,0 115.183215848,-8.458516887999963,0 115.1832455450001,-8.458533164999949,0 115.18341494,-8.458573610999963,0 115.183480411,-8.45857110299994,0 115.183505189,-8.458567215999949,0 115.183532806,-8.458556364999936,0 115.1835475170001,-8.458547156999941,0 115.183555403,-8.458541197999978,0 115.1835554910001,-8.458522355999946,0 115.1835551470001,-8.458436603999928,0 115.1835520500001,-8.458421871999974,0 115.1835438270001,-8.45841278499995,0 115.18352628,-8.458402858999932,0 115.1834965920001,-8.458392182999944,0 115.1834958700001,-8.458391847999962,0 115.183495221,-8.458391395999968,0 115.1834946600001,-8.458390838999946,0 115.1834942070001,-8.458390192999957,0 115.1834939580001,-8.458389695999927,0 115.1834882860001,-8.458376359999932,0 115.1834880380001,-8.45837549099997,0 115.1834879690001,-8.458374694999975,0 115.1834880590001,-8.458356156999969,0 115.1834881440001,-8.458355309999945,0 115.1834935170001,-8.458330484999976,0 115.183493662,-8.458329964999962,0 115.1835783460001,-8.458085237999967,0 115.1835820150001,-8.458066654999925,0 115.1835816700001,-8.45805831499996,0 115.1835758420001,-8.458044312999959,0 115.183564431,-8.458031969999979,0 115.1834651280001,-8.457987676999949,0 115.1830800570001,-8.45785858399995,0 115.1830797990001,-8.457858484999974,0 115.182795355,-8.457739439999955,0 115.1827945040001,-8.457739139999944,0 115.182793895,-8.457738850999931,0 115.1827932470001,-8.457738399999926,0 115.1827926870001,-8.457737841999972,0 115.1827922320001,-8.457737195999925,0 115.1827918990001,-8.457736481999973,0 115.1827916940001,-8.457735721999939,0 115.182791625,-8.457734936999941,0 115.1827916940001,-8.457734151999944,0 115.1827918990001,-8.45773338999993,0 115.182791992,-8.457733176999966,0 115.182792217,-8.457732669999928,0 115.1827972750001,-8.457720736999931,0 115.1828024920001,-8.457708215999958,0 115.182802754,-8.45770768899996,0 115.1828032080001,-8.457707041999981,0 115.1828037680001,-8.45770648499996,0 115.1828044160001,-8.457706033999955,0 115.1828051340001,-8.457705699999963,0 115.1828058980001,-8.457705494999971,0 115.182806687,-8.45770542799994,0 115.1828074750001,-8.45770549599996,0 115.182808342,-8.457705738999948,0 115.1830927900001,-8.457824638999966,0 115.183253346,-8.45787846199994,0 115.1834782200001,-8.457953845999953,0 115.1834785770001,-8.457953987999929,0 115.183585125,-8.458001571999944,0 115.1835855370001,-8.458001782999929,0 115.1835861860001,-8.458002234999981,0 115.1835866060001,-8.458002632999978,0 115.1836056720001,-8.458023229999981,0 115.1836062420001,-8.458024038999952,0 115.183613562,-8.458037984999976,0 115.1836138040001,-8.458038532999979,0 115.1836138980001,-8.458038814999952,0 115.183617656,-8.458051674999979,0 115.1836177670001,-8.458052152999926,0 115.1836178320001,-8.458052750999968,0 115.1836185080001,-8.45806902399994,0 115.1836184330001,-8.458069946999956,0 115.1836135950001,-8.458094377999942,0 115.183613431,-8.458094975999927,0 115.1835285830001,-8.458340009999972,0 115.183524301,-8.458359604999941,0 115.1835242610001,-8.45836830199994,0 115.183524721,-8.458369355999935,0 115.1835275970001,-8.458371779999936,0 115.183562269,-8.458383970999932,0 115.1835630060001,-8.458384310999975,0 115.1835636550001,-8.45838476299997,0 115.1835639950001,-8.458385076999946,0 115.183575322,-8.458396696999955,0 115.1835755430001,-8.458396938999954,0 115.183575997,-8.458397584999943,0 115.1835762070001,-8.458397993999938,0 115.183579761,-8.458405876999961,0 115.1835798850001,-8.458406182999965,0 115.183579989,-8.458406502999935,0 115.1835830070001,-8.458417177999934,0 115.1835831080001,-8.458417617999942,0 115.1835831770001,-8.458418374999951,0 115.1835837750001,-8.458514759999957,0 115.183584103,-8.458518997999931,0 115.183587912,-8.458514260999948,0 115.183589136,-8.458513033999964,0 115.1836117240001,-8.458494574999975,0 115.183612945,-8.458493734999934,0 115.183614379,-8.458493067999939,0 115.1836150390001,-8.458492856999953,0 115.1836300330001,-8.458488682999928,0 115.1836309030001,-8.458488485999965,0 115.1836324320001,-8.458488347999946,0 115.183786305,-8.458487540999954,0 115.183884933,-8.458453600999974,0 115.1838851800001,-8.458453520999967,0 115.18403602,-8.45840637799995,0 115.1840718020001,-8.45839519499998,0 115.184098315,-8.458382579999977,0 115.1840992020001,-8.458382212999936,0 115.184120299,-8.458374995999975,0 115.1841341270001,-8.458366843999954,0 115.1841666410001,-8.458347672999935,0 115.1842179480001,-8.458311551999941,0 115.1842478240001,-8.458271106999973,0 115.184248183,-8.458270651999953,0 115.1842485340001,-8.458270259999949,0 115.1843048950001,-8.45821077599993,0 115.1843057320001,-8.458209996999926,0 115.184381485,-8.458149191999951,0 115.1843816940001,-8.458149029999959,0 115.1844419600001,-8.458103481999956,0 115.184442909,-8.458102852999957,0 115.184443555,-8.45810251599994,0 115.1844996100001,-8.458076014999961,0 115.1845003990001,-8.458075685999972,0 115.184502013,-8.458075263999945,0 115.184560558,-8.458066130999953,0 115.184638175,-8.458054011999934,0 115.18463908,-8.458053916999972,0 115.1847140000001,-8.45804979299993,0 115.1847221620001,-8.458049342999971,0 115.184902765,-8.458039404999965,0 115.184909962,-8.458039204999977,0 115.184926848,-8.458038737999971,0 115.1849271160001,-8.458038729999942,0 115.1852772230001,-8.458029021999948,0 115.185277967,-8.458029039999929,0 115.1856492770001,-8.458054273999949,0 115.185675808,-8.458056750999958,0 115.1856767810001,-8.458056840999973,0 115.185758702,-8.458064484999966,0 115.185779644,-8.458066440999971,0 115.18578061,-8.458066530999929,0 115.1858315730001,-8.458071288999975,0 115.185881706,-8.458075971999961,0 115.185898272,-8.458077516999936,0 115.1860688580001,-8.458093444999975,0 115.18647422,-8.458108696999943,0 115.1864767110001,-8.458107262999931,0 115.1864786330001,-8.458104692999939,0 115.1865183540001,-8.457808365999938,0 115.1865184120001,-8.457807991999971,0 115.1865186030001,-8.457807149999951,0 115.186547696,-8.457702432999952,0 115.186651274,-8.457329060999939,0 115.186651373,-8.457328726999947,0 115.186719516,-8.457115496999961,0 115.1867671030001,-8.456956290999926,0 115.186830695,-8.456743255999982,0 115.1868382340001,-8.456718044999946,0 115.1868490220001,-8.456681965999962,0 115.186866374,-8.456623927999942,0 115.1868665000001,-8.456623538999963,0 115.186900228,-8.456526956999937,0 115.1869680980001,-8.456332613999962,0 115.1869773970001,-8.456305988999929,0 115.186977799,-8.456305038999972,0 115.187019831,-8.456219725999972,0 115.1870525810001,-8.456153179999944,0 115.1871147060001,-8.456026959999974,0 115.187204928,-8.455825430999937,0 115.187253026,-8.455717995999976,0 115.1873062200001,-8.455599182999947,0 115.1873263030001,-8.45554857299993,0 115.1873264400001,-8.455548244999932,0 115.18732804,-8.455544635999956,0 115.187326114,-8.455541836999942,0 115.1871243210001,-8.455442098999981,0 115.1869573180001,-8.455364043999964,0 115.1868847390001,-8.455336817999978,0 115.1867566000001,-8.45528875399998,0 115.1867558360001,-8.455288466999946,0 115.186707489,-8.45527033299993,0 115.186672303,-8.455258642999979,0 115.186658894,-8.455254191999927,0 115.1866269080001,-8.45525059199997,0 115.1865759360001,-8.455250355999965,0 115.186542614,-8.455256813999938,0 115.1865420720001,-8.455256880999968,0 115.186513878,-8.455258654999966,0 115.1865059710001,-8.455259154999965,0 115.186505685,-8.455259162999937,0 115.186505258,-8.455259142999978,0 115.1865007390001,-8.455258718999971,0 115.186396647,-8.455249034999952,0 115.1863917960001,-8.455248578999942,0 115.186391433,-8.455248529999949,0 115.1863910290001,-8.455248440999981,0 115.186302874,-8.455224550999958,0 115.1861986340001,-8.455196299999955,0 115.1857520670001,-8.455078756999967,0 115.1857461990001,-8.455079484999942,0 115.1857412740001,-8.455082494999942,0 115.1857379410001,-8.45508745199993,0 115.1856881260001,-8.455270469999959,0 115.185593508,-8.455558768999936,0 115.185571252,-8.455650874999947,0 115.1855710780001,-8.455651428999943,0 115.1855632600001,-8.455670898999927,0 115.1855340070001,-8.455743702999939,0 115.1855336640001,-8.455744379999942,0 115.1855318580001,-8.455747169999938,0 115.1854825070001,-8.455823125999927,0 115.1854012770001,-8.455939950999948,0 115.1854010230001,-8.455940283999951,0 115.1854004620001,-8.455940840999972,0 115.1853998150001,-8.455941292999967,0 115.1853990970001,-8.455941626999959,0 115.1853983330001,-8.455941830999961,0 115.185397544,-8.455941898999981,0 115.185396756,-8.455941829999972,0 115.185395991,-8.455941625999969,0 115.185395274,-8.455941292999967,0 115.1853949570001,-8.455941092999979,0 115.185391532,-8.455938729999957,0 115.185390148,-8.45593777299996,0 115.185383759,-8.455933357999982,0 115.1853725650001,-8.455925622999928,0 115.185372235,-8.455925371999967,0 115.1853716750001,-8.455924813999957,0 115.1853712220001,-8.455924167999967,0 115.1853708880001,-8.455923453999958,0 115.1853706820001,-8.45592269399998,0 115.185370614,-8.455921907999937,0 115.1853706830001,-8.455921122999939,0 115.1853708880001,-8.455920361999972,0 115.1853712220001,-8.455919647999963,0 115.185371421,-8.45591933399993,0 115.1853965370001,-8.455883222999944,0 115.1853972770001,-8.455882158999941,0 115.185452348,-8.455802977999952,0 115.1854960540001,-8.455735756999957,0 115.185501465,-8.455727438999929,0 115.1855131100001,-8.455698422999944,0 115.1855293240001,-8.45565801999993,0 115.1855364830001,-8.455640185999926,0 115.185558548,-8.455549040999927,0 115.185558645,-8.455548695999937,0 115.1855773100001,-8.455491804999951,0 115.185653332,-8.455260089999967,0 115.185702555,-8.455078283999967,0 115.1857021760001,-8.455072232999953,0 115.1856994100001,-8.45506710899997,0 115.1856946490001,-8.455063582999969,0 115.1856188180001,-8.455043306999926,0 115.1850903980001,-8.454918573999976,0 115.1850900490001,-8.454918476999978,0 115.184935514,-8.454868744999942,0 115.184935235,-8.454868640999962,0 115.184718889,-8.454778420999958,0 115.184718319,-8.454778132999934,0 115.184706857,-8.45477111799994,0 115.1846695900001,-8.454748312999925,0 115.1846590230001,-8.454741845999934,0 115.1845666740001,-8.454685314999949,0 115.1844386680001,-8.454597270999955,0 115.1844156720001,-8.454581452999946,0 115.1844131790001,-8.454579738999939,0 115.1844065690001,-8.454578783999978,0 115.1844027660001,-8.454580642999929,0 115.1843952520001,-8.454588993999948,0 115.1843443830001,-8.454645527999958,0 115.1842853400001,-8.454711140999962,0 115.1842756220001,-8.454721937999977,0 115.1842610340001,-8.454738145999954,0 115.1842503400001,-8.454750030999946,0 115.184250042,-8.454750331999946,0 115.1842149800001,-8.454782627999975,0 115.184052496,-8.454932294999935,0 115.1840256280001,-8.454957041999933,0 115.184019023,-8.454963126999928,0 115.1839911320001,-8.454988771999979,0 115.183882272,-8.455099190999931,0 115.1838798690001,-8.455101627999966,0 115.183845481,-8.45513651999994,0 115.1837104880001,-8.455264744999965,0 115.1835750170001,-8.455393418999961,0 115.183501888,-8.455457674999934,0 115.1833762820001,-8.455583239999953,0 115.183343968,-8.455615546999979,0 115.182943033,-8.456070732999933,0 115.1829361220001,-8.456081023999957,0 115.182935508,-8.456081936999965,0 115.182691253,-8.456445518999942,0 115.1826297450001,-8.456559957999957,0 115.1823751830001,-8.45703354699998,0 115.182256874,-8.457267426999977,0
</coordinates>
</LinearRing>
</innerBoundaryIs>
</Polygon>
<description>{&quot;OBJECTID&quot;:&quot;1404&quot;,&quot;NAMOBJ&quot;:&quot;Jalur Hijau&quot;,&quot;NAMZON&quot;:&quot;Zona Ruang Terbuka Hijau&quot;,&quot;KODZON&quot;:&quot;RTH&quot;,&quot;NAMSZN&quot;:&quot;Jalur Hijau&quot;,&quot;KODSZN&quot;:&quot;RTH-8&quot;,&quot;JNSRPR&quot;:&quot;Zona Lindung&quot;,&quot;KODEWP&quot;:&quot;I&quot;,&quot;KODSWP&quot;:&quot;A&quot;,&quot;KODBLK&quot;:&quot;1&quot;,&quot;KODSBL&quot;:&quot;Tidak Ada&quot;,&quot;WADMPR&quot;:&quot;Provinsi Bali&quot;,&quot;WADMKK&quot;:&quot;Kabupaten Badung&quot;,&quot;WADMKC&quot;:&quot;Kecamatan Mengwi&quot;,&quot;WADMKD&quot;:&quot;Desa Kuwum&quot;,&quot;KKOP_1&quot;:&quot;Tidak Ada&quot;,&quot;LP2B_2&quot;:&quot;Tidak Ada&quot;,&quot;KRB_03&quot;:&quot;Tidak Ada&quot;,&quot;TOD_04&quot;:&quot;Tidak Ada&quot;,&quot;TEB_05&quot;:&quot;Tidak Ada&quot;,&quot;PUSLIT&quot;:&quot;Tidak Ada&quot;,&quot;CAGBUD&quot;:&quot;Tidak Ada&quot;,&quot;RESAIR&quot;:&quot;Tidak Ada&quot;,&quot;KSMPDN&quot;:&quot;Tidak Ada&quot;,&quot;HANKAM&quot;:&quot;Tidak Ada&quot;,&quot;KKARST&quot;:&quot;Tidak Ada&quot;,&quot;PTBGMB&quot;:&quot;Tidak Ada&quot;,&quot;MGRSAT&quot;:&quot;Tidak Ada&quot;,&quot;RDBUMI&quot;:&quot;Tidak Ada&quot;,&quot;TPZ_00&quot;:&quot;Tidak Ada&quot;,&quot;REMARK&quot;:&quot;Tidak Ada&quot;,&quot;NOTHPR&quot;:&quot;Peraturan Bupati Badung Nomor 34 Tahun 2022 tentang Rencana Detail Tata Ruang Wilayah Perencanaan Mengwi Tahun 2022-2042&quot;}</description>
</Placemark>
<Placemark>
<visibility>0</visibility>
<styleUrl>#m_ylw-pushpin71</styleUrl>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
115.1821560610001,-8.454472905999978,0 115.1821403370001,-8.454472832999954,0 115.1821295440001,-8.454474954999966,0 115.1821250380001,-8.454477552999947,0 115.18207194,-8.454544646999977,0 115.181881853,-8.454875321999964,0 115.181819965,-8.454989980999926,0 115.1816756490001,-8.455257347999975,0 115.181443185,-8.45563509599998,0 115.181372674,-8.455747117999977,0 115.181304078,-8.455856093999955,0 115.181171853,-8.456083813999953,0 115.181141708,-8.456135730999961,0 115.1811047550001,-8.456195071999957,0 115.180929332,-8.456476785999939,0 115.1804328760001,-8.457296584999938,0 115.1803628710001,-8.457438348999972,0 115.180350176,-8.457464053999956,0 115.1803497230001,-8.457471651999981,0 115.1803496910001,-8.45747218899993,0 115.180352873,-8.457479795999973,0 115.180357597,-8.457483933999981,0 115.1803589860001,-8.457485155999962,0 115.1803631910001,-8.457486832999962,0 115.18040336,-8.457502863999935,0 115.180430784,-8.457513807999931,0 115.1805471680001,-8.45756025299994,0 115.1806177240001,-8.457588406999946,0 115.180634089,-8.457598551999979,0 115.180742193,-8.457665531999965,0 115.1807926020001,-8.457696763999934,0 115.1808700240001,-8.457744735999938,0 115.1809237560001,-8.457778031999965,0 115.1809861730001,-8.45780763099998,0 115.1810465760001,-8.457836271999952,0 115.181074296,-8.457849413999952,0 115.181120144,-8.457871136999927,0 115.181133595,-8.457877508999957,0 115.181159846,-8.457889946999956,0 115.18137276,-8.457990821999942,0 115.1815084240001,-8.458026896999968,0 115.1815644300001,-8.458041789999982,0 115.1815897680001,-8.458046304999925,0 115.1818031810001,-8.458084331999942,0 115.1818069310001,-8.458084999999926,0 115.1818076520001,-8.458085126999947,0 115.1818136930001,-8.458083114999965,0 115.1818137990001,-8.458083079999938,0 115.181814546,-8.458082492999949,0 115.1818188350001,-8.458079122999948,0 115.1818193150001,-8.458078145999934,0 115.1818694520001,-8.457975761999933,0 115.1819382120001,-8.457835345999968,0 115.1819526490001,-8.457805863999965,0 115.1819750310001,-8.457760177999944,0 115.1819863210001,-8.457737126999973,0 115.1819875910001,-8.45773453399994,0 115.181990906,-8.457727769999963,0 115.182002934,-8.457703211999956,0 115.1820675570001,-8.457571286999951,0 115.1820874320001,-8.457531998999968,0 115.1821108380001,-8.457485730999963,0 115.182129829,-8.457448191999958,0 115.1821496920001,-8.457408925999971,0 115.1821632770001,-8.457382070999927,0 115.1822729260001,-8.457165308999947,0 115.182280041,-8.457151243999931,0 115.1823469660001,-8.45701894299998,0 115.1823594650001,-8.456995707999965,0 115.182399012,-8.456922191999979,0 115.1826639850001,-8.456429252999953,0 115.1827704760001,-8.456270727999936,0 115.18277847,-8.456258826999942,0 115.1828505630001,-8.456151502999944,0 115.182917789,-8.456051425999931,0 115.183234101,-8.455692297999974,0 115.1832386420001,-8.455687142999977,0 115.183251346,-8.45567271799996,0 115.1832812230001,-8.455638797999939,0 115.1833086480001,-8.455607661999977,0 115.1833207430001,-8.455593929999964,0 115.1833942230001,-8.455520486999944,0 115.183418797,-8.455495927999948,0 115.183480453,-8.455434314999934,0 115.1834912260001,-8.455424799999946,0 115.1835108890001,-8.455407434999927,0 115.1835641130001,-8.455360433999942,0 115.1835677360001,-8.455357234999951,0 115.1836051880001,-8.455324162999943,0 115.1836088220001,-8.455315682999981,0 115.183607743,-8.455306639999947,0 115.1836023090001,-8.455299198999967,0 115.1834149220001,-8.455182266999941,0 115.1831713290001,-8.455042388999971,0 115.182970088,-8.45494111499994,0 115.1827397830001,-8.454778791999956,0 115.1827007530001,-8.454734410999947,0 115.182692393,-8.454729033999968,0 115.182687384,-8.454728293999949,0 115.182679225,-8.454729374999943,0 115.1826755430001,-8.454729861999965,0 115.182658873,-8.454728548999981,0 115.182631685,-8.454726406999953,0 115.1825953440001,-8.454715568999973,0 115.1825531080001,-8.454700639999942,0 115.182509502,-8.454675128999952,0 115.182173257,-8.454478232999975,0 115.1821560610001,-8.454472905999978,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
<innerBoundaryIs>
<LinearRing>
<coordinates>
115.180989887,-8.457799376999958,0 115.180990079,-8.457799467999962,0 115.1810504810001,-8.457828108999934,0 115.181078199,-8.457841249999944,0 115.181137497,-8.45786934399996,0 115.181375909,-8.457982300999959,0 115.1815107680001,-8.458018161999973,0 115.1815663990001,-8.458032954999965,0 115.1818093060001,-8.458076236999943,0 115.181814032,-8.458077137999965,0 115.1818152090001,-8.45807621299997,0 115.181934131,-8.457833363999953,0 115.1819485680001,-8.457803880999961,0 115.1819709490001,-8.457758195999929,0 115.18198351,-8.457732551999925,0 115.1819988540001,-8.45770123099993,0 115.18206349,-8.457569278999927,0 115.1821067830001,-8.457483697999976,0 115.1821456370001,-8.457406891999938,0 115.182159217,-8.457380044999979,0 115.182275986,-8.457149209999955,0 115.1822760360001,-8.457149110999978,0 115.1823429360001,-8.457016857999974,0 115.1823950080001,-8.45692005799998,0 115.1826600170001,-8.456427055999939,0 115.1826602100001,-8.456426739999927,0 115.1827667020001,-8.456268214999966,0 115.182774696,-8.456256312999926,0 115.1829140140001,-8.456048911999972,0 115.1829143430001,-8.456048481999972,0 115.1832306870001,-8.455689316999951,0 115.1832471880001,-8.455670582999971,0 115.1832479330001,-8.455669736999937,0 115.1832778090001,-8.455635816999973,0 115.18331733,-8.455590948999941,0 115.1833175270001,-8.455590738999945,0 115.1833910060001,-8.455517296999972,0 115.183477236,-8.455431123999972,0 115.18347744,-8.455430931999956,0 115.183507876,-8.455404053999928,0 115.183564724,-8.455353852999963,0 115.183601412,-8.455321454999932,0 115.1836041690001,-8.455315018999954,0 115.1836033730001,-8.455308343999945,0 115.183599154,-8.455302565999943,0 115.183412577,-8.455186140999956,0 115.1831691640001,-8.45504636499993,0 115.18296793,-8.454945088999978,0 115.182967466,-8.454944804999968,0 115.1827371600001,-8.454782481999928,0 115.182736865,-8.454782253999952,0 115.1827363660001,-8.454781769999954,0 115.1826977540001,-8.454737863999981,0 115.1826907530001,-8.454733361999956,0 115.182687349,-8.454732858999932,0 115.1826761420001,-8.454734343999974,0 115.1826755430001,-8.454734382999959,0 115.1826751850001,-8.454734368999937,0 115.1826313270001,-8.454730912999935,0 115.1826308960001,-8.454730859999927,0 115.1826303820001,-8.454730737999967,0 115.182593933,-8.454719863999969,0 115.1825515710001,-8.454704893999974,0 115.1825508220001,-8.454704545999959,0 115.1825072,-8.454679025999951,0 115.1821714070001,-8.454482393999967,0 115.1821553620001,-8.454477423999947,0 115.182140771,-8.454477355999927,0 115.1821311640001,-8.45447924399997,0 115.182128067,-8.454481029999954,0 115.182075714,-8.454547183999978,0 115.181885821,-8.454877520999958,0 115.1816796480001,-8.455259488999957,0 115.1816795510001,-8.455259658999978,0 115.181447045,-8.455637475999936,0 115.1813079670001,-8.455858428999932,0 115.1811456030001,-8.456138052999961,0 115.180933221,-8.456479120999973,0 115.1804368640001,-8.457298754999954,0 115.1803669460001,-8.457440342999973,0 115.1803546560001,-8.457465231999947,0 115.180354285,-8.457471414999929,0 115.1803553330001,-8.457473920999973,0 115.1803623840001,-8.457476770999961,0 115.1804067390001,-8.457494470999961,0 115.1804341630001,-8.457505414999957,0 115.1805505460001,-8.457551859999967,0 115.180621103,-8.457580014999962,0 115.180622265,-8.457580576999931,0 115.1806225240001,-8.45758073199994,0 115.1806388880001,-8.457590874999937,0 115.1807469910001,-8.457657854999979,0 115.1807973990001,-8.457689087999938,0 115.1808748220001,-8.457737059999943,0 115.1809281230001,-8.457770087999961,0 115.180989887,-8.457799376999958,0
</coordinates>
</LinearRing>
</innerBoundaryIs>
</Polygon>
<description>{&quot;OBJECTID&quot;:&quot;1405&quot;,&quot;NAMOBJ&quot;:&quot;Jalur Hijau&quot;,&quot;NAMZON&quot;:&quot;Zona Ruang Terbuka Hijau&quot;,&quot;KODZON&quot;:&quot;RTH&quot;,&quot;NAMSZN&quot;:&quot;Jalur Hijau&quot;,&quot;KODSZN&quot;:&quot;RTH-8&quot;,&quot;JNSRPR&quot;:&quot;Zona Lindung&quot;,&quot;KODEWP&quot;:&quot;I&quot;,&quot;KODSWP&quot;:&quot;A&quot;,&quot;KODBLK&quot;:&quot;1&quot;,&quot;KODSBL&quot;:&quot;Tidak Ada&quot;,&quot;WADMPR&quot;:&quot;Provinsi Bali&quot;,&quot;WADMKK&quot;:&quot;Kabupaten Badung&quot;,&quot;WADMKC&quot;:&quot;Kecamatan Mengwi&quot;,&quot;WADMKD&quot;:&quot;Desa Kuwum&quot;,&quot;KKOP_1&quot;:&quot;Tidak Ada&quot;,&quot;LP2B_2&quot;:&quot;Tidak Ada&quot;,&quot;KRB_03&quot;:&quot;Tidak Ada&quot;,&quot;TOD_04&quot;:&quot;Tidak Ada&quot;,&quot;TEB_05&quot;:&quot;Tidak Ada&quot;,&quot;PUSLIT&quot;:&quot;Tidak Ada&quot;,&quot;CAGBUD&quot;:&quot;Tidak Ada&quot;,&quot;RESAIR&quot;:&quot;Tidak Ada&quot;,&quot;KSMPDN&quot;:&quot;Tidak Ada&quot;,&quot;HANKAM&quot;:&quot;Tidak Ada&quot;,&quot;KKARST&quot;:&quot;Tidak Ada&quot;,&quot;PTBGMB&quot;:&quot;Tidak Ada&quot;,&quot;MGRSAT&quot;:&quot;Tidak Ada&quot;,&quot;RDBUMI&quot;:&quot;Tidak Ada&quot;,&quot;TPZ_00&quot;:&quot;Tidak Ada&quot;,&quot;REMARK&quot;:&quot;Tidak Ada&quot;,&quot;NOTHPR&quot;:&quot;Peraturan Bupati Badung Nomor 34 Tahun 2022 tentang Rencana Detail Tata Ruang Wilayah Perencanaan Mengwi Tahun 2022-2042&quot;}</description>
</Placemark>
<Placemark>
<visibility>0</visibility>
<styleUrl>#m_ylw-pushpin71</styleUrl>
<MultiGeometry>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
115.191933188,-8.449172439999927,0 115.19191532,-8.449171381999975,0 115.1919124570001,-8.449171215999968,0 115.1919010780001,-8.449170541999933,0 115.1918917470001,-8.449169989999973,0 115.1918105130001,-8.44916518399998,0 115.1917290920001,-8.449155231999953,0 115.1916147740001,-8.449135449999972,0 115.191528561,-8.449111549999941,0 115.1913030940001,-8.449002938999968,0 115.1909483490001,-8.448825509999949,0 115.190947057,-8.448824860999935,0 115.1908468940001,-8.448774764999939,0 115.190808421,-8.448755514999959,0 115.190409884,-8.448590061999937,0 115.1904097260001,-8.44859004999995,0 115.190402875,-8.448589547999973,0 115.1904020280001,-8.448589484999957,0 115.1903947520001,-8.448592254999937,0 115.1903940120001,-8.448593015999961,0 115.1903893330001,-8.448597825999968,0 115.1903875960001,-8.448601989999929,0 115.190370084,-8.448643951999941,0 115.1903583070001,-8.448672172999977,0 115.1902242800001,-8.44899333199993,0 115.190155223,-8.449158810999961,0 115.190098905,-8.449293754999928,0 115.1900826430001,-8.449332724999977,0 115.1900778170001,-8.449344289999942,0 115.190053152,-8.449400260999937,0 115.1900076080001,-8.449503615999959,0 115.189717072,-8.45016292899993,0 115.189551477,-8.450557716999981,0 115.1893443780001,-8.451035656999977,0 115.189261189,-8.451227638999967,0 115.1892182290001,-8.451326778999942,0 115.1892052920001,-8.451356635999957,0 115.1891748910001,-8.451426799999979,0 115.1891266050001,-8.451538242999959,0 115.1890758400001,-8.451655397999957,0 115.189036181,-8.451746911999976,0 115.1889315220001,-8.451988446999962,0 115.1889117380001,-8.452034101999971,0 115.1888871420001,-8.452090143999953,0 115.188863929,-8.452143029999945,0 115.188861079,-8.452149523999935,0 115.1887247340001,-8.452460157999951,0 115.1886361640001,-8.452658576999966,0 115.1886262050001,-8.452680885999939,0 115.1886244990001,-8.452684706999946,0 115.1885699930001,-8.452806814999974,0 115.188559444,-8.452830811999945,0 115.188520486,-8.452919446999942,0 115.18843672,-8.453110006999964,0 115.188327189,-8.453348520999953,0 115.188296505,-8.453415327999949,0 115.188272954,-8.453466603999971,0 115.188220644,-8.45358050599998,0 115.1881191640001,-8.453801474999977,0 115.1878819100001,-8.454388919999928,0 115.187841411,-8.45448769799998,0 115.187835465,-8.454502201999958,0 115.187821318,-8.454536703999963,0 115.1877969880001,-8.454596045999949,0 115.1877807560001,-8.454635652999968,0 115.1877328640001,-8.454752463999966,0 115.187701755,-8.454828339999949,0 115.187681654,-8.454877371999942,0 115.1876022060001,-8.455052957999953,0 115.187582872,-8.455095691999929,0 115.1875811000001,-8.455099613999948,0 115.1875385000001,-8.45519375899994,0 115.1875198910001,-8.455234884999982,0 115.1875108310001,-8.455254909999951,0 115.187510724,-8.455255145999956,0 115.1875104410001,-8.455255768999962,0 115.1874963490001,-8.455289100999948,0 115.1874424490001,-8.455416602999946,0 115.187362567,-8.455605580999929,0 115.187356216,-8.455620599999975,0 115.187316223,-8.455709924999951,0 115.1871640210001,-8.456049883999981,0 115.1871212540001,-8.45613719499994,0 115.187119271,-8.45614124399998,0 115.187118552,-8.456150187999981,0 115.187121732,-8.456157177999955,0 115.187122261,-8.456158340999934,0 115.18712942,-8.456163794999952,0 115.1871859290001,-8.45617582899996,0 115.187538139,-8.456250838999949,0 115.187658682,-8.456284836999941,0 115.1877094140001,-8.456307309999943,0 115.1877344550001,-8.456323823999981,0 115.187746961,-8.456332074999978,0 115.187764279,-8.456359898999949,0 115.187767437,-8.45637284299994,0 115.1877770660001,-8.456411935999938,0 115.1878151120001,-8.456520283999964,0 115.187823221,-8.456543379999971,0 115.187827899,-8.456556708999926,0 115.187829716,-8.456574385999943,0 115.1878298910001,-8.456576097999971,0 115.1878308080001,-8.456585035999979,0 115.18783552,-8.456630969999935,0 115.1878365680001,-8.456641171999934,0 115.1878333400001,-8.456690781999953,0 115.187830189,-8.456740030999981,0 115.1878300410001,-8.456741085999965,0 115.187830028,-8.456741177999959,0 115.1878180320001,-8.456826209999974,0 115.187815791,-8.456842172999927,0 115.187805095,-8.456918350999956,0 115.1877872010001,-8.456999350999979,0 115.1877682260001,-8.457085313999926,0 115.1877523520001,-8.457150049999939,0 115.1877106820001,-8.45732024199998,0 115.1877060150001,-8.457339300999934,0 115.1877020510001,-8.457354188999943,0 115.1876685100001,-8.45748131299996,0 115.1876518940001,-8.457544146999965,0 115.187650842,-8.457549287999939,0 115.1876455360001,-8.457575212999927,0 115.1876453240001,-8.457620947999942,0 115.187645222,-8.457642009999972,0 115.187638188,-8.457737700999928,0 115.1876392820001,-8.457759490999933,0 115.187643511,-8.457843557999979,0 115.1876445710001,-8.45786458799995,0 115.1876456540001,-8.457886154999926,0 115.187646101,-8.457895102999942,0 115.1876465730001,-8.457904562999943,0 115.1876470660001,-8.457914418999962,0 115.187648253,-8.457938236999951,0 115.187641996,-8.458008909999933,0 115.1876416150001,-8.458013195999968,0 115.1876411960001,-8.458017925999968,0 115.1876411400001,-8.458018557999935,0 115.187640694,-8.458021360999965,0 115.187640416,-8.458023116999925,0 115.1876362040001,-8.458049544999938,0 115.18762402,-8.45812523099994,0 115.1876102650001,-8.458184913999958,0 115.187600694,-8.458226349999961,0 115.1875946570001,-8.45825248899996,0 115.187582903,-8.458303382999929,0 115.1875820880001,-8.45830695099994,0 115.1875790830001,-8.458320090999962,0 115.1875563640001,-8.458406758999956,0 115.187555403,-8.458436225999947,0 115.1875524640001,-8.458531291999975,0 115.1875518720001,-8.458550368999965,0 115.1875517950001,-8.458552796999982,0 115.18755177,-8.458553587999972,0 115.187549588,-8.458622672999979,0 115.187549758,-8.458625845999961,0 115.1875531730001,-8.458689309999954,0 115.1875554440001,-8.458731437999973,0 115.187560079,-8.458797173999926,0 115.1875612180001,-8.458812979999948,0 115.1875613440001,-8.458814719999964,0 115.187560521,-8.45882370299995,0 115.187549826,-8.458940492999943,0 115.187541083,-8.459072914999979,0 115.1875403160001,-8.459084527999948,0 115.1875321750001,-8.459208235999938,0 115.1875316730001,-8.45921584599995,0 115.1875279840001,-8.459271672999932,0 115.1875211170001,-8.459347569999977,0 115.1875156340001,-8.459408326999949,0 115.1875156150001,-8.459408541999949,0 115.1875097440001,-8.459473610999964,0 115.1874992420001,-8.459589989999927,0 115.187494818,-8.459638779999977,0 115.1874907280001,-8.459674031999953,0 115.1874907260001,-8.459674058999951,0 115.1874746890001,-8.459812148999958,0 115.1874630650001,-8.459912609999947,0 115.1874622520001,-8.459958165999979,0 115.187460919,-8.460035256999959,0 115.187460532,-8.460057584999959,0 115.1874605310001,-8.46005761899994,0 115.1874602790001,-8.460072228999934,0 115.1874600980001,-8.460082625999974,0 115.1874596770001,-8.460109379999949,0 115.187462651,-8.460193820999962,0 115.1874664060001,-8.460302571999932,0 115.1874702450001,-8.460410697999976,0 115.187470704,-8.46042443999994,0 115.1874726230001,-8.46051104999998,0 115.18747281,-8.460519003999934,0 115.1874800720001,-8.460567487999981,0 115.1874975300001,-8.460629035999943,0 115.187503815,-8.460644972999944,0 115.1875530220001,-8.460770298999932,0 115.1875807450001,-8.460840814999926,0 115.1875807910001,-8.46084093199994,0 115.1875859510001,-8.460854061999953,0 115.187590115,-8.460866365999948,0 115.187594955,-8.460866505999945,0 115.1875944180001,-8.460864920999938,0 115.1875937330001,-8.460862898999949,0 115.1875902180001,-8.460852516999978,0 115.1875849730001,-8.460839166999961,0 115.187557251,-8.460768652999946,0 115.1875080440001,-8.460643323999932,0 115.187501836,-8.460627586999976,0 115.187496244,-8.460607871999969,0 115.1874952410001,-8.46060433599996,0 115.1874845200001,-8.460566537999966,0 115.1874773430001,-8.460518617999981,0 115.1874771620001,-8.460510945999943,0 115.1874752430001,-8.460424315999944,0 115.1874747830001,-8.460410542999966,0 115.187474056,-8.460390039999936,0 115.1874709450001,-8.460302413999955,0 115.187467188,-8.460193662999927,0 115.1874642180001,-8.46010932799993,0 115.1874646380001,-8.460082700999976,0 115.1874648200001,-8.460072294999975,0 115.187465072,-8.460057696999968,0 115.187465458,-8.46003533399994,0 115.187466682,-8.45996456499995,0 115.187466792,-8.459958244999939,0 115.1874676010001,-8.459912912999926,0 115.187478754,-8.45981653399997,0 115.1874792010001,-8.459812667999927,0 115.1874952410001,-8.45967453999998,0 115.1874993350001,-8.459639243999959,0 115.1875037660001,-8.459590395999953,0 115.1875142670001,-8.459474015999945,0 115.1875201570001,-8.459408731999929,0 115.1875256390001,-8.459347974999957,0 115.1875325120001,-8.459272023999972,0 115.1875367060001,-8.459208530999945,0 115.187542225,-8.459124662999955,0 115.187544847,-8.459084823999945,0 115.187554352,-8.458940843999926,0 115.1875650530001,-8.458823991999964,0 115.1875658660001,-8.458815128999959,0 115.187565884,-8.458814719999964,0 115.187565873,-8.45881439599998,0 115.1875646090001,-8.458796853999957,0 115.1875616850001,-8.458755382999925,0 115.187561683,-8.458755344999929,0 115.1875599760001,-8.458731150999938,0 115.1875577070001,-8.458689067999956,0 115.1875541320001,-8.458622614999967,0 115.1875545350001,-8.458609844999955,0 115.187556307,-8.458553729999949,0 115.187556411,-8.458550508999963,0 115.1875570030001,-8.458531430999926,0 115.1875581110001,-8.458495582999944,0 115.187559942,-8.458436368999969,0 115.187560886,-8.458407410999939,0 115.187583493,-8.458321162999937,0 115.1875873300001,-8.458304390999956,0 115.187590569,-8.458290362999946,0 115.1876051190001,-8.458227363999981,0 115.18761469,-8.458185925999942,0 115.1876284460001,-8.458126242999981,0 115.1876284980001,-8.458125981999956,0 115.1876406880001,-8.458050255999979,0 115.1876449020001,-8.458023811999965,0 115.1876456250001,-8.458019263999972,0 115.187645663,-8.458018955999933,0 115.1876461380001,-8.458013594999954,0 115.1876465190001,-8.458009305999951,0 115.187652776,-8.45793863199998,0 115.187652791,-8.457938122999963,0 115.1876516020001,-8.457914198999958,0 115.1876511070001,-8.457904324999959,0 115.187650637,-8.457894876999944,0 115.1876501910001,-8.457885927999939,0 115.1876491060001,-8.457864360999963,0 115.187648047,-8.457843330999935,0 115.1876438190001,-8.457759264999936,0 115.1876431650001,-8.457746278999934,0 115.187642737,-8.457737745999964,0 115.1876497500001,-8.45764233999995,0 115.1876497630001,-8.457642030999978,0 115.187649864,-8.457620968999947,0 115.1876500750001,-8.457575677999955,0 115.187656315,-8.457545184999958,0 115.1876692210001,-8.457496378999963,0 115.187672901,-8.457482460999927,0 115.1876749400001,-8.45747473299997,0 115.1876750130001,-8.457474459999958,0 115.1877064410001,-8.45735534399995,0 115.1877104160001,-8.457340414999976,0 115.187756763,-8.457151120999981,0 115.1877726490001,-8.457086334999929,0 115.1877916350001,-8.457000319999963,0 115.1878095300001,-8.456919322999966,0 115.187809579,-8.456919056999936,0 115.1878225280001,-8.456826836999937,0 115.1878257610001,-8.456803932999946,0 115.1878345240001,-8.456741807999947,0 115.1878346880001,-8.456740658999934,0 115.1878347210001,-8.456740317999959,0 115.1878350730001,-8.456734839999967,0 115.1878365350001,-8.456711968999969,0 115.1878378710001,-8.456691072999945,0 115.1878411010001,-8.456641462999926,0 115.187841109,-8.456641171999934,0 115.187841086,-8.456640711999967,0 115.1878400390001,-8.456630507999932,0 115.1878344080001,-8.456575635999968,0 115.1878324170001,-8.456556248999959,0 115.1878323720001,-8.456555923999929,0 115.187832185,-8.456555217999949,0 115.187827509,-8.456541892999951,0 115.1878193980001,-8.456518789999961,0 115.1878014160001,-8.456467581999959,0 115.187781425,-8.456410651999931,0 115.1877723650001,-8.456373867999957,0 115.1877718490001,-8.456371771999954,0 115.1877686920001,-8.456358831999978,0 115.187768546,-8.456358353999974,0 115.1877681760001,-8.456357577999938,0 115.187750821,-8.45632969299993,0 115.1877504400001,-8.456329168999957,0 115.1877498790001,-8.456328610999947,0 115.1877494690001,-8.456328305999932,0 115.187736962,-8.456320054999935,0 115.1877119220001,-8.456303541999944,0 115.1877116850001,-8.456303395999953,0 115.18771126,-8.456303179999964,0 115.187660528,-8.456280706999962,0 115.1876602350001,-8.456280588999959,0 115.1876599190001,-8.456280487999948,0 115.187539376,-8.456246488999966,0 115.1875390880001,-8.456246417999978,0 115.187131367,-8.456159585999956,0 115.187125927,-8.456155440999964,0 115.187124282,-8.45615182399996,0 115.1871274450001,-8.456145181999943,0 115.187172183,-8.456053847999954,0 115.1871723150001,-8.456053564999934,0 115.1873245170001,-8.455713605999961,0 115.187364548,-8.455624194999928,0 115.1873709360001,-8.45560908799996,0 115.1874508200001,-8.455420109999977,0 115.1875047200001,-8.455292608999969,0 115.1875048910001,-8.455292201999953,0 115.1875187640001,-8.455259388999934,0 115.187519109,-8.455258627999967,0 115.18754678,-8.455197471999952,0 115.1875893810001,-8.455103325999971,0 115.1875911520001,-8.455099404999942,0 115.1876104860001,-8.455056671999955,0 115.1876107600001,-8.45505606699993,0 115.1876899350001,-8.454881086999933,0 115.1876900620001,-8.454880788999958,0 115.187710163,-8.454831755999976,0 115.187741272,-8.454755880999926,0 115.187789163,-8.454639068999938,0 115.187805396,-8.454599462999965,0 115.187829726,-8.45454012099998,0 115.187843872,-8.454505619999964,0 115.187849818,-8.454491114999939,0 115.187849923,-8.454490859999964,0 115.1878903260001,-8.45439231499995,0 115.188127514,-8.453805035999949,0 115.1882812120001,-8.453470363999941,0 115.1883354470001,-8.453352279999933,0 115.18844501,-8.453113698999971,0 115.188528806,-8.452923071999976,0 115.188567764,-8.452834436999979,0 115.1885783,-8.452810467999939,0 115.1886327980001,-8.452688378999937,0 115.1886345040001,-8.452684556999941,0 115.1887330440001,-8.452463803999933,0 115.1888694,-8.452153144999954,0 115.18887225,-8.452146650999964,0 115.188920069,-8.452037704999952,0 115.18904452,-8.451750493999953,0 115.189084178,-8.451658979999934,0 115.1891349430001,-8.451541823999946,0 115.1891350130001,-8.451541661999954,0 115.189183229,-8.451430381999955,0 115.1892265680001,-8.451330361999965,0 115.1892695270001,-8.451231220999944,0 115.189269684,-8.451230858999963,0 115.189559836,-8.450561249999964,0 115.189725421,-8.450166486999933,0 115.190015924,-8.449507247999975,0 115.1900861680001,-8.449347840999963,0 115.1901072910001,-8.449297224999953,0 115.190163609,-8.449162280999928,0 115.190232667,-8.448996801999954,0 115.1903666940001,-8.448675641999955,0 115.1903977010001,-8.448601339999925,0 115.1904005280001,-8.448594893999939,0 115.190402703,-8.448594066999931,0 115.190408816,-8.448594515999957,0 115.1908065250001,-8.44875962499998,0 115.190844856,-8.448778803999971,0 115.1909450170001,-8.448828898999977,0 115.1909463090001,-8.448829547999935,0 115.1913010870001,-8.449006992999955,0 115.191526584,-8.44911561899994,0 115.1915270080001,-8.44911579799998,0 115.1915273430001,-8.449115905999975,0 115.1916135570001,-8.449139805999948,0 115.191613992,-8.449139903999935,0 115.191728428,-8.449159702999964,0 115.1918099600001,-8.449169672999972,0 115.1918102440001,-8.449169696999945,0 115.1919004890001,-8.449175035999929,0 115.1919008090001,-8.449175054999955,0 115.19191219,-8.449175728999933,0 115.1919150530001,-8.449175894999939,0 115.1919305810001,-8.44917681499993,0 115.191933188,-8.449172439999927,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
115.187569272,-8.460865759999933,0 115.1875675810001,-8.460860758999956,0 115.1875569760001,-8.460833729999933,0 115.1875471630001,-8.46080872899995,0 115.187509415,-8.460712515999944,0 115.1874790800001,-8.460635181999976,0 115.1874622680001,-8.460576157999981,0 115.1874609570001,-8.460571555999934,0 115.1874596780001,-8.460563012999955,0 115.187453332,-8.460520626999937,0 115.187452161,-8.460466931999974,0 115.187451233,-8.460424987999943,0 115.187446344,-8.460285670999951,0 115.187440206,-8.460109561999957,0 115.187441385,-8.460041493999938,0 115.187441537,-8.460032731999945,0 115.187441795,-8.46001761499997,0 115.1874436050001,-8.459911346999945,0 115.1874503930001,-8.459852806999947,0 115.1874697380001,-8.459686122999926,0 115.187475434,-8.459636793999948,0 115.1874921750001,-8.459451838999939,0 115.187493083,-8.459441777999928,0 115.187503782,-8.459323264999966,0 115.1875042280001,-8.459318345999975,0 115.187508598,-8.45927014199998,0 115.1875125500001,-8.459210319999954,0 115.1875184290001,-8.459121129999971,0 115.18752714,-8.458987840999953,0 115.1875303630001,-8.458939043999976,0 115.1875418020001,-8.458814537999956,0 115.187540256,-8.458792382999945,0 115.1875359700001,-8.458732708999946,0 115.1875348020001,-8.458710103999977,0 115.18753012,-8.458622945999934,0 115.187532492,-8.45854811199996,0 115.1875360170001,-8.458434323999938,0 115.1875368990001,-8.458406665999973,0 115.187551414,-8.458320692999962,0 115.1875524510001,-8.458314544999951,0 115.1875550980001,-8.458303066999974,0 115.187593418,-8.458136930999956,0 115.187597158,-8.458120720999943,0 115.1875973130001,-8.45812005099998,0 115.1876141250001,-8.458015182999929,0 115.1876209310001,-8.457937654999967,0 115.1876179850001,-8.457879069999933,0 115.1876158030001,-8.457834931999969,0 115.1876131280001,-8.457780789999958,0 115.1876109330001,-8.457737304999966,0 115.1876125570001,-8.457715069999949,0 115.187612992,-8.457709114999943,0 115.1876179720001,-8.457640972999968,0 115.1876182580001,-8.457579790999944,0 115.18761826,-8.457579322999948,0 115.187618291,-8.457572372999948,0 115.1876192850001,-8.45756752099993,0 115.1876249510001,-8.457539873999963,0 115.187625342,-8.457537966999951,0 115.1876488800001,-8.457448925999927,0 115.1876796130001,-8.457332668999982,0 115.187685566,-8.457308377999937,0 115.187717398,-8.457178269999929,0 115.1877416750001,-8.457079128999965,0 115.1877695960001,-8.456953078999959,0 115.1877783130001,-8.456913615999952,0 115.1878030250001,-8.456737287999943,0 115.187809235,-8.456641677999926,0 115.187801142,-8.456562640999948,0 115.187761485,-8.456449643999974,0 115.1877614760001,-8.456449615999929,0 115.187750968,-8.456419676999928,0 115.187747348,-8.456404974999941,0 115.18774639,-8.456401078999932,0 115.1877425010001,-8.456385279999949,0 115.1877424820001,-8.456385209999951,0 115.1877388490001,-8.456370454999956,0 115.1877374830001,-8.456368264999981,0 115.1877269570001,-8.456351410999957,0 115.1877174570001,-8.456345158999966,0 115.18770829,-8.456339118999949,0 115.1876962770001,-8.45633120399998,0 115.187649425,-8.45631038199997,0 115.187634092,-8.456306051999945,0 115.1875315750001,-8.456277109999974,0 115.1874954780001,-8.456269522999946,0 115.1874779410001,-8.456265832999975,0 115.1873173700001,-8.456231990999981,0 115.187299913,-8.456228310999961,0 115.1872704210001,-8.456222110999931,0 115.187107157,-8.456187786999976,0 115.1871064720001,-8.456187643999954,0 115.1871000240001,-8.456189238999968,0 115.1870960680001,-8.456192000999977,0 115.187094619,-8.45619301399995,0 115.1870926030001,-8.456197046999932,0 115.1870279540001,-8.456326393999973,0 115.1869670860001,-8.456500654999957,0 115.186918287,-8.456640444999948,0 115.186877896,-8.456775751999942,0 115.186811485,-8.456998084999952,0 115.186774291,-8.457122650999963,0 115.1867716290001,-8.457131491999974,0 115.1867035450001,-8.457344323999962,0 115.1866814110001,-8.45742404799995,0 115.1866720900001,-8.457457621999936,0 115.1866353050001,-8.457590228999948,0 115.1866309180001,-8.45760602799993,0 115.1866029360001,-8.457706781999946,0 115.18657194,-8.457818539999948,0 115.1865566460001,-8.457934800999965,0 115.186548492,-8.457996994999974,0 115.1865245340001,-8.45817969899997,0 115.1865229350001,-8.458191940999939,0 115.186520307,-8.458211957999936,0 115.1864983800001,-8.458401858999935,0 115.186497914,-8.458412381999949,0 115.1864968870001,-8.458435479999935,0 115.1864921050001,-8.458543194999947,0 115.186488499,-8.458625077999955,0 115.186477284,-8.458877489999963,0 115.186470503,-8.459031033999963,0 115.186467285,-8.459102396999981,0 115.1864670760001,-8.459107037999956,0 115.1864667130001,-8.459115235999946,0 115.1864632210001,-8.459194243999946,0 115.186426639,-8.459578160999968,0 115.1864265180001,-8.459675162999929,0 115.18643568,-8.45957901099996,0 115.1864722620001,-8.459195098999942,0 115.1864722930001,-8.459194641999943,0 115.1864761480001,-8.459107438999979,0 115.186479576,-8.459031434999929,0 115.186486356,-8.458877887999961,0 115.186497572,-8.458625474999963,0 115.1865011770001,-8.458543593999934,0 115.1865059590001,-8.458435878999978,0 115.186506986,-8.458412781999925,0 115.186507437,-8.458402577999948,0 115.1865293190001,-8.458213066999974,0 115.18653194,-8.458193109999968,0 115.18653354,-8.458180864999974,0 115.1865574410001,-8.457998564999968,0 115.1865574970001,-8.457998164999935,0 115.1865576120001,-8.457996998999931,0 115.186565651,-8.457935971999973,0 115.186580861,-8.45782034399997,0 115.1866116900001,-8.457709190999935,0 115.1866440590001,-8.457592637999937,0 115.1866808430001,-8.457460030999925,0 115.18671225,-8.457346902999973,0 115.1867803060001,-8.457134162999978,0 115.1867829930001,-8.457125236999957,0 115.18682019,-8.457000660999938,0 115.1868866000001,-8.456778328999974,0 115.18692693,-8.456643224999937,0 115.1869756640001,-8.456503623999936,0 115.187036344,-8.456329902999926,0 115.1871027860001,-8.456196964999947,0 115.187104811,-8.45619271299995,0 115.187106553,-8.456192280999971,0 115.1872989740001,-8.456232733999968,0 115.1874324170001,-8.45626085899994,0 115.187477002,-8.456270255999925,0 115.1874945440001,-8.456273946999943,0 115.187530496,-8.456281504999936,0 115.1876328550001,-8.456310400999939,0 115.187647875,-8.456314642999928,0 115.187687284,-8.456332157999952,0 115.1876879580001,-8.456332457999963,0 115.187694079,-8.456335177999961,0 115.1877057830001,-8.456342886999948,0 115.1877149520001,-8.456348928999944,0 115.1877236250001,-8.456354637999937,0 115.187733629,-8.456370651999976,0 115.187734609,-8.456372226999974,0 115.1877380730001,-8.45638628599994,0 115.1877419800001,-8.456402153999932,0 115.187742938,-8.456406050999931,0 115.1877465580001,-8.456420753999964,0 115.187746682,-8.456421168999952,0 115.1877572000001,-8.456451134999952,0 115.1877730580001,-8.456496321999964,0 115.187796679,-8.456563627999969,0 115.1878046800001,-8.456641765999962,0 115.187801485,-8.45669096499995,0 115.1878001070001,-8.456712165999932,0 115.187798505,-8.456736827999976,0 115.187781541,-8.456857876999948,0 115.1877738420001,-8.456912812999974,0 115.187769881,-8.456930747999934,0 115.187765162,-8.456952104999971,0 115.187737254,-8.457078100999979,0 115.1877129870001,-8.457177198999943,0 115.1876811550001,-8.457307306999951,0 115.1876752160001,-8.457331537999949,0 115.1876222760001,-8.457531815999971,0 115.1876209220001,-8.457536939999954,0 115.1876148370001,-8.457566619999966,0 115.187613832,-8.45757152799996,0 115.1876137510001,-8.457572351999943,0 115.1876137170001,-8.45757976699997,0 115.187613433,-8.45764068699998,0 115.1876134310001,-8.457640796999954,0 115.1876134260001,-8.457640885999979,0 115.1876084630001,-8.457708786999945,0 115.187606404,-8.457736976999968,0 115.1876063950001,-8.457737417999965,0 115.187608593,-8.457781013999977,0 115.1876112680001,-8.457835154999941,0 115.1876134500001,-8.457879291999973,0 115.1876163390001,-8.457936746999962,0 115.1876163810001,-8.457937571999935,0 115.187609616,-8.45801462999998,0 115.187601025,-8.458068218999927,0 115.187601018,-8.458068260999937,0 115.1875928530001,-8.458119187999955,0 115.1875889930001,-8.458135919999961,0 115.1875480260001,-8.458313533999956,0 115.187547977,-8.458313777999933,0 115.1875403720001,-8.458358822999969,0 115.1875324220001,-8.458405917999926,0 115.1875323600001,-8.45840652399994,0 115.1875314790001,-8.458434182999952,0 115.1875312850001,-8.458440461999942,0 115.1875279540001,-8.458547970999973,0 115.187525582,-8.458622872999968,0 115.1875255860001,-8.458623185999954,0 115.187530268,-8.458710338999936,0 115.1875314390001,-8.458732984999926,0 115.1875357280001,-8.458792698999957,0 115.187537246,-8.458814488999963,0 115.1875258370001,-8.458938689999968,0 115.1875226090001,-8.458987545999946,0 115.187513898,-8.459120834999965,0 115.187508019,-8.459210022999969,0 115.187504072,-8.459269768999945,0 115.1874992590001,-8.459322859999929,0 115.1874876520001,-8.459451433999959,0 115.1874709150001,-8.459636343999932,0 115.1874652280001,-8.459685604999947,0 115.187445881,-8.459852287999979,0 115.187441388,-8.459891039999945,0 115.1874390930001,-8.459910827999977,0 115.187439065,-8.459911268999974,0 115.1874387480001,-8.459929864999935,0 115.1874369970001,-8.460032654999964,0 115.1874356660001,-8.460109521999925,0 115.187435668,-8.460109717999956,0 115.187441806,-8.46028582799994,0 115.1874466930001,-8.460425107999981,0 115.187447622,-8.460467028999972,0 115.1874487920001,-8.460520724999981,0 115.1874488420001,-8.460521292999942,0 115.1874564760001,-8.46057228199993,0 115.187456589,-8.460572789999958,0 115.187474712,-8.460636415999943,0 115.187474832,-8.46063677799998,0 115.1875051850001,-8.460714160999942,0 115.187542934,-8.460810373999948,0 115.1875527470001,-8.460835374999931,0 115.1875633100001,-8.460862299999974,0 115.187564435,-8.460865619999936,0 115.187569272,-8.460865759999933,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
115.18758261,-8.460905096999966,0 115.1875669220001,-8.460872967999933,0 115.187572656,-8.460889906999967,0 115.1875783070001,-8.460906540999929,0 115.1876233610001,-8.461039121999931,0 115.1876329260001,-8.46106726599993,0 115.187638823,-8.461084660999973,0 115.1876438740001,-8.461085422999929,0 115.1876372270001,-8.461065817999952,0 115.1876276630001,-8.461037673999954,0 115.18758261,-8.460905096999966,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</MultiGeometry>
<description>{&quot;OBJECTID&quot;:&quot;1406&quot;,&quot;NAMOBJ&quot;:&quot;Jalur Hijau&quot;,&quot;NAMZON&quot;:&quot;Zona Ruang Terbuka Hijau&quot;,&quot;KODZON&quot;:&quot;RTH&quot;,&quot;NAMSZN&quot;:&quot;Jalur Hijau&quot;,&quot;KODSZN&quot;:&quot;RTH-8&quot;,&quot;JNSRPR&quot;:&quot;Zona Lindung&quot;,&quot;KODEWP&quot;:&quot;I&quot;,&quot;KODSWP&quot;:&quot;A&quot;,&quot;KODBLK&quot;:&quot;1&quot;,&quot;KODSBL&quot;:&quot;Tidak Ada&quot;,&quot;WADMPR&quot;:&quot;Provinsi Bali&quot;,&quot;WADMKK&quot;:&quot;Kabupaten Badung&quot;,&quot;WADMKC&quot;:&quot;Kecamatan Mengwi&quot;,&quot;WADMKD&quot;:&quot;Desa Kuwum&quot;,&quot;KKOP_1&quot;:&quot;Tidak Ada&quot;,&quot;LP2B_2&quot;:&quot;Tidak Ada&quot;,&quot;KRB_03&quot;:&quot;Tidak Ada&quot;,&quot;TOD_04&quot;:&quot;Tidak Ada&quot;,&quot;TEB_05&quot;:&quot;Tidak Ada&quot;,&quot;PUSLIT&quot;:&quot;Tidak Ada&quot;,&quot;CAGBUD&quot;:&quot;Tidak Ada&quot;,&quot;RESAIR&quot;:&quot;Tidak Ada&quot;,&quot;KSMPDN&quot;:&quot;Tidak Ada&quot;,&quot;HANKAM&quot;:&quot;Tidak Ada&quot;,&quot;KKARST&quot;:&quot;Tidak Ada&quot;,&quot;PTBGMB&quot;:&quot;Tidak Ada&quot;,&quot;MGRSAT&quot;:&quot;Tidak Ada&quot;,&quot;RDBUMI&quot;:&quot;Tidak Ada&quot;,&quot;TPZ_00&quot;:&quot;Tidak Ada&quot;,&quot;REMARK&quot;:&quot;Tidak Ada&quot;,&quot;NOTHPR&quot;:&quot;Peraturan Bupati Badung Nomor 34 Tahun 2022 tentang Rencana Detail Tata Ruang Wilayah Perencanaan Mengwi Tahun 2022-2042&quot;}</description>
</Placemark>
<Placemark>
<visibility>0</visibility>
<styleUrl>#m_ylw-pushpin71</styleUrl>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
115.1917299520001,-8.456769579999957,0 115.1917322310001,-8.456761667999956,0 115.191746639,-8.456716771999936,0 115.1917485460001,-8.456710831999942,0 115.191751121,-8.456702806999942,0 115.1917620920001,-8.456668626999942,0 115.1917840860001,-8.45660586799994,0 115.1917896120001,-8.456597120999959,0 115.1918172850001,-8.456553324999959,0 115.1918695270001,-8.456488925999963,0 115.1918834160001,-8.456471804999978,0 115.1918844940001,-8.456470475999936,0 115.1918913650001,-8.456462009999939,0 115.1919377060001,-8.456417545999955,0 115.19193899,-8.456416313999966,0 115.191954545,-8.456401387999961,0 115.191961375,-8.45639483399998,0 115.1919677740001,-8.456388695999976,0 115.191993967,-8.456363567999972,0 115.1920865290001,-8.456282046999945,0 115.1921020210001,-8.456268402999967,0 115.1921516970001,-8.456220323999958,0 115.1921572160001,-8.456211225999937,0 115.192181913,-8.45617051499994,0 115.192189478,-8.456143095999948,0 115.1921896570001,-8.456142450999948,0 115.192194778,-8.456123881999929,0 115.1922045150001,-8.456088572999931,0 115.192214517,-8.456049441999937,0 115.1922227250001,-8.456017329999952,0 115.192266399,-8.455846439999959,0 115.192272469,-8.455822686999966,0 115.1922816220001,-8.455787016999977,0 115.1922817300001,-8.455786610999951,0 115.1922819160001,-8.455785914999979,0 115.192398688,-8.455350733999978,0 115.1924062060001,-8.45532271299993,0 115.1924436260001,-8.455242484999928,0 115.1924783960001,-8.455167937999931,0 115.192518293,-8.455082386999948,0 115.19257199,-8.454967240999963,0 115.1926864830001,-8.454645071999948,0 115.1927349020001,-8.454522592999979,0 115.1928072540001,-8.45433957299997,0 115.1928499170001,-8.454231657999969,0 115.19292882,-8.454089926999927,0 115.1929559360001,-8.454035746999978,0 115.192978924,-8.453989806999971,0 115.1930261780001,-8.453895376999981,0 115.193044534,-8.453858695999941,0 115.193083181,-8.453790267999977,0 115.1931843570001,-8.453611121999927,0 115.1932272920001,-8.453507915999978,0 115.1932950920001,-8.453275106999968,0 115.1933045620001,-8.453236189999927,0 115.1933228360001,-8.453161106999971,0 115.1933976890001,-8.452853535999964,0 115.1934259290001,-8.452610517999972,0 115.193438312,-8.452426266999964,0 115.193435313,-8.452282202999982,0 115.1934351310001,-8.452273485999967,0 115.1934195340001,-8.452011084999981,0 115.193419484,-8.452010248999954,0 115.1934155260001,-8.451943601999972,0 115.193413541,-8.451910190999968,0 115.1933976060001,-8.451553255999954,0 115.1933832780001,-8.451285900999949,0 115.1933858440001,-8.451168939999945,0 115.193418219,-8.450984873999971,0 115.1934876190001,-8.450761747999934,0 115.1935648650001,-8.45052663599995,0 115.193606323,-8.450422145999937,0 115.193629213,-8.45036446499995,0 115.1936516870001,-8.450307833999943,0 115.193723286,-8.450143639999965,0 115.1937542290001,-8.450072675999934,0 115.193803408,-8.449959892999971,0 115.1938053350001,-8.449955468999974,0 115.1938458320001,-8.449862595999946,0 115.193874101,-8.449797762999935,0 115.1938932200001,-8.449753917999942,0 115.19390895,-8.449717843999963,0 115.1939093650001,-8.44971689099998,0 115.1939107510001,-8.449713710999958,0 115.1939107520001,-8.449713621999933,0 115.193911423,-8.449706300999935,0 115.1939116980001,-8.449703316999944,0 115.1939082690001,-8.449695986999927,0 115.1939081400001,-8.449695709999958,0 115.193901577,-8.449690525999927,0 115.1937132810001,-8.449640645999978,0 115.193699795,-8.449637070999927,0 115.1934786050001,-8.449578474999953,0 115.1933034880001,-8.449523392999936,0 115.193283348,-8.449517057999969,0 115.1932514020001,-8.449507007999955,0 115.193103317,-8.449460424999927,0 115.1929769990001,-8.44942068499995,0 115.1925337570001,-8.449288747999958,0 115.1922968340001,-8.449211545999958,0 115.1921125340001,-8.449184904999981,0 115.1920907660001,-8.449181754999927,0 115.1920383920001,-8.449178661999952,0 115.192036763,-8.449178564999954,0 115.1920326760001,-8.449178322999956,0 115.1920012620001,-8.449176466999972,0 115.191938173,-8.449172738999948,0 115.191933188,-8.449172439999927,0 115.1919305810001,-8.44917681499993,0 115.191932917,-8.449176952999949,0 115.1919379020001,-8.44917725199997,0 115.1920324070001,-8.449182835999977,0 115.1920381230001,-8.449183174999973,0 115.1920903,-8.449186255999962,0 115.192111882,-8.449189378999961,0 115.1922957940001,-8.449215963999961,0 115.1925324,-8.449293061999981,0 115.192975667,-8.449425007999935,0 115.193101949,-8.449464734999935,0 115.1932499400001,-8.44951128799994,0 115.193250035,-8.449511318999953,0 115.193281981,-8.449521368999967,0 115.1933021210001,-8.449527702999944,0 115.1934773370001,-8.449582813999939,0 115.1936982400001,-8.449641326999938,0 115.1936986280001,-8.449641438999947,0 115.1936990040001,-8.44964153199993,0 115.193711504,-8.449644852999938,0 115.193712114,-8.44964501499993,0 115.1938994970001,-8.449694652999938,0 115.193904477,-8.449698586999943,0 115.1939059170001,-8.449701666999943,0 115.1939023910001,-8.449710182999979,0 115.1938657720001,-8.449794160999943,0 115.1938375030001,-8.449858993999953,0 115.1937970060001,-8.449951867999971,0 115.1937966600001,-8.449952663999966,0 115.1937950780001,-8.449956292999957,0 115.1937458990001,-8.450069074999931,0 115.193714956,-8.450140038999962,0 115.193643358,-8.45030423299994,0 115.193643242,-8.450304508999977,0 115.1936207680001,-8.450361141999963,0 115.1935978780001,-8.45041882299995,0 115.1935563750001,-8.45052342799994,0 115.1935562330001,-8.450523823999958,0 115.193478968,-8.450759004999952,0 115.193409544,-8.450982199999942,0 115.193409276,-8.45098330999997,0 115.1933768990001,-8.451167380999948,0 115.193376764,-8.451168742999926,0 115.193374198,-8.451285801999973,0 115.1933742100001,-8.451286382999967,0 115.193388537,-8.451553697999941,0 115.1934044720001,-8.451910658999964,0 115.19340646,-8.451944135999952,0 115.193410468,-8.452011618999961,0 115.193426055,-8.452273835999961,0 115.193429225,-8.452426063999951,0 115.1934168830001,-8.452609689999974,0 115.193388732,-8.452851942999928,0 115.1933140110001,-8.453158977999976,0 115.1932957370001,-8.453234060999932,0 115.1932863110001,-8.45327279299994,0 115.1932187100001,-8.453504917999965,0 115.193176178,-8.453607157999954,0 115.1930752650001,-8.453785834999962,0 115.1930366180001,-8.453854263999972,0 115.1930364050001,-8.453854662999959,0 115.192970797,-8.453985773999932,0 115.1929478080001,-8.454031713999939,0 115.1929207820001,-8.454085715999952,0 115.1928419750001,-8.454227273999948,0 115.1928414680001,-8.454228345999979,0 115.1927988040001,-8.45433626199997,0 115.1927264510001,-8.454519281999978,0 115.1926780330001,-8.454641760999948,0 115.1926779360001,-8.454642016999969,0 115.192563575,-8.454963817999953,0 115.192510057,-8.455078578999974,0 115.1924701600001,-8.455164128999968,0 115.192435389,-8.455238676999954,0 115.1923979710001,-8.455318904999956,0 115.1923976730001,-8.455319620999944,0 115.1923974330001,-8.455320379999932,0 115.1923899650001,-8.455348208999965,0 115.1922731350001,-8.455783614999973,0 115.192272955,-8.455784282999957,0 115.1922728320001,-8.455784741999935,0 115.1922636700001,-8.455820452999944,0 115.192213924,-8.456015099999945,0 115.1922057160001,-8.456047210999941,0 115.1921957320001,-8.456086278999976,0 115.1921860210001,-8.456121487999951,0 115.192180902,-8.456140049999931,0 115.1921807230001,-8.456140693999942,0 115.1921734910001,-8.456166909999979,0 115.1921445280001,-8.45621465499994,0 115.1920958520001,-8.456261765999955,0 115.1919879500001,-8.456356794999977,0 115.1919876640001,-8.456357054999955,0 115.1919614730001,-8.456382184999939,0 115.1919487,-8.456394451999927,0 115.1919482430001,-8.456394875999933,0 115.1919475950001,-8.45639549699996,0 115.1919326880001,-8.456409801999939,0 115.1919311950001,-8.45641123799993,0 115.1919356950001,-8.456414425999981,0 115.1918714860001,-8.456476819999978,0 115.1918303530001,-8.456530379999947,0 115.191783439,-8.456599724999933,0 115.191750941,-8.456673867999939,0 115.1917505790001,-8.456674798999927,0 115.1917398950001,-8.456708078999952,0 115.1917397870001,-8.456708416999959,0 115.19172358,-8.456758915999956,0 115.1917235010001,-8.456759174999945,0 115.1917215510001,-8.456765947999941,0 115.1917299520001,-8.456769579999957,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<description>{&quot;OBJECTID&quot;:&quot;1407&quot;,&quot;NAMOBJ&quot;:&quot;Jalur Hijau&quot;,&quot;NAMZON&quot;:&quot;Zona Ruang Terbuka Hijau&quot;,&quot;KODZON&quot;:&quot;RTH&quot;,&quot;NAMSZN&quot;:&quot;Jalur Hijau&quot;,&quot;KODSZN&quot;:&quot;RTH-8&quot;,&quot;JNSRPR&quot;:&quot;Zona Lindung&quot;,&quot;KODEWP&quot;:&quot;I&quot;,&quot;KODSWP&quot;:&quot;A&quot;,&quot;KODBLK&quot;:&quot;2&quot;,&quot;KODSBL&quot;:&quot;Tidak Ada&quot;,&quot;WADMPR&quot;:&quot;Provinsi Bali&quot;,&quot;WADMKK&quot;:&quot;Kabupaten Badung&quot;,&quot;WADMKC&quot;:&quot;Kecamatan Mengwi&quot;,&quot;WADMKD&quot;:&quot;Desa Kuwum&quot;,&quot;KKOP_1&quot;:&quot;Tidak Ada&quot;,&quot;LP2B_2&quot;:&quot;Tidak Ada&quot;,&quot;KRB_03&quot;:&quot;Tidak Ada&quot;,&quot;TOD_04&quot;:&quot;Tidak Ada&quot;,&quot;TEB_05&quot;:&quot;Tidak Ada&quot;,&quot;PUSLIT&quot;:&quot;Tidak Ada&quot;,&quot;CAGBUD&quot;:&quot;Tidak Ada&quot;,&quot;RESAIR&quot;:&quot;Tidak Ada&quot;,&quot;KSMPDN&quot;:&quot;Tidak Ada&quot;,&quot;HANKAM&quot;:&quot;Tidak Ada&quot;,&quot;KKARST&quot;:&quot;Tidak Ada&quot;,&quot;PTBGMB&quot;:&quot;Tidak Ada&quot;,&quot;MGRSAT&quot;:&quot;Tidak Ada&quot;,&quot;RDBUMI&quot;:&quot;Tidak Ada&quot;,&quot;TPZ_00&quot;:&quot;Tidak Ada&quot;,&quot;REMARK&quot;:&quot;Tidak Ada&quot;,&quot;NOTHPR&quot;:&quot;Peraturan Bupati Badung Nomor 34 Tahun 2022 tentang Rencana Detail Tata Ruang Wilayah Perencanaan Mengwi Tahun 2022-2042&quot;}</description>
</Placemark>
<Placemark>
<visibility>0</visibility>
<styleUrl>#m_ylw-pushpin71</styleUrl>
<MultiGeometry>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
115.1864265180001,-8.459675162999929,0 115.186426639,-8.459578160999968,0 115.1863972260001,-8.459886844999971,0 115.1863691890001,-8.460181064999972,0 115.1863595950001,-8.460281727999927,0 115.186300531,-8.460901551999939,0 115.1862609530001,-8.461316888999932,0 115.1862605250001,-8.461321348999945,0 115.1862232120001,-8.461712897999973,0 115.1862059600001,-8.461893950999979,0 115.1861730530001,-8.462239271999977,0 115.1861636030001,-8.462338834999969,0 115.186133046,-8.46265976799998,0 115.1861329980001,-8.462660265999943,0 115.186130742,-8.462683918999971,0 115.1861065940001,-8.462937057999966,0 115.18609833,-8.463023780999947,0 115.1860917280001,-8.463093078999975,0 115.1860854580001,-8.463158909999947,0 115.186003666,-8.464017564999949,0 115.1859928010001,-8.464131321999957,0 115.1859559620001,-8.46433895499996,0 115.1859255380001,-8.464510538999946,0 115.1859122720001,-8.464585340999975,0 115.1858941510001,-8.464687528999946,0 115.1858917770001,-8.464700920999974,0 115.185886629,-8.464729949999935,0 115.185856058,-8.46490235899995,0 115.185851487,-8.464951329999963,0 115.185836255,-8.465057654999953,0 115.185797521,-8.465328070999931,0 115.185759661,-8.465592349999952,0 115.185749941,-8.465660217999925,0 115.1857420290001,-8.465715441999976,0 115.1857064000001,-8.465875752999978,0 115.1856931670001,-8.465935275999925,0 115.185672349,-8.466028955999946,0 115.1856615600001,-8.466077628999926,0 115.1856569350001,-8.466122346999953,0 115.185654866,-8.466142359999935,0 115.1856543480001,-8.466147368999941,0 115.1856530120001,-8.466160295999941,0 115.1856504130001,-8.46618551399996,0 115.1856253970001,-8.466428267999959,0 115.1856047670001,-8.466628841999977,0 115.1855900720001,-8.466771335999965,0 115.185575735,-8.466910313999961,0 115.1855752720001,-8.46691479499998,0 115.185575788,-8.466916782999931,0 115.1855780930001,-8.466920227999935,0 115.1855782980001,-8.466920345999938,0 115.1855816030001,-8.466922231999945,0 115.185583628,-8.466922606999958,0 115.185659095,-8.466923860999941,0 115.185721324,-8.466928819999964,0 115.1857313270001,-8.466929619999974,0 115.1858539560001,-8.466950521999934,0 115.1860552210001,-8.466998918999934,0 115.1861625030001,-8.467019482999945,0 115.186204563,-8.467024769999966,0 115.1862334470001,-8.467028396999979,0 115.1862737120001,-8.46703281899994,0 115.1862808410001,-8.467033596999954,0 115.186278568,-8.467052360999958,0 115.1862772110001,-8.467061537999939,0 115.186275172,-8.467061315999956,0 115.186274689,-8.46706125999998,0 115.186253415,-8.467058941999937,0 115.1862300930001,-8.467056404999937,0 115.1862042070001,-8.467053131999933,0 115.186158029,-8.467047297999954,0 115.1860491790001,-8.467026458999953,0 115.18584821,-8.466978161999975,0 115.1858058560001,-8.466970940999943,0 115.185727752,-8.466957624999964,0 115.185657693,-8.466952050999964,0 115.185610052,-8.466951284999936,0 115.185594648,-8.466951036999944,0 115.1855903600001,-8.466950964999967,0 115.1855809000001,-8.466950802999975,0 115.185580195,-8.466950791999977,0 115.185576523,-8.466951499999936,0 115.185573445,-8.466953559999979,0 115.185572544,-8.46695478099997,0 115.1855723140001,-8.466955092999967,0 115.185571027,-8.466958525999928,0 115.1855706150001,-8.466963009999972,0 115.185565545,-8.467018328999927,0 115.1855627440001,-8.467048889999944,0 115.1855550920001,-8.467132364999941,0 115.1855314930001,-8.467389892999961,0 115.1855173800001,-8.467543862999946,0 115.185516655,-8.467551778999962,0 115.185516943,-8.467553949999967,0 115.185517834,-8.467555943999969,0 115.1855190970001,-8.467557665999948,0 115.1855207380001,-8.46755911799994,0 115.1855226800001,-8.467560033999973,0 115.1855238500001,-8.467560280999976,0 115.1855248500001,-8.46756049399994,0 115.185663481,-8.467549754999936,0 115.1856713130001,-8.467549148999979,0 115.1856987850001,-8.467547020999973,0 115.1858433740001,-8.467547691999926,0 115.1858693520001,-8.467547812999953,0 115.185893422,-8.467548151999949,0 115.1861085720001,-8.467551184999934,0 115.186119207,-8.467551881999952,0 115.1861798360001,-8.467555843999946,0 115.186219778,-8.467558461999943,0 115.186220174,-8.467558487999952,0 115.1864817100001,-8.467575595999961,0 115.186542808,-8.467579592999925,0 115.186593171,-8.467582337999943,0 115.1868854380001,-8.467598267999961,0 115.1869735470001,-8.467603107999935,0 115.1870077750001,-8.467593142999931,0 115.187021154,-8.467586855999969,0 115.1870353580001,-8.467580182999939,0 115.187040023,-8.467577989999938,0 115.187047505,-8.467572922999977,0 115.187069509,-8.467558020999945,0 115.1870911860001,-8.467537761999949,0 115.1870955110001,-8.467533719999949,0 115.1871072270001,-8.467518938999945,0 115.1871185220001,-8.467503953999937,0 115.187138932,-8.467462189999935,0 115.1871515260001,-8.46742863999998,0 115.187155263,-8.467418682999948,0 115.1871579680001,-8.467408658999943,0 115.187167366,-8.46737382699996,0 115.1871751330001,-8.467328030999965,0 115.1871759630001,-8.467320623999967,0 115.1871760470001,-8.467319870999972,0 115.187176472,-8.46731385399994,0 115.18717829,-8.467288122999946,0 115.187178452,-8.46725629599996,0 115.1871737770001,-8.467186334999951,0 115.187173761,-8.467185306999966,0 115.1871731980001,-8.467148762999955,0 115.187173471,-8.467081289999953,0 115.1871730850001,-8.467046674999949,0 115.1871737350001,-8.467016632999957,0 115.187174805,-8.466967047999958,0 115.1871872480001,-8.466867858999933,0 115.187224202,-8.466748262999943,0 115.187242222,-8.466624868999929,0 115.1872597500001,-8.466534985999942,0 115.1872609430001,-8.466528868999944,0 115.187261957,-8.466523214999938,0 115.187289619,-8.466368923999937,0 115.187293519,-8.466272851999975,0 115.1873092740001,-8.465977257999953,0 115.1873194870001,-8.465555536999943,0 115.1873197350001,-8.465545073999976,0 115.187322095,-8.465446261999944,0 115.1873265850001,-8.465399604999959,0 115.187353421,-8.465120910999929,0 115.1873886540001,-8.464956306999966,0 115.1873936830001,-8.464932810999926,0 115.1874067750001,-8.464910003999933,0 115.187446675,-8.464840494999976,0 115.1874710650001,-8.464797998999927,0 115.187479065,-8.464784058999953,0 115.1874852190001,-8.464785068999959,0 115.1875114330001,-8.464789349999933,0 115.1874999410001,-8.464823429999967,0 115.187533904,-8.464829345999931,0 115.1875196740001,-8.464854170999956,0 115.1875004320001,-8.464887746999977,0 115.1874601280001,-8.464958065999951,0 115.187422928,-8.46513162499997,0 115.1874035840001,-8.465332456999931,0 115.1874011270001,-8.465357961999928,0 115.1874010470001,-8.465358790999971,0 115.1874005020001,-8.465364456999964,0 115.1873922360001,-8.465450383999951,0 115.1873918930001,-8.465464693999934,0 115.1873918610001,-8.465465997999956,0 115.1873899840001,-8.46554406499996,0 115.187379498,-8.465980019999961,0 115.1873636600001,-8.466276161999929,0 115.1873596,-8.466376473999958,0 115.187329995,-8.466541666999944,0 115.187311504,-8.466636580999932,0 115.187292865,-8.466763674999982,0 115.187256219,-8.466882553999937,0 115.187245016,-8.466972074999944,0 115.187242673,-8.467088491999959,0 115.187244027,-8.467183499999976,0 115.1872492910001,-8.467262454999968,0 115.1872448510001,-8.467316557999936,0 115.1872349460001,-8.467369936999944,0 115.1872196800001,-8.467422047999946,0 115.1871992120001,-8.467472359999931,0 115.187180882,-8.467506906999972,0 115.1871737460001,-8.467520354999976,0 115.187166507,-8.467531119999933,0 115.1871442800001,-8.467564171999982,0 115.1871209330001,-8.467611503999933,0 115.1871192040001,-8.467616648999979,0 115.1871119140001,-8.467638337999972,0 115.187104125,-8.467661509999971,0 115.1871025740001,-8.467669561999969,0 115.1870941540001,-8.467713291999928,0 115.1871157320001,-8.468142628999942,0 115.1870392940001,-8.468852927999933,0 115.1872040530001,-8.468884665999951,0 115.1874694180001,-8.46889990699998,0 115.1875082570001,-8.468898353999975,0 115.187537944,-8.468897165999977,0 115.187562819,-8.468896172999962,0 115.1875958200001,-8.468894855999963,0 115.1876491830001,-8.468892719999928,0 115.187820018,-8.468885893999925,0 115.1878178170001,-8.468881456999952,0 115.187662336,-8.468887669999958,0 115.1876490000001,-8.468888202999949,0 115.1875956370001,-8.468890338999927,0 115.187537763,-8.46889264899994,0 115.1874694600001,-8.468895379999935,0 115.1872046110001,-8.468880168999931,0 115.1870442530001,-8.468849277999936,0 115.1871200820001,-8.468144183999925,0 115.187120208,-8.46814341399994,0 115.1871202370001,-8.468143109999971,0 115.187120272,-8.468142628999942,0 115.187120258,-8.468142403999934,0 115.1871202210001,-8.468141842999955,0 115.187098717,-8.467713609999976,0 115.1871085280001,-8.46766265499997,0 115.18711622,-8.467639771999927,0 115.187125142,-8.467613225999969,0 115.1871482190001,-8.467566439999928,0 115.1871775200001,-8.467522870999971,0 115.18717772,-8.467522540999937,0 115.187203227,-8.467474471999935,0 115.1872034200001,-8.467474056999947,0 115.1872239180001,-8.46742366999996,0 115.187224039,-8.467423313999973,0 115.187239305,-8.467371202999971,0 115.1872394110001,-8.467370757999959,0 115.1872493200001,-8.467317360999971,0 115.1872493760001,-8.467316924999977,0 115.1872538160001,-8.467262821999952,0 115.187253831,-8.467262453999979,0 115.1872538220001,-8.467262154999958,0 115.1872485660001,-8.467183324999951,0 115.1872472150001,-8.467088491999959,0 115.187249551,-8.466972398999928,0 115.1872606750001,-8.466883505999931,0 115.187297207,-8.466765001999931,0 115.187297348,-8.466764393999938,0 115.1873159800001,-8.46663734699996,0 115.1873344600001,-8.466542493999953,0 115.187364071,-8.466377263999959,0 115.187364137,-8.466376655999966,0 115.1873681970001,-8.466276375999939,0 115.187384036,-8.46598019399994,0 115.187396399,-8.465466206999963,0 115.1873964010001,-8.465466105999951,0 115.1873967720001,-8.465450648999933,0 115.187405022,-8.465364887999954,0 115.1874050480001,-8.465364615999931,0 115.1874056470001,-8.465358392999974,0 115.187427423,-8.465132316999927,0 115.187464422,-8.464959696999927,0 115.1875043760001,-8.464889986999935,0 115.1875236180001,-8.464856411999961,0 115.187537848,-8.464831586999935,0 115.187538172,-8.464830891999952,0 115.187538376,-8.464830129999939,0 115.1875384450001,-8.464829345999931,0 115.187538376,-8.464828560999933,0 115.187538171,-8.464827799999966,0 115.187537837,-8.464827085999957,0 115.1875373830001,-8.464826439999968,0 115.1875368230001,-8.464825881999957,0 115.1875361760001,-8.464825430999952,0 115.1875354580001,-8.464825096999959,0 115.1875346910001,-8.464824891999967,0 115.1875059280001,-8.464819882999961,0 115.187515737,-8.464790788999949,0 115.1875159040001,-8.464790135999976,0 115.187515973,-8.464789349999933,0 115.1875159040001,-8.464788564999935,0 115.1875157000001,-8.464787803999968,0 115.1875153650001,-8.464787089999959,0 115.1875149100001,-8.46478644299998,0 115.1875143510001,-8.464785886999948,0 115.187513703,-8.464785435999943,0 115.187512985,-8.464785101999951,0 115.1875121940001,-8.464784893999934,0 115.187485957,-8.464780606999966,0 115.1874798020001,-8.464779598999939,0 115.187479065,-8.464779538999949,0 115.1874782760001,-8.464779606999969,0 115.1874775120001,-8.464779810999971,0 115.1874767940001,-8.464780144999963,0 115.1874761470001,-8.464780596999958,0 115.187475586,-8.464781153999979,0 115.1874751280001,-8.464781807999941,0 115.187442732,-8.464838250999946,0 115.1873897410001,-8.464930568999932,0 115.1873894160001,-8.464931265999951,0 115.1873892430001,-8.46493186999993,0 115.1873489650001,-8.465120046999971,0 115.1873489010001,-8.465120479999939,0 115.187322095,-8.465398864999941,0 115.1873220650001,-8.46539917399997,0 115.1873175750001,-8.465445831999943,0 115.187317555,-8.465446154999938,0 115.1873152060001,-8.465544509999972,0 115.1873151950001,-8.465544966999971,0 115.1873149470001,-8.465555428999949,0 115.1873047360001,-8.465977095999961,0 115.187288983,-8.466272640999932,0 115.1872850950001,-8.466368437999961,0 115.1872564800001,-8.466528040999947,0 115.187237747,-8.466624103999948,0 115.1872197580001,-8.466747269999928,0 115.1871829080001,-8.466866528999958,0 115.1871827600001,-8.466867185999945,0 115.1871702990001,-8.466966488999958,0 115.1871702650001,-8.466966950999961,0 115.187169195,-8.467016534999971,0 115.1871685450001,-8.467046659999937,0 115.1871689300001,-8.467081322999945,0 115.187168656,-8.467148779999945,0 115.1871692420001,-8.467186519999927,0 115.1871739110001,-8.467256436999946,0 115.1871737500001,-8.467287947999978,0 115.1871715230001,-8.467319467999971,0 115.187170634,-8.467327398999942,0 115.1871629240001,-8.467372866999938,0 115.1871509350001,-8.467417295999951,0 115.187134751,-8.46746041199998,0 115.187114629,-8.467501587999948,0 115.1871036460001,-8.467516159999946,0 115.1870921560001,-8.467530654999962,0 115.187066659,-8.467554483999947,0 115.1870439410001,-8.467569870999966,0 115.18704313,-8.467569493999974,0 115.187041602,-8.467569085999969,0 115.1870400240001,-8.46756894899994,0 115.1870384460001,-8.467569086999958,0 115.1870369180001,-8.467569493999974,0 115.1870361480001,-8.467569813999944,0 115.187004545,-8.467584662999968,0 115.1869724940001,-8.467593993999969,0 115.1868859360001,-8.467589239999938,0 115.1865433200001,-8.467570565999949,0 115.1862207720001,-8.46754946599998,0 115.1862203760001,-8.467549439999971,0 115.1862203380001,-8.467549436999946,0 115.186180432,-8.467546821999974,0 115.1861198030001,-8.46754285999998,0 115.186109169,-8.467542162999962,0 115.1861087000001,-8.467542142999946,0 115.1858694370001,-8.467538770999965,0 115.1856988070001,-8.467537978999928,0 115.1856980810001,-8.467538004999938,0 115.1856627770001,-8.467540740999937,0 115.1855257540001,-8.467551390999972,0 115.1855405370001,-8.467390713999976,0 115.185564136,-8.467133186999945,0 115.1855717870001,-8.467049712999938,0 115.185574588,-8.467019150999931,0 115.1855800660001,-8.466959387999964,0 115.1855804590001,-8.466955345999963,0 115.1855805930001,-8.466955319999954,0 115.185594572,-8.466955556999949,0 115.18565747,-8.466956568999933,0 115.185727186,-8.466962114999944,0 115.18580509,-8.466975395999953,0 115.185846651,-8.466982445999975,0 115.185847143,-8.466982560999952,0 115.1858474430001,-8.466982621999932,0 115.1858481950001,-8.466982743999949,0 115.1860482180001,-8.467030875999967,0 115.1861572060001,-8.467051744999935,0 115.186157458,-8.467051783999977,0 115.1862036360001,-8.467057616999966,0 115.186229561,-8.467060893999928,0 115.1862529220001,-8.467063435999933,0 115.1862741860001,-8.467065753999975,0 115.1862745630001,-8.467065796999975,0 115.1862746690001,-8.467065808999962,0 115.186276718,-8.467066031999934,0 115.186277212,-8.467066057999943,0 115.186278,-8.46706599099997,0 115.1862787650001,-8.467065785999978,0 115.186279482,-8.467065451999929,0 115.1862801300001,-8.46706500099998,0 115.1862806900001,-8.467064443999959,0 115.1862811440001,-8.46706379699998,0 115.1862814790001,-8.46706308399996,0 115.1862816940001,-8.467062258999931,0 115.1862830680001,-8.467052960999979,0 115.18628535,-8.467034138999963,0 115.186285382,-8.467033597999944,0 115.1862853130001,-8.467032812999946,0 115.1862851090001,-8.467032049999943,0 115.1862847740001,-8.46703133699998,0 115.18628432,-8.46703069199998,0 115.186283759,-8.467030134999959,0 115.1862831120001,-8.467029682999964,0 115.1862823940001,-8.467029348999972,0 115.1862816300001,-8.46702914499997,0 115.186281385,-8.467029109999942,0 115.1862813370001,-8.467029103999948,0 115.1862742090001,-8.467028324999944,0 115.1862339810001,-8.467023907999931,0 115.1862051320001,-8.467020284999933,0 115.18616322,-8.467015015999948,0 115.1860561780001,-8.466994498999952,0 115.1858555130001,-8.466946259999929,0 115.1858550200001,-8.466946137999969,0 115.1858547370001,-8.466946069999949,0 115.185853961,-8.466945968999937,0 115.1857320930001,-8.466925162999928,0 115.1857316910001,-8.466925113999935,0 115.1857216870001,-8.466924313999925,0 115.185659458,-8.46691935399997,0 115.1856591710001,-8.466919340999937,0 115.185584077,-8.466918092999947,0 115.1855843110001,-8.466915677999964,0 115.185599106,-8.466772259999971,0 115.185613801,-8.466629763999947,0 115.185634432,-8.466429188999939,0 115.185659447,-8.466186436999976,0 115.1856594990001,-8.46618592599998,0 115.1856620460001,-8.466161218999957,0 115.185663899,-8.46614328499993,0 115.185670541,-8.466079071999957,0 115.185681217,-8.466030906999947,0 115.1857020350001,-8.465937228999962,0 115.1857152670001,-8.465877705999958,0 115.1857155070001,-8.465876622999929,0 115.1857508960001,-8.465717394999956,0 115.1857509720001,-8.465717011999971,0 115.185751019,-8.465716718999943,0 115.1857589320001,-8.46566149399996,0 115.18575894,-8.46566143299998,0 115.1857686530001,-8.465593625999929,0 115.185806496,-8.465329453999971,0 115.185806511,-8.465329346999965,0 115.1858452460001,-8.465058931999977,0 115.185860477,-8.46495260699993,0 115.185860529,-8.464952165999932,0 115.185865067,-8.464903559999925,0 115.1859007190001,-8.464702492999947,0 115.185921215,-8.464586912999948,0 115.185934425,-8.464512425999942,0 115.1859344810001,-8.464512110999976,0 115.1859649050001,-8.464340525999944,0 115.1859708540001,-8.464306995999948,0 115.1860017450001,-8.464132892999942,0 115.1860018420001,-8.464132176999954,0 115.186012707,-8.464018419999945,0 115.1860944990001,-8.46315975999994,0 115.1861007700001,-8.463093931999936,0 115.186107371,-8.463024633999964,0 115.1861075280001,-8.463022992999981,0 115.1861156340001,-8.462937910999926,0 115.186139783,-8.462684772999978,0 115.1861420880001,-8.462660620999941,0 115.1861726440001,-8.46233968699994,0 115.1861820940001,-8.462240123999948,0 115.1862150010001,-8.461894805999975,0 115.186232192,-8.461714403999963,0 115.1862322540001,-8.46171375199998,0 115.1862695660001,-8.461322204999931,0 115.1862695990001,-8.461321855999927,0 115.1862699940001,-8.461317744999974,0 115.186309571,-8.460902406999935,0 115.1863686370001,-8.46028258299998,0 115.1863782290001,-8.460181919999968,0 115.1863988670001,-8.459965352999973,0 115.1864062670001,-8.459887691999938,0 115.1864265180001,-8.459675162999929,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
115.187594955,-8.460866505999945,0 115.187590115,-8.460866365999948,0 115.1875926030001,-8.460873713999945,0 115.1876137820001,-8.460936029999971,0 115.187631892,-8.460989320999943,0 115.1876745860001,-8.461115168999982,0 115.18772746,-8.461271030999967,0 115.187727472,-8.461271067999974,0 115.187727481,-8.461271093999926,0 115.187763216,-8.461376447999953,0 115.1877753380001,-8.461426599999982,0 115.1877753480001,-8.461426635999942,0 115.187784371,-8.461463954999942,0 115.187789295,-8.461484226999971,0 115.1877979650001,-8.461520062999966,0 115.1878074700001,-8.461616912999943,0 115.1878174010001,-8.461718378999933,0 115.187820803,-8.461758981999935,0 115.1878365610001,-8.461944984999946,0 115.187838453,-8.461967035999976,0 115.187838474,-8.461967277999975,0 115.1878384820001,-8.46196737899993,0 115.1878391140001,-8.461974734999956,0 115.1878582290001,-8.462194208999961,0 115.187856957,-8.462258651999946,0 115.1878549180001,-8.462357801999929,0 115.187852353,-8.462380912999947,0 115.1878377970001,-8.462512199999935,0 115.1878270990001,-8.462608789999933,0 115.18782334,-8.462642749999929,0 115.1878209130001,-8.462664434999965,0 115.1878116820001,-8.462812989999975,0 115.1878125940001,-8.462874820999957,0 115.187815311,-8.46306257599997,0 115.1878180780001,-8.463254402999951,0 115.1878187440001,-8.463300468999932,0 115.187819439,-8.463348598999971,0 115.1878193590001,-8.463365051999972,0 115.1878190150001,-8.463438538999981,0 115.1878028640001,-8.463498390999973,0 115.187792486,-8.463494382999954,0 115.187784628,-8.46349134899998,0 115.187799559,-8.46343591599998,0 115.187799969,-8.46334868799994,0 115.1877922160001,-8.462812541999938,0 115.187795335,-8.462762384999962,0 115.1877968480001,-8.462738066999975,0 115.187797612,-8.462725779999971,0 115.187801527,-8.462662807999948,0 115.1878288170001,-8.462416486999928,0 115.1878304270001,-8.462401943999964,0 115.1878328380001,-8.462380180999958,0 115.1878354590001,-8.46235653399998,0 115.1878386880001,-8.462194834999934,0 115.18781716,-8.461946611999963,0 115.1878153150001,-8.461924548999946,0 115.1878138090001,-8.461906761999956,0 115.187803891,-8.461789361999934,0 115.1877979980001,-8.46172009299994,0 115.187788425,-8.461622607999971,0 115.1877787010001,-8.461523313999976,0 115.1877726790001,-8.461498338999945,0 115.1877444720001,-8.461381875999962,0 115.1877272600001,-8.461331174999941,0 115.187679769,-8.46119129799996,0 115.1876438740001,-8.461085422999929,0 115.187638823,-8.461084660999973,0 115.1876395720001,-8.461086868999928,0 115.1876731580001,-8.461185933999957,0 115.1876754680001,-8.461192745999938,0 115.187700918,-8.46126770199993,0 115.1877229590001,-8.461332621999929,0 115.1877401070001,-8.461383135999938,0 115.1877682650001,-8.461499395999965,0 115.187774213,-8.461524062999956,0 115.1877839050001,-8.461623046999932,0 115.187787693,-8.461661617999937,0 115.1877920530001,-8.46170600399995,0 115.187793476,-8.461720500999945,0 115.187799366,-8.461789741999951,0 115.1878092850001,-8.461907138999948,0 115.1878107900001,-8.461924925999938,0 115.1878126350001,-8.46194699299997,0 115.187834143,-8.46219498399995,0 115.1878309240001,-8.462356235999948,0 115.1878283240001,-8.462379685999963,0 115.1878259130001,-8.462401448999969,0 115.1878243030001,-8.462415990999943,0 115.1877970050001,-8.462662419999958,0 115.1877923170001,-8.46273778699998,0 115.1877876840001,-8.462812261999943,0 115.1877876760001,-8.46281257399994,0 115.1877954290001,-8.463348683999925,0 115.1877954290001,-8.46334872999995,0 115.1877950210001,-8.463435308999976,0 115.187780241,-8.463490177999972,0 115.187780156,-8.463490563999926,0 115.1877800870001,-8.46349134899998,0 115.187780156,-8.463492133999978,0 115.18778036,-8.463492893999955,0 115.187780694,-8.463493608999954,0 115.1877811490001,-8.463494253999954,0 115.1877817090001,-8.463494811999965,0 115.1877823570001,-8.46349526299997,0 115.1877829860001,-8.46349556399997,0 115.187790844,-8.463498596999955,0 115.1877918620001,-8.463498990999938,0 115.1878012670001,-8.463502621999965,0 115.187802076,-8.463502842999958,0 115.1878028650001,-8.463502910999978,0 115.1878036530001,-8.463502843999947,0 115.187804418,-8.463502638999955,0 115.1878051350001,-8.463502304999963,0 115.187805783,-8.463501852999968,0 115.187806343,-8.463501295999947,0 115.187806797,-8.463500648999968,0 115.1878071320001,-8.463499936999938,0 115.1878072510001,-8.463499561999981,0 115.1878234000001,-8.463439710999978,0 115.1878234890001,-8.463439323999978,0 115.1878235570001,-8.46343855899994,0 115.1878239,-8.463365071999931,0 115.1878239790001,-8.463348584999949,0 115.187823285,-8.463300409999931,0 115.187822618,-8.463254337999956,0 115.187821824,-8.463199307999957,0 115.1878198510001,-8.463062510999976,0 115.1878171340001,-8.462874754999973,0 115.1878161940001,-8.462813774999972,0 115.187816221,-8.46281326899998,0 115.1878162290001,-8.462812922999944,0 115.1878162160001,-8.462812208999935,0 115.1878254380001,-8.462664832999963,0 115.1878266990001,-8.462653560999968,0 115.187827854,-8.462643247999949,0 115.1878316140001,-8.462609288999943,0 115.187842312,-8.46251269399994,0 115.187856868,-8.462381409999978,0 115.1878569040001,-8.462381083999958,0 115.1878594310001,-8.462358298999959,0 115.187859458,-8.462357894999968,0 115.1878614960001,-8.46225874199996,0 115.18786277,-8.46219425299995,0 115.1878627530001,-8.462193818999936,0 115.1878436390001,-8.461974345999977,0 115.1878429980001,-8.461966891999964,0 115.1878410850001,-8.461944602999949,0 115.187825329,-8.461758603999954,0 115.1878219230001,-8.461717970999928,0 115.187811989,-8.461616472999935,0 115.187802484,-8.461519622999958,0 115.1878024360001,-8.461519276999979,0 115.1878023790001,-8.461519003999967,0 115.1877972450001,-8.461497775999931,0 115.18779371,-8.461483163999958,0 115.1877887860001,-8.461462893999965,0 115.1877797620001,-8.461425577999933,0 115.1877676300001,-8.461375389999944,0 115.1877675180001,-8.461375000999965,0 115.1877317670001,-8.461269600999969,0 115.1876805630001,-8.461118659999954,0 115.1876788880001,-8.461113721999936,0 115.1876361950001,-8.460987873999954,0 115.1876180830001,-8.460934581999936,0 115.187602307,-8.460888160999957,0 115.1875969050001,-8.460872265999967,0 115.187594955,-8.460866505999945,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
115.187569272,-8.460865759999933,0 115.187564435,-8.460865619999936,0 115.18756497,-8.460867202999964,0 115.1875669220001,-8.460872967999933,0 115.18758261,-8.460905096999966,0 115.187576958,-8.460888459999978,0 115.187569272,-8.460865759999933,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</MultiGeometry>
<description>{&quot;OBJECTID&quot;:&quot;1408&quot;,&quot;NAMOBJ&quot;:&quot;Jalur Hijau&quot;,&quot;NAMZON&quot;:&quot;Zona Ruang Terbuka Hijau&quot;,&quot;KODZON&quot;:&quot;RTH&quot;,&quot;NAMSZN&quot;:&quot;Jalur Hijau&quot;,&quot;KODSZN&quot;:&quot;RTH-8&quot;,&quot;JNSRPR&quot;:&quot;Zona Lindung&quot;,&quot;KODEWP&quot;:&quot;I&quot;,&quot;KODSWP&quot;:&quot;A&quot;,&quot;KODBLK&quot;:&quot;3&quot;,&quot;KODSBL&quot;:&quot;Tidak Ada&quot;,&quot;WADMPR&quot;:&quot;Provinsi Bali&quot;,&quot;WADMKK&quot;:&quot;Kabupaten Badung&quot;,&quot;WADMKC&quot;:&quot;Kecamatan Mengwi&quot;,&quot;WADMKD&quot;:&quot;Desa Sembung&quot;,&quot;KKOP_1&quot;:&quot;Tidak Ada&quot;,&quot;LP2B_2&quot;:&quot;Tidak Ada&quot;,&quot;KRB_03&quot;:&quot;Tidak Ada&quot;,&quot;TOD_04&quot;:&quot;Tidak Ada&quot;,&quot;TEB_05&quot;:&quot;Tidak Ada&quot;,&quot;PUSLIT&quot;:&quot;Tidak Ada&quot;,&quot;CAGBUD&quot;:&quot;Tidak Ada&quot;,&quot;RESAIR&quot;:&quot;Tidak Ada&quot;,&quot;KSMPDN&quot;:&quot;Tidak Ada&quot;,&quot;HANKAM&quot;:&quot;Tidak Ada&quot;,&quot;KKARST&quot;:&quot;Tidak Ada&quot;,&quot;PTBGMB&quot;:&quot;Tidak Ada&quot;,&quot;MGRSAT&quot;:&quot;Tidak Ada&quot;,&quot;RDBUMI&quot;:&quot;Tidak Ada&quot;,&quot;TPZ_00&quot;:&quot;Tidak Ada&quot;,&quot;REMARK&quot;:&quot;Tidak Ada&quot;,&quot;NOTHPR&quot;:&quot;Peraturan Bupati Badung Nomor 34 Tahun 2022 tentang Rencana Detail Tata Ruang Wilayah Perencanaan Mengwi Tahun 2022-2042&quot;}</description>
</Placemark>
<Placemark>
<visibility>0</visibility>
<styleUrl>#m_ylw-pushpin71</styleUrl>
<MultiGeometry>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
115.1917299520001,-8.456769579999957,0 115.1917215510001,-8.456765947999941,0 115.1917212230001,-8.456767086999946,0 115.1916940660001,-8.45686139399993,0 115.191693976,-8.456861730999947,0 115.1916872080001,-8.456889190999959,0 115.191665767,-8.456976166999937,0 115.1916656440001,-8.456976750999956,0 115.191665551,-8.456977413999937,0 115.1916578730001,-8.457053255999938,0 115.1916539650001,-8.457105640999941,0 115.191645609,-8.457217713999967,0 115.1916325450001,-8.457304482999973,0 115.1916027560001,-8.457413353999925,0 115.1915886,-8.457442128999958,0 115.1915819300001,-8.45745569099995,0 115.1915747260001,-8.457467407999957,0 115.1915691270001,-8.457476518999954,0 115.1915683980001,-8.457478045999949,0 115.1915679890001,-8.457479568999929,0 115.191567908,-8.457480123999972,0 115.19155204,-8.457619935999958,0 115.1915492910001,-8.457646843999953,0 115.191530713,-8.457828527999936,0 115.1915142480001,-8.457945474999974,0 115.191454763,-8.458368001999929,0 115.191454686,-8.458368804999964,0 115.1914518960001,-8.458424159999936,0 115.1914427900001,-8.45851526499996,0 115.191435972,-8.458583499999975,0 115.191435927,-8.458584394999946,0 115.1914359450001,-8.458584941999959,0 115.1914360960001,-8.458587420999947,0 115.191432865,-8.458582993999926,0 115.191432737,-8.458582747999969,0 115.1914322670001,-8.458581928999934,0 115.1914191020001,-8.458551788999955,0 115.1914040040001,-8.458501094999974,0 115.191403869,-8.458500669999978,0 115.1914034980001,-8.458499848999963,0 115.191403044,-8.458499202999974,0 115.191402484,-8.458498644999963,0 115.1914018360001,-8.458498193999958,0 115.191401119,-8.458497859999966,0 115.191400355,-8.458497655999963,0 115.1913995660001,-8.458497587999943,0 115.19139924,-8.458497616999978,0 115.191398763,-8.458497658999931,0 115.1913648760001,-8.458503831999963,0 115.191364141,-8.458504030999961,0 115.1913634240001,-8.458504364999953,0 115.191362775,-8.458504815999959,0 115.191362215,-8.458505373999969,0 115.1913617610001,-8.458506018999969,0 115.1913614280001,-8.458506732999979,0 115.1913612220001,-8.458507492999956,0 115.1913611530001,-8.458508278999943,0 115.1913612220001,-8.458509063999941,0 115.1913613400001,-8.458509563999939,0 115.191378222,-8.458566315999974,0 115.19137831,-8.458566577999932,0 115.191378415,-8.458566840999936,0 115.1913940490001,-8.458602346999953,0 115.1913943080001,-8.458603083999947,0 115.1913944250001,-8.458603341999947,0 115.1913946450001,-8.458603796999967,0 115.1913949020001,-8.458604173999959,0 115.1913950960001,-8.458604445999981,0 115.1914434480001,-8.458671279999976,0 115.1914440720001,-8.458677764999948,0 115.1914441680001,-8.458678472999964,0 115.1914445790001,-8.458679994999954,0 115.191444776,-8.458680489999949,0 115.1914667410001,-8.458731083999965,0 115.191476982,-8.458786281999949,0 115.1914761910001,-8.458836536999968,0 115.191476071,-8.458844241999941,0 115.191473694,-8.458995431999938,0 115.191473176,-8.459026327999936,0 115.1914731910001,-8.459026947999973,0 115.191477713,-8.459101630999953,0 115.191477759,-8.45910213999997,0 115.1914838790001,-8.459154059999946,0 115.1914859000001,-8.459170893999953,0 115.1914859730001,-8.459171390999927,0 115.1914861600001,-8.459172212999931,0 115.1915128850001,-8.459269233999976,0 115.1915315110001,-8.45933701499996,0 115.191531735,-8.459337719999951,0 115.19154761,-8.45938117399993,0 115.191556611,-8.459405813999979,0 115.1915623330001,-8.459437341999944,0 115.191567928,-8.459485876999963,0 115.191568046,-8.459486906999928,0 115.1915644190001,-8.45957630099997,0 115.191562509,-8.459623331999978,0 115.1915611540001,-8.459656725999935,0 115.191559416,-8.459670539999934,0 115.1915553350001,-8.459703013999956,0 115.191550083,-8.459744789999945,0 115.1915500140001,-8.459745870999939,0 115.191549805,-8.459790092999981,0 115.1915498550001,-8.459791054999926,0 115.191558673,-8.459874979999938,0 115.1915587460001,-8.459875524999973,0 115.1915766420001,-8.459982577999938,0 115.191583945,-8.460036969999976,0 115.1915879400001,-8.460169212999972,0 115.1915760500001,-8.460413050999932,0 115.1915606890001,-8.460531149999952,0 115.191558686,-8.460546542999964,0 115.1915181510001,-8.460715410999967,0 115.1914448700001,-8.460963979999974,0 115.191444776,-8.460964322999928,0 115.191393442,-8.461167614999965,0 115.191391703,-8.461174487999926,0 115.1913912890001,-8.461175681999975,0 115.191387489,-8.461186661999932,0 115.19136701,-8.461245782999981,0 115.191366635,-8.46124726599993,0 115.1913507840001,-8.46135097399997,0 115.191350713,-8.461351583999942,0 115.191348649,-8.461376262999977,0 115.1913427720001,-8.461448102999952,0 115.1913427550001,-8.46144837099996,0 115.1913401380001,-8.461498755999969,0 115.1913339680001,-8.46154837399996,0 115.19132472,-8.461579865999965,0 115.191318957,-8.461599491999948,0 115.191298337,-8.461669627999981,0 115.1912981500001,-8.461670381999966,0 115.191265709,-8.46183078599995,0 115.1912656210001,-8.46183134599994,0 115.1912022380001,-8.462337116999947,0 115.1911512190001,-8.462715756999955,0 115.1911418960001,-8.462775268999962,0 115.1911329170001,-8.462832612999932,0 115.191132873,-8.462832892999927,0 115.191132055,-8.462838112999975,0 115.191131959,-8.462838730999977,0 115.19110675,-8.462999729999979,0 115.191096214,-8.463066978999962,0 115.1910931420001,-8.463085415999956,0 115.1910702370001,-8.46322287299995,0 115.1910590640001,-8.463289922999934,0 115.191034281,-8.463438639999936,0 115.1910038440001,-8.463628852999932,0 115.1909779240001,-8.463790840999934,0 115.1909190490001,-8.464085987999965,0 115.1908215640001,-8.464450401999954,0 115.1907364860001,-8.464787865999938,0 115.1907364240001,-8.464788125999974,0 115.1907255440001,-8.46483739699994,0 115.190717754,-8.464872686999968,0 115.1907000690001,-8.464952815999936,0 115.1906426740001,-8.465234161999945,0 115.1906169690001,-8.465296550999938,0 115.190569339,-8.465376814999956,0 115.1904982880001,-8.465464376999932,0 115.1904980520001,-8.465464680999958,0 115.190460827,-8.465514762999931,0 115.1904602610001,-8.465515620999952,0 115.190459644,-8.465516908999973,0 115.1904402920001,-8.465567238999938,0 115.190439845,-8.465568890999975,0 115.1904228830001,-8.465673072999948,0 115.1904160070001,-8.465715319999958,0 115.190409067,-8.465760519999947,0 115.1903710810001,-8.466007972999932,0 115.190367967,-8.466028272999949,0 115.1903572980001,-8.466066973999943,0 115.1903466320001,-8.466080911999939,0 115.1903355420001,-8.466086682999958,0 115.1903266960001,-8.466087146999939,0 115.1903079760001,-8.466088132999971,0 115.1900922020001,-8.466079287999946,0 115.189856982,-8.466069611999956,0 115.18985665,-8.466069603999927,0 115.1898184400001,-8.466069424999944,0 115.1898181380001,-8.466069428999958,0 115.1897696110001,-8.466070920999925,0 115.1897683130001,-8.46607105399994,0 115.1897679110001,-8.466071134999936,0 115.1897296840001,-8.466079632999936,0 115.1897285570001,-8.466079960999934,0 115.189727123,-8.466080627999929,0 115.1897259780001,-8.466081406999933,0 115.189698019,-8.466103756999928,0 115.1896968230001,-8.46610493299994,0 115.189695915,-8.466106224999976,0 115.1896952820001,-8.466107557999976,0 115.189677679,-8.466154073999974,0 115.1896772350001,-8.466155740999966,0 115.189670728,-8.466197848999968,0 115.1896146810001,-8.466562073999967,0 115.189598927,-8.466664436999963,0 115.1895783350001,-8.466779685999938,0 115.1895231960001,-8.467074312999955,0 115.1894901410001,-8.467250938999939,0 115.1894628860001,-8.467396561999976,0 115.189462745,-8.467397912999957,0 115.1894610390001,-8.467456629999958,0 115.1894598560001,-8.467497228999946,0 115.18945882,-8.467532891999952,0 115.1894588160001,-8.467533153999966,0 115.189458829,-8.467533634999938,0 115.189464175,-8.467633466999928,0 115.1894888750001,-8.468053947999977,0 115.189496134,-8.468177520999973,0 115.1894781860001,-8.468470640999954,0 115.189469686,-8.468609503999971,0 115.189456703,-8.468903184999931,0 115.1894503310001,-8.469047308999961,0 115.1894430650001,-8.469191608999949,0 115.1886951710001,-8.468985145999966,0 115.1884897460001,-8.468928438999967,0 115.1883265680001,-8.468883387999938,0 115.188326071,-8.468883279999943,0 115.1882050360001,-8.468866056999957,0 115.188204304,-8.468866012999968,0 115.188082258,-8.468870888999959,0 115.1880800820001,-8.468870974999959,0 115.187819837,-8.468881375999956,0 115.1878178170001,-8.468881456999952,0 115.187820018,-8.468885893999925,0 115.1880802640001,-8.468875492999928,0 115.1881971580001,-8.468870820999939,0 115.1882043940001,-8.468870531999926,0 115.1882087890001,-8.468871156999967,0 115.1883253550001,-8.468887743999971,0 115.1884885320001,-8.468932794999944,0 115.188693958,-8.468989502999932,0 115.189442833,-8.469196235999959,0 115.1894458070001,-8.469197056999974,0 115.1894458540001,-8.46919706999995,0 115.189451801,-8.469198711999979,0 115.1894520340001,-8.469194085999959,0 115.189459402,-8.469047733999957,0 115.189465775,-8.468903581999939,0 115.1894787540001,-8.468609977999961,0 115.1894868520001,-8.468477707999966,0 115.1894872510001,-8.468471191999981,0 115.1894896030001,-8.468432787999973,0 115.1895052310001,-8.468177529999934,0 115.189497941,-8.468053418999943,0 115.1894732420001,-8.467632962999971,0 115.189468518,-8.46754474599993,0 115.1894678980001,-8.467533153999966,0 115.1894682940001,-8.467519526999979,0 115.1894689330001,-8.46749749199995,0 115.189470117,-8.467456892999962,0 115.189471548,-8.467407585999979,0 115.1894718220001,-8.467398173999982,0 115.189480203,-8.467353393999929,0 115.189499068,-8.467252594999934,0 115.189532124,-8.467075969999939,0 115.189587274,-8.466781285999957,0 115.1896049930001,-8.466682110999955,0 115.18960789,-8.466665898999963,0 115.18961047,-8.46664913099994,0 115.1896236580001,-8.466563443999974,0 115.189679704,-8.466199220999954,0 115.189686195,-8.466157212999974,0 115.189694978,-8.466134001999933,0 115.1897037800001,-8.46611074499998,0 115.1897316630001,-8.466088456999955,0 115.1897698910001,-8.466079958999956,0 115.1898184180001,-8.466078466999932,0 115.189856607,-8.466078644999925,0 115.190091828,-8.466088321999962,0 115.1901803540001,-8.466091950999953,0 115.190308036,-8.466097184999967,0 115.1903271740001,-8.466096175999951,0 115.190337995,-8.466095607999932,0 115.1903393330001,-8.46609491199996,0 115.1903526310001,-8.466087992999974,0 115.1903655900001,-8.466071058999944,0 115.1903768640001,-8.466030159999946,0 115.1903800570001,-8.466009337999935,0 115.190418044,-8.465761885999939,0 115.190424978,-8.465716726999972,0 115.1904316910001,-8.46567547799998,0 115.1904318480001,-8.465674520999926,0 115.1904322390001,-8.465672114999961,0 115.190448799,-8.465570401999969,0 115.190468126,-8.465520141999946,0 115.1905053520001,-8.465470059999973,0 115.190536091,-8.465432176999968,0 115.19057682,-8.465381982999929,0 115.1906083610001,-8.465328831999955,0 115.1906251250001,-8.46530058299993,0 115.190646054,-8.465249781999944,0 115.1906514020001,-8.465236803999971,0 115.190708953,-8.464954686999931,0 115.190726624,-8.464874627999961,0 115.1907344130001,-8.464839337999933,0 115.1907452940001,-8.464790067999957,0 115.1908303550001,-8.464452664999953,0 115.190927901,-8.46408803099996,0 115.190980229,-8.463825705999966,0 115.190986862,-8.463792450999961,0 115.190989688,-8.463774791999981,0 115.191012812,-8.463630275999947,0 115.1910432440001,-8.463440090999939,0 115.1910680240001,-8.463291401999982,0 115.191079195,-8.46322435299993,0 115.1911021000001,-8.463086896999926,0 115.191105179,-8.463068413999963,0 115.1911157220001,-8.46300112299997,0 115.1911409310001,-8.462840124999957,0 115.191141849,-8.462834270999963,0 115.191141892,-8.462833991999958,0 115.191150869,-8.462776661999953,0 115.19115867,-8.462726861999954,0 115.1911602070001,-8.46271705099997,0 115.191167734,-8.462661190999938,0 115.1912112450001,-8.462338275999969,0 115.191274632,-8.461832464999929,0 115.1913070520001,-8.461672166999961,0 115.1913219380001,-8.46162153399996,0 115.1913276720001,-8.461602030999927,0 115.1913287310001,-8.461598424999977,0 115.191333436,-8.461582402999966,0 115.1913428900001,-8.461550209999928,0 115.1913484500001,-8.461505495999972,0 115.1913491910001,-8.461499533999927,0 115.191350261,-8.461478955999951,0 115.1913518240001,-8.461448837999967,0 115.191357699,-8.461377004999974,0 115.191359762,-8.461352333999969,0 115.1913755950001,-8.461248730999955,0 115.1913960730001,-8.461189608999973,0 115.1914004130001,-8.461177070999952,0 115.191402249,-8.461169821999931,0 115.1914535830001,-8.460966526999925,0 115.191526928,-8.460717740999939,0 115.191567629,-8.460548178999943,0 115.1915696950001,-8.460532311999941,0 115.1915851040001,-8.460413848999963,0 115.191597028,-8.460169299999961,0 115.1915930080001,-8.460036228999968,0 115.1915861650001,-8.459985269999947,0 115.191585624,-8.45998123499993,0 115.191567705,-8.459874039999931,0 115.1915649770001,-8.459848074999968,0 115.191558887,-8.459790113999929,0 115.1915590950001,-8.459745913999939,0 115.191563563,-8.459710362999942,0 115.191564346,-8.45970413699996,0 115.191565381,-8.459695895999971,0 115.1915684270001,-8.459671662999938,0 115.1915702120001,-8.459657471999947,0 115.191571583,-8.459623695999937,0 115.1915734940001,-8.459576666999965,0 115.1915771490001,-8.459486572999936,0 115.191576948,-8.459484842999927,0 115.1915713220001,-8.459436018999952,0 115.1915654100001,-8.459403444999964,0 115.1915561440001,-8.459378084999969,0 115.19154027,-8.459334628999954,0 115.1915216430001,-8.459266844999945,0 115.1914949180001,-8.459169820999932,0 115.1914928980001,-8.459152996999933,0 115.191486778,-8.459101086999965,0 115.1914822560001,-8.459026403999928,0 115.1914827740001,-8.458995577999929,0 115.1914851510001,-8.458844382999928,0 115.191485271,-8.458836677999955,0 115.191486077,-8.458785525999929,0 115.1914754850001,-8.458728434999955,0 115.191456345,-8.458684350999931,0 115.1914549070001,-8.458681038999941,0 115.191454644,-8.458680431999937,0 115.1914531120001,-8.458676902999969,0 115.1914425890001,-8.458662360999938,0 115.1913985780001,-8.458601536999936,0 115.191382576,-8.458565031999967,0 115.1913656940001,-8.458508278999943,0 115.1913995660001,-8.458502108999937,0 115.191399657,-8.458502402999954,0 115.191414828,-8.45855334099997,0 115.191424745,-8.458575948999965,0 115.191428534,-8.458584586999962,0 115.1914291720001,-8.458585470999935,0 115.1914366020001,-8.458595761999959,0 115.191446541,-8.458609525999975,0 115.1914463830001,-8.458606975999942,0 115.1914461880001,-8.458603767999932,0 115.1914460210001,-8.458601029999954,0 115.1914459300001,-8.458599542999934,0 115.191445009,-8.458584394999946,0 115.191451827,-8.458516160999977,0 115.191460955,-8.45842483499996,0 115.1914637560001,-8.458369257999948,0 115.191523241,-8.457946730999936,0 115.191539732,-8.457829611999955,0 115.1915583250001,-8.45764775899994,0 115.1915610680001,-8.457620900999927,0 115.1915715720001,-8.457528364999973,0 115.1915769320001,-8.45748113999997,0 115.191579193,-8.457477460999939,0 115.1915824700001,-8.457472127999949,0 115.19158614,-8.457466159999967,0 115.1915898980001,-8.457460046999927,0 115.191595826,-8.457447994999939,0 115.1915967550001,-8.457446105999963,0 115.1916112920001,-8.457416554999952,0 115.1916414450001,-8.457306353999968,0 115.191654639,-8.457218717999979,0 115.1916630210001,-8.457106308999926,0 115.191666918,-8.45705404499995,0 115.1916745860001,-8.456978321999941,0 115.191695995,-8.456891471999938,0 115.1916960520001,-8.456891248999966,0 115.1917027950001,-8.456863885999951,0 115.1917299520001,-8.456769579999957,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
115.1917505790001,-8.456674798999927,0 115.191750941,-8.456673867999939,0 115.191783439,-8.456599724999933,0 115.1918303530001,-8.456530379999947,0 115.1918714860001,-8.456476819999978,0 115.1919356950001,-8.456414425999981,0 115.1919311950001,-8.45641123799993,0 115.1918850630001,-8.456455499999947,0 115.1918843550001,-8.45645626299995,0 115.191876352,-8.456466121999938,0 115.1918102210001,-8.456547642999965,0 115.1918095990001,-8.456548509999948,0 115.1917819260001,-8.456592305999948,0 115.1917764000001,-8.456601052999929,0 115.191776222,-8.456601346999946,0 115.1917755330001,-8.456602830999941,0 115.1917534800001,-8.456665761999943,0 115.1917505790001,-8.456674798999927,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</MultiGeometry>
<description>{&quot;OBJECTID&quot;:&quot;1409&quot;,&quot;NAMOBJ&quot;:&quot;Jalur Hijau&quot;,&quot;NAMZON&quot;:&quot;Zona Ruang Terbuka Hijau&quot;,&quot;KODZON&quot;:&quot;RTH&quot;,&quot;NAMSZN&quot;:&quot;Jalur Hijau&quot;,&quot;KODSZN&quot;:&quot;RTH-8&quot;,&quot;JNSRPR&quot;:&quot;Zona Lindung&quot;,&quot;KODEWP&quot;:&quot;I&quot;,&quot;KODSWP&quot;:&quot;A&quot;,&quot;KODBLK&quot;:&quot;4&quot;,&quot;KODSBL&quot;:&quot;Tidak Ada&quot;,&quot;WADMPR&quot;:&quot;Provinsi Bali&quot;,&quot;WADMKK&quot;:&quot;Kabupaten Badung&quot;,&quot;WADMKC&quot;:&quot;Kecamatan Mengwi&quot;,&quot;WADMKD&quot;:&quot;Desa Sembung&quot;,&quot;KKOP_1&quot;:&quot;Tidak Ada&quot;,&quot;LP2B_2&quot;:&quot;Tidak Ada&quot;,&quot;KRB_03&quot;:&quot;Tidak Ada&quot;,&quot;TOD_04&quot;:&quot;Tidak Ada&quot;,&quot;TEB_05&quot;:&quot;Tidak Ada&quot;,&quot;PUSLIT&quot;:&quot;Tidak Ada&quot;,&quot;CAGBUD&quot;:&quot;Tidak Ada&quot;,&quot;RESAIR&quot;:&quot;Tidak Ada&quot;,&quot;KSMPDN&quot;:&quot;Tidak Ada&quot;,&quot;HANKAM&quot;:&quot;Tidak Ada&quot;,&quot;KKARST&quot;:&quot;Tidak Ada&quot;,&quot;PTBGMB&quot;:&quot;Tidak Ada&quot;,&quot;MGRSAT&quot;:&quot;Tidak Ada&quot;,&quot;RDBUMI&quot;:&quot;Tidak Ada&quot;,&quot;TPZ_00&quot;:&quot;Tidak Ada&quot;,&quot;REMARK&quot;:&quot;Tidak Ada&quot;,&quot;NOTHPR&quot;:&quot;Peraturan Bupati Badung Nomor 34 Tahun 2022 tentang Rencana Detail Tata Ruang Wilayah Perencanaan Mengwi Tahun 2022-2042&quot;}</description>
</Placemark>
<Placemark>
<visibility>0</visibility>
<styleUrl>#m_ylw-pushpin71</styleUrl>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
115.1947096670001,-8.447847185999933,0 115.19470732,-8.447847521999961,0 115.194704352,-8.447847944999978,0 115.1947023240001,-8.447848234999981,0 115.1946960160001,-8.447852185999977,0 115.1946917940001,-8.447858402999941,0 115.194690515,-8.447862724999936,0 115.1946247440001,-8.448085099999957,0 115.194588414,-8.448207921999938,0 115.1945831490001,-8.448221140999976,0 115.1945509120001,-8.448302115999979,0 115.1944479660001,-8.448541726999963,0 115.1943770190001,-8.44874477999997,0 115.194263954,-8.448981272999958,0 115.194212159,-8.449089607999952,0 115.1942098860001,-8.449094364999951,0 115.1942058320001,-8.44910284599996,0 115.1941802770001,-8.449155787999928,0 115.194174059,-8.449169566999956,0 115.1941682490001,-8.449182448999977,0 115.1941569210001,-8.449207559999934,0 115.1941388380001,-8.44924763299997,0 115.19413506,-8.449256004999938,0 115.1940735300001,-8.449392388999968,0 115.1940275300001,-8.449511042999973,0 115.193957079,-8.44967485799998,0 115.1939363150001,-8.449723136999978,0 115.193934236,-8.44972863299995,0 115.1939215880001,-8.449762087999943,0 115.1938843460001,-8.449860569999942,0 115.1938699840001,-8.449898550999933,0 115.1937881160001,-8.450086086999931,0 115.193771971,-8.450123062999978,0 115.1937618170001,-8.450146318999941,0 115.1937344190001,-8.450209078999933,0 115.193685241,-8.450321728999938,0 115.193604634,-8.450524770999948,0 115.193599023,-8.450538902999938,0 115.193572805,-8.45061871799993,0 115.1935317340001,-8.450743748999969,0 115.1935290710001,-8.450751855999954,0 115.193522235,-8.450772662999952,0 115.1934938520001,-8.45086396399995,0 115.193485202,-8.450891783999964,0 115.1934535940001,-8.45099344099998,0 115.193429568,-8.451129846999947,0 115.1934220630001,-8.451172457999974,0 115.1934209670001,-8.451222474999952,0 115.1934195900001,-8.451285343999928,0 115.1934339270001,-8.451551524999957,0 115.1934483260001,-8.451875525999981,0 115.1934497860001,-8.45190837499996,0 115.193456671,-8.452009154999928,0 115.193457285,-8.452018141999929,0 115.193460778,-8.452023673999975,0 115.193466003,-8.452027675999943,0 115.1934668470001,-8.452027843999929,0 115.193640327,-8.452062654999963,0 115.1936587590001,-8.452066354999943,0 115.193706203,-8.452075875999981,0 115.193819197,-8.452098555999953,0 115.193822648,-8.452099248999957,0 115.1939454330001,-8.452123892999964,0 115.1940168660001,-8.452138228999956,0 115.194083748,-8.452151651999941,0 115.1942067040001,-8.452186687999927,0 115.1946341790001,-8.45230849099994,0 115.1946809360001,-8.45232064399994,0 115.19470076,-8.452325796999958,0 115.1948574290001,-8.452366530999939,0 115.194868023,-8.452369285999964,0 115.1949088010001,-8.452379888999928,0 115.194948207,-8.452390129999969,0 115.195011699,-8.452406640999925,0 115.1951654180001,-8.452446599999973,0 115.1952120450001,-8.45245872199996,0 115.195273067,-8.452474592999977,0 115.1952826810001,-8.452477091999981,0 115.1952836900001,-8.45247735099997,0 115.1953299100001,-8.45248937599996,0 115.1954764870001,-8.452527504999978,0 115.1956389280001,-8.452568661999976,0 115.195786556,-8.45260613399995,0 115.1958078940001,-8.452606226999933,0 115.1958323900001,-8.452603812999939,0 115.195860809,-8.452595263999967,0 115.195875461,-8.452584213999955,0 115.1958833690001,-8.452573325999936,0 115.195887368,-8.452567818999967,0 115.19588864,-8.452564803999962,0 115.1958965780001,-8.452545975999953,0 115.1959102330001,-8.45251359599996,0 115.1959414090001,-8.452378690999979,0 115.1959977240001,-8.452135258999931,0 115.196066038,-8.451807723999934,0 115.1961232880001,-8.451563687999965,0 115.196131196,-8.451529978999929,0 115.196246801,-8.451144266999961,0 115.1962640490001,-8.45107156499995,0 115.1963481470001,-8.450717085999941,0 115.1964543510001,-8.450324366999951,0 115.1965650830001,-8.449938815999928,0 115.196569457,-8.449916058999975,0 115.196580895,-8.449855456999956,0 115.19664059,-8.44954514899996,0 115.196715947,-8.449167656999975,0 115.1967197390001,-8.449128173999952,0 115.1967563940001,-8.448746251999978,0 115.1967600000001,-8.448723495999957,0 115.1967600160001,-8.44872339799997,0 115.196766267,-8.448683827999957,0 115.1967964310001,-8.448492862999956,0 115.196797983,-8.448483035999971,0 115.196799293,-8.448474740999927,0 115.1968064570001,-8.448429390999934,0 115.196811912,-8.448388510999962,0 115.1968125090001,-8.44838404199993,0 115.1968096930001,-8.448377429999937,0 115.1968052330001,-8.448373093999976,0 115.196804549,-8.44837242899996,0 115.196594579,-8.448312890999944,0 115.1961906,-8.44820518399996,0 115.1961095400001,-8.448183567999934,0 115.1954903980001,-8.448022161999972,0 115.195011408,-8.447912297999949,0 115.1947096670001,-8.447847185999933,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
<innerBoundaryIs>
<LinearRing>
<coordinates>
115.194207246,-8.452177436999932,0 115.1942092040001,-8.452177994999943,0 115.1946365690001,-8.452299766999943,0 115.1947030550001,-8.45231704899993,0 115.1948703170001,-8.452360536999947,0 115.1949110950001,-8.452371138999979,0 115.1949505020001,-8.452381381999942,0 115.1950139930001,-8.452397891999965,0 115.1951677110001,-8.452437851999946,0 115.195214339,-8.452449973999933,0 115.1952753620001,-8.45246584399996,0 115.195284967,-8.452468340999928,0 115.195285976,-8.452468600999964,0 115.1952864380001,-8.452468721999935,0 115.1953322060001,-8.452480627999932,0 115.1954787420001,-8.452518746999942,0 115.1954787780001,-8.45251875699995,0 115.1956411690001,-8.452559899999926,0 115.1957877120001,-8.452597096999966,0 115.1958074680001,-8.452597183999956,0 115.1958306160001,-8.45259490199993,0 115.195856624,-8.452587077999965,0 115.1958688950001,-8.452577821999967,0 115.1958793970001,-8.452563362999967,0 115.1958882050001,-8.452542475999962,0 115.1959015580001,-8.452510815999972,0 115.1959325590001,-8.452376662999939,0 115.195988852,-8.452133329999981,0 115.19605717,-8.451805775999958,0 115.1961223530001,-8.451527921999968,0 115.1961224940001,-8.451527392999935,0 115.1962380260001,-8.451141928999959,0 115.1963393100001,-8.450715006999928,0 115.1963393790001,-8.450714735999952,0 115.196445602,-8.450321948999942,0 115.1965562410001,-8.449936718999936,0 115.1965605350001,-8.449914372999956,0 115.1965719740001,-8.449853772999973,0 115.196631677,-8.449543415999926,0 115.196706951,-8.449166342999945,0 115.1967106990001,-8.449127312999963,0 115.1967473540001,-8.448745392999967,0 115.196747424,-8.448744842999929,0 115.196751046,-8.448721990999957,0 115.1967572950001,-8.44868242299998,0 115.1967890120001,-8.448481631999925,0 115.1967974680001,-8.448428104999948,0 115.196803507,-8.448382850999963,0 115.1968035670001,-8.448382466999931,0 115.1968042750001,-8.448378480999963,0 115.1968022010001,-8.448376463999978,0 115.1965933600001,-8.448317246999977,0 115.196189426,-8.448209550999934,0 115.1961083780001,-8.448187937999933,0 115.1954893200001,-8.448026554999956,0 115.1950104030001,-8.44791670799998,0 115.1947095040001,-8.447851775999936,0 115.194703924,-8.447852572999977,0 115.1947027700001,-8.447853296999938,0 115.1947005060001,-8.447860956999932,0 115.194633455,-8.44808765199997,0 115.1945971250001,-8.448210475999929,0 115.194596948,-8.44821101399998,0 115.1945968560001,-8.448211253999943,0 115.1945915910001,-8.448224473999971,0 115.1945593080001,-8.448305558999948,0 115.1944564390001,-8.448544996999942,0 115.1943855740001,-8.448747810999976,0 115.1943852180001,-8.448748664999925,0 115.19422036,-8.449093493999953,0 115.1942140250001,-8.449106745999927,0 115.194188517,-8.449159589999965,0 115.1941823430001,-8.449173272999928,0 115.1941652050001,-8.449211264999974,0 115.1941433440001,-8.449259709999978,0 115.1940819120001,-8.449395873999947,0 115.1940360010001,-8.449514299999976,0 115.194035877,-8.449514602999955,0 115.1939447420001,-8.449726510999938,0 115.193930086,-8.449765273999958,0 115.1938928450001,-8.449863755999957,0 115.1938784820001,-8.449901737999937,0 115.1938783120001,-8.449902154999961,0 115.1937964440001,-8.450089691999949,0 115.193770146,-8.450149923999959,0 115.1936936310001,-8.450325193999959,0 115.1936075650001,-8.450541983999926,0 115.1935403650001,-8.45074655999997,0 115.19353089,-8.45077540099993,0 115.1935025270001,-8.45086663799998,0 115.1934624410001,-8.45099556599996,0 115.193431126,-8.451173344999972,0 115.1934286760001,-8.451285198999926,0 115.193442997,-8.45155108299997,0 115.1934573990001,-8.451875126999937,0 115.193458855,-8.451907889999973,0 115.1934661890001,-8.452015256999971,0 115.1934676010001,-8.452017491999925,0 115.1934698660001,-8.452019227999926,0 115.19364212,-8.452053791999958,0 115.193707999,-8.452067012999976,0 115.193820992,-8.452089692999948,0 115.1939472270001,-8.452115029999959,0 115.1940186600001,-8.452129365999951,0 115.1940855420001,-8.452142787999946,0 115.1940862460001,-8.452142958999957,0 115.194207246,-8.452177436999932,0
</coordinates>
</LinearRing>
</innerBoundaryIs>
</Polygon>
<description>{&quot;OBJECTID&quot;:&quot;1410&quot;,&quot;NAMOBJ&quot;:&quot;Jalur Hijau&quot;,&quot;NAMZON&quot;:&quot;Zona Ruang Terbuka Hijau&quot;,&quot;KODZON&quot;:&quot;RTH&quot;,&quot;NAMSZN&quot;:&quot;Jalur Hijau&quot;,&quot;KODSZN&quot;:&quot;RTH-8&quot;,&quot;JNSRPR&quot;:&quot;Zona Lindung&quot;,&quot;KODEWP&quot;:&quot;I&quot;,&quot;KODSWP&quot;:&quot;A&quot;,&quot;KODBLK&quot;:&quot;2&quot;,&quot;KODSBL&quot;:&quot;Tidak Ada&quot;,&quot;WADMPR&quot;:&quot;Provinsi Bali&quot;,&quot;WADMKK&quot;:&quot;Kabupaten Badung&quot;,&quot;WADMKC&quot;:&quot;Kecamatan Mengwi&quot;,&quot;WADMKD&quot;:&quot;Desa Kuwum&quot;,&quot;KKOP_1&quot;:&quot;Tidak Ada&quot;,&quot;LP2B_2&quot;:&quot;Tidak Ada&quot;,&quot;KRB_03&quot;:&quot;Tidak Ada&quot;,&quot;TOD_04&quot;:&quot;Tidak Ada&quot;,&quot;TEB_05&quot;:&quot;Tidak Ada&quot;,&quot;PUSLIT&quot;:&quot;Tidak Ada&quot;,&quot;CAGBUD&quot;:&quot;Tidak Ada&quot;,&quot;RESAIR&quot;:&quot;Tidak Ada&quot;,&quot;KSMPDN&quot;:&quot;Tidak Ada&quot;,&quot;HANKAM&quot;:&quot;Tidak Ada&quot;,&quot;KKARST&quot;:&quot;Tidak Ada&quot;,&quot;PTBGMB&quot;:&quot;Tidak Ada&quot;,&quot;MGRSAT&quot;:&quot;Tidak Ada&quot;,&quot;RDBUMI&quot;:&quot;Tidak Ada&quot;,&quot;TPZ_00&quot;:&quot;Tidak Ada&quot;,&quot;REMARK&quot;:&quot;Tidak Ada&quot;,&quot;NOTHPR&quot;:&quot;Peraturan Bupati Badung Nomor 34 Tahun 2022 tentang Rencana Detail Tata Ruang Wilayah Perencanaan Mengwi Tahun 2022-2042&quot;}</description>
</Placemark>
<Placemark>
<visibility>0</visibility>
<styleUrl>#m_ylw-pushpin71</styleUrl>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
115.1954163380001,-8.445616992999931,0 115.195407774,-8.445614012999954,0 115.1954004300001,-8.445615243999953,0 115.1953968260001,-8.445617635999952,0 115.195394242,-8.445619349999959,0 115.195394199,-8.445619378999936,0 115.1953290580001,-8.445763616999955,0 115.1952219660001,-8.446042343999977,0 115.1951563710001,-8.446242661999975,0 115.1951440780001,-8.446280200999979,0 115.1951432020001,-8.446282874999952,0 115.1951275550001,-8.446330799999942,0 115.1949709080001,-8.44686429199993,0 115.1949550210001,-8.446919158999947,0 115.1948938170001,-8.447130546999972,0 115.1948874860001,-8.447152414999948,0 115.1948857560001,-8.447158397999942,0 115.194874118,-8.447198598999933,0 115.1948731960001,-8.447201785999937,0 115.1948709960001,-8.447209387999976,0 115.1948568140001,-8.447258390999934,0 115.194798094,-8.447461256999929,0 115.1947453570001,-8.447676143999956,0 115.194709952,-8.447796937999954,0 115.194708685,-8.447801262999974,0 115.1947090330001,-8.447808241999951,0 115.194709092,-8.447809399999926,0 115.1947092820001,-8.447809739999968,0 115.194713029,-8.447816462999981,0 115.1947135510001,-8.447816824999961,0 115.194719747,-8.447821110999939,0 115.1950173720001,-8.44788583899998,0 115.195496885,-8.447995798999955,0 115.195507417,-8.447998550999955,0 115.19558155,-8.448017881999931,0 115.196116476,-8.448157385999934,0 115.1966017350001,-8.448286712999959,0 115.1967054390001,-8.448315284999978,0 115.1968049120001,-8.448342691999926,0 115.1968109070001,-8.448341198999969,0 115.196813085,-8.448340655999971,0 115.196819397,-8.44833516999995,0 115.1968225820001,-8.448327406999965,0 115.196823213,-8.448322940999958,0 115.1968341720001,-8.448245441999973,0 115.196839444,-8.448208157999943,0 115.196848422,-8.44814463299997,0 115.196848482,-8.448144213999967,0 115.196873909,-8.447964362999926,0 115.1968911370001,-8.447853171999952,0 115.196892356,-8.447845307999955,0 115.1968928030001,-8.447842415999958,0 115.196898733,-8.447804031999965,0 115.196900108,-8.447795137999947,0 115.196905957,-8.447757273999969,0 115.1969172890001,-8.447683888999961,0 115.196917554,-8.447682688999976,0 115.196993453,-8.447336909999933,0 115.197017802,-8.447225981999964,0 115.197027023,-8.447187543999974,0 115.1970822400001,-8.446957354999938,0 115.1970951730001,-8.446903437999936,0 115.1971086650001,-8.446847204999926,0 115.1971181980001,-8.446800945999939,0 115.19713565,-8.44671630199997,0 115.1971383700001,-8.446703107999951,0 115.19714983,-8.446647521999978,0 115.1972250220001,-8.446282791999977,0 115.197225329,-8.446215648999953,0 115.197225386,-8.446203247999961,0 115.1972228070001,-8.446182781999937,0 115.197219105,-8.446153411999944,0 115.197207497,-8.44612226199996,0 115.1971692190001,-8.446093884999925,0 115.1970096440001,-8.446041451999974,0 115.196975584,-8.446030260999976,0 115.1968427070001,-8.445993131999955,0 115.196747886,-8.445966658999964,0 115.1963906030001,-8.445866942999942,0 115.1963324930001,-8.445852878999972,0 115.196319772,-8.445849799999962,0 115.1962212030001,-8.445825843999955,0 115.196214723,-8.44582427499995,0 115.196036766,-8.445781154999963,0 115.19583005,-8.445731028999944,0 115.19573587,-8.445708123999964,0 115.1957307990001,-8.445706890999929,0 115.195545992,-8.445662107999965,0 115.195538681,-8.445659563999925,0 115.1954163380001,-8.445616992999931,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
<innerBoundaryIs>
<LinearRing>
<coordinates>
115.195152742,-8.446282913999937,0 115.1951527120001,-8.446283005999931,0 115.195151836,-8.446285674999956,0 115.195151739,-8.446285967999927,0 115.1951362330001,-8.446333464999952,0 115.194979629,-8.446866812999929,0 115.1949637460001,-8.446921664999934,0 115.194902543,-8.44713305099998,0 115.1948962130001,-8.447154917999967,0 115.1948944840001,-8.447160899999972,0 115.194881923,-8.447204289999945,0 115.1948818330001,-8.447204596999939,0 115.194865539,-8.447260893999953,0 115.194865367,-8.44726148999996,0 115.1948068700001,-8.447463585999969,0 115.194754179,-8.447678291999978,0 115.1947540740001,-8.447678677999932,0 115.1947174000001,-8.447803805999968,0 115.1947152390001,-8.447811113999933,0 115.194716486,-8.447813349999933,0 115.1947215980001,-8.447816885999941,0 115.1950183660001,-8.447881428999949,0 115.19549797,-8.447991409999929,0 115.195508568,-8.447994176999941,0 115.1955827,-8.448013507999974,0 115.196117638,-8.448153014999946,0 115.1966029280001,-8.448282349999943,0 115.196706657,-8.448310929999934,0 115.19680497,-8.448338017999959,0 115.196810924,-8.448336533999964,0 115.1968118850001,-8.448335698999927,0 115.196813612,-8.448325987999965,0 115.196825179,-8.44824418099995,0 115.1968304510001,-8.448206896999977,0 115.1968394900001,-8.448142953999934,0 115.1968395270001,-8.448142687999962,0 115.1968649260001,-8.447963042999959,0 115.196883381,-8.447843930999966,0 115.196889757,-8.447802657999944,0 115.196891132,-8.447793763999925,0 115.196896981,-8.447755898999958,0 115.1969083300001,-8.447682418999932,0 115.196908419,-8.44768195499995,0 115.1969086830001,-8.447680755999954,0 115.1969087130001,-8.447680618999925,0 115.1970089500001,-8.447223965999967,0 115.1970734070001,-8.446955254999978,0 115.197086149,-8.446902131999934,0 115.197086214,-8.446901862999937,0 115.1970863410001,-8.446901336999929,0 115.197099793,-8.446845264999979,0 115.197109303,-8.446799127999952,0 115.1971294750001,-8.446701289999965,0 115.197215946,-8.44628185199997,0 115.197216303,-8.446203795999963,0 115.197210226,-8.446155576999956,0 115.197199917,-8.446127914999977,0 115.1971649740001,-8.446102010999937,0 115.1970067980001,-8.446050037999953,0 115.1969729240001,-8.446038908999981,0 115.1968402540001,-8.446001836999926,0 115.196745435,-8.445975364999981,0 115.1963882900001,-8.445875687999944,0 115.196317623,-8.445858584999939,0 115.1962190520001,-8.445834628999933,0 115.1960346180001,-8.445789938999951,0 115.1958278980001,-8.445739812999932,0 115.1957286480001,-8.445715674999974,0 115.1955438450001,-8.445670893999932,0 115.1955429970001,-8.445670643999961,0 115.195406981,-8.445623315999967,0 115.195403852,-8.44562383799996,0 115.1954014090001,-8.445625460999963,0 115.195337448,-8.445767084999943,0 115.195230529,-8.44604536099996,0 115.195152742,-8.446282913999937,0
</coordinates>
</LinearRing>
</innerBoundaryIs>
</Polygon>
<description>{&quot;OBJECTID&quot;:&quot;1411&quot;,&quot;NAMOBJ&quot;:&quot;Jalur Hijau&quot;,&quot;NAMZON&quot;:&quot;Zona Ruang Terbuka Hijau&quot;,&quot;KODZON&quot;:&quot;RTH&quot;,&quot;NAMSZN&quot;:&quot;Jalur Hijau&quot;,&quot;KODSZN&quot;:&quot;RTH-8&quot;,&quot;JNSRPR&quot;:&quot;Zona Lindung&quot;,&quot;KODEWP&quot;:&quot;I&quot;,&quot;KODSWP&quot;:&quot;A&quot;,&quot;KODBLK&quot;:&quot;2&quot;,&quot;KODSBL&quot;:&quot;Tidak Ada&quot;,&quot;WADMPR&quot;:&quot;Provinsi Bali&quot;,&quot;WADMKK&quot;:&quot;Kabupaten Badung&quot;,&quot;WADMKC&quot;:&quot;Kecamatan Mengwi&quot;,&quot;WADMKD&quot;:&quot;Desa Kuwum&quot;,&quot;KKOP_1&quot;:&quot;Tidak Ada&quot;,&quot;LP2B_2&quot;:&quot;Tidak Ada&quot;,&quot;KRB_03&quot;:&quot;Tidak Ada&quot;,&quot;TOD_04&quot;:&quot;Tidak Ada&quot;,&quot;TEB_05&quot;:&quot;Tidak Ada&quot;,&quot;PUSLIT&quot;:&quot;Tidak Ada&quot;,&quot;CAGBUD&quot;:&quot;Tidak Ada&quot;,&quot;RESAIR&quot;:&quot;Tidak Ada&quot;,&quot;KSMPDN&quot;:&quot;Tidak Ada&quot;,&quot;HANKAM&quot;:&quot;Tidak Ada&quot;,&quot;KKARST&quot;:&quot;Tidak Ada&quot;,&quot;PTBGMB&quot;:&quot;Tidak Ada&quot;,&quot;MGRSAT&quot;:&quot;Tidak Ada&quot;,&quot;RDBUMI&quot;:&quot;Tidak Ada&quot;,&quot;TPZ_00&quot;:&quot;Tidak Ada&quot;,&quot;REMARK&quot;:&quot;Tidak Ada&quot;,&quot;NOTHPR&quot;:&quot;Peraturan Bupati Badung Nomor 34 Tahun 2022 tentang Rencana Detail Tata Ruang Wilayah Perencanaan Mengwi Tahun 2022-2042&quot;}</description>
</Placemark>
<Placemark>
<visibility>0</visibility>
<styleUrl>#m_ylw-pushpin71</styleUrl>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
115.1954779690001,-8.445439379999925,0 115.1954735530001,-8.445439315999977,0 115.1954734340001,-8.445439314999931,0 115.1954172080001,-8.445564711999964,0 115.195415472,-8.445568582999954,0 115.1954153690001,-8.445569904999957,0 115.1954148410001,-8.445576640999946,0 115.1954148340001,-8.445576719999963,0 115.195417869,-8.445584234999956,0 115.1954239080001,-8.445589777999942,0 115.195428181,-8.445591298999943,0 115.1954549220001,-8.445600817999946,0 115.195553826,-8.445636023999953,0 115.1957026890001,-8.445672098999978,0 115.1957030760001,-8.445672188999936,0 115.195712379,-8.445674444999952,0 115.1958395250001,-8.445705307999958,0 115.195960608,-8.445734705999939,0 115.19608768,-8.44576557299996,0 115.1962317990001,-8.445800491999933,0 115.196376221,-8.445835515999931,0 115.1963974600001,-8.445840665999981,0 115.1964050920001,-8.445842795999965,0 115.1964251290001,-8.445848388999934,0 115.196690511,-8.445922476999954,0 115.1966997960001,-8.445925068999941,0 115.1967023290001,-8.445925776999957,0 115.1968385010001,-8.445963825999968,0 115.196949577,-8.445994802999962,0 115.1969739020001,-8.446001585999966,0 115.196975349,-8.446001990999946,0 115.196983497,-8.446004265999932,0 115.1969939700001,-8.446007713999961,0 115.197088913,-8.446038978999979,0 115.1971819800001,-8.446069627999975,0 115.197201606,-8.446084120999956,0 115.1972070290001,-8.44608812499996,0 115.1972302630001,-8.446105287999956,0 115.1972304320001,-8.44610573999995,0 115.1972408280001,-8.446133761999931,0 115.197245715,-8.446146929999941,0 115.1972526520001,-8.446201564999967,0 115.197252573,-8.446218646999966,0 115.1972522630001,-8.446285622999937,0 115.197168561,-8.446691373999954,0 115.1971459870001,-8.446800802999974,0 115.1971458850001,-8.446801301999926,0 115.197145854,-8.446801448999963,0 115.1971411200001,-8.446824398999979,0 115.1971352160001,-8.446853017999956,0 115.1971197350001,-8.446917585999927,0 115.1971140660001,-8.446941233999951,0 115.19709175,-8.447034305999978,0 115.1970884660001,-8.447048004999942,0 115.197083237,-8.447069812999928,0 115.197044354,-8.447231975999955,0 115.196998191,-8.447443264999947,0 115.1969884780001,-8.447487728999931,0 115.1969881990001,-8.447489000999951,0 115.196987515,-8.447492134999948,0 115.1969889010001,-8.44749991499998,0 115.196993517,-8.447506443999941,0 115.196993635,-8.447506509999926,0 115.197000458,-8.447510360999956,0 115.1972131470001,-8.447549303999949,0 115.197380788,-8.44758262199997,0 115.197450204,-8.447596417999932,0 115.1974617300001,-8.447598708999976,0 115.197467195,-8.447599794999974,0 115.197532568,-8.447612788999947,0 115.1975845210001,-8.447619122999981,0 115.197594962,-8.447620394999944,0 115.1976120710001,-8.447622480999939,0 115.1977026650001,-8.447633530999951,0 115.1977027410001,-8.44763353899998,0 115.1977089500001,-8.447634296999979,0 115.197707389,-8.44764775799996,0 115.19770568,-8.447661216999961,0 115.19752825,-8.447639612999978,0 115.1973534260001,-8.447604773999956,0 115.19733595,-8.44760128799993,0 115.1973327830001,-8.447600655999963,0 115.1973258690001,-8.447599281999942,0 115.197208011,-8.447575856999947,0 115.1971148560001,-8.447558975999925,0 115.197112572,-8.447558561999926,0 115.196992548,-8.447536809999974,0 115.196988518,-8.447537560999933,0 115.1969866940001,-8.447537900999976,0 115.196984979,-8.447538219999956,0 115.196978744,-8.447542618999933,0 115.196977145,-8.447545354999932,0 115.196974896,-8.447549202999937,0 115.1969739240001,-8.447553605999929,0 115.1969440720001,-8.447688900999935,0 115.1969163910001,-8.447867850999955,0 115.1969008430001,-8.447968369999955,0 115.196896581,-8.44799871999993,0 115.1968527580001,-8.448310825999954,0 115.196803786,-8.448621064999941,0 115.196784984,-8.448740209999926,0 115.196783478,-8.448749723999981,0 115.1967451200001,-8.449149061999947,0 115.1967429580001,-8.449171571999955,0 115.196734805,-8.449212422999949,0 115.1966673730001,-8.449550332999934,0 115.1966314000001,-8.449737831999926,0 115.1966246740001,-8.449772879999955,0 115.1965972060001,-8.449916049999956,0 115.1965916360001,-8.449945083999978,0 115.1965713630001,-8.450015658999973,0 115.1965639780001,-8.450041366999926,0 115.1965431220001,-8.450113966999936,0 115.1964806000001,-8.450331634999941,0 115.1963851510001,-8.450684588999934,0 115.196374546,-8.450723804999939,0 115.1963738760001,-8.450726631999942,0 115.1963711220001,-8.45073823599995,0 115.1963615570001,-8.450778551999974,0 115.1963569930001,-8.450797788999978,0 115.196341576,-8.450862766999933,0 115.196273128,-8.451151252999978,0 115.1961575240001,-8.451536964999946,0 115.196092667,-8.451813627999968,0 115.196084312,-8.451853657999948,0 115.1960827170001,-8.451861300999951,0 115.196082111,-8.451864206999971,0 115.196079947,-8.451874579999981,0 115.1960566720001,-8.45198610999995,0 115.1960243550001,-8.452141077999954,0 115.1959829430001,-8.452320092999969,0 115.1959600240001,-8.452419169999928,0 115.19593625,-8.45252193999994,0 115.1959330420001,-8.45252972399993,0 115.1959256560001,-8.452547642999946,0 115.1959239370001,-8.452551814999936,0 115.1959237570001,-8.452552258999958,0 115.195923719,-8.452560209999945,0 115.1959265520001,-8.452566367999964,0 115.1959270540001,-8.452567458999965,0 115.1959332470001,-8.452572459999942,0 115.1959537920001,-8.452580117999958,0 115.1959604690001,-8.452582606999954,0 115.196043719,-8.452613651999968,0 115.1961607730001,-8.452657301999977,0 115.1964438230001,-8.452745339999979,0 115.196489376,-8.452759511999943,0 115.1964910580001,-8.452760034999926,0 115.1964988840001,-8.452762470999971,0 115.1966974950001,-8.452824244999931,0 115.196817384,-8.452861538999969,0 115.196937312,-8.452898880999953,0 115.1969870270001,-8.45293219499996,0 115.1970096160001,-8.452967352999963,0 115.1970104400001,-8.452968636999969,0 115.1970415290001,-8.453078608999931,0 115.197072281,-8.453485606999948,0 115.1970710930001,-8.453580331999945,0 115.197070606,-8.453621269999928,0 115.1970709090001,-8.453630984999961,0 115.197071713,-8.453656623999962,0 115.1970755200001,-8.453691712999955,0 115.197085954,-8.453750426999932,0 115.197104179,-8.453920447999963,0 115.197104328,-8.453968989999964,0 115.1971044410001,-8.453999541999963,0 115.197104605,-8.454043977999959,0 115.1971046100001,-8.454045270999927,0 115.1971046250001,-8.454049759999975,0 115.1971047620001,-8.454086045999929,0 115.1971003330001,-8.454135917999963,0 115.1970960680001,-8.454184531999942,0 115.197069678,-8.454255187999934,0 115.197064435,-8.454271431999928,0 115.1970203520001,-8.454407311999944,0 115.1970155910001,-8.454421984999954,0 115.1970145030001,-8.454425364999963,0 115.1970112610001,-8.454435433999947,0 115.19698655,-8.454521461999946,0 115.19697138,-8.45457427499997,0 115.1969687950001,-8.454583282999977,0 115.1969362960001,-8.45469650299998,0 115.196928575,-8.454722637999964,0 115.196927329,-8.454726856999969,0 115.1969265060001,-8.45472964399994,0 115.196921233,-8.454747501999975,0 115.196897119,-8.454829014999973,0 115.1968876440001,-8.454861093999966,0 115.1968867610001,-8.454864081999972,0 115.196882392,-8.454878875999952,0 115.1968451590001,-8.455004945999974,0 115.1968342900001,-8.455071249999946,0 115.196819256,-8.455163467999967,0 115.1968154860001,-8.455186588999936,0 115.196784071,-8.455308296999931,0 115.1967741970001,-8.455346472999963,0 115.196751284,-8.455435055999942,0 115.1967380460001,-8.455431740999927,0 115.1967248850001,-8.455428336999944,0 115.1967887860001,-8.455180956999925,0 115.1968185310001,-8.454998946999979,0 115.1969101240001,-8.454688963999956,0 115.1969851700001,-8.454427536999958,0 115.197043965,-8.454246299999966,0 115.1970692100001,-8.454178444999968,0 115.1970775110001,-8.454084835999936,0 115.1970769930001,-8.453922218999935,0 115.197058982,-8.453754274999937,0 115.197048544,-8.453695469999957,0 115.197044525,-8.453658480999934,0 115.1970435440001,-8.453580023999962,0 115.197045018,-8.453486813999973,0 115.1970450230001,-8.453486475999966,0 115.1970145490001,-8.453083185999958,0 115.196985454,-8.452980004999972,0 115.1969671690001,-8.452951533999965,0 115.1969253670001,-8.452923594999959,0 115.196286577,-8.452724893999971,0 115.1961951420001,-8.452696448999973,0 115.1961519680001,-8.45268301699997,0 115.196125732,-8.452673408999942,0 115.1959994680001,-8.45262686999996,0 115.1959117800001,-8.452594548999969,0 115.1959117480001,-8.452594537999971,0 115.195911654,-8.452594502999943,0 115.1959078020001,-8.452595026999973,0 115.1959052120001,-8.452595379999934,0 115.1958995050001,-8.452598424999962,0 115.1958960070001,-8.452601301999948,0 115.1958837640001,-8.452611367999964,0 115.195880266,-8.45261424499995,0 115.1958752190001,-8.452620551999928,0 115.195873838,-8.452622553999959,0 115.195873107,-8.452623612999957,0 115.1958729730001,-8.452624225999955,0 115.1958725200001,-8.45262631099996,0 115.1958724210001,-8.452626769999938,0 115.1958726240001,-8.452630119999981,0 115.195875041,-8.452642336999929,0 115.1959292040001,-8.452798146999953,0 115.1959703320001,-8.452873455999963,0 115.1959910480001,-8.452911062999931,0 115.1959982210001,-8.452962165999963,0 115.1959819230001,-8.452960924999957,0 115.1959703790001,-8.452960046999976,0 115.1959647990001,-8.452919707999968,0 115.1959464600001,-8.452886537999973,0 115.195904216,-8.452809152999976,0 115.1958984520001,-8.452792568999939,0 115.195847691,-8.452646544999936,0 115.1958436880001,-8.45263803399996,0 115.195842391,-8.452636208999934,0 115.1958412370001,-8.452634581999973,0 115.195839349,-8.452632994999931,0 115.1958392940001,-8.452632948999963,0 115.1958392470001,-8.452632929999936,0 115.1958375,-8.452632214999937,0 115.1958349340001,-8.452631647999965,0 115.1958345840001,-8.452631569999937,0 115.1958316040001,-8.452631556999961,0 115.19582762,-8.45263153999997,0 115.1958375820001,-8.452630509999949,0 115.195827761,-8.452631492999956,0 115.1958231890001,-8.452631951999933,0 115.1958125790001,-8.452633013999957,0 115.195809195,-8.452633352999953,0 115.1958080850001,-8.45263334699996,0 115.195804113,-8.45263332899998,0 115.195783136,-8.452633234999951,0 115.195781837,-8.452632899999969,0 115.1954696990001,-8.452553773999966,0 115.1953851950001,-8.452531787999931,0 115.195148183,-8.452470134999942,0 115.1950897910001,-8.452454944999943,0 115.195067536,-8.452449151999929,0 115.195004365,-8.452432708999936,0 115.1949773890001,-8.45242568599997,0 115.194627018,-8.452334580999946,0 115.1942050800001,-8.452214423999976,0 115.194127092,-8.452192217999936,0 115.194115621,-8.452188951999972,0 115.1941040570001,-8.452185651999969,0 115.194077265,-8.452178017999927,0 115.194060526,-8.45217467699996,0 115.193940049,-8.45215062799997,0 115.1938443130001,-8.452131516999941,0 115.1934792600001,-8.452058650999959,0 115.1934703430001,-8.452060328999949,0 115.193468499,-8.452061821999962,0 115.1934670290001,-8.452063013999975,0 115.1934633560001,-8.452065989999937,0 115.1934600190001,-8.452074381999978,0 115.19346054,-8.452083377999941,0 115.193463843,-8.452140464999957,0 115.1934714560001,-8.452272024999957,0 115.193474698,-8.452427157999978,0 115.193469799,-8.452499616999944,0 115.1934643430001,-8.452580283999964,0 115.193462077,-8.452613850999967,0 115.1934599650001,-8.452632032999929,0 115.1934470670001,-8.45274320599998,0 115.193444222,-8.452767725999934,0 115.1934335230001,-8.452859944999943,0 115.193424699,-8.452896201999977,0 115.193412101,-8.452947932999962,0 115.1933789010001,-8.453084262999937,0 115.193330165,-8.453284394999969,0 115.1932616050001,-8.45351981999994,0 115.1932362440001,-8.453580872999964,0 115.1932170800001,-8.45362700499993,0 115.1930766500001,-8.453875565999965,0 115.19296094,-8.454106704999958,0 115.1929427990001,-8.454139324999971,0 115.192912631,-8.454193562999933,0 115.1928828670001,-8.454247084999963,0 115.19272057,-8.454657707999957,0 115.192648672,-8.454859974999977,0 115.1926056980001,-8.45498086799995,0 115.1925975490001,-8.454998344999979,0 115.1925871760001,-8.455020586999979,0 115.1925002050001,-8.45520707999998,0 115.1924973990001,-8.45521309399993,0 115.1924726300001,-8.455266223999956,0 115.192440517,-8.455335073999947,0 115.1924336200001,-8.455360845999962,0 115.1923789470001,-8.455565108999963,0 115.192340391,-8.455709099999979,0 115.1923358670001,-8.455725998999981,0 115.1923313990001,-8.455742691999944,0 115.192325103,-8.455760950999945,0 115.1923222370001,-8.455769263999969,0 115.192315935,-8.455787544999964,0 115.192313634,-8.455794220999962,0 115.1923005030001,-8.45584191699993,0 115.1922977370001,-8.455851960999951,0 115.1922635430001,-8.455976181999972,0 115.1922121110001,-8.456163021999942,0 115.1922115030001,-8.45616403899993,0 115.192186103,-8.456206463999933,0 115.1921727370001,-8.45622879299998,0 115.1921599450001,-8.456250165999961,0 115.1921485790001,-8.456261164999944,0 115.192120549,-8.456288291999954,0 115.192012242,-8.456383697999968,0 115.191996011,-8.456399270999952,0 115.191972885,-8.456421458999955,0 115.1919114900001,-8.456480366999926,0 115.1918497260001,-8.456556501999955,0 115.191839488,-8.456569121999962,0 115.1918370750001,-8.456572939999944,0 115.191826351,-8.45658991199997,0 115.1918203770001,-8.456599368999946,0 115.1918087890001,-8.456617708999943,0 115.191787929,-8.456677227999933,0 115.1917748190001,-8.456718071999944,0 115.191758302,-8.456769538999936,0 115.191756434,-8.456776029999958,0 115.191755154,-8.456780476999938,0 115.1917635550001,-8.456784109999944,0 115.191763884,-8.456782966999981,0 115.1917669930001,-8.456772167999929,0 115.19178347,-8.456720822999955,0 115.1917965470001,-8.456680080999945,0 115.1918170230001,-8.456621656999971,0 115.1918468920001,-8.456574383999964,0 115.191918197,-8.456486487999939,0 115.1920023120001,-8.456405780999944,0 115.1920184050001,-8.456390342999953,0 115.1921265660001,-8.456295064999949,0 115.1921268780001,-8.456294775999936,0 115.1921662750001,-8.456256649999943,0 115.1921669020001,-8.456255977999945,0 115.1921677460001,-8.45625479499995,0 115.1921939040001,-8.456211092999979,0 115.192219944,-8.456167596999933,0 115.192220645,-8.456166114999974,0 115.19222087,-8.456165411999962,0 115.1922723020001,-8.455978570999946,0 115.192306496,-8.455854350999971,0 115.192322318,-8.455796881999959,0 115.1923308260001,-8.455772199999956,0 115.1923335920001,-8.455764177999981,0 115.1923399880001,-8.455745627999931,0 115.192340173,-8.455745019999938,0 115.1923446410001,-8.455728326999974,0 115.1923491650001,-8.455711427999972,0 115.192387722,-8.455567436999956,0 115.1924490870001,-8.455338170999937,0 115.1924808660001,-8.45527003199993,0 115.1925056370001,-8.455216901999961,0 115.192595414,-8.455024395999942,0 115.192613936,-8.454984675999981,0 115.192614246,-8.45498392099995,0 115.1926572330001,-8.45486299199996,0 115.1927290770001,-8.454660873999956,0 115.192891099,-8.454250946999935,0 115.192920576,-8.45419794299994,0 115.1929507440001,-8.454143704999979,0 115.192968885,-8.454111084999965,0 115.192969068,-8.45411073799994,0 115.193084674,-8.453879806999964,0 115.193224996,-8.453631436999956,0 115.193225471,-8.453630458999953,0 115.193269996,-8.453523276999931,0 115.1932701390001,-8.453522913999961,0 115.193270327,-8.45352233899996,0 115.1933388870001,-8.453286912999943,0 115.193338991,-8.453286525999943,0 115.1933877270001,-8.453086392999978,0 115.1934209260001,-8.452950062999946,0 115.1934335240001,-8.452898331999961,0 115.1934336750001,-8.45289771399996,0 115.19344235,-8.452862073999938,0 115.1934424670001,-8.452861514999938,0 115.193442544,-8.452860982999937,0 115.193453243,-8.452768763999927,0 115.19345608,-8.452744315999951,0 115.1934560880001,-8.452744243999973,0 115.1934689860001,-8.452633069999933,0 115.193471098,-8.45261488899996,0 115.1934711370001,-8.452614457999971,0 115.1934734050001,-8.452580891999958,0 115.193478861,-8.452500223999948,0 115.1934837590001,-8.452427764999982,0 115.1934837790001,-8.452427062999959,0 115.193480535,-8.452271837999945,0 115.1934805210001,-8.452271505999931,0 115.1934729100001,-8.452139944999942,0 115.1934692010001,-8.452075853999929,0 115.193470926,-8.452071511999975,0 115.1934742890001,-8.452068787999963,0 115.1934792080001,-8.452067861999979,0 115.193842527,-8.452140382999971,0 115.1939382650001,-8.452159493999943,0 115.1940587420001,-8.452183542999933,0 115.1940751220001,-8.452186811999979,0 115.1941015560001,-8.452194343999963,0 115.1941131210001,-8.452197642999977,0 115.1941245960001,-8.452200909999931,0 115.1942025840001,-8.452223115999971,0 115.194204538,-8.452223672999935,0 115.1946246230001,-8.452343301999974,0 115.194974619,-8.452434309999944,0 115.194975094,-8.45243443399994,0 115.195002068,-8.452441455999974,0 115.195087494,-8.452463691999981,0 115.1953829,-8.452540535999958,0 115.1954674310001,-8.452562528999977,0 115.19577958,-8.452641657999948,0 115.1957808630001,-8.452641988999972,0 115.1957815600001,-8.452642138999977,0 115.195783095,-8.452642276999939,0 115.1958040710001,-8.452642370999968,0 115.195809174,-8.452642393999952,0 115.1958101040001,-8.452642348999973,0 115.1958286700001,-8.452640488999975,0 115.1958293370001,-8.452640396999925,0 115.1958306060001,-8.452640078999934,0 115.1958378820001,-8.452637688999971,0 115.1958395470001,-8.45263997099994,0 115.1958399480001,-8.45264065899994,0 115.1958401380001,-8.452640972999973,0 115.195843478,-8.452648247999946,0 115.195899938,-8.452810664999959,0 115.195900227,-8.452811310999948,0 115.195942477,-8.452888707999932,0 115.1959604140001,-8.452921152999977,0 115.1959658940001,-8.452960747999953,0 115.1959661120001,-8.45296159399993,0 115.195966448,-8.45296230799994,0 115.1959669,-8.45296295299994,0 115.195967461,-8.45296351099995,0 115.1959681090001,-8.452963962999945,0 115.195968826,-8.452964295999948,0 115.1959695900001,-8.45296449999995,0 115.1959700330001,-8.452964554999937,0 115.1959978750001,-8.452966672999935,0 115.1959982220001,-8.452966685999968,0 115.19599901,-8.452966617999948,0 115.195999775,-8.452966413999945,0 115.1960004910001,-8.452966079999953,0 115.196001139,-8.452965628999948,0 115.1960017,-8.452965070999937,0 115.1960021530001,-8.452964424999948,0 115.1960024880001,-8.452963710999938,0 115.1960026930001,-8.452962949999971,0 115.196002762,-8.452962165999963,0 115.196002718,-8.452961539999933,0 115.1959955320001,-8.452910356999951,0 115.195995315,-8.452909516999966,0 115.1959950300001,-8.452908888999957,0 115.195974318,-8.452871288999972,0 115.195933371,-8.452796313999954,0 115.195879436,-8.452641157999949,0 115.1958772080001,-8.452630110999962,0 115.1958771760001,-8.452629840999975,0 115.1958771000001,-8.452629244999969,0 115.1958769900001,-8.452627117999953,0 115.1958773560001,-8.452625438999974,0 115.1958779940001,-8.452624511999943,0 115.1958831110001,-8.452622830999928,0 115.195883372,-8.452622740999971,0 115.1958848070001,-8.452622074999965,0 115.195886049,-8.452621216999944,0 115.1959053160001,-8.452605373999972,0 115.195906462,-8.452604236999946,0 115.1959073700001,-8.452602944999967,0 115.1959075520001,-8.452602604999981,0 115.1959092400001,-8.452599394999936,0 115.1959111440001,-8.452599133999968,0 115.1961241590001,-8.452677649999941,0 115.196150407,-8.452687262999973,0 115.1961506130001,-8.452687332999972,0 115.1961937880001,-8.452700763999928,0 115.196285223,-8.452729207999937,0 115.1969233840001,-8.452927712999951,0 115.196963854,-8.452954763999969,0 115.1969812640001,-8.452981870999963,0 115.1970100550001,-8.453083972999934,0 115.1970404790001,-8.453486615999964,0 115.1970390030001,-8.453580018999958,0 115.1970399850001,-8.453658538999946,0 115.19704001,-8.453658969999935,0 115.1970440290001,-8.453695958999958,0 115.197044073,-8.453696257999979,0 115.1970544840001,-8.45375491599998,0 115.197072453,-8.453922462999969,0 115.197072969,-8.454084648999981,0 115.1970647420001,-8.454177439999967,0 115.1970396840001,-8.454244797999934,0 115.1969808270001,-8.454426220999949,0 115.1969057650001,-8.45468769799993,0 115.1968141740001,-8.454997670999944,0 115.1968140550001,-8.454998191999948,0 115.196784338,-8.455180022999969,0 115.1967204870001,-8.455427210999972,0 115.1967204140001,-8.455427551999946,0 115.196720345,-8.455428336999944,0 115.1967204140001,-8.455429121999941,0 115.1967206190001,-8.455429881999976,0 115.1967209530001,-8.455430595999928,0 115.1967214060001,-8.455431241999975,0 115.196721967,-8.455431799999928,0 115.1967226160001,-8.455432250999934,0 115.196723332,-8.455432585999972,0 115.1967237440001,-8.455432711999947,0 115.196736921,-8.455436118999955,0 115.196750177,-8.455439439999964,0 115.196750496,-8.455439508999973,0 115.196751285,-8.455439576999936,0 115.1967520740001,-8.455439508999973,0 115.1967528380001,-8.45543930499997,0 115.1967535540001,-8.455438970999978,0 115.1967542030001,-8.455438519999973,0 115.1967547630001,-8.455437961999962,0 115.196755217,-8.455437315999973,0 115.196755551,-8.455436602999953,0 115.196755681,-8.45543618399995,0 115.196788469,-8.45530942299996,0 115.1968198840001,-8.455187713999976,0 115.1968199630001,-8.455187343999967,0 115.1968387720001,-8.455071975999942,0 115.196849594,-8.455005952999954,0 115.196890775,-8.454866365999976,0 115.196891034,-8.454865628999926,0 115.1968911180001,-8.45486535699996,0 115.196891251,-8.454864871999973,0 115.1969014750001,-8.454830290999951,0 115.1969255900001,-8.454748777999953,0 115.1969316850001,-8.454728131999957,0 115.196940658,-8.454697761999967,0 115.196975747,-8.454575516999967,0 115.1970156050001,-8.454436752999925,0 115.1970199130001,-8.454423368999926,0 115.1970246720001,-8.454408701999967,0 115.1970687580001,-8.454272817999936,0 115.1970739730001,-8.454256658999952,0 115.197100329,-8.454186091999929,0 115.1971005390001,-8.45418531699994,0 115.1971005910001,-8.454184924999936,0 115.1971048570001,-8.454136313999982,0 115.197109284,-8.454086444999973,0 115.1971093020001,-8.454086036999968,0 115.197109167,-8.454049737999981,0 115.197109145,-8.454043962999947,0 115.1971088680001,-8.453968974999952,0 115.1971087210001,-8.45392043499993,0 115.197108694,-8.45391996799998,0 115.1970904680001,-8.453749945999959,0 115.1970904250001,-8.453749637999977,0 115.1970800180001,-8.453691074999938,0 115.1970762460001,-8.453656300999967,0 115.1970754470001,-8.453630842999928,0 115.1970751480001,-8.453621245999955,0 115.1970756220001,-8.453581362999955,0 115.197075634,-8.453580385999942,0 115.1970768220001,-8.453485633999946,0 115.197076809,-8.453485267999952,0 115.1970460580001,-8.453078269999935,0 115.1970460010001,-8.453077823999934,0 115.1970459,-8.453077383999926,0 115.197014811,-8.452967411999964,0 115.1970147070001,-8.452967090999948,0 115.1970143200001,-8.45296628899996,0 115.196990851,-8.452929758999971,0 115.196990506,-8.45292928899994,0 115.1969899450001,-8.452928730999929,0 115.196989561,-8.452928444999941,0 115.1969398470001,-8.452895130999934,0 115.196939582,-8.452894965999974,0 115.196938767,-8.452894599999979,0 115.19681874,-8.452857222999967,0 115.1967014700001,-8.45282074499994,0 115.1966988500001,-8.452819930999965,0 115.1965002390001,-8.452758155999959,0 115.1964924140001,-8.452755718999981,0 115.196490731,-8.452755195999941,0 115.1964451770001,-8.452741024999966,0 115.1961622600001,-8.452653027999929,0 115.195962749,-8.45257866299994,0 115.1959620470001,-8.45257836899998,0 115.1959612700001,-8.452578117999963,0 115.195935531,-8.452568482999936,0 115.195930739,-8.452564614999972,0 115.195929212,-8.452561294999953,0 115.1959319880001,-8.45255599799998,0 115.195932338,-8.452555246999964,0 115.1959446510001,-8.452525371999968,0 115.1959447840001,-8.452525032999972,0 115.195945099,-8.452523969999959,0 115.1959688730001,-8.452421197999968,0 115.1960332260001,-8.452143010999976,0 115.196065287,-8.45198927499996,0 115.1960655640001,-8.451987947999953,0 115.196088839,-8.451876417999927,0 115.1960916080001,-8.451863139999944,0 115.196101545,-8.451815538999938,0 115.196166303,-8.451539293999929,0 115.1962818300001,-8.451153838999971,0 115.196281965,-8.451153331999933,0 115.1963658300001,-8.450799866999944,0 115.1963799600001,-8.450740313999972,0 115.1963833520001,-8.450726016999965,0 115.1964893480001,-8.450334059999932,0 115.1965518530001,-8.450116453999954,0 115.1965727090001,-8.450043853999944,0 115.1966003670001,-8.449947570999939,0 115.196600556,-8.449946780999937,0 115.1966335940001,-8.449774575999982,0 115.196640319,-8.449739527999952,0 115.1966762850001,-8.449552060999963,0 115.1967518820001,-8.449173237999958,0 115.1967519980001,-8.449172432999944,0 115.1967924930001,-8.448750859999961,0 115.1967939540001,-8.44874161499996,0 115.1968127570001,-8.448622468999929,0 115.196861741,-8.44831215399995,0 115.196909824,-8.44796970699997,0 115.1969530040001,-8.447690552999973,0 115.196983765,-8.447551144999977,0 115.196985475,-8.44754340999998,0 115.1969867910001,-8.44754248199996,0 115.19699256,-8.44754140699996,0 115.1971117590001,-8.447563009999953,0 115.197207162,-8.447580298999981,0 115.1973318940001,-8.447605089999968,0 115.1973525350001,-8.447609205999981,0 115.1975266930001,-8.44764388599998,0 115.1975274270001,-8.44764405899997,0 115.1975277,-8.447644090999972,0 115.197528249,-8.447644148999927,0 115.197705129,-8.447665705999952,0 115.19770568,-8.447665738999945,0 115.1977064690001,-8.447665669999935,0 115.1977072330001,-8.447665466999979,0 115.1977079500001,-8.44766513299993,0 115.1977085990001,-8.447664680999935,0 115.197709159,-8.447664123999971,0 115.197709612,-8.447663477999981,0 115.197709947,-8.447662763999972,0 115.1977101690001,-8.447661893999964,0 115.1977118960001,-8.447648299999969,0 115.197713461,-8.447634814999958,0 115.197713492,-8.447634296999979,0 115.1977134230001,-8.447633511999982,0 115.1977132170001,-8.447632749999968,0 115.197712883,-8.447632035999959,0 115.19771243,-8.44763138999997,0 115.19771187,-8.447630833999938,0 115.1977112210001,-8.447630381999943,0 115.197710504,-8.447630047999951,0 115.197709622,-8.447629825999968,0 115.1977032440001,-8.447629044999928,0 115.1975955140001,-8.447615906999943,0 115.197533289,-8.447608320999962,0 115.197462619,-8.447594274999972,0 115.1973816760001,-8.447578187999966,0 115.197214002,-8.447544863999951,0 115.19700203,-8.447506052999927,0 115.196996643,-8.44750301299996,0 115.1969949400001,-8.44750060299998,0 115.196996386,-8.44749406699998,0 115.1970532060001,-8.447234001999959,0 115.1970920700001,-8.447071912999945,0 115.1971005830001,-8.447036406999928,0 115.1971228980001,-8.446943332999979,0 115.197144049,-8.446855117999974,0 115.1971441120001,-8.446854837999979,0 115.1971547490001,-8.44680326799994,0 115.1971548830001,-8.44680262199995,0 115.1971774560001,-8.446693193999977,0 115.197261182,-8.446287317999975,0 115.197261343,-8.446285664999948,0 115.1972616530001,-8.446218687999931,0 115.197261733,-8.446201584999926,0 115.1972616610001,-8.446200430999966,0 115.1972547240001,-8.446145795999939,0 115.197254658,-8.446145359999946,0 115.1972542410001,-8.44614381699995,0 115.197249346,-8.446130627999935,0 115.197240888,-8.446107827999981,0 115.1972389430001,-8.44610258299997,0 115.1972387650001,-8.446102110999959,0 115.197238125,-8.446100760999968,0 115.1972372160001,-8.446099469999979,0 115.1972360970001,-8.446098354999947,0 115.1972356690001,-8.446098019999965,0 115.1972124380001,-8.446080862999963,0 115.1971873900001,-8.446062365999978,0 115.197186521,-8.446061795999981,0 115.1971850870001,-8.446061130999965,0 115.1971848320001,-8.446061042999929,0 115.1970917650001,-8.44603039499998,0 115.1969968210001,-8.445999129999961,0 115.1969863480001,-8.445995681999932,0 115.196985949,-8.445995558999925,0 115.1969763530001,-8.445992879999949,0 115.1968409520001,-8.445955118999962,0 115.1967047830001,-8.445917071999929,0 115.19670225,-8.44591636399997,0 115.196702175,-8.445916342999965,0 115.196692963,-8.445913768999958,0 115.1964275800001,-8.445839682999974,0 115.1963999110001,-8.445831959999964,0 115.1963996080001,-8.445831881999936,0 115.196351399,-8.44582018899996,0 115.1962339470001,-8.445791706999955,0 115.19608983,-8.445756786999937,0 115.195962761,-8.445725920999962,0 115.1958416760001,-8.44569652399997,0 115.19571453,-8.445665658999928,0 115.1957051820001,-8.445663391999972,0 115.1957047730001,-8.445663296999953,0 115.1955564310001,-8.445627348999949,0 115.195457979,-8.445592303999945,0 115.195427073,-8.445581301999937,0 115.195420579,-8.445578827999952,0 115.1954194440001,-8.445576014999972,0 115.1954199370001,-8.44556971399993,0 115.1954775810001,-8.445441157999937,0 115.1954777010001,-8.445440860999952,0 115.1954777330001,-8.44544074099997,0 115.1954779060001,-8.445440099999928,0 115.1954779690001,-8.445439379999925,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<description>{&quot;OBJECTID&quot;:&quot;1412&quot;,&quot;NAMOBJ&quot;:&quot;Jalur Hijau&quot;,&quot;NAMZON&quot;:&quot;Zona Ruang Terbuka Hijau&quot;,&quot;KODZON&quot;:&quot;RTH&quot;,&quot;NAMSZN&quot;:&quot;Jalur Hijau&quot;,&quot;KODSZN&quot;:&quot;RTH-8&quot;,&quot;JNSRPR&quot;:&quot;Zona Lindung&quot;,&quot;KODEWP&quot;:&quot;I&quot;,&quot;KODSWP&quot;:&quot;A&quot;,&quot;KODBLK&quot;:&quot;2&quot;,&quot;KODSBL&quot;:&quot;Tidak Ada&quot;,&quot;WADMPR&quot;:&quot;Provinsi Bali&quot;,&quot;WADMKK&quot;:&quot;Kabupaten Badung&quot;,&quot;WADMKC&quot;:&quot;Kecamatan Mengwi&quot;,&quot;WADMKD&quot;:&quot;Desa Kuwum&quot;,&quot;KKOP_1&quot;:&quot;Tidak Ada&quot;,&quot;LP2B_2&quot;:&quot;Tidak Ada&quot;,&quot;KRB_03&quot;:&quot;Tidak Ada&quot;,&quot;TOD_04&quot;:&quot;Tidak Ada&quot;,&quot;TEB_05&quot;:&quot;Tidak Ada&quot;,&quot;PUSLIT&quot;:&quot;Tidak Ada&quot;,&quot;CAGBUD&quot;:&quot;Tidak Ada&quot;,&quot;RESAIR&quot;:&quot;Tidak Ada&quot;,&quot;KSMPDN&quot;:&quot;Tidak Ada&quot;,&quot;HANKAM&quot;:&quot;Tidak Ada&quot;,&quot;KKARST&quot;:&quot;Tidak Ada&quot;,&quot;PTBGMB&quot;:&quot;Tidak Ada&quot;,&quot;MGRSAT&quot;:&quot;Tidak Ada&quot;,&quot;RDBUMI&quot;:&quot;Tidak Ada&quot;,&quot;TPZ_00&quot;:&quot;Tidak Ada&quot;,&quot;REMARK&quot;:&quot;Tidak Ada&quot;,&quot;NOTHPR&quot;:&quot;Peraturan Bupati Badung Nomor 34 Tahun 2022 tentang Rencana Detail Tata Ruang Wilayah Perencanaan Mengwi Tahun 2022-2042&quot;}</description>
</Placemark>
<Placemark>
<visibility>0</visibility>
<styleUrl>#m_ylw-pushpin71</styleUrl>
<MultiGeometry>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
115.1980872700001,-8.467943389999959,0 115.198084128,-8.467928021999967,0 115.1980823910001,-8.467919523999967,0 115.1980796780001,-8.467928923999978,0 115.198085468,-8.467957239999976,0 115.198086512,-8.467965572999958,0 115.198087855,-8.467976232999945,0 115.198086651,-8.467996306999964,0 115.198086468,-8.467999364999969,0 115.1980855840001,-8.468001666999953,0 115.1980852520001,-8.468002530999968,0 115.198080677,-8.468014426999957,0 115.198075782,-8.468027154999959,0 115.198074603,-8.468029294999951,0 115.198063067,-8.46805023099995,0 115.198058639,-8.468058264999968,0 115.1980431310001,-8.468092175999971,0 115.198021484,-8.468191331999947,0 115.1979961550001,-8.46830754399997,0 115.197990524,-8.468326954999952,0 115.1979638880001,-8.468418759999963,0 115.1979369920001,-8.468511345999957,0 115.1979305550001,-8.468533488999981,0 115.197892901,-8.468647231999967,0 115.1978520260001,-8.468770678999931,0 115.1977873520001,-8.469024022999974,0 115.1976051740001,-8.469951646999959,0 115.197597286,-8.469991814999958,0 115.197596661,-8.469995001999962,0 115.197582344,-8.470067914999959,0 115.1975819080001,-8.47007148299997,0 115.1975734270001,-8.470141428999966,0 115.197577496,-8.470127334999972,0 115.1975813140001,-8.470114108999951,0 115.197586415,-8.470072025999968,0 115.1975868300001,-8.470068622999975,0 115.1976017420001,-8.469992684999966,0 115.1977917820001,-8.469025024999951,0 115.1978563900001,-8.468771939999954,0 115.197897213,-8.468648645999963,0 115.197934893,-8.468534824999949,0 115.197941355,-8.468512601999976,0 115.197968251,-8.468420014999936,0 115.1979948860001,-8.468328207999946,0 115.1980005170001,-8.468308799999932,0 115.1980005920001,-8.468308502999946,0 115.1980259200001,-8.468192289999934,0 115.198047466,-8.468093608999936,0 115.1980626980001,-8.468060296999965,0 115.1980670470001,-8.468052406999959,0 115.198079763,-8.468029329999979,0 115.1980800220001,-8.468028771999968,0 115.1980894930001,-8.468004145999942,0 115.1980907220001,-8.468000944999972,0 115.1980909390001,-8.468000150999956,0 115.1980910000001,-8.467999632999977,0 115.1980923860001,-8.467976500999953,0 115.198092394,-8.467976232999945,0 115.198092359,-8.46797566999993,0 115.198091018,-8.467965009999944,0 115.198089974,-8.467956679999929,0 115.1980899290001,-8.467956395999977,0 115.1980872700001,-8.467943389999959,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
115.1975528730001,-8.470214330999966,0 115.1975567990001,-8.470181786999945,0 115.197570819,-8.470066059999965,0 115.197590093,-8.469967921999967,0 115.1976052970001,-8.469890503999977,0 115.197720147,-8.469305736999956,0 115.1977759800001,-8.469021442999974,0 115.1977910260001,-8.468962511999962,0 115.1977962230001,-8.468942156999958,0 115.19779956,-8.468929083999967,0 115.1978117540001,-8.468881316999955,0 115.1978328610001,-8.468798610999954,0 115.1978408100001,-8.46876746199996,0 115.1978680210001,-8.468685190999963,0 115.197873941,-8.468667283999935,0 115.1978758230001,-8.468661592999979,0 115.1979150850001,-8.468543180999973,0 115.1979194150001,-8.468530011999974,0 115.1979197510001,-8.468528857999956,0 115.197952824,-8.468414910999968,0 115.197984858,-8.468304694999972,0 115.1979992470001,-8.46823868499996,0 115.198026955,-8.468111603999944,0 115.1980079530001,-8.468177447999949,0 115.1979948090001,-8.468237725999927,0 115.1979804550001,-8.468303584999944,0 115.1979484620001,-8.468413654999949,0 115.1979150740001,-8.468528680999952,0 115.197910771,-8.468541770999934,0 115.197871511,-8.468660178999926,0 115.1978637080001,-8.468683778999946,0 115.197848924,-8.468728475999967,0 115.1978437900001,-8.468746267999961,0 115.197824295,-8.468813817999944,0 115.197807353,-8.468880202999969,0 115.1977918220001,-8.468941043999962,0 115.1977715520001,-8.469020451999938,0 115.1977156910001,-8.469304868999927,0 115.1976008410001,-8.469889636999937,0 115.1975856370001,-8.469967052999948,0 115.197566355,-8.470065233999946,0 115.1975663100001,-8.470065518999945,0 115.1975522910001,-8.470181245999981,0 115.1975483650001,-8.470213792999971,0 115.1975446790001,-8.470244378999951,0 115.1975528730001,-8.470214330999966,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
115.196720688,-8.473219934999975,0 115.196719999,-8.473219940999968,0 115.1967179520001,-8.473219946999961,0 115.1967003310001,-8.47321999899998,0 115.1966697270001,-8.473220095999977,0 115.196588213,-8.473219293999932,0 115.1965875290001,-8.473221576999947,0 115.1965855130001,-8.473228307999932,0 115.1966697360001,-8.473229137999965,0 115.196700359,-8.473229038999932,0 115.196717979,-8.473228988999949,0 115.196720688,-8.473219934999975,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
115.198036397,-8.468078881999929,0 115.198048253,-8.468052973999932,0 115.1980651700001,-8.468022221999945,0 115.1980749530001,-8.467996865999964,0 115.198075936,-8.467980483999952,0 115.1980761670001,-8.467976625999938,0 115.1980739270001,-8.467959083999972,0 115.1980727010001,-8.467953087999945,0 115.1980698470001,-8.467962980999971,0 115.1980716090001,-8.467976780999948,0 115.198070462,-8.467995900999938,0 115.198061043,-8.468020315999979,0 115.198044759,-8.468049914999938,0 115.198043834,-8.468053121999958,0 115.198036397,-8.468078881999929,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</MultiGeometry>
<description>{&quot;OBJECTID&quot;:&quot;1413&quot;,&quot;NAMOBJ&quot;:&quot;Jalur Hijau&quot;,&quot;NAMZON&quot;:&quot;Zona Ruang Terbuka Hijau&quot;,&quot;KODZON&quot;:&quot;RTH&quot;,&quot;NAMSZN&quot;:&quot;Jalur Hijau&quot;,&quot;KODSZN&quot;:&quot;RTH-8&quot;,&quot;JNSRPR&quot;:&quot;Zona Lindung&quot;,&quot;KODEWP&quot;:&quot;I&quot;,&quot;KODSWP&quot;:&quot;A&quot;,&quot;KODBLK&quot;:&quot;4&quot;,&quot;KODSBL&quot;:&quot;Tidak Ada&quot;,&quot;WADMPR&quot;:&quot;Provinsi Bali&quot;,&quot;WADMKK&quot;:&quot;Kabupaten Badung&quot;,&quot;WADMKC&quot;:&quot;Kecamatan Mengwi&quot;,&quot;WADMKD&quot;:&quot;Desa Sembung&quot;,&quot;KKOP_1&quot;:&quot;Tidak Ada&quot;,&quot;LP2B_2&quot;:&quot;Tidak Ada&quot;,&quot;KRB_03&quot;:&quot;Tidak Ada&quot;,&quot;TOD_04&quot;:&quot;Tidak Ada&quot;,&quot;TEB_05&quot;:&quot;Tidak Ada&quot;,&quot;PUSLIT&quot;:&quot;Tidak Ada&quot;,&quot;CAGBUD&quot;:&quot;Tidak Ada&quot;,&quot;RESAIR&quot;:&quot;Tidak Ada&quot;,&quot;KSMPDN&quot;:&quot;K09E&quot;,&quot;HANKAM&quot;:&quot;Tidak Ada&quot;,&quot;KKARST&quot;:&quot;Tidak Ada&quot;,&quot;PTBGMB&quot;:&quot;Tidak Ada&quot;,&quot;MGRSAT&quot;:&quot;Tidak Ada&quot;,&quot;RDBUMI&quot;:&quot;Tidak Ada&quot;,&quot;TPZ_00&quot;:&quot;Tidak Ada&quot;,&quot;REMARK&quot;:&quot;Tidak Ada&quot;,&quot;NOTHPR&quot;:&quot;Peraturan Bupati Badung Nomor 34 Tahun 2022 tentang Rencana Detail Tata Ruang Wilayah Perencanaan Mengwi Tahun 2022-2042&quot;}</description>
</Placemark>
<Placemark>
<visibility>0</visibility>
<styleUrl>#m_ylw-pushpin71</styleUrl>
<MultiGeometry>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
115.1917635550001,-8.456784109999944,0 115.191755154,-8.456780476999938,0 115.191754885,-8.456781410999952,0 115.1917534920001,-8.456786247999958,0 115.191729126,-8.456870854999977,0 115.1917278880001,-8.456875884999931,0 115.191715646,-8.456925542999954,0 115.1917014980001,-8.456982937999953,0 115.191694057,-8.457056408999961,0 115.191681732,-8.457221733999972,0 115.191668152,-8.457311947999926,0 115.191666581,-8.45731768099995,0 115.191666204,-8.457319057999939,0 115.191666098,-8.457319445999929,0 115.1916655350001,-8.457321508999939,0 115.1916539050001,-8.457364001999963,0 115.1916516800001,-8.457372138999972,0 115.191650082,-8.457377980999979,0 115.19164879,-8.457382698999936,0 115.1916434110001,-8.457402355999932,0 115.1916336060001,-8.457432589999939,0 115.1916264450001,-8.457447276999972,0 115.191613949,-8.457472907999943,0 115.1916078710001,-8.45748322299994,0 115.191603381,-8.45749084299996,0 115.1916032380001,-8.457492187999947,0 115.191602362,-8.457500376999974,0 115.191589054,-8.457624646999932,0 115.191566747,-8.457832896999946,0 115.19156365,-8.457854666999935,0 115.191547463,-8.457969928999944,0 115.1915222980001,-8.458148748999974,0 115.1915157080001,-8.458195586999977,0 115.1914989060001,-8.458315006999953,0 115.1914909290001,-8.458371818999979,0 115.1914884820001,-8.458420949999947,0 115.191488282,-8.458424961999981,0 115.1914759580001,-8.458546658999978,0 115.1914760180001,-8.45855179199998,0 115.1914767080001,-8.458610027999953,0 115.191483067,-8.458660048999946,0 115.1915058010001,-8.458712386999935,0 115.1915084030001,-8.458718373999943,0 115.191520307,-8.458782696999947,0 115.191519351,-8.458843168999977,0 115.19151838,-8.458906437999929,0 115.191518351,-8.458908470999972,0 115.191516554,-8.459025656999927,0 115.1915209360001,-8.459098076999965,0 115.1915286400001,-8.459163288999946,0 115.191543944,-8.459218954999926,0 115.1915665150001,-8.459301097999969,0 115.1915728910001,-8.459324295999977,0 115.191598546,-8.459394465999935,0 115.1916041420001,-8.459425264999936,0 115.191605188,-8.459431020999943,0 115.1916074420001,-8.459450585999946,0 115.1916114490001,-8.459485373999939,0 115.191607844,-8.459575032999965,0 115.1916044200001,-8.459660246999931,0 115.1915933020001,-8.45974814899995,0 115.1915931130001,-8.459788465999964,0 115.191601642,-8.459869495999953,0 115.1916194910001,-8.459976150999978,0 115.1916271660001,-8.460033401999965,0 115.191631323,-8.460169546999964,0 115.191622413,-8.460351785999933,0 115.1916192340001,-8.460416807999934,0 115.191601373,-8.460554298999966,0 115.191560062,-8.460726487999978,0 115.191503706,-8.460917643999949,0 115.1914866400001,-8.460975534999932,0 115.1914803960001,-8.461000282999976,0 115.191433315,-8.461186895999958,0 115.1914089510001,-8.461256926999965,0 115.1913953000001,-8.461346083999956,0 115.1913937380001,-8.461356289999969,0 115.1913884710001,-8.46142045299996,0 115.1913882360001,-8.461423313999944,0 115.1913859570001,-8.461451075999946,0 115.1913833230001,-8.461502494999934,0 115.1913773330001,-8.461551501999963,0 115.1913767860001,-8.461555973999964,0 115.191376998,-8.461557875999972,0 115.191378629,-8.461561226999947,0 115.1913814640001,-8.461563681999962,0 115.1913831830001,-8.461564412999962,0 115.191383565,-8.461564487999965,0 115.1913837610001,-8.46156452699995,0 115.191393691,-8.461566483999945,0 115.1914281520001,-8.461573276999957,0 115.191442355,-8.461576073999936,0 115.1917462280001,-8.461636144999943,0 115.1918001690001,-8.46164678599996,0 115.1921457440001,-8.461706683999978,0 115.1921705090001,-8.461710964999952,0 115.192278684,-8.461731802999964,0 115.19250708,-8.461775788999944,0 115.19261873,-8.461797290999925,0 115.192643685,-8.461802094999939,0 115.1926579740001,-8.461805350999953,0 115.1927060930001,-8.461816315999954,0 115.1927351610001,-8.461822948999952,0 115.1928378760001,-8.461846311999977,0 115.1928600770001,-8.461851363999926,0 115.1929644310001,-8.461888362999957,0 115.1929804480001,-8.461894054999959,0 115.193022967,-8.461909155999933,0 115.193105411,-8.46194008599997,0 115.1931614980001,-8.461955074999935,0 115.1932640750001,-8.461972365999941,0 115.1935015510001,-8.461996060999979,0 115.193521548,-8.461998070999925,0 115.1935627710001,-8.462002220999977,0 115.1937153160001,-8.462014589999967,0 115.1937568510001,-8.462018847999957,0 115.1937904560001,-8.462022345999969,0 115.194017525,-8.462052663999941,0 115.1940175730001,-8.462052670999981,0 115.1941340830001,-8.462068226999975,0 115.194272746,-8.462086728999964,0 115.1943445810001,-8.46209631399995,0 115.1943514550001,-8.462095676999979,0 115.194375218,-8.462093470999946,0 115.1943845340001,-8.462086914999929,0 115.194397245,-8.462058683999942,0 115.1944032360001,-8.462042361999977,0 115.194417645,-8.462003099999947,0 115.1944316270001,-8.461992135999935,0 115.1944389680001,-8.461989177999953,0 115.1944418260001,-8.461988024999926,0 115.194442255,-8.461987958999941,0 115.1944462250001,-8.461987350999948,0 115.1944567390001,-8.461985740999978,0 115.1944690920001,-8.46198570599995,0 115.1944984200001,-8.461991269999942,0 115.1945089860001,-8.461993445999951,0 115.1945179950001,-8.461995300999945,0 115.1945268640001,-8.46199712899994,0 115.1945397100001,-8.461999774999981,0 115.1946882780001,-8.462030379999931,0 115.1947206670001,-8.462037041999963,0 115.1947870710001,-8.462049708999928,0 115.194788149,-8.462049913999977,0 115.1947900800001,-8.462050157999954,0 115.1948118700001,-8.462052913999969,0 115.1948254900001,-8.462054608999949,0 115.1949108270001,-8.462059432999979,0 115.195025954,-8.462066647999961,0 115.1951024590001,-8.46207142999998,0 115.1951033580001,-8.462071446999971,0 115.195124822,-8.462071738999953,0 115.1952281330001,-8.462073151999959,0 115.1952521320001,-8.462073478999969,0 115.1952847460001,-8.462073908999969,0 115.195346918,-8.462074729999927,0 115.195410432,-8.462077681999972,0 115.195433309,-8.462078745999975,0 115.1955375150001,-8.462083653999969,0 115.195545615,-8.462084131999973,0 115.195567534,-8.462085423999952,0 115.1955805800001,-8.462086187999944,0 115.1955809220001,-8.462086210999928,0 115.1956191100001,-8.462088457999926,0 115.1956573250001,-8.462083481999969,0 115.195668037,-8.462082086999942,0 115.1957061720001,-8.462067525999942,0 115.195731194,-8.462057970999979,0 115.1958181030001,-8.462031707999927,0 115.1958700810001,-8.462012060999939,0 115.1958975110001,-8.462007761999928,0 115.195950914,-8.462003580999976,0 115.1960406620001,-8.462010231999955,0 115.1961142330001,-8.462033528999939,0 115.196148072,-8.462051216999953,0 115.1961812970001,-8.462055709999959,0 115.196268676,-8.462056117999964,0 115.196290877,-8.462048084999935,0 115.1962954310001,-8.46204359099994,0 115.1963072000001,-8.462031975999935,0 115.1963394950001,-8.461967270999935,0 115.19635338,-8.461939450999978,0 115.1963654100001,-8.461945380999964,0 115.1963774340001,-8.461951308999971,0 115.196329289,-8.462047899999959,0 115.1963055970001,-8.462071287999947,0 115.196285534,-8.462078489999953,0 115.196273268,-8.462082892999945,0 115.1962298150001,-8.462082693999946,0 115.1961793720001,-8.462082461999955,0 115.1961397910001,-8.462077034999936,0 115.196103858,-8.462058337999963,0 115.1960902950001,-8.462054040999931,0 115.1960355220001,-8.462036688999945,0 115.1960088720001,-8.462034715999948,0 115.1959509420001,-8.462030427999935,0 115.1959225410001,-8.46203264299993,0 115.1959006780001,-8.462034348999964,0 115.195894468,-8.462035315999969,0 115.195876998,-8.462038033999931,0 115.195826817,-8.462057060999939,0 115.1958166410001,-8.462060249999979,0 115.1958117470001,-8.462061782999967,0 115.1958098680001,-8.462063128999944,0 115.1958085750001,-8.462064675999954,0 115.1958083610001,-8.462064931999976,0 115.195807379,-8.462067096999931,0 115.195806917,-8.462069438999947,0 115.195807134,-8.462071796999965,0 115.1958079450001,-8.46207396899996,0 115.19586269,-8.462152046999961,0 115.195888894,-8.46221733699997,0 115.1958956830001,-8.462270885999942,0 115.1958925560001,-8.462310636999973,0 115.1958900320001,-8.462342715999966,0 115.195876932,-8.462374162999936,0 115.1958590630001,-8.462417055999936,0 115.1958014090001,-8.46244842699997,0 115.19560949,-8.462482166999962,0 115.1954677990001,-8.462499761999936,0 115.195425633,-8.462504997999929,0 115.1954115990001,-8.462507928999969,0 115.1953299270001,-8.46252498299998,0 115.1952198180001,-8.46254797499995,0 115.195164705,-8.462564532999977,0 115.1951427660001,-8.462570661999962,0 115.1951307620001,-8.462574014999973,0 115.195126434,-8.462575222999931,0 115.1951261690001,-8.462575296999944,0 115.1951200130001,-8.462576910999928,0 115.1951125170001,-8.462578873999973,0 115.1950847870001,-8.462586134999981,0 115.1950591420001,-8.462593967999965,0 115.1950509430001,-8.462601610999968,0 115.1950475200001,-8.462607420999973,0 115.1950466410001,-8.462608909999972,0 115.195043153,-8.46261857099995,0 115.1950415570001,-8.462626905999969,0 115.1950332250001,-8.462670429999946,0 115.195012611,-8.462778065999942,0 115.1949893080001,-8.462846197999966,0 115.1949656590001,-8.462915362999979,0 115.194950209,-8.462960550999981,0 115.1949476990001,-8.46296863799995,0 115.1949443540001,-8.462979412999971,0 115.1949189650001,-8.463061365999977,0 115.194893877,-8.463142425999933,0 115.1948892570001,-8.463149788999942,0 115.194885933,-8.463155082999947,0 115.1948846280001,-8.463157164999927,0 115.1948812090001,-8.463162613999941,0 115.194830431,-8.46324349799994,0 115.1948212300001,-8.463258155999938,0 115.1948155760001,-8.463265185999944,0 115.194798489,-8.463286434999929,0 115.1947326600001,-8.463368383999978,0 115.194716211,-8.463392282999962,0 115.1947156530001,-8.463393091999933,0 115.1947053700001,-8.463408025999968,0 115.1947031420001,-8.463413389999971,0 115.194697571,-8.463426798999933,0 115.1946952390001,-8.463445497999942,0 115.1946938870001,-8.463494032999961,0 115.1946940710001,-8.463496947999943,0 115.194699817,-8.463587612999959,0 115.1947043500001,-8.463659227999926,0 115.1947015630001,-8.463694915999952,0 115.19470019,-8.46369997499994,0 115.194692655,-8.463727143999961,0 115.194687215,-8.463752609999972,0 115.194686183,-8.463797889999967,0 115.1946883620001,-8.463892992999945,0 115.194688003,-8.463915450999934,0 115.194687936,-8.463919661999967,0 115.194681077,-8.463945299999978,0 115.1946808050001,-8.46394619199998,0 115.1946790980001,-8.463951799999961,0 115.1946766690001,-8.463960013999952,0 115.1946748150001,-8.463971665999964,0 115.194670394,-8.464101624999955,0 115.194666146,-8.464225258999932,0 115.194655868,-8.46435773099995,0 115.1946569390001,-8.464385031999939,0 115.1946598100001,-8.464459982999927,0 115.1946639910001,-8.464511340999934,0 115.194666298,-8.464529886999969,0 115.1946778390001,-8.464543860999981,0 115.1946909600001,-8.46455621299998,0 115.194709395,-8.464568676999932,0 115.1947409010001,-8.464590019999946,0 115.1947423140001,-8.464590977999933,0 115.194751547,-8.464602050999929,0 115.194757726,-8.464609579999944,0 115.1947684930001,-8.464628886999947,0 115.1947727,-8.464658097999973,0 115.1947812220001,-8.464918558999955,0 115.194781551,-8.464929043999973,0 115.194779913,-8.465055226999937,0 115.1947766530001,-8.465079165999953,0 115.1947656900001,-8.465102883999975,0 115.1947345630001,-8.46516257899998,0 115.1947325790001,-8.465166395999972,0 115.1947312340001,-8.465168985999981,0 115.1946891290001,-8.465238298999964,0 115.1946845240001,-8.465250315999981,0 115.194674121,-8.46527746299995,0 115.1946653150001,-8.465319176999969,0 115.194655438,-8.465381959999945,0 115.1946514690001,-8.465389210999945,0 115.194649322,-8.465393134999943,0 115.19464324,-8.465396540999961,0 115.194633648,-8.465398221999976,0 115.194610398,-8.465399908999927,0 115.194610287,-8.465399916999957,0 115.194583294,-8.465405848999978,0 115.1945801490001,-8.465406747999964,0 115.19456245,-8.465411811999957,0 115.19455028,-8.465420342999948,0 115.1945407180001,-8.465431506999948,0 115.1945397870001,-8.465433037999958,0 115.1945355150001,-8.465440065999928,0 115.194530449,-8.465459678999935,0 115.1945301740001,-8.465460743999927,0 115.1945301540001,-8.465461024999968,0 115.194523695,-8.465549657999929,0 115.1945155880001,-8.465633956999966,0 115.194511078,-8.465654556999937,0 115.194509775,-8.465660505999949,0 115.1945076320001,-8.465670071999966,0 115.1945010700001,-8.465689829999974,0 115.1944812850001,-8.46574941199998,0 115.1944693040001,-8.46581343899993,0 115.1944552430001,-8.465905215999953,0 115.1944420410001,-8.465975837999963,0 115.1944282920001,-8.466049353999949,0 115.1944136030001,-8.466068632999963,0 115.1943956160001,-8.46608638999993,0 115.1943911860001,-8.466090761999965,0 115.1943499070001,-8.466111361999936,0 115.194335549,-8.466122779999978,0 115.1943319110001,-8.466127247999964,0 115.1943272640001,-8.466132953999931,0 115.1943217480001,-8.466144493999934,0 115.194318927,-8.466170336999937,0 115.1943132440001,-8.466249676999951,0 115.1943085160001,-8.466316364999955,0 115.1943022680001,-8.466404011999941,0 115.194293698,-8.466458842999941,0 115.194289398,-8.46648214399994,0 115.194282634,-8.466518993999955,0 115.1942818770001,-8.466530595999927,0 115.194281667,-8.466533813999945,0 115.1942797730001,-8.466562327999952,0 115.1942727280001,-8.466668358999925,0 115.194268713,-8.466711006999958,0 115.194255727,-8.466784655999959,0 115.1942529470001,-8.466800421999949,0 115.1942443700001,-8.466835953999976,0 115.1942435530001,-8.466839336999954,0 115.194242389,-8.466844203999926,0 115.1942349980001,-8.466875096999956,0 115.194229402,-8.466919273999963,0 115.1942218410001,-8.467031048999957,0 115.1942188370001,-8.46704485999993,0 115.194210976,-8.467080983999949,0 115.194202352,-8.467104290999941,0 115.1941992220001,-8.467112751999935,0 115.194192279,-8.46714064799994,0 115.1941857590001,-8.467192023999928,0 115.1941855150001,-8.467193945999952,0 115.194184821,-8.467199382999979,0 115.1941724620001,-8.467296125999951,0 115.1941668820001,-8.467352141999982,0 115.1941641330001,-8.467379697999945,0 115.1941545000001,-8.467421594999962,0 115.1941203990001,-8.467541023999956,0 115.194111836,-8.467564498999934,0 115.194107429,-8.467576576999932,0 115.194102174,-8.467591022999954,0 115.1940864200001,-8.467634329999953,0 115.194076833,-8.46766673999997,0 115.1940715220001,-8.467697538999971,0 115.194059453,-8.467780822999941,0 115.194054659,-8.467813883999952,0 115.1940231410001,-8.467930963999947,0 115.194014656,-8.467962481999962,0 115.1940109230001,-8.46797629699995,0 115.1940060950001,-8.467999234999979,0 115.193972548,-8.468159703999959,0 115.193969399,-8.468174740999928,0 115.193960066,-8.468219308999949,0 115.1939481400001,-8.468261256999938,0 115.1939465150001,-8.46826697299997,0 115.193946416,-8.468288207999933,0 115.1939488790001,-8.468306840999958,0 115.193956324,-8.46832685499993,0 115.1939564930001,-8.468327307999971,0 115.1939576460001,-8.468330230999982,0 115.1939897940001,-8.468411709999941,0 115.1939935710001,-8.468421391999925,0 115.193998252,-8.46844473699997,0 115.1940005390001,-8.468467982999925,0 115.193985318,-8.46864914799994,0 115.193989696,-8.468705658999966,0 115.1939922350001,-8.468711790999976,0 115.1939955460001,-8.46871978799993,0 115.1940005460001,-8.468724169999973,0 115.1940168020001,-8.46873841799993,0 115.1940349810001,-8.468753042999936,0 115.19404336,-8.468759782999939,0 115.1940528780001,-8.468773115999966,0 115.194055971,-8.468785331999982,0 115.1940570090001,-8.468802780999965,0 115.194056991,-8.468803003999938,0 115.1940552630001,-8.468824558999927,0 115.1940417760001,-8.468947526999955,0 115.194031878,-8.469037772999968,0 115.19403061,-8.469037631999981,0 115.1940251850001,-8.46903703299995,0 115.1940250680001,-8.469037014999969,0 115.194018451,-8.469036280999944,0 115.1940183300001,-8.469036263999953,0 115.1940212210001,-8.469010064999964,0 115.194028589,-8.468942655999967,0 115.1940331070001,-8.468901319999929,0 115.1940342070001,-8.468891256999939,0 115.194034727,-8.46888649999994,0 115.194041639,-8.468823226999973,0 115.194043307,-8.468802628999981,0 115.194042404,-8.468787438999925,0 115.1940402720001,-8.468778932999953,0 115.194033278,-8.468769229999964,0 115.194033192,-8.468769150999947,0 115.194007915,-8.468748774999938,0 115.1939865760001,-8.468730023999967,0 115.193984125,-8.468727870999942,0 115.1939834220001,-8.468726183999934,0 115.1939762020001,-8.468708847999949,0 115.1939730250001,-8.468667707999941,0 115.193971613,-8.468649079999977,0 115.1939842630001,-8.468498905999979,0 115.1939853280001,-8.468486256999938,0 115.193986835,-8.468468190999943,0 115.1939846880001,-8.468446755999935,0 115.1939803710001,-8.468425313999944,0 115.193943665,-8.468332127999929,0 115.193935534,-8.468310122999981,0 115.1939327130001,-8.468289049999953,0 115.1939328230001,-8.468265007999946,0 115.1939467550001,-8.46821598799994,0 115.1939937000001,-8.467991676999929,0 115.1939976040001,-8.467973163999943,0 115.1940412660001,-8.467811197999936,0 115.1940419680001,-8.467806394999968,0 115.1940466850001,-8.467774076999945,0 115.1940524060001,-8.46773460299994,0 115.194058057,-8.467695392999929,0 115.194063518,-8.467663696999978,0 115.1940734110001,-8.467630114999963,0 115.1940818310001,-8.467607010999927,0 115.1941073930001,-8.467536897999935,0 115.194129317,-8.467460166999956,0 115.1941412660001,-8.46741818299995,0 115.1941505890001,-8.467377556999963,0 115.1941574230001,-8.467309885999953,0 115.194158913,-8.467294616999936,0 115.1941768720001,-8.467153416999963,0 115.194178811,-8.467138146999957,0 115.1941861390001,-8.46710871099998,0 115.194197817,-8.467077222999933,0 115.194208298,-8.467029087999947,0 115.194215781,-8.466918035999981,0 115.194221532,-8.466872683999952,0 115.1942357180001,-8.466813616999957,0 115.1942395530001,-8.466797650999979,0 115.194241701,-8.46678548899996,0 115.19425517,-8.466709231999971,0 115.194259105,-8.46666730499993,0 115.194260471,-8.466647243999944,0 115.194266674,-8.466553448999946,0 115.1942688270001,-8.466521239999963,0 115.19426909,-8.466517302999932,0 115.1942701150001,-8.466511743999945,0 115.1942762310001,-8.46647855599997,0 115.19427939,-8.466461215999971,0 115.1942802300001,-8.466456610999956,0 115.194288644,-8.466402504999962,0 115.194289225,-8.466394350999963,0 115.194301706,-8.466219340999942,0 115.194305308,-8.466169100999934,0 115.1943070990001,-8.466152844999954,0 115.194308434,-8.466140732999975,0 115.194311307,-8.466134708999959,0 115.1943156200001,-8.466125663999946,0 115.194325864,-8.466113151999934,0 115.194342546,-8.466099759999963,0 115.194383076,-8.466079519999937,0 115.1944033090001,-8.46605963199994,0 115.1944154380001,-8.466043689999935,0 115.1944194890001,-8.466022007999982,0 115.1944350980001,-8.465938474999973,0 115.194441779,-8.465902891999974,0 115.194448071,-8.465861624999945,0 115.1944482660001,-8.465860346999932,0 115.1944557590001,-8.46581111699993,0 115.1944581030001,-8.465798615999972,0 115.194467969,-8.465746005999961,0 115.1944910530001,-8.465676474999952,0 115.1944943970001,-8.465666401999954,0 115.194495391,-8.465661912999963,0 115.1945020490001,-8.465631816999974,0 115.1945088330001,-8.465561368999943,0 115.1945100710001,-8.465548514999966,0 115.194510476,-8.465542907999975,0 115.194511753,-8.465525196999977,0 115.1945166310001,-8.465458602999945,0 115.194522731,-8.465434768999955,0 115.194526415,-8.465428724999981,0 115.194529599,-8.465423501999965,0 115.1945410420001,-8.465410176999967,0 115.194556517,-8.465399303999959,0 115.1945734790001,-8.465394468999932,0 115.194579909,-8.465392635999933,0 115.194606664,-8.46538671899998,0 115.194608321,-8.465386351999939,0 115.19460844,-8.465386339999952,0 115.1946319890001,-8.465384739999934,0 115.194639183,-8.465383234999933,0 115.1946400820001,-8.465381588999946,0 115.194642283,-8.465377559999979,0 115.194651848,-8.465316763999965,0 115.1946573700001,-8.465290603999961,0 115.1946609590001,-8.465273604999936,0 115.1946767270001,-8.465232275999938,0 115.194719283,-8.465162330999931,0 115.194720433,-8.465160123999965,0 115.1947272210001,-8.465147090999949,0 115.1947438880001,-8.465115154999978,0 115.1947534350001,-8.465096861999939,0 115.194757781,-8.46508747799993,0 115.1947634180001,-8.46507530699995,0 115.1947662890001,-8.465054256999963,0 115.194767918,-8.46492916099993,0 115.1947623110001,-8.464759067999978,0 115.1947619490001,-8.464748077999957,0 115.1947619150001,-8.464747011999975,0 115.1947603140001,-8.464697268999942,0 115.1947590680001,-8.464659303999952,0 115.194755296,-8.464633247999927,0 115.1947463840001,-8.464617208999925,0 115.194732981,-8.464601148999975,0 115.1946823730001,-8.464566930999979,0 115.1946678380001,-8.464553121999927,0 115.194653171,-8.464535521999949,0 115.194650428,-8.464512729999967,0 115.1946480890001,-8.464484508999931,0 115.1946461030001,-8.464460823999957,0 115.1946427690001,-8.464372673999947,0 115.1946421660001,-8.464357395999969,0 115.194648697,-8.464273725999931,0 115.1946506400001,-8.464248740999949,0 115.1946525200001,-8.464224567999963,0 115.1946533370001,-8.464200815999959,0 115.194654946,-8.464154072999975,0 115.1946579810001,-8.464065137999967,0 115.194661192,-8.463970331999974,0 115.1946633550001,-8.46395696899998,0 115.1946679060001,-8.463941657999953,0 115.1946679160001,-8.463941622999926,0 115.194668832,-8.463938236999979,0 115.1946721830001,-8.463925824999933,0 115.1946741690001,-8.463918344999968,0 115.194674316,-8.463917786999957,0 115.1946745820001,-8.463898423999979,0 115.1946746550001,-8.463893114999962,0 115.1946745710001,-8.463889449999954,0 115.1946724810001,-8.463797917999955,0 115.194673596,-8.463751007999974,0 115.194673747,-8.463750300999948,0 115.1946793410001,-8.46372391999995,0 115.194686796,-8.463697009999976,0 115.1946880190001,-8.463692594999941,0 115.1946891650001,-8.463678007999931,0 115.194690647,-8.463659158999974,0 115.194686796,-8.463598436999973,0 115.1946854850001,-8.463577784999927,0 115.1946851600001,-8.463572657999975,0 115.1946833380001,-8.463543969999932,0 115.1946801830001,-8.463494234999928,0 115.194681614,-8.463444441999968,0 115.194684187,-8.463423206999948,0 115.1946878370001,-8.463414264999926,0 115.194690927,-8.463406698999961,0 115.1947060100001,-8.463382773999967,0 115.194708426,-8.463378940999974,0 115.1947118280001,-8.463374156999976,0 115.1947126900001,-8.463372942999968,0 115.1947127460001,-8.46337286499994,0 115.194713394,-8.463371955999946,0 115.1947215910001,-8.463360430999955,0 115.194721691,-8.463360290999958,0 115.194723864,-8.463357585999972,0 115.1948078890001,-8.463253000999941,0 115.1948079050001,-8.463252980999926,0 115.194810112,-8.463250236999954,0 115.194812941,-8.463245732999951,0 115.194814704,-8.463242924999975,0 115.1948147300001,-8.463242880999928,0 115.1948370180001,-8.463207366999939,0 115.1948813280001,-8.463136759999941,0 115.1949372040001,-8.46295632999994,0 115.1949993710001,-8.462774568999976,0 115.1950176990001,-8.462678772999936,0 115.1950299160001,-8.46261489699998,0 115.1950342390001,-8.462603072999968,0 115.195038423,-8.462595963999945,0 115.1950401260001,-8.462593069999969,0 115.1950466880001,-8.46258691099996,0 115.1950500180001,-8.462583784999936,0 115.1950520090001,-8.462581915999976,0 115.1950810280001,-8.462573009999971,0 115.195122564,-8.462562175999949,0 115.195160877,-8.462551503999975,0 115.1952164370001,-8.462534762999951,0 115.195423374,-8.462491521999937,0 115.195607458,-8.462468684999976,0 115.1957968270001,-8.462435391999975,0 115.195833375,-8.462415514999975,0 115.1958482490001,-8.46240742599997,0 115.1958765730001,-8.462339492999945,0 115.1958819040001,-8.462271179999959,0 115.1958767560001,-8.462230363999936,0 115.1958755500001,-8.46222080299998,0 115.1958705180001,-8.462208251999925,0 115.195850605,-8.462158587999966,0 115.1957909490001,-8.462073612999973,0 115.1957885640001,-8.462071613999967,0 115.195785964,-8.462070660999927,0 115.1957855730001,-8.462070517999962,0 115.195784525,-8.462070512999958,0 115.195782503,-8.462070504999929,0 115.195739911,-8.462083326999959,0 115.1956746550001,-8.462108151999928,0 115.1956588910001,-8.462110218999953,0 115.1956200330001,-8.462115314999949,0 115.1956144300001,-8.462114991999954,0 115.1955933490001,-8.462113776999956,0 115.1955859000001,-8.462113347999946,0 115.195582841,-8.462113164999948,0 115.195582509,-8.462113144999933,0 115.1955361160001,-8.462110405999965,0 115.1955302010001,-8.46211012699996,0 115.195440521,-8.462105897999948,0 115.1953461210001,-8.462101484999948,0 115.1953050930001,-8.462100928999973,0 115.19510144,-8.462098095999977,0 115.1950390810001,-8.462094186999934,0 115.194909205,-8.462086085999942,0 115.194823044,-8.46208126099998,0 115.1948098960001,-8.462079592999942,0 115.194803811,-8.462078820999977,0 115.1947943030001,-8.462077651999948,0 115.19478398,-8.462076381999964,0 115.1947154550001,-8.46206332099996,0 115.1946280090001,-8.462045285999977,0 115.194541081,-8.462027428999932,0 115.194523128,-8.462023742999975,0 115.1945097370001,-8.462021000999925,0 115.194499638,-8.462018934999946,0 115.1944679950001,-8.462012730999959,0 115.1944676410001,-8.46201272199994,0 115.194463207,-8.462012614999935,0 115.1944595140001,-8.462012527999946,0 115.194458637,-8.46201250699994,0 115.194452445,-8.462013464999927,0 115.1944489690001,-8.462014001999933,0 115.194445779,-8.462015291999933,0 115.1944452180001,-8.462015518999976,0 115.194444414,-8.462016145999939,0 115.194443951,-8.46201650699993,0 115.194442285,-8.462017806999938,0 115.1944402580001,-8.462019383999973,0 115.194431417,-8.462043462999929,0 115.1944221330001,-8.462068743999964,0 115.1944074520001,-8.462101366999946,0 115.1944060180001,-8.462104555999929,0 115.19439503,-8.462112274999981,0 115.1943914030001,-8.462114820999943,0 115.1943850550001,-8.462119277999932,0 115.19437028,-8.462120883999944,0 115.1943658790001,-8.462121361999948,0 115.1943606900001,-8.462121787999934,0 115.19435019,-8.462122650999959,0 115.194343935,-8.462123162999944,0 115.1943310300001,-8.46212143899993,0 115.194129317,-8.462094511999965,0 115.1938062040001,-8.462051421999945,0 115.1937873390001,-8.46204890599995,0 115.1937855860001,-8.462048725999978,0 115.1937628000001,-8.462046383999962,0 115.1937627670001,-8.462046379999947,0 115.19376274,-8.462046377999968,0 115.1937497390001,-8.462045040999953,0 115.1937496180001,-8.462045028999967,0 115.1937145050001,-8.462041408999937,0 115.193712988,-8.462041251999949,0 115.1937128730001,-8.462041241999941,0 115.1935604460001,-8.462028883999949,0 115.1935603300001,-8.462028875999977,0 115.1935551900001,-8.462028364999981,0 115.1935377010001,-8.462026624999964,0 115.193524311,-8.462025285999971,0 115.193509883,-8.46202384999998,0 115.193260505,-8.461998927999957,0 115.193155689,-8.461981177999974,0 115.1930972050001,-8.461965543999952,0 115.19301371,-8.461934239999948,0 115.1928525430001,-8.461877088999927,0 115.1927374310001,-8.461850798999933,0 115.1927016550001,-8.461842647999958,0 115.1926381720001,-8.461828194999953,0 115.1925915480001,-8.461819204999927,0 115.1925219140001,-8.461805779999963,0 115.1924973450001,-8.461801054999967,0 115.1923239680001,-8.461767712999972,0 115.192165668,-8.461737245999927,0 115.192138361,-8.461732504999929,0 115.1918141790001,-8.461676322999949,0 115.19179525,-8.46167307099995,0 115.1914990820001,-8.461614658999963,0 115.1914222950001,-8.461599477999926,0 115.1914040800001,-8.461595874999944,0 115.191376274,-8.461590385999955,0 115.1913745280001,-8.461590039999976,0 115.1913708550001,-8.461590384999965,0 115.1913676280001,-8.461592273999941,0 115.1913671890001,-8.461592851999967,0 115.191365442,-8.461595151999973,0 115.1913641680001,-8.461599474999957,0 115.191342111,-8.461674341999981,0 115.1913403350001,-8.461680369999954,0 115.1913362510001,-8.461700503999964,0 115.1913083760001,-8.461837954999964,0 115.1912794980001,-8.46206869699995,0 115.1912790600001,-8.462072199999966,0 115.1912660000001,-8.46217655199996,0 115.191264712,-8.462186847999931,0 115.1912489450001,-8.462312811999936,0 115.1912452190001,-8.462342583999941,0 115.1912428290001,-8.46236031799998,0 115.1912386800001,-8.462391103999948,0 115.191230654,-8.462450685999954,0 115.191226604,-8.462480711999945,0 115.19122445,-8.462496689999966,0 115.1912105060001,-8.462600191999968,0 115.191195018,-8.462715130999982,0 115.191194105,-8.462721907999935,0 115.1911935430001,-8.462725494999972,0 115.1911887640001,-8.462756012999932,0 115.1911390030001,-8.463073907999956,0 115.1910770650001,-8.463445584999931,0 115.1910620230001,-8.463539467999965,0 115.191051043,-8.46360799699994,0 115.1910475210001,-8.463629981999929,0 115.1910424,-8.46366194899997,0 115.1910205280001,-8.463798477999944,0 115.1909920300001,-8.463941445999978,0 115.1909838400001,-8.463982528999964,0 115.1909612600001,-8.464095770999961,0 115.190941896,-8.464168147999942,0 115.1909200330001,-8.464249884999958,0 115.190893906,-8.464347536999981,0 115.190863486,-8.464461225999969,0 115.1907785740001,-8.464797906999934,0 115.1907423900001,-8.46496170599994,0 115.1907269100001,-8.465037747999929,0 115.1907016160001,-8.465161805999969,0 115.190700621,-8.465166690999979,0 115.1906843070001,-8.465246716999957,0 115.1906558280001,-8.465315732999954,0 115.1906171190001,-8.465381063999928,0 115.1906155960001,-8.465383634999966,0 115.1906149910001,-8.46538465499998,0 115.1906050340001,-8.465401456999928,0 115.190595021,-8.46541379699994,0 115.190588023,-8.465422412999942,0 115.1905324370001,-8.465490883999962,0 115.1904984520001,-8.465536732999965,0 115.190490553,-8.46555718299993,0 115.1904820010001,-8.465579322999929,0 115.1904764980001,-8.465613165999969,0 115.1904587990001,-8.465722031999974,0 115.190451431,-8.465770060999944,0 115.1904490310001,-8.465785704999973,0 115.190437115,-8.465863411999976,0 115.1904363990001,-8.465868076999925,0 115.1904268170001,-8.465930545999981,0 115.190426405,-8.46593323899998,0 115.190410453,-8.466037280999956,0 115.1904055880001,-8.466054798999949,0 115.1903968170001,-8.466086387999951,0 115.1903752710001,-8.466114671999946,0 115.1903657180001,-8.466119654999943,0 115.19035896,-8.466123178999965,0 115.1903501860001,-8.466127754999945,0 115.1903472720001,-8.466129274999957,0 115.190308176,-8.466131354999959,0 115.1902010130001,-8.46612694099997,0 115.1898558520001,-8.466112719999956,0 115.1898266720001,-8.466112581999937,0 115.1898188590001,-8.46611254499993,0 115.18979646,-8.46611325799995,0 115.1897741480001,-8.466113967999945,0 115.189746868,-8.466119981999952,0 115.1897325130001,-8.466131486999927,0 115.1897195490001,-8.46616587099993,0 115.189694141,-8.466330988999971,0 115.1896869880001,-8.466377407999971,0 115.189665523,-8.466516777999971,0 115.1896589810001,-8.466559239999981,0 115.1896588510001,-8.466560075999951,0 115.18964569,-8.466645527999958,0 115.1896359690001,-8.466708636999954,0 115.1895912040001,-8.466947835999974,0 115.189567343,-8.467075330999933,0 115.189567129,-8.46707646599998,0 115.189533158,-8.467257986999925,0 115.1895062360001,-8.467401837999944,0 115.1895059200001,-8.467412707999927,0 115.1895042650001,-8.467469732999973,0 115.189502434,-8.467532736999942,0 115.1895076940001,-8.467631042999926,0 115.1895126290001,-8.467715034999969,0 115.1895134340001,-8.467728742999952,0 115.189532361,-8.468050925999933,0 115.1895398,-8.468177569999966,0 115.1895371700001,-8.468220495999958,0 115.18953621,-8.468236182999931,0 115.1895353430001,-8.468250350999938,0 115.1895351100001,-8.468254155999944,0 115.189531654,-8.46831059699997,0 115.1895314830001,-8.468313384999931,0 115.1895199740001,-8.468501378999974,0 115.1895192100001,-8.468513811999969,0 115.1895191980001,-8.468514021999965,0 115.189519076,-8.468516007999938,0 115.1895132120001,-8.468611773999953,0 115.189496489,-8.468990117999965,0 115.1894938710001,-8.469049347999942,0 115.189492242,-8.469081710999944,0 115.1894763720001,-8.469396991999929,0 115.1894584150001,-8.469596524999929,0 115.1894505800001,-8.469683582999949,0 115.189449071,-8.469700345999968,0 115.189448963,-8.469701547999932,0 115.189448283,-8.469708443999934,0 115.1894337100001,-8.469856256999947,0 115.189406178,-8.469973114999959,0 115.189380722,-8.470081163999964,0 115.1893796860001,-8.47008556399993,0 115.18938858,-8.47008769699994,0 115.189410432,-8.470092936999947,0 115.1895587180001,-8.470128494999926,0 115.1898105900001,-8.470188894999978,0 115.189965408,-8.470227030999979,0 115.1902376630001,-8.470276387999945,0 115.1905874400001,-8.470336762999978,0 115.1908087070001,-8.47036897299995,0 115.191087451,-8.470409607999954,0 115.1911609250001,-8.470420314999956,0 115.191180204,-8.47042833699993,0 115.191182894,-8.470429456999966,0 115.191183829,-8.470430872999941,0 115.1911909250001,-8.470441610999956,0 115.1911949620001,-8.470459433999963,0 115.1911899370001,-8.470509756999945,0 115.191168402,-8.470727410999928,0 115.1911692050001,-8.470731117999946,0 115.1911714350001,-8.470734110999956,0 115.191174722,-8.470736024999951,0 115.191188676,-8.470738116999939,0 115.1913593190001,-8.470763638999927,0 115.1913574670001,-8.47077610599996,0 115.1913556120001,-8.470788572999936,0 115.1911870470001,-8.470763474999956,0 115.1910153230001,-8.470737907999933,0 115.1906556780001,-8.470684356999925,0 115.1906394690001,-8.470676151999953,0 115.190630388,-8.470664085999942,0 115.190628908,-8.470655363999981,0 115.1906274720001,-8.470646898999973,0 115.1906290100001,-8.470635395999977,0 115.1906305770001,-8.470623685999954,0 115.190646966,-8.470549425999934,0 115.190682214,-8.470389719999957,0 115.1906821450001,-8.470389176999959,0 115.190681709,-8.470385739999926,0 115.1906794780001,-8.470382288999929,0 115.1906778370001,-8.470381015999976,0 115.190675967,-8.470380198999976,0 115.190582657,-8.470366478999949,0 115.1902436670001,-8.470307961999936,0 115.190232357,-8.470306008999955,0 115.1902248560001,-8.470304651999982,0 115.189959054,-8.470256561999975,0 115.1898443260001,-8.470228283999973,0 115.1898437240001,-8.470228133999967,0 115.1898034120001,-8.470218149999937,0 115.189658665,-8.470183443999929,0 115.1894019870001,-8.470121897999945,0 115.189388871,-8.470118750999973,0 115.189385075,-8.470117839999943,0 115.189384783,-8.470117769999945,0 115.1893843500001,-8.47011774899994,0 115.189382836,-8.470117676999962,0 115.189379163,-8.470118832999958,0 115.1893762300001,-8.470121349999943,0 115.1893753260001,-8.47012306299996,0 115.1893741480001,-8.470127412999943,0 115.1893564940001,-8.470192599999962,0 115.189347264,-8.470226685999933,0 115.1893217960001,-8.470320734999973,0 115.1893147710001,-8.470346679999977,0 115.189314586,-8.470347361999927,0 115.1893143540001,-8.470348212999966,0 115.1892671260001,-8.470522633999963,0 115.1892499690001,-8.470595068999955,0 115.189239345,-8.470639934999951,0 115.1892153550001,-8.470741238999949,0 115.1892116160001,-8.470757016999926,0 115.189191324,-8.470842696999966,0 115.1891812670001,-8.470885159999966,0 115.189167375,-8.470966196999939,0 115.18916533,-8.470978142999968,0 115.1891271090001,-8.471201120999979,0 115.1891253790001,-8.471211212999947,0 115.189122696,-8.471232659999941,0 115.1890689820001,-8.471662003999938,0 115.1890688110001,-8.471663183999965,0 115.1890533980001,-8.471769278999943,0 115.1890345520001,-8.471899031999953,0 115.189001264,-8.472115637999934,0 115.1889977500001,-8.47213445899996,0 115.1889785330001,-8.472237376999942,0 115.1889067000001,-8.472530819999974,0 115.1888763190001,-8.472638153999981,0 115.1888765980001,-8.472642312999938,0 115.1888774900001,-8.472644210999931,0 115.1888787520001,-8.472645845999978,0 115.1888803960001,-8.47264721199997,0 115.1888823390001,-8.472648120999963,0 115.188948252,-8.472658285999955,0 115.18900623,-8.472667230999946,0 115.189137866,-8.472687543999939,0 115.1892124420001,-8.472697689999961,0 115.189468001,-8.472732449999967,0 115.189535522,-8.472741629999973,0 115.189756127,-8.472765382999967,0 115.1897717820001,-8.472767063999981,0 115.1898642680001,-8.472777022999935,0 115.1898939340001,-8.472780217999968,0 115.1899084610001,-8.472781778999945,0 115.189935676,-8.472784851999961,0 115.1900469880001,-8.472797428999968,0 115.1900539920001,-8.472798637999972,0 115.1901501230001,-8.472815232999949,0 115.1902359730001,-8.472830055999964,0 115.1902395720001,-8.47283067799998,0 115.1902593410001,-8.472833530999935,0 115.1904511910001,-8.47286121999997,0 115.190468051,-8.472862996999936,0 115.1905761720001,-8.472874393999973,0 115.19075797,-8.47289355099997,0 115.190758812,-8.47289362999993,0 115.1909701100001,-8.472912228999974,0 115.1909702150001,-8.472912242999939,0 115.1910391120001,-8.472918307999976,0 115.191164328,-8.472929334999947,0 115.191267925,-8.472937909999928,0 115.191275644,-8.472938548999934,0 115.191433025,-8.472951574999968,0 115.191536784,-8.472960164999961,0 115.1915416710001,-8.47296059599995,0 115.1916327930001,-8.472968716999958,0 115.191693801,-8.472974147999935,0 115.191722536,-8.472976708999965,0 115.1917276910001,-8.472977166999954,0 115.19175128,-8.47297926899995,0 115.191818806,-8.472985284999936,0 115.1919219470001,-8.472994465999932,0 115.1919382680001,-8.472995916999935,0 115.191958502,-8.472996614999943,0 115.1919851670001,-8.472997525999972,0 115.1919935290001,-8.472997810999971,0 115.1922840830001,-8.473007756999948,0 115.1923108850001,-8.47300867499996,0 115.192368252,-8.473010028999965,0 115.192629688,-8.47301620199994,0 115.192675783,-8.473019909999948,0 115.19269421,-8.47302138699996,0 115.1927538580001,-8.47302898199996,0 115.192797603,-8.473037300999977,0 115.1928303230001,-8.473043520999965,0 115.1928645060001,-8.473050010999941,0 115.1929166140001,-8.473061179999945,0 115.1929304800001,-8.473064152999939,0 115.1931371630001,-8.473108414999956,0 115.1931539230001,-8.47311200799993,0 115.193159044,-8.473113502999979,0 115.193165032,-8.473115250999967,0 115.1932409000001,-8.473137407999957,0 115.193265567,-8.473144608999974,0 115.193374639,-8.473166538999976,0 115.1934867360001,-8.473182337999958,0 115.1935212230001,-8.473182495999936,0 115.1935290470001,-8.473182530999964,0 115.1935394670001,-8.473182579999957,0 115.1936096080001,-8.473182905999977,0 115.193726414,-8.473184983999943,0 115.1937870190001,-8.473185260999969,0 115.193801921,-8.473185327999943,0 115.1938063350001,-8.473185350999927,0 115.1938113790001,-8.473185376999936,0 115.1938725580001,-8.473185656999931,0 115.193898557,-8.47318577599998,0 115.1939698770001,-8.473184445999948,0 115.193990416,-8.473184062999962,0 115.1940810560001,-8.473182366999936,0 115.1941054060001,-8.473181929999953,0 115.194298599,-8.473178409999946,0 115.1943087740001,-8.47317831099997,0 115.194403339,-8.47317744299994,0 115.194412573,-8.47317735799993,0 115.1944166060001,-8.47317732099998,0 115.1944619180001,-8.473176899999942,0 115.1944685940001,-8.47317684199993,0 115.194479492,-8.473176743999943,0 115.1944819910001,-8.473176722999938,0 115.194633777,-8.473175343999969,0 115.1946516720001,-8.473175606999973,0 115.1948431280001,-8.473177945999964,0 115.195029122,-8.473180249999928,0 115.195036221,-8.473180612999954,0 115.195040722,-8.473180842999966,0 115.1950719280001,-8.473182406999967,0 115.195221669,-8.473189908999927,0 115.1952291990001,-8.473190282999951,0 115.1952294180001,-8.473190292999959,0 115.1952298790001,-8.473190311999929,0 115.195431879,-8.473200365999958,0 115.1955136680001,-8.473203388999934,0 115.1955142750001,-8.473203406999971,0 115.19551473,-8.47320342699993,0 115.1955270340001,-8.473203878999925,0 115.196051631,-8.473223205999943,0 115.1961289000001,-8.473223924999957,0 115.1961655170001,-8.473224190999929,0 115.1962828170001,-8.473225339999942,0 115.1963058810001,-8.47322556499995,0 115.1965855130001,-8.473228307999932,0 115.1965875290001,-8.473221576999947,0 115.196588213,-8.473219293999932,0 115.196585604,-8.473219268999969,0 115.196305971,-8.473216524999941,0 115.196282899,-8.473216297999954,0 115.196165595,-8.473215147999952,0 115.1961289760001,-8.473214882999969,0 115.1960518550001,-8.473214165999934,0 115.195527369,-8.473194843999977,0 115.1955150790001,-8.473194389999946,0 115.1955146130001,-8.473194373999945,0 115.1955140000001,-8.47319435299994,0 115.1955139570001,-8.473194349999972,0 115.1954322490001,-8.473191331999942,0 115.195230302,-8.473181279999949,0 115.1952297250001,-8.473181254999929,0 115.19522916,-8.473181225999951,0 115.195222122,-8.473180876999947,0 115.1950411830001,-8.473171812999965,0 115.195029587,-8.473171219999927,0 115.1950292350001,-8.47317120799994,0 115.194843242,-8.473168904999966,0 115.194651794,-8.473166566999964,0 115.1946337940001,-8.47316630399996,0 115.19448191,-8.47316767999996,0 115.1944798440001,-8.47316769899993,0 115.1944794130001,-8.473167701999955,0 115.1944685140001,-8.473167798999953,0 115.1944618360001,-8.473167858999943,0 115.1944124900001,-8.473168316999931,0 115.194412184,-8.473168318999967,0 115.1943086890001,-8.473169269999971,0 115.194298472,-8.473169368999947,0 115.1941052410001,-8.473172888999954,0 115.19408089,-8.473173326999927,0 115.1939697070001,-8.473175405999939,0 115.1938985070001,-8.473176734999981,0 115.193811423,-8.473176334999948,0 115.193808265,-8.473176318999947,0 115.193806383,-8.473176308999939,0 115.193801965,-8.473176285999955,0 115.1937870610001,-8.473176218999981,0 115.1937264820001,-8.473175941999955,0 115.193609711,-8.473173863999932,0 115.1935290890001,-8.473173489999965,0 115.193487396,-8.473173297999949,0 115.1933761720001,-8.473157623999953,0 115.1932677520001,-8.473135824999929,0 115.1932434570001,-8.473128730999974,0 115.1932415890001,-8.47312818599994,0 115.1931675880001,-8.473106572999939,0 115.1931615990001,-8.47310482499995,0 115.1931564780001,-8.473103329999958,0 115.1931558340001,-8.473103167999966,0 115.1931390750001,-8.473099575999981,0 115.1929323910001,-8.473055312999975,0 115.1929185260001,-8.473052340999971,0 115.1928663130001,-8.473041150999961,0 115.192832025,-8.473034638999934,0 115.1927993060001,-8.473028418999945,0 115.1927554980001,-8.473020089999977,0 115.1927550090001,-8.473020013999928,0 115.1926953620001,-8.47301241699995,0 115.192694939,-8.47301237399995,0 115.192676513,-8.473010896999938,0 115.192630419,-8.473007190999965,0 115.192629903,-8.473007162999977,0 115.192368467,-8.473000988999956,0 115.19231116,-8.472999637999976,0 115.1919938410001,-8.472988774999976,0 115.191958815,-8.472987577999959,0 115.1919388270001,-8.472986889999959,0 115.1919227550001,-8.472985459999961,0 115.1918196160001,-8.472976277999976,0 115.1917285000001,-8.472968161999972,0 115.19169461,-8.472965141999964,0 115.191633603,-8.47295971099993,0 115.1915424780001,-8.472951591999959,0 115.191537562,-8.472951155999965,0 115.191433778,-8.472942564999926,0 115.191276396,-8.47292953799996,0 115.1911651050001,-8.472920325999951,0 115.1910399120001,-8.472909300999959,0 115.19097135,-8.472903269999961,0 115.1909709610001,-8.47290322899994,0 115.1907596340001,-8.47288462399996,0 115.190758898,-8.472884556999929,0 115.1905771270001,-8.472865402999957,0 115.1904690060001,-8.472854005999977,0 115.190452325,-8.472852247999981,0 115.190240997,-8.472821746999955,0 115.190151676,-8.472806323999976,0 115.190151633,-8.472806316999936,0 115.1900555440001,-8.472789728999942,0 115.19004854,-8.472788519999938,0 115.190048012,-8.472788444999935,0 115.1899367000001,-8.472775867999928,0 115.1899094600001,-8.472772791999944,0 115.189894909,-8.472771228999932,0 115.1898652440001,-8.472768032999966,0 115.189772757,-8.472758074999945,0 115.189757104,-8.472756392999941,0 115.189536596,-8.472732651999934,0 115.1894692300001,-8.472723490999954,0 115.1892144950001,-8.472688843999947,0 115.1892136710001,-8.472688731999938,0 115.1891391830001,-8.47267859699997,0 115.1890076220001,-8.472658295999963,0 115.188949642,-8.472649352999952,0 115.1888855080001,-8.472639459999925,0 115.188885485,-8.472639104999928,0 115.1889154410001,-8.472533271999964,0 115.1889155230001,-8.472532960999956,0 115.1889873560001,-8.472239517999981,0 115.18898746,-8.472239029999969,0 115.189006679,-8.472136112999976,0 115.189006766,-8.472135639999976,0 115.1890102010001,-8.47211724899995,0 115.189010241,-8.472117005999962,0 115.1890435350001,-8.471900362999975,0 115.1890623840001,-8.471770582999966,0 115.1890777580001,-8.47166475299997,0 115.1890778010001,-8.471664475999944,0 115.1890779820001,-8.471663206999949,0 115.1891343680001,-8.471212519999938,0 115.1891742820001,-8.470979663999969,0 115.189176328,-8.470967716999951,0 115.1891901690001,-8.470886967999945,0 115.189200163,-8.470844770999975,0 115.189220455,-8.47075909299997,0 115.1892241940001,-8.470743312999957,0 115.1892481850001,-8.47064200899996,0 115.1892588080001,-8.470597144999942,0 115.1892759360001,-8.470524833999946,0 115.189323122,-8.470350568999947,0 115.1893235380001,-8.470349035999959,0 115.1893560320001,-8.470229038999946,0 115.189365263,-8.470194954999954,0 115.1893840940001,-8.470125417999952,0 115.18938427,-8.470124633999944,0 115.1893843470001,-8.470124102999932,0 115.189384549,-8.470122363999963,0 115.1894009240001,-8.470126291999975,0 115.189657602,-8.470187839999937,0 115.18980233,-8.470222540999941,0 115.1898426250001,-8.470232519999968,0 115.1898432290001,-8.470232670999962,0 115.1899579640001,-8.470260950999943,0 115.1899582420001,-8.470261009999945,0 115.1902315650001,-8.47031046099994,0 115.1905819380001,-8.470370941999931,0 115.1906747,-8.470384582999941,0 115.1906754910001,-8.47038492799993,0 115.190676077,-8.47038538299995,0 115.190677334,-8.47038732599998,0 115.1906776110001,-8.47038951299993,0 115.190626124,-8.470622807999973,0 115.1906260760001,-8.470623088999957,0 115.19062297,-8.470646301999977,0 115.190622931,-8.470646898999973,0 115.190622994,-8.470647651999968,0 115.1906259140001,-8.470664854999939,0 115.190626121,-8.470665631999964,0 115.190626456,-8.470666345999973,0 115.190626754,-8.470666796999978,0 115.1906359120001,-8.47067895899994,0 115.19063655,-8.470679613999948,0 115.190637304,-8.470680122999966,0 115.1906527330001,-8.470687872999974,0 115.190653407,-8.470688274999929,0 115.1906536230001,-8.470688379999956,0 115.190654125,-8.470688605999953,0 115.1906549280001,-8.470688816999939,0 115.190655675,-8.470688902999939,0 115.191014651,-8.470742378999944,0 115.191186375,-8.470767945999967,0 115.1913549410001,-8.470793043999947,0 115.1913556120001,-8.470793092999941,0 115.191356401,-8.470793025999967,0 115.1913571660001,-8.470792820999975,0 115.191357883,-8.470792486999926,0 115.1913585310001,-8.470792036999967,0 115.1913590910001,-8.470791478999956,0 115.1913595450001,-8.470790832999967,0 115.19135988,-8.470790118999957,0 115.1913600940001,-8.470789296999953,0 115.1913619600001,-8.470776767999951,0 115.1913638120001,-8.470764299999928,0 115.19136386,-8.470763637999937,0 115.1913637900001,-8.47076285299994,0 115.1913635870001,-8.470762092999962,0 115.1913632520001,-8.470761378999953,0 115.1913627980001,-8.470760732999963,0 115.191362238,-8.470760174999953,0 115.19136159,-8.470759723999947,0 115.191360872,-8.470759389999955,0 115.1913600520001,-8.470759176999934,0 115.191189351,-8.470733645999928,0 115.19117626,-8.470731683999929,0 115.191174529,-8.470730676999949,0 115.1911734370001,-8.470729209999945,0 115.19117299,-8.470727150999949,0 115.1911944550001,-8.470510201999957,0 115.19119948,-8.470459879999964,0 115.191199503,-8.470459433999963,0 115.1911994120001,-8.470458543999939,0 115.1911953550001,-8.470440616999952,0 115.1911951930001,-8.470440064999934,0 115.191194859,-8.470439350999925,0 115.191194719,-8.470439125999974,0 115.191186688,-8.470426971999927,0 115.1911863730001,-8.470426550999946,0 115.1911858130001,-8.470425994999971,0 115.1911851640001,-8.47042554099994,0 115.191184645,-8.470425286999955,0 115.191162576,-8.470416105999959,0 115.191161647,-8.470415852999963,0 115.191088108,-8.470405134999965,0 115.1908093650001,-8.470364497999981,0 115.1905881560001,-8.47033229799996,0 115.1902384580001,-8.47027193699995,0 115.1899663580001,-8.470222608999961,0 115.1898116670001,-8.470184501999938,0 115.1895597810001,-8.470124100999953,0 115.1894119890001,-8.470088670999928,0 115.1894114950001,-8.470088542999974,0 115.1894112210001,-8.470088479999959,0 115.1894104520001,-8.470088334999957,0 115.189389548,-8.470083292999959,0 115.1894150200001,-8.469975179999949,0 115.1894425520001,-8.469858320999947,0 115.1894426540001,-8.469857826999942,0 115.189442749,-8.469857138999942,0 115.189458005,-8.469702391999931,0 115.1894596250001,-8.469684389999941,0 115.1894674130001,-8.469597864999969,0 115.1894674600001,-8.469597330999932,0 115.189485417,-8.469397797999932,0 115.1894854430001,-8.469397443999981,0 115.1895029420001,-8.469049771999948,0 115.1895222820001,-8.468612246999953,0 115.1895282620001,-8.468514571999947,0 115.189529038,-8.468501929999945,0 115.1895405480001,-8.468313934999969,0 115.1895407190001,-8.468311146999952,0 115.189544174,-8.468254705999925,0 115.1895444070001,-8.46825089999993,0 115.1895452750001,-8.468236732999969,0 115.1895462340001,-8.46822104499995,0 115.189548864,-8.468178120999937,0 115.1895488810001,-8.468177569999966,0 115.1895488660001,-8.468177041999979,0 115.1895416550001,-8.468054280999979,0 115.1895414270001,-8.468050397999946,0 115.1895225000001,-8.467728214999966,0 115.1895216950001,-8.467714507999972,0 115.189516763,-8.467630552999935,0 115.1895115220001,-8.467532625999979,0 115.1895133420001,-8.467469994999931,0 115.1895152930001,-8.467402800999935,0 115.1895760570001,-8.467078124999944,0 115.1895762700001,-8.467076988999963,0 115.189644905,-8.466710249999949,0 115.1896449450001,-8.466710006999961,0 115.189654666,-8.466646897999965,0 115.1896678280001,-8.466561446999947,0 115.189674499,-8.466518148999967,0 115.1896959650001,-8.466378776999932,0 115.189703118,-8.466332359999967,0 115.1897283830001,-8.466168167999967,0 115.1897401430001,-8.466136980999977,0 115.1897509080001,-8.466128351999942,0 115.189775283,-8.46612297799993,0 115.189818983,-8.466121587999965,0 115.1898556540001,-8.466121759999965,0 115.1902006380001,-8.46613597399994,0 115.190307801,-8.466140388999975,0 115.190308176,-8.466140396999947,0 115.190308661,-8.466140383999971,0 115.1903477560001,-8.466138303999969,0 115.1903488490001,-8.466138177999937,0 115.1903503780001,-8.466137770999978,0 115.1903514860001,-8.466137283999956,0 115.190363174,-8.466131187999963,0 115.1903752740001,-8.46612487799996,0 115.1903794850001,-8.466122680999945,0 115.1903798110001,-8.466122502999951,0 115.1903811080001,-8.466121597999972,0 115.1903822270001,-8.46612048399993,0 115.1903825060001,-8.466120136999962,0 115.1904037840001,-8.466092205999928,0 115.1904040490001,-8.466091847999962,0 115.190404681,-8.466090907999956,0 115.1904053510001,-8.466089479999937,0 115.1904055700001,-8.466088796999941,0 115.1904143410001,-8.466057208999928,0 115.1904192060001,-8.466039690999935,0 115.1904194130001,-8.46603874799996,0 115.190435383,-8.465934601999948,0 115.1904357950001,-8.465931907999959,0 115.1904453760001,-8.465869440999938,0 115.1904580080001,-8.46578706899993,0 115.1904677680001,-8.465723442999945,0 115.1904908150001,-8.46558169399998,0 115.1905064870001,-8.465541118999965,0 115.1905396300001,-8.465496406999932,0 115.190595085,-8.465428097999961,0 115.190602084,-8.46541947999998,0 115.1906120970001,-8.465407139999968,0 115.190612855,-8.465406051999935,0 115.1906234190001,-8.465388228999927,0 115.190663671,-8.465320289999966,0 115.1906642280001,-8.46531916999993,0 115.1906927060001,-8.465250152999943,0 115.1906928400001,-8.465249809999932,0 115.1906932050001,-8.465248515999974,0 115.190709522,-8.465168487999961,0 115.1907103540001,-8.46516440399995,0 115.1907105170001,-8.46516360399994,0 115.1907358110001,-8.465039543999978,0 115.1907512810001,-8.464963553999951,0 115.1907874120001,-8.464799988999971,0 115.1908722760001,-8.464463498999976,0 115.190902681,-8.464349863999928,0 115.1909288090001,-8.464252210999973,0 115.1909506720001,-8.464170474999946,0 115.1909700350001,-8.464098098999955,0 115.190970167,-8.464097532999972,0 115.1909927470001,-8.463984287999949,0 115.191000937,-8.463943205999954,0 115.191029436,-8.463800237999976,0 115.1910294850001,-8.463799975999962,0 115.1910564880001,-8.46363140699998,0 115.191070992,-8.463540892999958,0 115.1910860250001,-8.46344705599995,0 115.1911479690001,-8.463075343999947,0 115.191197738,-8.462757404999934,0 115.191203091,-8.462723204999975,0 115.191219507,-8.462601393999932,0 115.191233451,-8.462497891999931,0 115.1912356050001,-8.462481914999955,0 115.191239653,-8.462451886999929,0 115.191247681,-8.462392306999959,0 115.1912542250001,-8.462343742999963,0 115.1912578270001,-8.462314968999976,0 115.1912579570001,-8.462313929999937,0 115.1912579680001,-8.462313847999951,0 115.191275012,-8.462177668999971,0 115.191275033,-8.462177503999953,0 115.191288072,-8.462073317999966,0 115.1912884830001,-8.46207002999995,0 115.19128851,-8.46206981399996,0 115.1913173470001,-8.461839402999942,0 115.191345153,-8.461702293999963,0 115.1913491580001,-8.461682545999963,0 115.1913741630001,-8.46159767599994,0 115.1913750120001,-8.461594744999957,0 115.191403196,-8.461600308999948,0 115.1914214110001,-8.46160391199993,0 115.1914981980001,-8.461619093999957,0 115.191794436,-8.461677517999931,0 115.1918134040001,-8.46168077699997,0 115.1921375820001,-8.46173695899995,0 115.1921648160001,-8.461741686999972,0 115.1923231070001,-8.46177215299997,0 115.1925210520001,-8.461810218999972,0 115.1926372370001,-8.461832619999939,0 115.1927006420001,-8.461847055999954,0 115.1927364180001,-8.461855204999949,0 115.192736704,-8.461855270999934,0 115.192851268,-8.461881435999942,0 115.1930121490001,-8.461938483999973,0 115.193095629,-8.461969782999972,0 115.193096028,-8.461969909999937,0 115.1931545110001,-8.461985543999958,0 115.1931549130001,-8.461985631999937,0 115.1932597450001,-8.462003383999956,0 115.193260052,-8.462003424999978,0 115.1935091720001,-8.462028321999981,0 115.1935094310001,-8.462028347999933,0 115.1935238570001,-8.46202978499997,0 115.1935255770001,-8.462029955999981,0 115.1935372500001,-8.462031122999974,0 115.193559875,-8.46203337399993,0 115.193559993,-8.462033383999938,0 115.193560055,-8.462033389999931,0 115.1937125000001,-8.462045746999934,0 115.1937491910001,-8.462049527999966,0 115.1937623350001,-8.462050877999957,0 115.193786809,-8.462053394999941,0 115.19396227,-8.462076794999973,0 115.194128715,-8.462098991999937,0 115.1943304260001,-8.462125918999959,0 115.194343331,-8.462127642999974,0 115.194343935,-8.462127682999949,0 115.194344306,-8.462127667999937,0 115.1943505620001,-8.462127155999951,0 115.194366313,-8.462125860999947,0 115.1943855490001,-8.462123771999927,0 115.1943858450001,-8.462123730999963,0 115.1943866090001,-8.462123524999981,0 115.1943873260001,-8.462123192999968,0 115.1943876730001,-8.462122972999964,0 115.1943976490001,-8.462115967999978,0 115.1944014600001,-8.462113289999934,0 115.194408636,-8.462108249999972,0 115.1944089360001,-8.46210801899997,0 115.194409497,-8.46210746099996,0 115.194409951,-8.462106813999981,0 115.194410164,-8.46210640299995,0 115.194411596,-8.462103213999967,0 115.194421626,-8.462080932999982,0 115.1944216610001,-8.46208084999995,0 115.194426277,-8.462070591999975,0 115.194426398,-8.462070295999979,0 115.194428126,-8.462065588999963,0 115.1944430970001,-8.462024816999929,0 115.1944440760001,-8.462022150999928,0 115.1944450840001,-8.462021366999977,0 115.1944472140001,-8.462019703999943,0 115.194447519,-8.462019467999937,0 115.194450187,-8.462018387999933,0 115.194458929,-8.462017036999953,0 115.194463099,-8.46201713399995,0 115.194467497,-8.462017240999955,0 115.1944987430001,-8.462023364999936,0 115.1945088230001,-8.462025429999926,0 115.194522213,-8.46202816999994,0 115.194540164,-8.462031856999943,0 115.1946270890001,-8.462049712999942,0 115.1947145680001,-8.462067752999928,0 115.1947213120001,-8.462069038999971,0 115.1947831590001,-8.462080827999955,0 115.1947834230001,-8.462080866999941,0 115.1948032470001,-8.462083307999933,0 115.1948224700001,-8.462085743999978,0 115.194822788,-8.462085772999956,0 115.194870517,-8.462088446999928,0 115.194908935,-8.462090598999964,0 115.195038797,-8.462098698999966,0 115.1951012660001,-8.462102610999978,0 115.1953050300001,-8.462105448999978,0 115.1953460080001,-8.462106004999953,0 115.195440307,-8.462110412999948,0 115.1955230210001,-8.462114313999962,0 115.1955358600001,-8.462114919999976,0 115.195582239,-8.462117657999954,0 115.1955856320001,-8.462117858999932,0 115.1955874720001,-8.462117965999937,0 115.19561977,-8.46211982899996,0 115.1956200330001,-8.462119835999943,0 115.195620626,-8.462119796999957,0 115.195675347,-8.462112618999981,0 115.1956762430001,-8.46211238799998,0 115.1957413810001,-8.462087607999933,0 115.1957831660001,-8.462075027999958,0 115.1957847540001,-8.462075035999931,0 115.1957862490001,-8.462075582999944,0 115.1957875690001,-8.462076690999936,0 115.1958465820001,-8.462160749999953,0 115.195871117,-8.462221939999949,0 115.195877342,-8.462271286999965,0 115.1958721010001,-8.462338425999974,0 115.1958446690001,-8.462404221999975,0 115.1957953020001,-8.462431068999933,0 115.19560678,-8.462464213999965,0 115.195422813,-8.46248703599997,0 115.195422514,-8.462487082999928,0 115.1952155040001,-8.462530338999954,0 115.195215122,-8.462530435999952,0 115.1951596250001,-8.46254715799995,0 115.1951213990001,-8.46255780599995,0 115.1950797840001,-8.462568662999956,0 115.1950505640001,-8.462577630999931,0 115.1950497390001,-8.46257800099994,0 115.1950490910001,-8.462578451999946,0 115.195048894,-8.462578625999981,0 115.195043574,-8.462583620999965,0 115.1950370110001,-8.462589779999973,0 115.195036647,-8.462590164999938,0 115.195036208,-8.462590784999975,0 115.1950303150001,-8.462600800999951,0 115.195029973,-8.462601525999958,0 115.19502565,-8.46261334999997,0 115.1950254560001,-8.462614050999946,0 115.1950132380001,-8.462677925999969,0 115.194995069,-8.462773079999977,0 115.194994886,-8.462773758999958,0 115.1949328850001,-8.462954934999971,0 115.1948771630001,-8.463134864999972,0 115.1948331680001,-8.463204968999946,0 115.19481079,-8.463240631999952,0 115.194810759,-8.463240682999981,0 115.194806402,-8.463247617999968,0 115.1948043440001,-8.463250176999964,0 115.194718145,-8.463357464999945,0 115.194717985,-8.463357677999966,0 115.1947096890001,-8.463369341999964,0 115.194708986,-8.463370328999929,0 115.1947046510001,-8.463376432999951,0 115.1946870380001,-8.463404367999942,0 115.1946867210001,-8.463404995999952,0 115.1946836310001,-8.463412561999974,0 115.19467995,-8.463421582999956,0 115.1946796970001,-8.463422542999979,0 115.1946771070001,-8.463443900999948,0 115.1946770760001,-8.463444312999968,0 115.1946756430001,-8.463494170999979,0 115.194675651,-8.463494520999973,0 115.1946788070001,-8.463544254999931,0 115.1946793760001,-8.463553214999934,0 115.1946809540001,-8.463578070999972,0 115.1946860950001,-8.463659123999946,0 115.1946835260001,-8.463691812999969,0 115.1946749640001,-8.463722717999929,0 115.194674898,-8.463722985999937,0 115.1946691390001,-8.463750146999928,0 115.1946690560001,-8.46375089999998,0 115.194667941,-8.463797916999965,0 115.194670113,-8.463893130999963,0 115.1946697840001,-8.463917168999956,0 115.1946677950001,-8.463924659999975,0 115.194664448,-8.463937061999957,0 115.1946635480001,-8.463940393999962,0 115.1946590010001,-8.463955685999963,0 115.194658878,-8.463956216999975,0 115.1946567100001,-8.46396961399995,0 115.194656655,-8.463970178999944,0 115.1946534430001,-8.464064984999936,0 115.194650408,-8.464153917999965,0 115.1946479850001,-8.464224313999978,0 115.194644171,-8.464273375999937,0 115.194637639,-8.464357044999929,0 115.1946376290001,-8.464357483999947,0 115.1946382320001,-8.464372846999936,0 115.194641572,-8.46446109599998,0 115.1946435650001,-8.464484882999955,0 115.1946459120001,-8.464513183999941,0 115.1946486810001,-8.46453618299995,0 115.194648903,-8.464537066999981,0 115.194649238,-8.464537780999933,0 115.194649676,-8.464538408999942,0 115.194664351,-8.464556017999939,0 115.1946647030001,-8.464556392999953,0 115.1946792370001,-8.464570201999948,0 115.1946794540001,-8.464570392999974,0 115.194679821,-8.464570670999933,0 115.1947299000001,-8.464604531999953,0 115.1947426200001,-8.464619769999956,0 115.19475092,-8.464634712999953,0 115.1947545390001,-8.46465970099996,0 115.1947557760001,-8.464697415999979,0 115.1947574110001,-8.464748225999926,0 115.1947633760001,-8.464929192999932,0 115.1947617530001,-8.465053926999929,0 115.1947590110001,-8.465074027999947,0 115.1947493570001,-8.465094873999931,0 115.1947231910001,-8.465145007999979,0 115.194715328,-8.465160104999939,0 115.1946728180001,-8.465229974999943,0 115.1946724820001,-8.465230669999926,0 115.1946567050001,-8.465272028999948,0 115.194656516,-8.465272674999937,0 115.1946473810001,-8.465315960999931,0 115.1946379190001,-8.465376084999946,0 115.194636197,-8.465379240999937,0 115.1946313620001,-8.465380251999932,0 115.1946081320001,-8.465381828999966,0 115.1946079380001,-8.465381844999968,0 115.1946074340001,-8.465381917999935,0 115.1945789240001,-8.465388222999934,0 115.194578661,-8.465388289999964,0 115.1945552670001,-8.465394956999944,0 115.1945549640001,-8.465395054999931,0 115.194554248,-8.465395389999969,0 115.1945538990001,-8.465395609999973,0 115.194538424,-8.465406482999981,0 115.194538124,-8.465406712999936,0 115.1945375900001,-8.465407236999965,0 115.1945261330001,-8.465420579999943,0 115.194525718,-8.465421154999945,0 115.1945188240001,-8.465432464999935,0 115.1945184640001,-8.465433220999955,0 115.194518331,-8.465433652999934,0 115.1945122320001,-8.465457486999981,0 115.1945121600001,-8.465457816999958,0 115.1945121020001,-8.465458272999967,0 115.1945072240001,-8.465524870999957,0 115.1945055460001,-8.46554813399996,0 115.1944975560001,-8.465631111999926,0 115.1944900130001,-8.465665201999968,0 115.194463658,-8.465744586999961,0 115.194463505,-8.465745174999938,0 115.194451284,-8.465810353999927,0 115.194443778,-8.46585966899994,0 115.1944373010001,-8.465902139999969,0 115.1944306350001,-8.465937645999929,0 115.1944111700001,-8.466041812999947,0 115.1943998850001,-8.466056644999981,0 115.194380397,-8.466075798999952,0 115.1943405100001,-8.466095717999963,0 115.1943402750001,-8.466095844999927,0 115.1943396950001,-8.466096238999967,0 115.194322981,-8.466109659999972,0 115.1943223640001,-8.466110268999955,0 115.1943121,-8.466122806999977,0 115.1943116860001,-8.466123404999962,0 115.1943115190001,-8.466123725999978,0 115.1943043320001,-8.46613879399996,0 115.1943041670001,-8.466139184999975,0 115.194303962,-8.466139947999977,0 115.19430392,-8.466140239999959,0 115.1943007860001,-8.46616869199994,0 115.1942971780001,-8.466219019999926,0 115.194284129,-8.466401989999952,0 115.1942757490001,-8.466455873999962,0 115.1942717650001,-8.466477744999963,0 115.1942646220001,-8.466516501999934,0 115.1942645590001,-8.466517002999979,0 115.194262143,-8.466553149999982,0 115.1942559410001,-8.466646942999944,0 115.194254577,-8.466666963999955,0 115.194250666,-8.466708622999931,0 115.1942351050001,-8.466796730999931,0 115.194217115,-8.466871632999926,0 115.1942170450001,-8.466872007999939,0 115.194211276,-8.466917468999952,0 115.1942112500001,-8.466917733999935,0 115.1942037900001,-8.467028458999948,0 115.1941934470001,-8.467075955999974,0 115.194181875,-8.467107154999951,0 115.1941817310001,-8.467107622999947,0 115.194174404,-8.46713705999997,0 115.1941743240001,-8.467137470999944,0 115.1941723670001,-8.467152846999966,0 115.1941544010001,-8.467294113999969,0 115.194152904,-8.467309438999962,0 115.194146099,-8.467376827999942,0 115.1941368670001,-8.467417055999931,0 115.1941249490001,-8.467458930999953,0 115.1941030720001,-8.467535501999976,0 115.194077564,-8.467605467999931,0 115.1940691430001,-8.467628570999977,0 115.194069053,-8.467628840999964,0 115.194059161,-8.467662423999968,0 115.194059045,-8.467662920999942,0 115.194053572,-8.467694688999927,0 115.1940479120001,-8.467733958999929,0 115.19404219,-8.467773428999976,0 115.1940374740001,-8.467805744999964,0 115.1940368100001,-8.467810290999978,0 115.1939931910001,-8.467972111999927,0 115.193989256,-8.467990751999935,0 115.193942342,-8.46821491399993,0 115.1939284540001,-8.468263776999947,0 115.1939283520001,-8.468264222999949,0 115.1939282820001,-8.468264986999941,0 115.193928171,-8.468289039999945,0 115.1939282110001,-8.468289646999949,0 115.1939310480001,-8.468310813999949,0 115.19393127,-8.468311675999928,0 115.1939394200001,-8.468333733999941,0 115.1939759970001,-8.468426592999947,0 115.193980193,-8.468447430999959,0 115.1939822750001,-8.46846822699996,0 115.193980804,-8.468485881999925,0 115.193979739,-8.46849852899993,0 115.193967089,-8.468648702999928,0 115.1939670720001,-8.468649078999931,0 115.1939670850001,-8.468649418999973,0 115.1939684980001,-8.468668050999952,0 115.193971677,-8.468709192999938,0 115.193971731,-8.468709633999936,0 115.1939719720001,-8.468710485999964,0 115.1939799300001,-8.46872960099995,0 115.193980192,-8.468730130999973,0 115.1939806460001,-8.468730776999962,0 115.1939811210001,-8.468731258999981,0 115.194004989,-8.46875222999995,0 115.1940299460001,-8.468772324999975,0 115.194030214,-8.468772630999979,0 115.1940360770001,-8.468780864999928,0 115.1940378960001,-8.468788127999971,0 115.1940387560001,-8.468802577999952,0 115.1940371160001,-8.468822822999925,0 115.1940296930001,-8.468890766999948,0 115.194024075,-8.468942166999966,0 115.194016708,-8.469009570999958,0 115.194013817,-8.469035769999948,0 115.1940137900001,-8.469036264999943,0 115.1940138590001,-8.46903704999994,0 115.1940140630001,-8.469037810999964,0 115.194014398,-8.469038524999974,0 115.194014852,-8.469039169999974,0 115.1940154120001,-8.469039727999927,0 115.1940160610001,-8.469040178999933,0 115.1940167790001,-8.469040511999935,0 115.1940175410001,-8.469040716999928,0 115.194017838,-8.469040758999938,0 115.1940245730001,-8.469041511999933,0 115.1940313780001,-8.469042264999928,0 115.194031879,-8.469042293999962,0 115.1940326670001,-8.469042224999953,0 115.1940334330001,-8.469042019999961,0 115.1940341490001,-8.469041687999947,0 115.1940347970001,-8.469041235999953,0 115.1940353570001,-8.469040676999953,0 115.194035811,-8.469040032999942,0 115.194036147,-8.469039317999943,0 115.194036351,-8.469038557999966,0 115.194036394,-8.469038263999948,0 115.1940462890001,-8.468948017999935,0 115.1940597830001,-8.468824982999934,0 115.1940615350001,-8.468803140999967,0 115.19406155,-8.468802780999965,0 115.1940615420001,-8.468802511999968,0 115.194060505,-8.468785063999974,0 115.194060443,-8.468784546999927,0 115.194060375,-8.468784226999958,0 115.194057281,-8.468772008999963,0 115.1940571450001,-8.468771569999944,0 115.19405681,-8.468770855999935,0 115.1940565790001,-8.46877049699998,0 115.1940470600001,-8.468757163999953,0 115.1940468380001,-8.468756876999976,0 115.1940462460001,-8.468756290999977,0 115.194037834,-8.468749525999954,0 115.1940197290001,-8.468734959999949,0 115.1939993410001,-8.468717091999963,0 115.193994169,-8.468704596999942,0 115.1939898740001,-8.468649164999931,0 115.194005066,-8.468468358999928,0 115.194005079,-8.468467982999925,0 115.194005058,-8.468467540999939,0 115.1940027730001,-8.468444296999962,0 115.194002714,-8.468443900999944,0 115.1939980230001,-8.468420507999951,0 115.193997821,-8.468419800999925,0 115.1939940250001,-8.468410064999944,0 115.193960747,-8.468325726999979,0 115.193960731,-8.468325685999957,0 115.1939533140001,-8.468305746999931,0 115.1939509590001,-8.468287921999945,0 115.1939510530001,-8.468267609999941,0 115.193964434,-8.468220539999948,0 115.1939645110001,-8.468220229999929,0 115.1939769930001,-8.468160625999928,0 115.19401054,-8.468000158999928,0 115.1940153420001,-8.467977347999977,0 115.194019043,-8.467963653999959,0 115.1940275270001,-8.467932133999966,0 115.194059045,-8.46781505499996,0 115.194059142,-8.467814598999951,0 115.194063947,-8.467781466999952,0 115.194076008,-8.467698247999977,0 115.194081264,-8.467667762999952,0 115.194090736,-8.46763574199997,0 115.194111698,-8.467578117999949,0 115.1941246690001,-8.467542566999953,0 115.1941247680001,-8.46754225899997,0 115.1941588980001,-8.467422716999977,0 115.1941685820001,-8.467380594999952,0 115.1941686510001,-8.467380144999936,0 115.1941714000001,-8.467352587999926,0 115.194176972,-8.467296653999938,0 115.1941900210001,-8.46719451499996,0 115.1941967490001,-8.467141479999952,0 115.194203569,-8.467114081999966,0 115.1942152400001,-8.467082536999953,0 115.194215414,-8.467081941999936,0 115.1942262970001,-8.467031917999975,0 115.1942263720001,-8.467031351999935,0 115.194233925,-8.46691969699998,0 115.194239473,-8.466875909999942,0 115.1942479690001,-8.466840389999959,0 115.194257361,-8.466801477999979,0 115.1942574190001,-8.466801205999957,0 115.1942602,-8.466785436999942,0 115.194273187,-8.46671178899993,0 115.1942732340001,-8.466711428999929,0 115.1942772550001,-8.466668718999927,0 115.1942861980001,-8.466534109999941,0 115.194287149,-8.466519552999955,0 115.1942938650001,-8.466482957999972,0 115.1942981730001,-8.46645960799998,0 115.1943067550001,-8.466404705999935,0 115.1943067970001,-8.466404330999978,0 115.194313046,-8.466316683999935,0 115.1943177730001,-8.466249996999977,0 115.1943234500001,-8.466170757999976,0 115.1943261800001,-8.46614574299997,0 115.1943311320001,-8.466135382999937,0 115.1943387670001,-8.466126005999968,0 115.1943523690001,-8.466115190999972,0 115.19439322,-8.466094802999976,0 115.194393457,-8.466094677999934,0 115.194394105,-8.466094225999939,0 115.194394384,-8.466093972999943,0 115.1944168000001,-8.466071843999941,0 115.194417152,-8.466071450999948,0 115.1944319090001,-8.46605208699998,0 115.194432225,-8.466051614999969,0 115.194432559,-8.466050898999981,0 115.1944327570001,-8.466050179999968,0 115.1944465050001,-8.465976664999971,0 115.1944597180001,-8.465905978999956,0 115.1944737780001,-8.465814213999977,0 115.194485693,-8.465750536999963,0 115.1945119430001,-8.465671491999956,0 115.194512065,-8.465671055999962,0 115.1945142090001,-8.465661476999969,0 115.194520042,-8.465634830999932,0 115.194520108,-8.465634385999977,0 115.1945282190001,-8.465550036999957,0 115.1945346750001,-8.465461474999927,0 115.1945397440001,-8.465441838999936,0 115.194544413,-8.465434158999926,0 115.1945533640001,-8.465423709999925,0 115.1945644370001,-8.46541594699994,0 115.194584413,-8.465410233999933,0 115.194610677,-8.465404431999957,0 115.194611258,-8.465404355999965,0 115.1946339790001,-8.465402729999937,0 115.194634435,-8.465402672999971,0 115.1946440270001,-8.465400993999936,0 115.1946447930001,-8.465400791999969,0 115.1946454660001,-8.465400482999939,0 115.194651571,-8.465397062999955,0 115.1946522400001,-8.465396597999927,0 115.1946528000001,-8.465396040999963,0 115.1946532820001,-8.465395346999969,0 115.194659427,-8.465384122999978,0 115.194659705,-8.465383505999966,0 115.1946599170001,-8.465382702999932,0 115.1946697830001,-8.465319994999959,0 115.1946784920001,-8.465278739999974,0 115.194693226,-8.46524028999994,0 115.1947351430001,-8.46517128499994,0 115.194735268,-8.465171062999957,0 115.1947385940001,-8.465164657999935,0 115.194769767,-8.465104870999937,0 115.1947807780001,-8.465081054999928,0 115.1947809220001,-8.465080711999974,0 115.194781139,-8.465079861999925,0 115.1947844130001,-8.465055833999941,0 115.194784453,-8.465055284999949,0 115.1947860910001,-8.464929016999974,0 115.194785762,-8.464918413999953,0 115.194777239,-8.464657950999936,0 115.194777196,-8.46465745699993,0 115.1947729770001,-8.464628173999927,0 115.1947727620001,-8.464627340999925,0 115.194772463,-8.464626691999968,0 115.1947616780001,-8.464607352999963,0 115.194761242,-8.464606719999949,0 115.1947550530001,-8.464599176999968,0 115.1947458010001,-8.464588079999942,0 115.1947452320001,-8.464587514999948,0 115.19474487,-8.464587239999958,0 115.1947119490001,-8.464564936999977,0 115.1946938130001,-8.464552675999926,0 115.1946811670001,-8.464540769999928,0 115.1946706430001,-8.464528027999961,0 115.19466851,-8.464510884999981,0 115.194664342,-8.46445969499996,0 115.1946614760001,-8.46438485799996,0 115.194660415,-8.46435781699995,0 115.1946706790001,-8.464225510999938,0 115.1946749320001,-8.464101777999929,0 115.1946793430001,-8.463972097999942,0 115.1946811070001,-8.463961005999977,0 115.1946834510001,-8.463953093999976,0 115.194685444,-8.46394653599998,0 115.194692324,-8.463920823999956,0 115.194692407,-8.463920446999964,0 115.1946924770001,-8.463919733999944,0 115.1946929010001,-8.463892981999948,0 115.1946907250001,-8.463797888999977,0 115.1946917470001,-8.463753136999969,0 115.1946970700001,-8.463728212999968,0 115.1947045720001,-8.463701163999929,0 115.1947059460001,-8.463696094999932,0 115.1947060340001,-8.463695700999949,0 115.1947060900001,-8.463695265999945,0 115.194708877,-8.463659578999966,0 115.19470889,-8.463659227999926,0 115.1947088810001,-8.463658942999928,0 115.1947043490001,-8.46358732799996,0 115.194698603,-8.463496661999955,0 115.1946984320001,-8.463493952999954,0 115.19469901,-8.463473183999952,0 115.194699771,-8.463445845999956,0 115.1947020020001,-8.463427960999979,0 115.1947093870001,-8.463410187999955,0 115.1947132740001,-8.463404542999967,0 115.1947193990001,-8.463395648999949,0 115.194736312,-8.463371076999977,0 115.1948020340001,-8.463289259999954,0 115.194824775,-8.463260980999962,0 115.1948250800001,-8.463260550999962,0 115.194885061,-8.463165007999976,0 115.1948897840001,-8.463157476999982,0 115.19489777,-8.463144751999948,0 115.1948981820001,-8.46314386499995,0 115.1949233040001,-8.463062697999931,0 115.1949486940001,-8.462980746999961,0 115.1949545250001,-8.462961954999969,0 115.194993606,-8.462847655999951,0 115.1950169090001,-8.462779521999948,0 115.195017071,-8.462778912999966,0 115.1950376850001,-8.46267127699997,0 115.1950460180001,-8.462627751999946,0 115.195047548,-8.462619762999964,0 115.1950507710001,-8.462610837999932,0 115.195054527,-8.462604460999955,0 115.1950614770001,-8.462597982999966,0 115.1950860280001,-8.462590484999964,0 115.195121165,-8.462581281999974,0 115.19512736,-8.462579657999981,0 115.195127659,-8.46257957499995,0 115.1951319890001,-8.462578366999935,0 115.195139969,-8.462576138999964,0 115.195165975,-8.462568872999952,0 115.1952209470001,-8.462552358999972,0 115.195327494,-8.462530109999932,0 115.195330858,-8.462529406999977,0 115.195426385,-8.462509460999968,0 115.195610052,-8.462486651999939,0 115.1956102790001,-8.462486617999957,0 115.195802198,-8.462452878999954,0 115.195802962,-8.462452675999941,0 115.195803586,-8.462452394999957,0 115.1958612880001,-8.462420996999981,0 115.1958619820001,-8.462420518999977,0 115.1958625420001,-8.462419961999956,0 115.1958629960001,-8.462419315999966,0 115.195863258,-8.462418787999979,0 115.195894263,-8.462344354999971,0 115.1958945030001,-8.462343501999953,0 115.1958945590001,-8.462343069999974,0 115.1959002100001,-8.46227123999995,0 115.1959002240001,-8.462270885999942,0 115.1959001880001,-8.46227031899997,0 115.1958933830001,-8.462216660999957,0 115.1958931370001,-8.462215725999954,0 115.1958669070001,-8.462150368999971,0 115.195866623,-8.46214978699993,0 115.1958664140001,-8.462149457999942,0 115.195811999,-8.462071850999962,0 115.1958116010001,-8.46207078599997,0 115.195811498,-8.462069671999927,0 115.1958117320001,-8.462068482999939,0 115.1958122450001,-8.462067353999942,0 115.195812991,-8.462066460999949,0 115.1958138050001,-8.46206587699993,0 115.195828181,-8.462061372999926,0 115.1958284020001,-8.462061297999981,0 115.195878169,-8.462042428999951,0 115.195901206,-8.462038842999959,0 115.1959509540001,-8.462034961999962,0 115.1960346540001,-8.462041157999977,0 115.1961021070001,-8.462062526999944,0 115.196137689,-8.462081040999976,0 115.1961382380001,-8.462081282999975,0 115.196139087,-8.462081499999954,0 115.196178753,-8.462086940999939,0 115.1961793520001,-8.46208698199996,0 115.196273258,-8.462087414999928,0 115.1962740570001,-8.462087345999976,0 115.1962748080001,-8.462087145999931,0 115.1963071440001,-8.462075538999954,0 115.1963078670001,-8.462075203999973,0 115.1963085150001,-8.462074751999978,0 115.1963087940001,-8.462074498999925,0 115.1963324860001,-8.462051110999937,0 115.196332768,-8.462050805999979,0 115.196333223,-8.462050159999933,0 115.1963333570001,-8.462049909999962,0 115.196381502,-8.461953319999964,0 115.196381702,-8.461952854999936,0 115.1963819060001,-8.461952094999958,0 115.196381975,-8.461951308999971,0 115.1963819060001,-8.461950523999974,0 115.196381702,-8.461949763999939,0 115.1963813680001,-8.461949048999941,0 115.1963809130001,-8.461948403999941,0 115.1963803530001,-8.46194784599993,0 115.196379705,-8.461947394999981,0 115.196379449,-8.461947257999952,0 115.1963674250001,-8.461941328999956,0 115.1963553950001,-8.461935398999969,0 115.196354934,-8.461935202999939,0 115.1963541690001,-8.461934997999947,0 115.19635338,-8.461934929999927,0 115.196352592,-8.461934997999947,0 115.196351827,-8.461935202999939,0 115.19635111,-8.461935535999942,0 115.1963504620001,-8.461935987999937,0 115.1963499020001,-8.461936545999947,0 115.1963494480001,-8.461937190999947,0 115.196349314,-8.461937438999939,0 115.196303467,-8.462029295999969,0 115.1962883910001,-8.46204417499996,0 115.1962678860001,-8.462051593999945,0 115.196181612,-8.462051190999944,0 115.1961494760001,-8.462046844999975,0 115.1961163430001,-8.462029525999981,0 115.1961156980001,-8.462029249999944,0 115.1960420380001,-8.462005923999925,0 115.1960414500001,-8.46200577999997,0 115.196040999,-8.462005722999947,0 115.1959512520001,-8.46199907099998,0 115.195950914,-8.461999058999936,0 115.195950558,-8.461999073999948,0 115.195897154,-8.462003254999956,0 115.1958968040001,-8.462003295999978,0 115.195869333,-8.462007600999925,0 115.1958685000001,-8.462007822999965,0 115.1958166280001,-8.462027430999967,0 115.1957298750001,-8.462053645999958,0 115.195729604,-8.462053735999973,0 115.1956669140001,-8.462077672999953,0 115.1956189450001,-8.46208392099993,0 115.1955812000001,-8.462081697999963,0 115.1955808580001,-8.462081675999968,0 115.195579683,-8.462081606999959,0 115.195567802,-8.46208091099993,0 115.1955377580001,-8.462079138999968,0 115.195433523,-8.462074230999974,0 115.1953470560001,-8.462070211999958,0 115.1952521930001,-8.462068957999975,0 115.1952290530001,-8.462068641999963,0 115.1951248710001,-8.462067217999959,0 115.1951034220001,-8.462066925999977,0 115.1951026430001,-8.462066912999944,0 115.1950372230001,-8.46206282199995,0 115.1950262390001,-8.462062135999929,0 115.194911099,-8.462054919999957,0 115.1948258970001,-8.462050102999967,0 115.1948124380001,-8.462048428999935,0 115.194788859,-8.46204544699998,0 115.1947215580001,-8.462032608999948,0 115.194689196,-8.462025952999966,0 115.194576639,-8.462002764999966,0 115.1945406310001,-8.461995345999981,0 115.1945395660001,-8.461995127999955,0 115.194518914,-8.46199087399998,0 115.194499305,-8.461986834999948,0 115.1944699120001,-8.46198125899997,0 115.194469086,-8.461981185999946,0 115.1944567270001,-8.461981220999974,0 115.1944560490001,-8.461981272999935,0 115.1944455350001,-8.461982881999973,0 115.1944410870001,-8.461983563999979,0 115.1944401980001,-8.461983804999932,0 115.1944384290001,-8.461984518999941,0 115.1944372640001,-8.461984986999937,0 115.194429924,-8.461987943999929,0 115.1944293570001,-8.461988220999956,0 115.194428818,-8.461988583999926,0 115.1944147820001,-8.461999592999973,0 115.1944141670001,-8.462000194999973,0 115.194413713,-8.462000838999927,0 115.1944133810001,-8.462001548999979,0 115.1943930360001,-8.462056980999932,0 115.1943809000001,-8.462083935999942,0 115.1943735880001,-8.462089080999931,0 115.194344673,-8.462091763999979,0 115.1941346860001,-8.462063745999956,0 115.1940181770001,-8.462048189999962,0 115.1938305340001,-8.462023135999971,0 115.1937909940001,-8.462017856999978,0 115.193757319,-8.462014349999947,0 115.1937157330001,-8.462010087999943,0 115.1935631800001,-8.461997719999943,0 115.1935220050001,-8.461993572999972,0 115.193502005,-8.46199156199998,0 115.193501745,-8.46199153699996,0 115.193264675,-8.461967882999943,0 115.193162472,-8.461950654999953,0 115.1931068020001,-8.46193577799994,0 115.193024526,-8.46190490999993,0 115.1929819740001,-8.461889796999969,0 115.1929659560001,-8.461884103999978,0 115.1928616,-8.461847104999947,0 115.1928610890001,-8.461846956999977,0 115.1928388890001,-8.461841904999972,0 115.1927361750001,-8.461818541999946,0 115.192735845,-8.461818465999954,0 115.192707107,-8.461811909999938,0 115.1926446230001,-8.461797671999932,0 115.192507942,-8.461771349999935,0 115.1922795470001,-8.461727364999945,0 115.1921713190001,-8.461706516999925,0 115.192146522,-8.461702231999936,0 115.1918010110001,-8.461642343999927,0 115.1917471110001,-8.461631709999949,0 115.191443914,-8.461571798999955,0 115.191443207,-8.461571631999959,0 115.1914423640001,-8.461571509999942,0 115.1914290340001,-8.461568841999963,0 115.191385024,-8.461560166999959,0 115.191385512,-8.461558478999962,0 115.1913857300001,-8.461557544999948,0 115.191385801,-8.461557067999934,0 115.191392338,-8.461503587999971,0 115.1913923930001,-8.461502955999947,0 115.1913950200001,-8.461451658999977,0 115.1913975220001,-8.461421188999964,0 115.1914027620001,-8.461357350999947,0 115.191417804,-8.461259106999933,0 115.191441896,-8.461189855999976,0 115.1914421230001,-8.461189098999967,0 115.1914954050001,-8.460977904999936,0 115.1915687750001,-8.460729033999939,0 115.191568895,-8.460728587999938,0 115.1916102060001,-8.460556399999973,0 115.191610316,-8.460555868999961,0 115.1916103790001,-8.460555458999977,0 115.1916282410001,-8.460417967999945,0 115.191628304,-8.460417247999942,0 115.191631483,-8.460352225999941,0 115.191640395,-8.460169986999972,0 115.1916404050001,-8.460169546999964,0 115.1916404010001,-8.460169272999963,0 115.1916362420001,-8.460033125999928,0 115.1916361670001,-8.460032205999937,0 115.1916284930001,-8.45997495499995,0 115.1916284490001,-8.459974664999947,0 115.1916106460001,-8.459868276999941,0 115.1916021970001,-8.459788015999948,0 115.191602381,-8.459748736999927,0 115.1916134300001,-8.459661377999964,0 115.1916134940001,-8.459660608999968,0 115.191616918,-8.459575393999955,0 115.1916205240001,-8.459485735999976,0 115.191620531,-8.459485374999929,0 115.1916204710001,-8.459484343999975,0 115.19161421,-8.459429989999933,0 115.1916141280001,-8.459429429999943,0 115.1916080090001,-8.459395753999956,0 115.1916074820001,-8.459392856999955,0 115.19160708,-8.459391373999949,0 115.1915815520001,-8.459321551999949,0 115.1915752740001,-8.459298710999974,0 115.191552704,-8.459216567999931,0 115.19153758,-8.459161556999959,0 115.1915299860001,-8.459097278999934,0 115.19152564,-8.459025450999945,0 115.191527432,-8.458908604999976,0 115.191527454,-8.458907075999946,0 115.1915274610001,-8.458906572999979,0 115.191528432,-8.458843308999974,0 115.191529134,-8.458798850999926,0 115.191529388,-8.458782766999946,0 115.1915292440001,-8.45878109299997,0 115.1915173340001,-8.458716734999939,0 115.1915169360001,-8.458715281999957,0 115.191516737,-8.458714783999937,0 115.191514137,-8.45870879499995,0 115.191503126,-8.458683449999967,0 115.191491914,-8.458657639999956,0 115.1914857830001,-8.458609403999958,0 115.191485045,-8.458547063999958,0 115.1914973180001,-8.458425868999939,0 115.191497352,-8.458425409999961,0 115.191499979,-8.458372668999971,0 115.191507901,-8.458316258999957,0 115.191524702,-8.45819684099996,0 115.191531292,-8.458150003999947,0 115.191556457,-8.457971181999937,0 115.1915726440001,-8.457855926999969,0 115.1915757380001,-8.457834165999941,0 115.191575777,-8.457833855999979,0 115.191598085,-8.457625605999965,0 115.191611392,-8.457501334999961,0 115.1916114710001,-8.457500594999942,0 115.1916122040001,-8.457493738999972,0 115.191621798,-8.457477455999936,0 115.1916221180001,-8.457476855999971,0 115.1916346150001,-8.457451224999943,0 115.1916417750001,-8.457436537999968,0 115.191642139,-8.457435682999972,0 115.191642246,-8.457435368999938,0 115.1916520530001,-8.457405134999931,0 115.1916521740001,-8.457404732999976,0 115.191658843,-8.457380356999977,0 115.1916626680001,-8.457366377999961,0 115.1916631510001,-8.457364610999946,0 115.1916742980001,-8.457323882999958,0 115.1916749660001,-8.457321432999947,0 115.191676913,-8.457314327999939,0 115.1916771130001,-8.457313402999944,0 115.1916907120001,-8.457223073999955,0 115.1916907880001,-8.457222401999957,0 115.1917031040001,-8.457057207999981,0 115.1917104700001,-8.456984476999935,0 115.1917244650001,-8.456927696999969,0 115.191736708,-8.456878038999946,0 115.1917379040001,-8.456873181999981,0 115.1917621910001,-8.456788849999953,0 115.1917622220001,-8.456788740999968,0 115.1917635550001,-8.456784109999944,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
115.1962852840001,-8.463708646999976,0 115.1962944110001,-8.46369332699993,0 115.196294759,-8.463692588999947,0 115.1962949640001,-8.46369182899997,0 115.1962950330001,-8.463691042999926,0 115.196294963,-8.463690257999929,0 115.196294759,-8.463689497999951,0 115.196294425,-8.463688783999942,0 115.1962939700001,-8.463688137999952,0 115.1962934100001,-8.463687579999942,0 115.1962928060001,-8.463687152999967,0 115.1962860210001,-8.463683153999966,0 115.1962791290001,-8.463679041999967,0 115.1962783800001,-8.463678689999938,0 115.1962776150001,-8.463678485999935,0 115.196276827,-8.463678416999926,0 115.1962761130001,-8.463678478999952,0 115.1962760380001,-8.463678485999935,0 115.1962752730001,-8.463678690999927,0 115.196274556,-8.46367902399993,0 115.1962739090001,-8.463679474999935,0 115.1962733480001,-8.463680032999946,0 115.1962729200001,-8.463680633999957,0 115.1962591350001,-8.463703803999977,0 115.196255465,-8.463709973999926,0 115.196243641,-8.463729848999947,0 115.19622212,-8.46376592799993,0 115.196221806,-8.463766573999976,0 115.1961955720001,-8.46383375399995,0 115.1961954350001,-8.463834181999971,0 115.196176454,-8.463905050999927,0 115.196176375,-8.463905401999966,0 115.1961637000001,-8.463974413999949,0 115.1961636450001,-8.463974810999957,0 115.1961611180001,-8.46400290899993,0 115.196150534,-8.464121097999964,0 115.1961505150001,-8.464121483999975,0 115.1961503010001,-8.464183582999965,0 115.196150105,-8.464241480999931,0 115.19614759,-8.464364070999977,0 115.196146157,-8.464384568999947,0 115.196145535,-8.464393866999956,0 115.1961391040001,-8.464420402999963,0 115.1961206670001,-8.464476571999967,0 115.196109435,-8.464517852999961,0 115.1961093460001,-8.464518249999969,0 115.1961093060001,-8.464518518999967,0 115.1961006380001,-8.46459366299996,0 115.196099007,-8.46461366099993,0 115.196094645,-8.46462758399997,0 115.196078379,-8.464658044999965,0 115.196078122,-8.464658621999945,0 115.196077982,-8.46465907299995,0 115.1960690540001,-8.464694738999981,0 115.1960689880001,-8.464695047999953,0 115.1960689370001,-8.46469542799997,0 115.1960658580001,-8.464729493999926,0 115.1960658410001,-8.464729940999973,0 115.1960669920001,-8.464788201999966,0 115.196067017,-8.464788599999963,0 115.1960740530001,-8.464853261999963,0 115.1960741180001,-8.464853664999964,0 115.196094021,-8.464941903999943,0 115.196094204,-8.464942512999926,0 115.1961033260001,-8.464965649999954,0 115.19610362,-8.464966258999937,0 115.1961037900001,-8.464966530999959,0 115.1961113030001,-8.464977595999926,0 115.196111587,-8.464977971999929,0 115.196111857,-8.464978264999957,0 115.196114691,-8.464981079999973,0 115.196122207,-8.464988604999974,0 115.19612251,-8.464988879999964,0 115.1961231560001,-8.464989331999959,0 115.1961236660001,-8.464989584999955,0 115.196172852,-8.465010184999926,0 115.1961891410001,-8.465018345999965,0 115.196195449,-8.465024767999978,0 115.1962001600001,-8.465042482999934,0 115.196203468,-8.465063774999976,0 115.19619993,-8.465135993999979,0 115.196199954,-8.465136598999948,0 115.196202469,-8.465159390999929,0 115.196202511,-8.465159681999978,0 115.196202606,-8.465160104999939,0 115.196208346,-8.465180721999957,0 115.1962136200001,-8.465218632999949,0 115.1962132240001,-8.465303548999941,0 115.196213111,-8.465328237999927,0 115.196213121,-8.465328555999974,0 115.1962152150001,-8.465359158999945,0 115.1962155340001,-8.46538854299996,0 115.1962191590001,-8.465444074999937,0 115.196218294,-8.465486487999954,0 115.196215527,-8.465508018999969,0 115.196213595,-8.465523210999947,0 115.1961973760001,-8.465627610999945,0 115.1961912370001,-8.465688173999979,0 115.1961912160001,-8.465688682999939,0 115.1961923550001,-8.465734828999928,0 115.196194295,-8.465768630999946,0 115.1962003140001,-8.465871925999977,0 115.196197918,-8.46592482799997,0 115.1961875830001,-8.465986667999971,0 115.1961815780001,-8.466012896999928,0 115.196165682,-8.46608144399994,0 115.1961647400001,-8.466085715999952,0 115.196164682,-8.466086059999952,0 115.196161359,-8.46611384299996,0 115.1961571050001,-8.466133070999945,0 115.1961533870001,-8.466144034999957,0 115.1961486410001,-8.466152030999979,0 115.196146772,-8.46615441299997,0 115.196144159,-8.466157740999961,0 115.196143802,-8.466158264999933,0 115.196143653,-8.466158544999928,0 115.196139417,-8.466167205999966,0 115.1961392310001,-8.466167637999945,0 115.196139042,-8.466168317999973,0 115.196132978,-8.466199245999974,0 115.196132938,-8.466199499999959,0 115.196112575,-8.466359308999927,0 115.1961125390001,-8.466359875999956,0 115.1961125620001,-8.466360332999955,0 115.1961144930001,-8.466379324999934,0 115.1961145380001,-8.466379654999969,0 115.1961147430001,-8.466380413999957,0 115.1961150770001,-8.466381129999945,0 115.196115221,-8.466381356999932,0 115.1961230270001,-8.466393146999962,0 115.1961233390001,-8.466393563999929,0 115.1961239000001,-8.46639412299993,0 115.196124549,-8.466394574999981,0 115.1961383700001,-8.466402499999958,0 115.196139083,-8.466402829999936,0 115.196139847,-8.466403033999939,0 115.1961403480001,-8.466403093999929,0 115.196182377,-8.466406217999975,0 115.196184334,-8.466407034999975,0 115.196185602,-8.466408353999952,0 115.196186258,-8.466410259999975,0 115.196181976,-8.466547965999951,0 115.196175659,-8.466622936999954,0 115.1961738330001,-8.466634621999958,0 115.196165208,-8.466690377999953,0 115.1961638720001,-8.466699012999982,0 115.1961332100001,-8.466890411999941,0 115.196111425,-8.466979071999958,0 115.196106682,-8.466998520999937,0 115.196081614,-8.467108658999962,0 115.1960715160001,-8.46714910399993,0 115.1960555860001,-8.467198302999975,0 115.196035174,-8.467268235999938,0 115.1960350520001,-8.467268768999929,0 115.1960323420001,-8.467286802999979,0 115.1960287850001,-8.467310747999932,0 115.1960287480001,-8.467311081999981,0 115.1960189120001,-8.467445534999968,0 115.196018899,-8.467445863999956,0 115.19601892,-8.467446307999978,0 115.1960202790001,-8.467460050999932,0 115.196020329,-8.467460393999943,0 115.196020402,-8.467460728999981,0 115.1960228250001,-8.46747014999994,0 115.1960229570001,-8.467470571999968,0 115.1960232910001,-8.467471285999977,0 115.1960237080001,-8.467471888999967,0 115.1960289420001,-8.46747826099994,0 115.1960295370001,-8.467478852999932,0 115.1960846610001,-8.467524093999941,0 115.1960970900001,-8.467539915999964,0 115.1961064190001,-8.467576642999973,0 115.1961127410001,-8.467626383999971,0 115.1961219760001,-8.467699182999979,0 115.1961235010001,-8.467717723999954,0 115.196123626,-8.467719245999945,0 115.1961238010001,-8.467721365999978,0 115.196128626,-8.467779929999949,0 115.196135505,-8.467862848999971,0 115.196145289,-8.467980585999953,0 115.196150081,-8.468038668999952,0 115.1961435730001,-8.468138099999976,0 115.1961422200001,-8.468158765999931,0 115.196135483,-8.468192725999927,0 115.19613528,-8.468193738999958,0 115.1961329620001,-8.468205421999926,0 115.1961299400001,-8.468220655999971,0 115.196118048,-8.468250404999935,0 115.196100222,-8.46829513199998,0 115.1961000330001,-8.46829575299995,0 115.196083591,-8.468369070999927,0 115.1960835470001,-8.468369287999963,0 115.1960756130001,-8.468416090999938,0 115.196049355,-8.468570145999934,0 115.1960252120001,-8.468738735999978,0 115.1960075440001,-8.468825470999946,0 115.1959982960001,-8.468870927999944,0 115.195979683,-8.468937934999929,0 115.1959607780001,-8.469005971999934,0 115.195954332,-8.46902283299994,0 115.195933422,-8.469077752999965,0 115.195927985,-8.469091212999956,0 115.195922762,-8.46909607799995,0 115.195916923,-8.469098863999932,0 115.1959055030001,-8.469100297999944,0 115.195883671,-8.469099576999952,0 115.19586644,-8.469097571999953,0 115.195726099,-8.469055461999972,0 115.195725797,-8.469055381999965,0 115.1956181260001,-8.469030994999969,0 115.1956177740001,-8.469030936999957,0 115.195600634,-8.469028871999967,0 115.1956000890001,-8.469028838999975,0 115.195599291,-8.469028907999927,0 115.1955698300001,-8.469034201999932,0 115.1955690840001,-8.469034400999931,0 115.1955683650001,-8.469034735999969,0 115.1955680020001,-8.469034969999939,0 115.1955604140001,-8.469040356999926,0 115.1955601310001,-8.469040573999962,0 115.1955596250001,-8.469041068999957,0 115.195542357,-8.469060816999956,0 115.1955418760001,-8.469061493999959,0 115.1955415420001,-8.469062208999958,0 115.1955414580001,-8.469062461999954,0 115.1955345360001,-8.469085565999933,0 115.1955344150001,-8.469086073999961,0 115.195534348,-8.469086728999969,0 115.1955310390001,-8.469202892999931,0 115.1955293100001,-8.46923684199993,0 115.195524693,-8.469329645999949,0 115.195515021,-8.469401733999973,0 115.1954985640001,-8.469524330999946,0 115.1954939530001,-8.469579383999928,0 115.1954915760001,-8.469607483999937,0 115.195491561,-8.469607819999965,0 115.1954902450001,-8.469745476999947,0 115.1954894,-8.469829974999925,0 115.195484273,-8.469919508999965,0 115.19547507,-8.470079390999956,0 115.1954705760001,-8.470129193999981,0 115.1954634790001,-8.470208129999946,0 115.195453282,-8.470278923999956,0 115.195445316,-8.47033410399996,0 115.195430556,-8.470432279999955,0 115.1954305180001,-8.470432616999972,0 115.1954286,-8.47045854299995,0 115.1954246900001,-8.470510229999945,0 115.1954201000001,-8.47064217999997,0 115.195418805,-8.470678887999952,0 115.1954089950001,-8.470824573999948,0 115.1954061870001,-8.470865742999933,0 115.195395939,-8.470979200999977,0 115.195391404,-8.47100887299996,0 115.195374731,-8.471117402999937,0 115.195361348,-8.471194856999944,0 115.195351637,-8.471250792999967,0 115.1953449870001,-8.471307658999933,0 115.1953395300001,-8.471354537999957,0 115.195339554,-8.47135487099996,0 115.195339406,-8.471355636999931,0 115.1953393810001,-8.471355901999971,0 115.195339341,-8.471356423999964,0 115.1953394100001,-8.471357208999962,0 115.1953396050001,-8.471357936999937,0 115.1953396140001,-8.471357969999929,0 115.1953399490001,-8.471358683999938,0 115.195340403,-8.471359328999938,0 115.1953409580001,-8.471359882999934,0 115.1953416110001,-8.471360337999954,0 115.195342329,-8.471360671999946,0 115.195343093,-8.471360876999938,0 115.1953433550001,-8.471360903999937,0 115.1953438800001,-8.47136095999997,0 115.1953514400001,-8.471361854999941,0 115.1953596010001,-8.471362797999973,0 115.1953601240001,-8.471362828999929,0 115.1953609130001,-8.471362758999931,0 115.195361678,-8.471362555999974,0 115.1953623950001,-8.471362222999971,0 115.1953630430001,-8.471361770999977,0 115.195363603,-8.471361213999955,0 115.195364057,-8.471360567999966,0 115.1953643920001,-8.471359853999957,0 115.1953645960001,-8.471359092999933,0 115.195364635,-8.471358830999975,0 115.19537087,-8.471305432999941,0 115.1953767870001,-8.471254417999944,0 115.195387029,-8.471195198999965,0 115.1953949530001,-8.471149374999925,0 115.1953997810001,-8.471121462999974,0 115.1954061910001,-8.471079660999976,0 115.195407678,-8.471069953999972,0 115.1954211030001,-8.470982406999951,0 115.195421138,-8.470982130999971,0 115.195427372,-8.470913645999929,0 115.195431557,-8.470867689999977,0 115.195436468,-8.470794798999975,0 115.1954441950001,-8.470680147999929,0 115.1954478290001,-8.470576507999965,0 115.1954500740001,-8.470511702999943,0 115.1954558050001,-8.470435340999927,0 115.1954704620001,-8.470337750999931,0 115.1954887410001,-8.470211058999951,0 115.19549831,-8.470104680999953,0 115.1955003700001,-8.470081301999926,0 115.1955042850001,-8.470013907999942,0 115.195514802,-8.469830806999937,0 115.1955165310001,-8.469652998999948,0 115.1955169620001,-8.469608772999948,0 115.1955238290001,-8.469527127999982,0 115.1955295580001,-8.469484487999978,0 115.1955500380001,-8.469332185999974,0 115.1955500720001,-8.469331810999961,0 115.195550979,-8.469313732999979,0 115.1955564340001,-8.469203881999931,0 115.1955596470001,-8.469090192999943,0 115.1955645160001,-8.46907400799995,0 115.195577166,-8.469059548999951,0 115.1955789970001,-8.469058213999972,0 115.1956006640001,-8.469054297999946,0 115.1956135920001,-8.469055958999945,0 115.1957194270001,-8.469079956999963,0 115.1958608380001,-8.469122334999952,0 115.1958613580001,-8.469122458999948,0 115.195861711,-8.469122504999973,0 115.1958617380001,-8.469122507999941,0 115.1958816160001,-8.46912475299996,0 115.195881974,-8.469124779999959,0 115.1959063830001,-8.469125618999954,0 115.1959070370001,-8.469125583999926,0 115.1959235520001,-8.469123478999961,0 115.1959244210001,-8.469123259999947,0 115.1959247860001,-8.469123108999952,0 115.1959365710001,-8.469117640999968,0 115.1959369230001,-8.469117457999971,0 115.195937661,-8.469116926999959,0 115.195944152,-8.46911090499998,0 115.1959487500001,-8.469106579999959,0 115.195949108,-8.469106200999931,0 115.1959495640001,-8.469105553999952,0 115.1959498480001,-8.469104969999933,0 115.1959570590001,-8.469086975999971,0 115.1959849030001,-8.469014004999963,0 115.195985025,-8.469013633999964,0 115.1959926410001,-8.468986188999963,0 115.196022951,-8.468876955999974,0 115.1960230230001,-8.468876654999974,0 115.1960463180001,-8.468762769999955,0 115.1960503140001,-8.468743115999928,0 115.1960503490001,-8.468742910999936,0 115.1960744900001,-8.468574042999933,0 115.196078175,-8.468552253999974,0 115.1961021980001,-8.468410902999949,0 115.1961084880001,-8.468374065999967,0 115.1961114000001,-8.468361068999968,0 115.1961244410001,-8.468302844999926,0 115.1961542610001,-8.468228142999976,0 115.1961544720001,-8.468227414999944,0 115.1961674370001,-8.46816234299996,0 115.1961675040001,-8.468161803999976,0 115.1961676310001,-8.468159865999951,0 115.196167896,-8.468155829999944,0 115.1961681470001,-8.468152000999964,0 115.196169753,-8.468127470999946,0 115.1961755650001,-8.468038816999979,0 115.1961755740001,-8.468038522999962,0 115.196175561,-8.468038165999928,0 115.196149729,-8.467713568999955,0 115.1961501850001,-8.467711802999929,0 115.1961511070001,-8.467710438999973,0 115.196151222,-8.467710266999973,0 115.196152911,-8.467708976999972,0 115.1961602760001,-8.467705704999958,0 115.1961833240001,-8.467695480999964,0 115.1961995840001,-8.467688261999967,0 115.1962330340001,-8.46768080399994,0 115.196247769,-8.467679381999972,0 115.196332965,-8.467671149999944,0 115.1963456300001,-8.467673452999975,0 115.1963585540001,-8.467678774999968,0 115.19636418,-8.467682399999944,0 115.196382673,-8.467706704999955,0 115.1963833040001,-8.467707350999945,0 115.196383951,-8.46770780199995,0 115.1963843010001,-8.467707983999958,0 115.1963917740001,-8.46771145799994,0 115.196392142,-8.467711609999981,0 115.196392904,-8.467711812999937,0 115.1964045030001,-8.467713856999978,0 115.1964052520001,-8.467713925999931,0 115.1964234630001,-8.467714088999969,0 115.1964247120001,-8.467714100999956,0 115.1966636670001,-8.467716288999952,0 115.1966642880001,-8.467716249999967,0 115.1967058150001,-8.467710730999954,0 115.196706283,-8.467710634999946,0 115.1967298220001,-8.46770442199994,0 115.196730212,-8.467704300999969,0 115.196730673,-8.467704103999949,0 115.1967535690001,-8.467692815999953,0 115.1967538250001,-8.467692677999935,0 115.1967544730001,-8.467692227999976,0 115.196755033,-8.467691668999976,0 115.1967555040001,-8.467690997999966,0 115.196767065,-8.467670418999944,0 115.196767313,-8.467669902999944,0 115.196797659,-8.467595021999955,0 115.196809388,-8.467578000999936,0 115.196822104,-8.467571551999981,0 115.1968342150001,-8.467570293999927,0 115.1968344280001,-8.467570284999965,0 115.196834876,-8.467570275999947,0 115.1969250460001,-8.467572419999954,0 115.1969651420001,-8.467574140999943,0 115.1972426250001,-8.467586357999949,0 115.197529332,-8.467598976999966,0 115.1975678750001,-8.467600663999974,0 115.1975679880001,-8.467600668999978,0 115.197914457,-8.467615837999972,0 115.1979717680001,-8.467627271999959,0 115.197993278,-8.467640180999979,0 115.1980080420001,-8.467659269999956,0 115.1980682520001,-8.467953989999955,0 115.1980694440001,-8.467959819999976,0 115.1980698470001,-8.467962980999971,0 115.1980727010001,-8.467953087999945,0 115.198012283,-8.467657342999928,0 115.1979963540001,-8.467636747999961,0 115.197973434,-8.467622993999953,0 115.1979150080001,-8.467611336999937,0 115.1975681880001,-8.467596152999931,0 115.1975295320001,-8.467594461999965,0 115.1972429250001,-8.467581846999963,0 115.1972428040001,-8.467581838999934,0 115.196965405,-8.467569626999932,0 115.1969652890001,-8.467569621999928,0 115.1969252800001,-8.467567904999953,0 115.1969251580001,-8.46756789899996,0 115.1968345350001,-8.46756576699994,0 115.1968344160001,-8.467565758999967,0 115.1968209,-8.467567129999964,0 115.1968207890001,-8.467567145999965,0 115.1968196950001,-8.467567699999961,0 115.1968062970001,-8.467574494999951,0 115.1967936340001,-8.467592871999955,0 115.1967631020001,-8.467668210999932,0 115.1967515550001,-8.467688763999945,0 115.1967406480001,-8.467694140999981,0 115.1967286590001,-8.467700051999941,0 115.19670512,-8.467706264999947,0 115.1966636880001,-8.467711767999958,0 115.1964247510001,-8.467709580999951,0 115.1964052930001,-8.467709405999926,0 115.1963936960001,-8.467707361999942,0 115.1963862220001,-8.467703886999971,0 115.1963673180001,-8.467679035999936,0 115.1963672270001,-8.467678976999935,0 115.1963606720001,-8.467674755999951,0 115.1963469210001,-8.467669091999937,0 115.196333159,-8.467666588999975,0 115.196247338,-8.467674882999972,0 115.1962323240001,-8.467676329999961,0 115.1962068270001,-8.46768201499998,0 115.196198148,-8.46768394999998,0 115.196186804,-8.467688985999928,0 115.1961814780001,-8.467691350999928,0 115.1961584520001,-8.46770156499997,0 115.1961584280001,-8.467701577999946,0 115.1961505720001,-8.467705064999961,0 115.19614833,-8.467706778999968,0 115.1961478700001,-8.467707130999941,0 115.1961473380001,-8.467707916999927,0 115.1961459810001,-8.467709924999951,0 115.1961451440001,-8.467713174999972,0 115.196171034,-8.468038522999962,0 115.1961652220001,-8.468127177999975,0 115.1961633650001,-8.468155535999927,0 115.1961631,-8.468159570999944,0 115.196162973,-8.468161510999948,0 115.196150016,-8.468226534999928,0 115.1961200870001,-8.468301509999947,0 115.1961069680001,-8.468360084999972,0 115.196104029,-8.468373203999931,0 115.19609772,-8.468410146999929,0 115.1960736970001,-8.468551500999979,0 115.1960700000001,-8.468573355999979,0 115.1960458530001,-8.468742273999965,0 115.1960418670001,-8.46876186999998,0 115.1960185730001,-8.468875752999963,0 115.1959882640001,-8.468984984999963,0 115.1959806460001,-8.469012429999964,0 115.195952828,-8.469085335999978,0 115.1959456290001,-8.469103295999957,0 115.1959441670001,-8.469104671999958,0 115.1959410440001,-8.46910761099997,0 115.1959346530001,-8.469113542999935,0 115.195922868,-8.469119011999965,0 115.1959112720001,-8.469120486999941,0 115.195906461,-8.469121098999949,0 115.1959027060001,-8.469120970999938,0 115.1958822480001,-8.469120267999926,0 115.1958821270001,-8.469120259999954,0 115.1958622650001,-8.469118017999961,0 115.1958621450001,-8.469118005999974,0 115.195762037,-8.469088005999936,0 115.1957205970001,-8.469075586999963,0 115.1956927160001,-8.469069264999973,0 115.19561438,-8.469051501999957,0 115.1956006070001,-8.469049730999927,0 115.195600537,-8.46904972599998,0 115.1955771570001,-8.469053950999978,0 115.1955749580001,-8.469055555999944,0 115.1955740740001,-8.469056201999933,0 115.195560447,-8.469071775999964,0 115.1955551240001,-8.469089465999957,0 115.1955518960001,-8.469203707999952,0 115.195546443,-8.469313507999971,0 115.195545537,-8.469331585999953,0 115.1955250570001,-8.469483889999935,0 115.1955193160001,-8.469526619999954,0 115.1955124240001,-8.469608569999934,0 115.195511989,-8.469652954999958,0 115.195510265,-8.469830655999942,0 115.195499752,-8.470013647999963,0 115.195495841,-8.470080974999973,0 115.195493787,-8.470104281999966,0 115.195484232,-8.470210535999968,0 115.1954659690001,-8.47033709599998,0 115.1954512900001,-8.470434831999967,0 115.195445541,-8.470511457999976,0 115.1954432910001,-8.470576350999977,0 115.19543966,-8.470679916999927,0 115.1954319370001,-8.470794496999929,0 115.195427245,-8.470864157999927,0 115.195427031,-8.470867333999934,0 115.1954269240001,-8.470868507999967,0 115.195422849,-8.47091323799998,0 115.195416968,-8.470977836999964,0 115.195416614,-8.470981723999955,0 115.1954145310001,-8.470995305999963,0 115.195401701,-8.47107897799998,0 115.1953952980001,-8.471120738999957,0 115.195390478,-8.471148606999975,0 115.1953904710001,-8.471148645999961,0 115.195382554,-8.471194429999969,0 115.19537229,-8.471253776999959,0 115.1953663590001,-8.471304911999937,0 115.1953601240001,-8.471358307999935,0 115.1953519640001,-8.47135736499996,0 115.1953438810001,-8.471356423999964,0 115.195344038,-8.471355083999981,0 115.195344048,-8.471354986999927,0 115.1953444100001,-8.471351871999957,0 115.1953494970001,-8.471308180999927,0 115.1953561290001,-8.471251438999957,0 115.1953658220001,-8.471195626999929,0 115.195379214,-8.471118129999979,0 115.1953958920001,-8.471009553999977,0 115.1954004490001,-8.470979746999944,0 115.1954107160001,-8.470866083999965,0 115.195413344,-8.470827554999971,0 115.195413526,-8.470824878999963,0 115.1954145030001,-8.470810378999943,0 115.19542334,-8.470679123999957,0 115.1954246370001,-8.470642337999948,0 115.195429223,-8.470510477999937,0 115.1954331280001,-8.470458877999931,0 115.1954350460001,-8.470432948999928,0 115.195449807,-8.470334760999947,0 115.1954567060001,-8.470286982999937,0 115.195457776,-8.470279568999956,0 115.195460988,-8.470257271999969,0 115.1954679900001,-8.470208655999954,0 115.1954750980001,-8.470129598999961,0 115.1954794610001,-8.47008124499996,0 115.195479599,-8.47007972199998,0 115.1954800670001,-8.470071601999962,0 115.1954888050001,-8.469919766999965,0 115.19549394,-8.469830125999977,0 115.195494786,-8.469745519999947,0 115.1954961,-8.469607864999944,0 115.1954984770001,-8.469579762999956,0 115.1955028630001,-8.46952736999998,0 115.195503077,-8.469524818999957,0 115.1955195220001,-8.469402332999948,0 115.195527843,-8.469340311999929,0 115.195529218,-8.469330061999926,0 115.195533844,-8.469237069999963,0 115.1955355760001,-8.46920309099994,0 115.1955388870001,-8.469086857999969,0 115.1955393770001,-8.469085221999933,0 115.195545809,-8.469063753999933,0 115.1955569420001,-8.469051021999974,0 115.195563049,-8.469044037999936,0 115.1955706370001,-8.469038650999948,0 115.1955915780001,-8.469034888999943,0 115.1956000880001,-8.469033359999969,0 115.1956032070001,-8.469033735999972,0 115.1956172280001,-8.469035424999959,0 115.1957247890001,-8.469059791999939,0 115.195865515,-8.469102015999965,0 115.195883329,-8.469104088999927,0 115.195905712,-8.469104828999946,0 115.195918223,-8.469103258999951,0 115.1959253540001,-8.469099851999943,0 115.1959280650001,-8.46909732599994,0 115.195931821,-8.469093829999963,0 115.1959376530001,-8.469079393999948,0 115.195958577,-8.469024438999952,0 115.195965095,-8.469007384999941,0 115.1959840600001,-8.468939140999964,0 115.1960027170001,-8.468871969999952,0 115.1960119930001,-8.468826368999942,0 115.196024713,-8.468763926999941,0 115.196029691,-8.468739490999951,0 115.1960343970001,-8.468706622999946,0 115.1960538420001,-8.468570842999952,0 115.19608009,-8.468416845999968,0 115.1960853060001,-8.468386073999966,0 115.1960880210001,-8.468370055999969,0 115.196090622,-8.468358457999955,0 115.1961044660001,-8.468296738999982,0 115.1961222680001,-8.468252073999963,0 115.196134314,-8.468221941999957,0 115.1961397330001,-8.468194620999952,0 115.196139936,-8.468193606999932,0 115.1961467310001,-8.46815935199993,0 115.196148104,-8.468138393999936,0 115.1961546340001,-8.468038628999977,0 115.196149814,-8.467980213999965,0 115.196140029,-8.467862475999937,0 115.196133957,-8.467789262999929,0 115.196133152,-8.46777955899995,0 115.19613203,-8.46776594499994,0 115.1961281510001,-8.467718877999971,0 115.1961280270001,-8.467717354999934,0 115.1961264940001,-8.467698713999937,0 115.1961172460001,-8.467625816999941,0 115.196110888,-8.467575802999932,0 115.196101257,-8.467537882999977,0 115.1960879330001,-8.46752091999997,0 115.1960324390001,-8.467475376999971,0 115.1960272230001,-8.467469026999936,0 115.196024799,-8.467459607999956,0 115.1960234400001,-8.467445864999945,0 115.1960332780001,-8.467311408999933,0 115.1960368340001,-8.467287467999938,0 115.1960395330001,-8.467269496999961,0 115.1960599270001,-8.467199627999946,0 115.196075885,-8.467150346999972,0 115.1960860290001,-8.467109716999971,0 115.196111101,-8.466999555999962,0 115.1961158360001,-8.466980143999933,0 115.1961376640001,-8.466891299999929,0 115.196168359,-8.466699713999958,0 115.1961696440001,-8.466691392999962,0 115.1961696950001,-8.466691066999942,0 115.1961700080001,-8.466689045999942,0 115.196178321,-8.466635313999973,0 115.1961801700001,-8.466623480999942,0 115.1961865110001,-8.466548211999964,0 115.196188654,-8.466479336999953,0 115.196190824,-8.466409572999964,0 115.1961895720001,-8.466405946999942,0 115.1961869640001,-8.466403229999969,0 115.1961838840001,-8.466401945999962,0 115.196183449,-8.466401764999944,0 115.1961741780001,-8.466401075999954,0 115.196140753,-8.466398592999951,0 115.1961406360001,-8.466398581999954,0 115.196126818,-8.466390659999945,0 115.1961190100001,-8.466378869999971,0 115.19611708,-8.466359876999945,0 115.1961374430001,-8.466200070999946,0 115.1961434980001,-8.466169185999945,0 115.196147736,-8.466160525999953,0 115.1961503480001,-8.466157196999973,0 115.1961524020001,-8.466154581999945,0 115.1961575380001,-8.466145929999925,0 115.1961614860001,-8.466134285999942,0 115.1961646620001,-8.466119928999944,0 115.196165842,-8.466114594999965,0 115.1961667750001,-8.466106793999927,0 115.1961691910001,-8.466086593999933,0 115.19617011,-8.46608243999998,0 115.1961860030001,-8.466013907999979,0 115.196192041,-8.465987538999968,0 115.1962024420001,-8.465925306999964,0 115.1962048610001,-8.465871894999964,0 115.1961988290001,-8.465768371999957,0 115.1961968920001,-8.465734644999941,0 115.1961957560001,-8.465688626999963,0 115.196201877,-8.465628182999978,0 115.1962180900001,-8.465523855999948,0 115.1962200300001,-8.465508590999946,0 115.196222829,-8.465486819999967,0 115.1962237030001,-8.46544397699995,0 115.1962200700001,-8.46538837199995,0 115.196219755,-8.46535899099996,0 115.1962176510001,-8.465328248999981,0 115.1962177640001,-8.465303570999936,0 115.196218163,-8.465218332999939,0 115.1962173420001,-8.465212433999966,0 115.1962128010001,-8.465179800999977,0 115.1962103540001,-8.465171010999939,0 115.196206982,-8.465158896999981,0 115.196204468,-8.465136105999932,0 115.1962069050001,-8.465086399999961,0 115.196208026,-8.465063534999956,0 115.1962076840001,-8.465061336999952,0 115.1962046110001,-8.46504155599996,0 115.196199531,-8.465022459999943,0 115.196191858,-8.465014647999965,0 115.1961747480001,-8.465006074999962,0 115.1961254260001,-8.46498541699998,0 115.1961179010001,-8.464977881999971,0 115.1961150640001,-8.464975065999965,0 115.1961075520001,-8.464963998999963,0 115.19609845,-8.464940913999953,0 115.1960785680001,-8.46485277599993,0 115.196071532,-8.464788111999951,0 115.196070381,-8.464729898999963,0 115.1960734590001,-8.464695831999961,0 115.196082388,-8.464660167999966,0 115.1960988540001,-8.464629334999927,0 115.196103492,-8.464614529999949,0 115.196105157,-8.464594102999968,0 115.1961138170001,-8.464519034999967,0 115.1961250160001,-8.464477866999971,0 115.1961434750001,-8.464421637999976,0 115.1961485530001,-8.464400685999976,0 115.19615004,-8.464394550999941,0 115.1961500550001,-8.464394335999941,0 115.196150686,-8.464384876999929,0 115.196152126,-8.464364277999948,0 115.1961546460001,-8.464241537999953,0 115.1961547830001,-8.464200722999976,0 115.1961548410001,-8.464183598999966,0 115.196154876,-8.464173501999937,0 115.1961550550001,-8.464121499999976,0 115.1961656410001,-8.464003309999953,0 115.1961681680001,-8.463975214999948,0 115.1961808420001,-8.463906215999941,0 115.196199822,-8.463835346999929,0 115.1962260380001,-8.46376821299998,0 115.196247545,-8.463732156999981,0 115.1962593710001,-8.463712279999982,0 115.196276826,-8.463682938999966,0 115.1962836980001,-8.463687037999932,0 115.196290491,-8.463691043999972,0 115.196270946,-8.463723856999934,0 115.1962403810001,-8.463775151999926,0 115.196214993,-8.463840292999976,0 115.1961964010001,-8.463909720999936,0 115.19618388,-8.463977366999927,0 115.196176375,-8.464061667999943,0 115.196170927,-8.464122199999963,0 115.196170519,-8.464241786999935,0 115.196169455,-8.464293576999978,0 115.1961679980001,-8.464364983999928,0 115.1961679670001,-8.464365440999927,0 115.1961658280001,-8.464396973999953,0 115.196159877,-8.46442125699997,0 115.196158973,-8.464424953999981,0 115.1961587280001,-8.464425957999936,0 115.1961402710001,-8.464482359999977,0 115.1961391960001,-8.464486311999963,0 115.196137958,-8.464490861999934,0 115.1961294570001,-8.464522088999956,0 115.1961209520001,-8.464595629999963,0 115.1961192000001,-8.464617587999953,0 115.196113576,-8.464635452999971,0 115.196104545,-8.464652402999945,0 115.1960973340001,-8.464665933999981,0 115.196089171,-8.46469843999995,0 115.1960862520001,-8.464730513999939,0 115.1960865520001,-8.464746871999978,0 115.1960873740001,-8.464785419999941,0 115.19608741,-8.464787102999935,0 115.1960943060001,-8.464850229999968,0 115.196113671,-8.46493628099995,0 115.1961217400001,-8.464956567999934,0 115.1961273920001,-8.464964909999935,0 115.196134472,-8.464972079999939,0 115.1961814800001,-8.464991638999948,0 115.1962014230001,-8.465001678999954,0 115.1962137950001,-8.465014392999933,0 115.1962201990001,-8.465038278999941,0 115.196223978,-8.465062795999927,0 115.196220421,-8.465135636999946,0 115.196222646,-8.465155985999957,0 115.1962283930001,-8.465176615999951,0 115.1962340430001,-8.465217321999944,0 115.196233697,-8.465291173999958,0 115.1962335310001,-8.465327773999945,0 115.1962356770001,-8.465357931999961,0 115.196235706,-8.46535833799993,0 115.1962358200001,-8.465372453999976,0 115.196235944,-8.465387716999942,0 115.1962371330001,-8.465405621999935,0 115.196239653,-8.465443600999947,0 115.196238773,-8.465487977999942,0 115.196233879,-8.465526095999962,0 115.1962310990001,-8.465543895999929,0 115.1962179210001,-8.465628529999947,0 115.196217668,-8.465630153999939,0 115.1962146870001,-8.465659065999944,0 115.1962126770001,-8.46567889499994,0 115.196211626,-8.465689248999979,0 115.1962120960001,-8.465707662999932,0 115.196212767,-8.465733994999937,0 115.196214843,-8.465769982999973,0 115.1962208130001,-8.46587178599998,0 115.1962182320001,-8.465927007999937,0 115.196207681,-8.465990594999937,0 115.1961849060001,-8.466089288999967,0 115.1961814790001,-8.466117293999957,0 115.19617915,-8.466127885999981,0 115.1961768130001,-8.466138514999955,0 115.1961720300001,-8.466152501999943,0 115.196171312,-8.466153732999942,0 115.1961656150001,-8.466163497999958,0 115.1961613210001,-8.466168996999954,0 115.1961588700001,-8.466173923999975,0 115.1961586740001,-8.466174316999968,0 115.1961531520001,-8.466202582999927,0 115.1961331040001,-8.466360037999948,0 115.1961344610001,-8.46637342899993,0 115.19613729,-8.46637766799995,0 115.196138029,-8.466378773999963,0 115.196139331,-8.466379528999937,0 115.196145427,-8.466383057999963,0 115.1961455420001,-8.46638306899996,0 115.196236816,-8.466389809999953,0 115.196243413,-8.466388664999954,0 115.1962464170001,-8.466386781999972,0 115.1962484610001,-8.466382903999943,0 115.1962578260001,-8.466365140999926,0 115.1962944320001,-8.466238846999943,0 115.19630943,-8.466201767999962,0 115.1963332800001,-8.466160841999965,0 115.1963404100001,-8.466149553999969,0 115.1963639060001,-8.466112345999932,0 115.1963740050001,-8.466097313999967,0 115.196414879,-8.466036470999939,0 115.196439638,-8.466010955999934,0 115.1965040360001,-8.465944590999925,0 115.196525629,-8.465922363999937,0 115.1965348880001,-8.465912832999948,0 115.19654657,-8.465896886999928,0 115.196563404,-8.465846185999965,0 115.196569048,-8.465829191999944,0 115.196578688,-8.465800316999946,0 115.1965979890001,-8.465707478999946,0 115.1966261770001,-8.465603567999949,0 115.1966308350001,-8.465584428999932,0 115.196638751,-8.465551599999969,0 115.1966636660001,-8.465448267999932,0 115.1966746610001,-8.465402852999944,0 115.196687845,-8.46535391599997,0 115.1966880140001,-8.465316771999937,0 115.196675776,-8.465275942999938,0 115.1966812940001,-8.465274275999946,0 115.1966834230001,-8.465273631999935,0 115.196691072,-8.465271405999943,0 115.196691082,-8.465271439999981,0 115.1967039000001,-8.465314585999977,0 115.1967038790001,-8.465319145999956,0 115.1967037100001,-8.465356071999963,0 115.1966901410001,-8.46540681099998,0 115.196678689,-8.465454123999962,0 115.196641588,-8.46560752399995,0 115.196623528,-8.465674242999967,0 115.1966134710001,-8.46571116299998,0 115.196594019,-8.465804449999951,0 115.1965857350001,-8.465829373999952,0 115.1965608360001,-8.465904275999947,0 115.196547043,-8.465923096999973,0 115.196503365,-8.465968084999929,0 115.19642726,-8.46604647199996,0 115.1964153470001,-8.466064226999947,0 115.1963772680001,-8.466120993999937,0 115.1963769930001,-8.46612142999993,0 115.1963469460001,-8.466169039999954,0 115.1963237760001,-8.46620870299995,0 115.1963095310001,-8.466243979999945,0 115.1962819800001,-8.466338940999947,0 115.1962727,-8.466371080999977,0 115.1962584950001,-8.466398044999949,0 115.196257486,-8.466398646999949,0 115.1962490350001,-8.466403695999929,0 115.196237567,-8.466405718999965,0 115.1962113390001,-8.466403800999956,0 115.1962112230001,-8.466403788999969,0 115.1962073960001,-8.466404861999933,0 115.1962060720001,-8.466405979999934,0 115.1962043110001,-8.466407464999975,0 115.19620265,-8.466411069999936,0 115.1962020420001,-8.466429241999947,0 115.196198114,-8.466548899999964,0 115.1961917690001,-8.46662489299996,0 115.196191665,-8.466625560999944,0 115.1961830500001,-8.466680893999978,0 115.196179882,-8.466701575999934,0 115.1961643860001,-8.466798221999966,0 115.196149113,-8.466893606999975,0 115.1961429310001,-8.466918704999955,0 115.1961224720001,-8.467002228999945,0 115.196113071,-8.467043492999949,0 115.1960983450001,-8.467108224999947,0 115.196097398,-8.46711238599994,0 115.1960966730001,-8.467115285999967,0 115.196087099,-8.467153563999943,0 115.1960771450001,-8.467184338999971,0 115.196071068,-8.467203023999957,0 115.1960578870001,-8.467248211999959,0 115.1960509800001,-8.467271893999964,0 115.1960502070001,-8.467277051999929,0 115.196044872,-8.467312636999964,0 115.196035194,-8.467445740999949,0 115.1960363390001,-8.467457583999931,0 115.196037885,-8.467463553999949,0 115.1960407890001,-8.467467098999975,0 115.1960963570001,-8.467512818999978,0 115.1961119150001,-8.467532594999966,0 115.196122358,-8.467573681999966,0 115.1961373790001,-8.46769180299998,0 115.1961381890001,-8.46769514999994,0 115.1961387140001,-8.467695787999958,0 115.1961400560001,-8.467696157999967,0 115.196142978,-8.467695625999966,0 115.1961529470001,-8.467691225999943,0 115.1961787580001,-8.467679832999977,0 115.196191491,-8.467674213999942,0 115.1961944520001,-8.467672906999951,0 115.196200973,-8.467671448999965,0 115.1962305070001,-8.467664844999945,0 115.196235008,-8.467664407999962,0 115.1962474520001,-8.467663198999958,0 115.1962475080001,-8.467663195999933,0 115.1962597040001,-8.467662012999938,0 115.1963336600001,-8.467654835999952,0 115.196350273,-8.467657891999977,0 115.196366039,-8.467664387999946,0 115.1963753700001,-8.467670303999967,0 115.1963938280001,-8.467694614999971,0 115.1963973420001,-8.467696260999958,0 115.1964063180001,-8.467697835999957,0 115.196428047,-8.46769803899997,0 115.196613948,-8.467699792999952,0 115.1966140060001,-8.467699791999962,0 115.196614067,-8.467699789999926,0 115.1966258670001,-8.46769988799997,0 115.196662917,-8.467700194999964,0 115.1967027770001,-8.467694864999942,0 115.1967193400001,-8.467690466999954,0 115.1967245180001,-8.467689091999944,0 115.196743131,-8.467679959999941,0 115.196752571,-8.46766318799996,0 115.1967833230001,-8.467587403999971,0 115.196798327,-8.467565418999925,0 115.1968105190001,-8.467559255999959,0 115.1968174680001,-8.467555743999981,0 115.1968339450001,-8.467554095999958,0 115.196834059,-8.467554101999951,0 115.1968841080001,-8.467555237999932,0 115.19688423,-8.467555240999957,0 115.1969255150001,-8.467556237999929,0 115.1969256320001,-8.467556245999958,0 115.197092533,-8.467563605999942,0 115.197092653,-8.46756361499996,0 115.1972820880001,-8.467571895999981,0 115.197282211,-8.467571903999954,0 115.1975466550001,-8.467583513999955,0 115.1975689950001,-8.467584496999962,0 115.1979164060001,-8.46759977399995,0 115.1979777490001,-8.467611987999931,0 115.1980042580001,-8.467627928999946,0 115.198023162,-8.467652416999954,0 115.1980409560001,-8.467739546999951,0 115.1980796780001,-8.467928923999978,0 115.1980823910001,-8.467919523999967,0 115.198045405,-8.46773864599993,0 115.1980452880001,-8.46773806899995,0 115.198027613,-8.467651516999979,0 115.198027429,-8.467650871999979,0 115.1980270950001,-8.467650157999969,0 115.198026762,-8.467649662999975,0 115.198007799,-8.467625098999974,0 115.198007177,-8.467624465999961,0 115.198006606,-8.467624059999935,0 115.1979800590001,-8.467608094999946,0 115.197979303,-8.467607738999959,0 115.1979786400001,-8.467607554999972,0 115.1979172460001,-8.467595330999927,0 115.197916607,-8.467595256999971,0 115.1975693080001,-8.467579984999929,0 115.197569196,-8.467579979999925,0 115.197546856,-8.467578996999976,0 115.197282383,-8.467567383999949,0 115.197092824,-8.467559093999967,0 115.1969258250001,-8.467551726999943,0 115.1969256250001,-8.467551717999982,0 115.1968842900001,-8.467550718999973,0 115.1968341810001,-8.467549581999947,0 115.1968339460001,-8.467549575999954,0 115.196833491,-8.467549597999948,0 115.1968170140001,-8.467551245999971,0 115.1968166800001,-8.46755129099995,0 115.1968159150001,-8.467551495999942,0 115.1968154130001,-8.467551712999978,0 115.196796164,-8.467561445999934,0 115.1967954090001,-8.46756195599994,0 115.1967948490001,-8.467562511999972,0 115.1967945720001,-8.467562878999956,0 115.196779567,-8.467584862999956,0 115.196779391,-8.467585142999951,0 115.196779115,-8.467585708999934,0 115.1967484720001,-8.467661221999947,0 115.1967398580001,-8.467676525999934,0 115.196722915,-8.467684837999968,0 115.196701886,-8.467690423999954,0 115.196662636,-8.467695670999944,0 115.1966140100001,-8.467695269999979,0 115.1964293370001,-8.467693528999973,0 115.19642809,-8.467693518999965,0 115.1964067380001,-8.467693319999967,0 115.196398724,-8.467691911999964,0 115.196396774,-8.467690998999956,0 115.196378921,-8.46766748899995,0 115.196378288,-8.467666840999925,0 115.1963778080001,-8.467666490999932,0 115.196368394,-8.46766052199996,0 115.196367774,-8.467660208999973,0 115.196351917,-8.467653679999955,0 115.196351098,-8.467653447999965,0 115.196334468,-8.467650386999935,0 115.1963336600001,-8.467650315999947,0 115.19633322,-8.467650336999952,0 115.1962471370001,-8.467658688999961,0 115.1962470750001,-8.467658695999944,0 115.1962300670001,-8.467660345999946,0 115.1962296160001,-8.467660413999965,0 115.1961999790001,-8.467667036999956,0 115.196193459,-8.467668495999931,0 115.196192899,-8.467668658999969,0 115.1961926120001,-8.467668773999947,0 115.1961769180001,-8.467675699999972,0 115.1961418730001,-8.467691072999969,0 115.1961268460001,-8.467573006999942,0 115.1961267600001,-8.467572573999973,0 115.196116317,-8.467531484999938,0 115.1961161820001,-8.467531049999934,0 115.1961158480001,-8.467530335999982,0 115.19611549,-8.467529807999938,0 115.1960998840001,-8.467509971999959,0 115.1960992620001,-8.467509345999929,0 115.1960440250001,-8.467463896999959,0 115.196042032,-8.467461465999975,0 115.1960408260001,-8.467456801999958,0 115.196039751,-8.467445686999952,0 115.1960493900001,-8.467313136999962,0 115.196055426,-8.467272862999948,0 115.196075414,-8.467204332999927,0 115.1960814670001,-8.467185726999958,0 115.1960914220001,-8.467154948999962,0 115.196091504,-8.467154655999934,0 115.196101816,-8.467113431999962,0 115.196117499,-8.467044491999957,0 115.196126896,-8.467003245999933,0 115.196147342,-8.466919779999955,0 115.196153523,-8.466894683999953,0 115.1961535900001,-8.466894353999976,0 115.1961688690001,-8.46679893299995,0 115.1961843680001,-8.466702272999953,0 115.196187537,-8.466681580999932,0 115.196196255,-8.466625584999974,0 115.196196294,-8.466625265999937,0 115.1962026460001,-8.466549158999953,0 115.1962065820001,-8.466429389999973,0 115.1962071570001,-8.46641213099997,0 115.1962080180001,-8.466410264999979,0 115.1962095800001,-8.466408944999955,0 115.19621168,-8.466408357999967,0 115.196237234,-8.466410226999926,0 115.196237567,-8.466410239999959,0 115.1962383570001,-8.466410168999971,0 115.1962498280001,-8.466408147999971,0 115.1962505890001,-8.466407944999958,0 115.1962513400001,-8.46640759099995,0 115.196260831,-8.466401920999942,0 115.1962614130001,-8.466401508999979,0 115.1962619730001,-8.466400950999969,0 115.1962624720001,-8.466400224999973,0 115.19627672,-8.466373180999938,0 115.196276967,-8.466372626999942,0 115.196277063,-8.466372329999956,0 115.1962863440001,-8.46634019399994,0 115.1963138310001,-8.466245453999932,0 115.1963278670001,-8.466210692999937,0 115.1963508340001,-8.466171377999956,0 115.1963810780001,-8.466123454999945,0 115.196419125,-8.466066737999938,0 115.196430809,-8.466049319999968,0 115.196550308,-8.465926239999931,0 115.1965505210001,-8.465926001999946,0 115.1965507110001,-8.465925761999927,0 115.1965645040001,-8.465906939999968,0 115.196564768,-8.465906535999977,0 115.196565124,-8.465905758999952,0 115.1965900460001,-8.465830793999942,0 115.19659833,-8.46580586999994,0 115.1965984650001,-8.465805368999952,0 115.1966178910001,-8.465712210999925,0 115.1966279110001,-8.465675422999936,0 115.196645987,-8.46560864099996,0 115.196683106,-8.465455181999971,0 115.1966945500001,-8.465407896999977,0 115.196708099,-8.465357234999942,0 115.1967081810001,-8.465356854999925,0 115.19670825,-8.465356090999933,0 115.1967084410001,-8.465314593999949,0 115.1967083720001,-8.465313800999979,0 115.1967082550001,-8.465313302999959,0 115.1966954410001,-8.46527016999994,0 115.196695339,-8.465269858999932,0 115.1966950050001,-8.465269144999979,0 115.1966945510001,-8.465268498999933,0 115.1966939910001,-8.465267942999958,0 115.1966933440001,-8.465267490999963,0 115.1966926270001,-8.465267156999971,0 115.1966918610001,-8.465266951999979,0 115.196691072,-8.465266884999949,0 115.1966902840001,-8.465266951999979,0 115.1966897980001,-8.465267065999967,0 115.196682127,-8.465269298999942,0 115.1966743410001,-8.46527165699996,0 115.196673505,-8.465272028999948,0 115.1966728580001,-8.465272480999943,0 115.1966722980001,-8.465273036999974,0 115.1966718430001,-8.465273683999953,0 115.196671508,-8.465274396999973,0 115.196671304,-8.46527515899993,0 115.1966712350001,-8.465275943999927,0 115.196671304,-8.465276728999982,0 115.1966714240001,-8.465277236999952,0 115.196683471,-8.465317420999952,0 115.1966833070001,-8.465353309999955,0 115.196670261,-8.465401737999969,0 115.196659251,-8.465447210999969,0 115.1966343360001,-8.465550542999949,0 115.196626422,-8.465583368999944,0 115.196621776,-8.465602456999932,0 115.1965936050001,-8.465706298999976,0 115.1965935420001,-8.46570656199998,0 115.1965742960001,-8.465799140999934,0 115.196564738,-8.46582776799994,0 115.196559093,-8.465844764999929,0 115.196542482,-8.465894796999976,0 115.1965314060001,-8.465909913999951,0 115.196500771,-8.465941449999946,0 115.1964116140001,-8.46603332899997,0 115.1964114000001,-8.466033565999965,0 115.1964111040001,-8.466033956999979,0 115.196360097,-8.46610988499998,0 115.196329396,-8.466158501999928,0 115.196305499,-8.466199502999928,0 115.196305217,-8.466200077999929,0 115.1962901920001,-8.466237228999944,0 115.196290069,-8.46623759299996,0 115.1962535900001,-8.466363443999967,0 115.196242964,-8.466383604999976,0 115.1962417520001,-8.466384364999954,0 115.1962365930001,-8.466385259999981,0 115.1961468010001,-8.466378664999979,0 115.196141225,-8.466375394999943,0 115.1961388660001,-8.46637186199996,0 115.1961376740001,-8.46636009599996,0 115.196157638,-8.466203297999925,0 115.196163014,-8.466175777999979,0 115.196165187,-8.466171410999948,0 115.1961691990001,-8.466166270999963,0 115.196169541,-8.466165768999929,0 115.196175959,-8.466154767999967,0 115.196176313,-8.466154001999939,0 115.1961811110001,-8.466139970999961,0 115.196181248,-8.466139479999981,0 115.196185933,-8.466118169999959,0 115.196185988,-8.466117840999971,0 115.196189385,-8.46609007099994,0 115.1962121060001,-8.465991606999978,0 115.1962121560001,-8.46599135699995,0 115.1962227130001,-8.465927744999931,0 115.1962227690001,-8.46592721899998,0 115.1962253520001,-8.465871891999939,0 115.1962253470001,-8.465871522999976,0 115.196219377,-8.465769720999958,0 115.196217303,-8.465733789999945,0 115.196216172,-8.465689424999937,0 115.196219205,-8.465659523999932,0 115.1962221750001,-8.465630716999954,0 115.1962355850001,-8.465544588999933,0 115.196238374,-8.465526729999965,0 115.1962432780001,-8.465488550999964,0 115.1962433140001,-8.465488067999956,0 115.1962441930001,-8.465443643999947,0 115.1962441840001,-8.465443302999972,0 115.196241664,-8.46540532399996,0 115.1962404850001,-8.465387550999935,0 115.1962402470001,-8.465358300999981,0 115.196240235,-8.46535801899995,0 115.196238072,-8.465327629999933,0 115.1962382390001,-8.465291192999928,0 115.1962385830001,-8.465217331999952,0 115.1962385400001,-8.465216703999943,0 115.196232879,-8.465175912999939,0 115.1962327680001,-8.465175407999936,0 115.1962271200001,-8.46515513099996,0 115.1962249730001,-8.465135501999953,0 115.196228516,-8.465062904999968,0 115.1962284680001,-8.465062109999963,0 115.196224679,-8.465037544999973,0 115.1962245860001,-8.465037114999973,0 115.196218182,-8.465013226999929,0 115.1962180620001,-8.465012846999969,0 115.1962177270001,-8.465012132999959,0 115.1962172740001,-8.46501148699997,0 115.196217056,-8.46501124599996,0 115.196204684,-8.464998530999935,0 115.1962043420001,-8.46499821499998,0 115.1962035840001,-8.464997702999938,0 115.196183528,-8.464987604999976,0 115.1961832320001,-8.464987467999947,0 115.1961370690001,-8.464968260999967,0 115.196130924,-8.464962036999964,0 115.1961257800001,-8.464954443999943,0 115.196118025,-8.464934948999939,0 115.196098792,-8.464849483999956,0 115.196091945,-8.464786814999968,0 115.1960910920001,-8.464746782999953,0 115.196090796,-8.464730675999931,0 115.1960936620001,-8.46469919599997,0 115.1961016050001,-8.464667566999935,0 115.1961175870001,-8.464637570999969,0 115.196117877,-8.464636902999928,0 115.1961235340001,-8.46461893999998,0 115.196123671,-8.464618371999961,0 115.1961237260001,-8.46461794399994,0 115.1961254720001,-8.464596074999974,0 115.1961339300001,-8.464522940999927,0 115.19614234,-8.46449204399994,0 115.19614462,-8.464483662999953,0 115.1961630450001,-8.464427356999977,0 115.1961631400001,-8.464427026999942,0 115.1961642890001,-8.464422327999955,0 115.19617024,-8.464398045999928,0 115.1961703000001,-8.464397757999961,0 115.196170359,-8.464397278999968,0 115.1961725330001,-8.464365181999938,0 115.1961739940001,-8.464293669999961,0 115.1961750600001,-8.464241840999932,0 115.1961754660001,-8.464122411999938,0 115.1961808980001,-8.464062067999976,0 115.196188384,-8.463977974999978,0 115.196200832,-8.46391072199998,0 115.1962193170001,-8.463841694999928,0 115.19624448,-8.46377713499993,0 115.1962742540001,-8.463727163999977,0 115.19627485,-8.463726161999944,0 115.1962852840001,-8.463708646999976,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
115.1974520650001,-8.471142536999935,0 115.1974531640001,-8.471137399999975,0 115.19745463,-8.471130564999953,0 115.1974565500001,-8.471121579999931,0 115.1974664200001,-8.471075464999956,0 115.1974975110001,-8.470986860999972,0 115.1975025940001,-8.470973172999948,0 115.197510458,-8.470951987999968,0 115.1975144800001,-8.470941155999981,0 115.1975145790001,-8.470940852999945,0 115.1975164170001,-8.470934510999939,0 115.197530409,-8.470886235999956,0 115.197530517,-8.47088576799996,0 115.197530572,-8.470885333999945,0 115.197538064,-8.470789203999971,0 115.1975403660001,-8.470735246999936,0 115.197541264,-8.470714202999943,0 115.1975479270001,-8.47055917199998,0 115.1975592250001,-8.470296313999938,0 115.197577936,-8.470141970999975,0 115.1975813140001,-8.470114108999951,0 115.197577496,-8.470127334999972,0 115.1975734270001,-8.470141428999966,0 115.1975546960001,-8.470295936999946,0 115.1975433880001,-8.470558977999929,0 115.197536727,-8.470714011999974,0 115.197535827,-8.470735056999956,0 115.1975335310001,-8.470788932999938,0 115.1975288320001,-8.470849218999945,0 115.197526045,-8.470884983999952,0 115.1975244230001,-8.470890580999935,0 115.1975120550001,-8.470933254999977,0 115.1975107830001,-8.470937644999935,0 115.1975102160001,-8.470939599999951,0 115.197508391,-8.470944518999943,0 115.197506199,-8.470950422999977,0 115.1974983350001,-8.470971605999978,0 115.1974932320001,-8.470985343999928,0 115.197462038,-8.47107424099994,0 115.1974549040001,-8.471107576999941,0 115.1974521080001,-8.471120639999981,0 115.1974516930001,-8.471122579999928,0 115.1974501880001,-8.471129622999968,0 115.19744872,-8.471136457999933,0 115.197447158,-8.471143778999931,0 115.1973965950001,-8.471380364999959,0 115.1973527070001,-8.471534688999952,0 115.197351986,-8.471537223999974,0 115.1973503840001,-8.471542856999974,0 115.1973280880001,-8.471621178999953,0 115.197326414,-8.471627059999946,0 115.197308138,-8.471691263999958,0 115.1972797400001,-8.471777753999959,0 115.197257508,-8.471845463999955,0 115.197207947,-8.47199642299995,0 115.1971882270001,-8.472066926999958,0 115.197182805,-8.472105043999932,0 115.1971740660001,-8.472166155999957,0 115.1971589420001,-8.472271875999979,0 115.1971581920001,-8.472277125999938,0 115.1971570110001,-8.472300794999967,0 115.197156012,-8.472320899999943,0 115.1971560110001,-8.472320927999931,0 115.197147706,-8.472487521999938,0 115.1971472060001,-8.472497541999928,0 115.1971458260001,-8.472510682999939,0 115.1971255000001,-8.47270425399995,0 115.1970999,-8.472814477999975,0 115.1970961120001,-8.472830786999964,0 115.197095557,-8.472833173999959,0 115.1970923570001,-8.472846951999941,0 115.1970745350001,-8.472923678999962,0 115.1970717790001,-8.472938443999965,0 115.1970682040001,-8.472957570999938,0 115.1970677100001,-8.47296020999994,0 115.1970675970001,-8.472960816999944,0 115.1970668600001,-8.47296476899993,0 115.197071678,-8.473006821999945,0 115.1970755650001,-8.473025679999978,0 115.1970764370001,-8.473029893999978,0 115.1970921140001,-8.473064903999955,0 115.197092738,-8.473066310999968,0 115.1971732980001,-8.473123010999927,0 115.19718478,-8.473131093999939,0 115.197185437,-8.473131555999942,0 115.1971906000001,-8.473135188999947,0 115.1971911090001,-8.473135548999949,0 115.1971936550001,-8.473136103999934,0 115.19719396,-8.473136093999926,0 115.19719578,-8.473136040999975,0 115.197196274,-8.473136024999974,0 115.1971999360001,-8.47313425599998,0 115.1972032850001,-8.473132635999946,0 115.197237983,-8.473115871999937,0 115.197257804,-8.473106296999958,0 115.197312868,-8.473079690999953,0 115.1973191300001,-8.47307666599994,0 115.1974825340001,-8.473040624999953,0 115.197552566,-8.473036886999978,0 115.1975878430001,-8.473035056999947,0 115.1976640730001,-8.47303729999993,0 115.197671008,-8.473037502999944,0 115.1976858270001,-8.473037935999969,0 115.197708035,-8.473038588999941,0 115.1978324410001,-8.473042240999973,0 115.1979499500001,-8.473053448999963,0 115.1979872090001,-8.473060219999979,0 115.1980347660001,-8.473068930999943,0 115.1980353160001,-8.473069031999955,0 115.1980564820001,-8.473075006999977,0 115.198293313,-8.473141725999938,0 115.198391462,-8.473178510999958,0 115.198453501,-8.473201758999949,0 115.198550962,-8.473256124999978,0 115.198626654,-8.473298345999979,0 115.1987136340001,-8.473346862999961,0 115.198731088,-8.473356383999942,0 115.1987592690001,-8.47337175399997,0 115.1988031140001,-8.473395636999953,0 115.1988941200001,-8.473438450999936,0 115.1989486150001,-8.473457775999975,0 115.199071491,-8.473490612999967,0 115.199087497,-8.473494296999945,0 115.199324165,-8.473549534999961,0 115.199412924,-8.47357543499993,0 115.1994349360001,-8.473583964999932,0 115.199437739,-8.473585262999961,0 115.199442018,-8.473577097999964,0 115.1994389170001,-8.473575866999965,0 115.1994382290001,-8.473575537999977,0 115.1994161230001,-8.473566973999937,0 115.1994154780001,-8.473566757999947,0 115.1993267190001,-8.473540858999968,0 115.199326237,-8.473540731999947,0 115.1990901180001,-8.473485621999941,0 115.1990895570001,-8.473485490999963,0 115.199073674,-8.473481833999926,0 115.1989513200001,-8.473449136999932,0 115.1988975920001,-8.473430082999926,0 115.1988072400001,-8.473387577999972,0 115.198763631,-8.473363822999943,0 115.19871806,-8.47333896799995,0 115.198555401,-8.47324823699995,0 115.198499424,-8.473217010999974,0 115.19845794,-8.473193870999978,0 115.198456702,-8.473193295999977,0 115.198394663,-8.473170048999975,0 115.1982964670001,-8.473133243999939,0 115.198295786,-8.473133023999935,0 115.198154185,-8.473093133999953,0 115.1980661030001,-8.473068319999982,0 115.1980589570001,-8.473066305999964,0 115.198037793,-8.473060333999967,0 115.1980369590001,-8.473060139999973,0 115.197988846,-8.473051325999961,0 115.197951555,-8.47304455099993,0 115.1979508170001,-8.473044448999929,0 115.197833306,-8.473033240999939,0 115.1978327090001,-8.473033202999943,0 115.1976860960001,-8.473028897999939,0 115.1976643420001,-8.473028261999957,0 115.1975881110001,-8.473026018999974,0 115.1975878430001,-8.473026015999949,0 115.1975873710001,-8.473026027999936,0 115.1975520870001,-8.473027857999966,0 115.1974820470001,-8.473031595999942,0 115.197480957,-8.473031721999973,0 115.19748057,-8.473031797999965,0 115.1973171660001,-8.473067837999963,0 115.1973160240001,-8.47306816899993,0 115.1973151650001,-8.473068531999957,0 115.197253839,-8.473098161999928,0 115.1971993190001,-8.473124500999972,0 115.197193466,-8.473127331999933,0 115.197192673,-8.473127542999976,0 115.197192015,-8.473127811999973,0 115.197189564,-8.473128922999933,0 115.197096385,-8.473063340999943,0 115.197096265,-8.473063070999956,0 115.197080785,-8.473028497999962,0 115.1970800140001,-8.473024768999949,0 115.1970761680001,-8.473006113999929,0 115.1970714480001,-8.472964927999953,0 115.197072174,-8.472961035999958,0 115.1970762430001,-8.472939269999927,0 115.1970789820001,-8.472924596999974,0 115.197096781,-8.472847970999965,0 115.1971005360001,-8.472831805999931,0 115.1971299480001,-8.472705155999961,0 115.1971300170001,-8.472704725999961,0 115.1971517320001,-8.472497888999953,0 115.1971605450001,-8.47232115199995,0 115.1971615460001,-8.472301017999939,0 115.1971627160001,-8.472277559999952,0 115.1971634390001,-8.472272508999936,0 115.1971785640001,-8.472166779999952,0 115.1971873010001,-8.47210567999997,0 115.1971926800001,-8.472067854999977,0 115.1972122960001,-8.471997726999973,0 115.1972618240001,-8.471846867999943,0 115.1972840560001,-8.471779157999947,0 115.197312481,-8.471692582999935,0 115.197332457,-8.471622412999977,0 115.197354753,-8.471544088999963,0 115.1973570760001,-8.471535918999962,0 115.197400964,-8.471381595999958,0 115.1974010370001,-8.471381305999955,0 115.197451599,-8.471144719999927,0 115.1974520650001,-8.471142536999935,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
115.196717979,-8.473228988999949,0 115.196724451,-8.47322896999998,0 115.1968792450001,-8.473228483999947,0 115.1968911570001,-8.473228441999936,0 115.196976411,-8.47322025099993,0 115.1970064880001,-8.473212343999933,0 115.19704486,-8.473202255999979,0 115.197051081,-8.473200619999943,0 115.1971634800001,-8.473150652999948,0 115.197167613,-8.473148815999934,0 115.1971695650001,-8.473147108999967,0 115.197170421,-8.473145818999967,0 115.197170998,-8.473144949999948,0 115.1971717580001,-8.473142421999967,0 115.197171697,-8.473139802999981,0 115.197171503,-8.473139130999925,0 115.197171475,-8.473139036999953,0 115.197171377,-8.473138702999961,0 115.1971709830001,-8.473137351999981,0 115.197170958,-8.473137263999945,0 115.197169472,-8.473135089999971,0 115.1971572320001,-8.473126389999948,0 115.1971396180001,-8.473113880999961,0 115.1971276530001,-8.473105379999936,0 115.197086161,-8.473075894999965,0 115.19708342,-8.473073950999947,0 115.1970825660001,-8.473072041999956,0 115.1970755670001,-8.473056437999958,0 115.197065263,-8.473033457999975,0 115.1970601380001,-8.473008663999963,0 115.1970551050001,-8.472964355999977,0 115.1970559450001,-8.472959852999963,0 115.197058563,-8.472945908999975,0 115.197059779,-8.472939414999928,0 115.197063166,-8.472921362999955,0 115.1970736320001,-8.472876396999936,0 115.197076507,-8.472863964999931,0 115.1970783500001,-8.472855986999946,0 115.197082421,-8.472838383999942,0 115.1970826590001,-8.47283736199995,0 115.197087203,-8.472817763999956,0 115.197092525,-8.47279481399994,0 115.197092676,-8.472794159999978,0 115.1970933260001,-8.472791363999931,0 115.19709517,-8.472783413999935,0 115.19711398,-8.472702308999942,0 115.1971217360001,-8.472628672999974,0 115.197126493,-8.472583401999941,0 115.1971356040001,-8.472496669999941,0 115.197135676,-8.472495200999958,0 115.197140898,-8.47238903899995,0 115.1971432910001,-8.472340895999935,0 115.1971465150001,-8.472276080999961,0 115.1971767790001,-8.472064517999968,0 115.1971967290001,-8.471993023999971,0 115.1972001680001,-8.471982556999933,0 115.197200177,-8.471982527999955,0 115.1972300760001,-8.471891393999954,0 115.1972354170001,-8.471875122999961,0 115.1972399460001,-8.471861327999932,0 115.1972553870001,-8.471814284999937,0 115.197260958,-8.471797313999957,0 115.197271975,-8.471763751999958,0 115.1972739800001,-8.471757633999971,0 115.1972833270001,-8.471729208999932,0 115.1972969200001,-8.471687872999951,0 115.197307578,-8.471650345999933,0 115.1973090990001,-8.471644990999948,0 115.1973100820001,-8.471641537999972,0 115.1973111130001,-8.471637913999928,0 115.1973191530001,-8.471609673999978,0 115.1973451060001,-8.471518514999957,0 115.1973482410001,-8.471507493999979,0 115.1973529080001,-8.471491087999937,0 115.1973852240001,-8.471377513999926,0 115.19739112,-8.471350144999974,0 115.1974249440001,-8.471191997999938,0 115.1974366630001,-8.471137214999942,0 115.197438322,-8.471129463999944,0 115.1974402510001,-8.471120459999952,0 115.197450825,-8.471071111999947,0 115.1974822400001,-8.470981499999937,0 115.1974991520001,-8.470935930999929,0 115.1975050870001,-8.470915324999964,0 115.1975144490001,-8.470882851999932,0 115.197521851,-8.470788155999969,0 115.1975226740001,-8.470768849999956,0 115.197523283,-8.470754444999955,0 115.1975262130001,-8.470687472999941,0 115.197532517,-8.470540075999963,0 115.1975393120001,-8.470383638999976,0 115.197540139,-8.470364265999933,0 115.197543093,-8.470294980999938,0 115.1975451410001,-8.47027817999998,0 115.1975484660001,-8.470250893999946,0 115.1975528730001,-8.470214330999966,0 115.1975446790001,-8.470244378999951,0 115.1975439590001,-8.470250350999947,0 115.1975385860001,-8.470294435999961,0 115.197538557,-8.470294789999969,0 115.1975347760001,-8.470383445999971,0 115.197527981,-8.470539879999933,0 115.1975216770001,-8.470687279999936,0 115.1975187470001,-8.47075424999997,0 115.1975181360001,-8.470768656999951,0 115.197517317,-8.470787890999929,0 115.197509959,-8.470882044999939,0 115.1975007230001,-8.470914078999954,0 115.1974948340001,-8.470934519999958,0 115.197477969,-8.470979965999959,0 115.197446538,-8.471069621999959,0 115.197446385,-8.471070168999972,0 115.1974358110001,-8.471119515999931,0 115.1974338820001,-8.471128518999933,0 115.1974322230001,-8.471136270999978,0 115.1974205030001,-8.471191056999942,0 115.1974160110001,-8.471212058999981,0 115.197386681,-8.471349200999953,0 115.1973808150001,-8.47137642399997,0 115.197352988,-8.471474223999962,0 115.197348539,-8.471489857999927,0 115.1973407370001,-8.471517282999969,0 115.1973067450001,-8.47163668099995,0 115.197304731,-8.47164375899996,0 115.1973045530001,-8.471644380999976,0 115.197292575,-8.471686551999937,0 115.197284477,-8.471711183999957,0 115.1972790120001,-8.471727802999965,0 115.197269664,-8.471756229999926,0 115.1972676600001,-8.47176234799997,0 115.197267505,-8.47176282099997,0 115.1972510710001,-8.471812879999959,0 115.197237572,-8.47185400799998,0 115.19723563,-8.471859923999943,0 115.197233155,-8.471867462999967,0 115.1972287030001,-8.471881024999959,0 115.19722576,-8.47188998799993,0 115.1971958620001,-8.471981121999931,0 115.1971923840001,-8.471991715999934,0 115.1971724040001,-8.472063307999974,0 115.1971722960001,-8.472063805999937,0 115.197142019,-8.472275443999933,0 115.1971419800001,-8.472275855999953,0 115.1971387560001,-8.472340668999948,0 115.197136363,-8.472388817999956,0 115.1971311410001,-8.472494979999965,0 115.197131075,-8.472496319999948,0 115.1971219760001,-8.472582931999966,0 115.197121045,-8.47259179699995,0 115.1971172200001,-8.472628201999953,0 115.1971094920001,-8.472701561999941,0 115.1970907450001,-8.472782396999946,0 115.1970882510001,-8.472793145999958,0 115.1970881000001,-8.47279379899993,0 115.1970827780001,-8.472816744999932,0 115.197082559,-8.472817694999947,0 115.1970779960001,-8.472837366999954,0 115.197073925,-8.472854972999926,0 115.197072874,-8.472859520999975,0 115.1970720820001,-8.472862949999978,0 115.197069209,-8.472875378999959,0 115.197058723,-8.472920436999971,0 115.197055316,-8.472938586999931,0 115.1970541000001,-8.472945079999931,0 115.197051482,-8.47295902299993,0 115.1970506360001,-8.472963549999974,0 115.1970505630001,-8.472964355999977,0 115.1970505930001,-8.472964863999948,0 115.1970556260001,-8.473009171999934,0 115.1970556790001,-8.473009511999976,0 115.1970608160001,-8.473034368999947,0 115.197060996,-8.473035003999939,0 115.1970611160001,-8.473035300999982,0 115.197071422,-8.473058279999975,0 115.197078419,-8.473073883999973,0 115.197079271,-8.473075789999939,0 115.1970794870001,-8.473076209999931,0 115.1970799410001,-8.473076855999977,0 115.1970805000001,-8.473077413999931,0 115.197080786,-8.473077632999946,0 115.197083525,-8.473079575999975,0 115.1971250150001,-8.473109060999946,0 115.1971369810001,-8.473117560999981,0 115.197154594,-8.473130068999978,0 115.197166174,-8.47313829999996,0 115.197166797,-8.473139211999978,0 115.197166807,-8.47313924599996,0 115.1971638780001,-8.473140573999956,0 115.1970480540001,-8.473192063999932,0 115.197004169,-8.473203601999955,0 115.196974801,-8.47321132299993,0 115.19689071,-8.473219402999973,0 115.1968792160001,-8.473219441999959,0 115.1967244240001,-8.473219927999935,0 115.196720688,-8.473219934999975,0 115.196717979,-8.473228988999949,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
115.198036397,-8.468078881999929,0 115.198043834,-8.468053121999958,0 115.198044759,-8.468049914999938,0 115.1980442710001,-8.468050801999937,0 115.1980441210001,-8.468051099999968,0 115.1980431850001,-8.468053144999942,0 115.1980322650001,-8.46807700599993,0 115.19802786,-8.468086635999953,0 115.1980277250001,-8.468086964999941,0 115.1980275550001,-8.46808754999995,0 115.1980269280001,-8.468090419999953,0 115.1980267590001,-8.468091196999978,0 115.198022518,-8.468110645999957,0 115.1980079530001,-8.468177447999949,0 115.198026955,-8.468111603999944,0 115.198031365,-8.468091380999965,0 115.1980319180001,-8.468088849999958,0 115.1980319920001,-8.468088510999962,0 115.198033278,-8.468085698999971,0 115.198036397,-8.468078881999929,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
115.197824295,-8.468813817999944,0 115.1978437900001,-8.468746267999961,0 115.197848924,-8.468728475999967,0 115.197836497,-8.468766049999942,0 115.19783641,-8.468766348999964,0 115.1978284610001,-8.468797496999969,0 115.197824295,-8.468813817999944,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</MultiGeometry>
<description>{&quot;OBJECTID&quot;:&quot;1414&quot;,&quot;NAMOBJ&quot;:&quot;Jalur Hijau&quot;,&quot;NAMZON&quot;:&quot;Zona Ruang Terbuka Hijau&quot;,&quot;KODZON&quot;:&quot;RTH&quot;,&quot;NAMSZN&quot;:&quot;Jalur Hijau&quot;,&quot;KODSZN&quot;:&quot;RTH-8&quot;,&quot;JNSRPR&quot;:&quot;Zona Lindung&quot;,&quot;KODEWP&quot;:&quot;I&quot;,&quot;KODSWP&quot;:&quot;A&quot;,&quot;KODBLK&quot;:&quot;4&quot;,&quot;KODSBL&quot;:&quot;Tidak Ada&quot;,&quot;WADMPR&quot;:&quot;Provinsi Bali&quot;,&quot;WADMKK&quot;:&quot;Kabupaten Badung&quot;,&quot;WADMKC&quot;:&quot;Kecamatan Mengwi&quot;,&quot;WADMKD&quot;:&quot;Desa Sembung&quot;,&quot;KKOP_1&quot;:&quot;Tidak Ada&quot;,&quot;LP2B_2&quot;:&quot;Tidak Ada&quot;,&quot;KRB_03&quot;:&quot;Tidak Ada&quot;,&quot;TOD_04&quot;:&quot;Tidak Ada&quot;,&quot;TEB_05&quot;:&quot;Tidak Ada&quot;,&quot;PUSLIT&quot;:&quot;Tidak Ada&quot;,&quot;CAGBUD&quot;:&quot;Tidak Ada&quot;,&quot;RESAIR&quot;:&quot;Tidak Ada&quot;,&quot;KSMPDN&quot;:&quot;Tidak Ada&quot;,&quot;HANKAM&quot;:&quot;Tidak Ada&quot;,&quot;KKARST&quot;:&quot;Tidak Ada&quot;,&quot;PTBGMB&quot;:&quot;Tidak Ada&quot;,&quot;MGRSAT&quot;:&quot;Tidak Ada&quot;,&quot;RDBUMI&quot;:&quot;Tidak Ada&quot;,&quot;TPZ_00&quot;:&quot;Tidak Ada&quot;,&quot;REMARK&quot;:&quot;Tidak Ada&quot;,&quot;NOTHPR&quot;:&quot;Peraturan Bupati Badung Nomor 34 Tahun 2022 tentang Rencana Detail Tata Ruang Wilayah Perencanaan Mengwi Tahun 2022-2042&quot;}</description>
</Placemark>
<Placemark>
<visibility>0</visibility>
<styleUrl>#m_ylw-pushpin71</styleUrl>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
115.1920768320001,-8.444824933999939,0 115.192069209,-8.444820015999937,0 115.1920691150001,-8.444819955999947,0 115.19204718,-8.444869221999966,0 115.1920197400001,-8.444930845999977,0 115.1919922100001,-8.444990968999946,0 115.1919521760001,-8.445078399999943,0 115.191940474,-8.445103942999935,0 115.1919383500001,-8.445108585999947,0 115.1918765820001,-8.44524346999998,0 115.1918748800001,-8.44524718699995,0 115.1917861880001,-8.445440866999945,0 115.19172961,-8.445564418999936,0 115.191724979,-8.445574533999945,0 115.1917192870001,-8.445586965999951,0 115.1916915510001,-8.445649824999975,0 115.1916706850001,-8.445697104999965,0 115.1916248460001,-8.445800968999947,0 115.1916230260001,-8.445805093999979,0 115.1916227640001,-8.445811061999962,0 115.1916226930001,-8.445812685999954,0 115.191622874,-8.44581313599997,0 115.191625508,-8.445819660999973,0 115.191626184,-8.445820319999939,0 115.19163102,-8.445825017999937,0 115.1918044880001,-8.445909334999953,0 115.192143533,-8.446066740999981,0 115.192166766,-8.446080478999932,0 115.1921775830001,-8.446086874999935,0 115.192308635,-8.446164273999955,0 115.1923675740001,-8.446199080999975,0 115.1923895000001,-8.44621202899998,0 115.1923680330001,-8.446230892999949,0 115.1923679770001,-8.446230857999979,0 115.192155776,-8.446105499999931,0 115.192133967,-8.446092613999951,0 115.1921307680001,-8.44609072399993,0 115.1921125880001,-8.446082290999925,0 115.1919384600001,-8.446001520999971,0 115.19179277,-8.445933872999944,0 115.1916289120001,-8.445854532999931,0 115.191620121,-8.445850274999941,0 115.1916181990001,-8.445850155999949,0 115.1916130530001,-8.445849837999958,0 115.191612187,-8.445849781999925,0 115.1916046870001,-8.445852730999945,0 115.1915992710001,-8.445858492999946,0 115.19159748,-8.445862629999965,0 115.191269698,-8.446619623999936,0 115.1912679070001,-8.446623761999945,0 115.1912676410001,-8.446631528999944,0 115.1912706810001,-8.44663868799995,0 115.19127114,-8.446639095999956,0 115.191276495,-8.446643859999938,0 115.191483108,-8.446733766999955,0 115.1916887800001,-8.446818493999956,0 115.1917147720001,-8.446829201999947,0 115.1917095460001,-8.446841740999957,0 115.191705938,-8.446850406999943,0 115.1917043210001,-8.446854278999979,0 115.1914724330001,-8.446758751999937,0 115.191381178,-8.446719194999957,0 115.1912648480001,-8.446668762999934,0 115.1912583310001,-8.446668578999947,0 115.1912570620001,-8.446668543999976,0 115.1912498600001,-8.446671585999979,0 115.191249521,-8.446671961999925,0 115.1912445910001,-8.446677432999934,0 115.1912428110001,-8.446681576999936,0 115.191205995,-8.446767303999934,0 115.1912043130001,-8.446771220999949,0 115.1911997830001,-8.446781768999926,0 115.191153265,-8.446890073999953,0 115.1911514850001,-8.446894217999954,0 115.191152048,-8.446901809999929,0 115.191153801,-8.446905064999953,0 115.1911553450001,-8.446907929999952,0 115.191155469,-8.446908159999964,0 115.1911556120001,-8.446908426999926,0 115.1911615790001,-8.446913062999954,0 115.1912593120001,-8.446960137999952,0 115.1914520400001,-8.447052974999963,0 115.191580701,-8.447116490999974,0 115.1917326890001,-8.447191529999941,0 115.1917674760001,-8.447208701999955,0 115.1917869370001,-8.447218312999951,0 115.191783211,-8.447225811999942,0 115.191782017,-8.447228216999974,0 115.191781771,-8.447228711999969,0 115.19178089,-8.447230488999935,0 115.1917748420001,-8.447242572999926,0 115.1917650250001,-8.447237724999979,0 115.1917216730001,-8.447216330999936,0 115.1917214970001,-8.447216243999947,0 115.191720774,-8.44721588699997,0 115.1916609250001,-8.447186344999977,0 115.191568414,-8.447140664999949,0 115.1914401,-8.447077326999931,0 115.191149415,-8.446937684999966,0 115.1911423830001,-8.446937251999941,0 115.1911414010001,-8.446937189999971,0 115.1911378350001,-8.446938608999972,0 115.191133978,-8.446940142999949,0 115.191129313,-8.446945256999982,0 115.1911285570001,-8.446946085999969,0 115.191128357,-8.446946516999958,0 115.1911266610001,-8.446950173999937,0 115.191104833,-8.446997243999931,0 115.1910715040001,-8.447069146999979,0 115.190966243,-8.447296173999973,0 115.1909353100001,-8.44736288699994,0 115.1909140350001,-8.447410590999937,0 115.190857873,-8.447536518999925,0 115.190815248,-8.447632091999935,0 115.190815218,-8.447632158999966,0 115.190793212,-8.447681500999977,0 115.1907492890001,-8.447781513999928,0 115.1907140320001,-8.447861821999936,0 115.190708209,-8.447875078999971,0 115.190639516,-8.448031513999979,0 115.190636798,-8.44803770599998,0 115.1906071940001,-8.44810511999998,0 115.1905791720001,-8.448167482999963,0 115.1905769790001,-8.448172363999959,0 115.1905627990001,-8.448203922999937,0 115.1904309070001,-8.448497415999952,0 115.1904125430001,-8.448544459999937,0 115.1904109010001,-8.448548665999965,0 115.1904125130001,-8.448556265999969,0 115.190415624,-8.448560488999931,0 115.1904171250001,-8.448562526999979,0 115.1908197660001,-8.448730798999975,0 115.190961353,-8.448801642999967,0 115.190972383,-8.44880716199998,0 115.191315109,-8.448978681999961,0 115.191538184,-8.449086099999931,0 115.191620818,-8.449108899999942,0 115.19173304,-8.44912839999995,0 115.1917495020001,-8.449130413999967,0 115.191812958,-8.449138173999927,0 115.1919237720001,-8.449144754999963,0 115.1919312660001,-8.449145199999975,0 115.1919397040001,-8.449145698999928,0 115.191948807,-8.449146237999969,0 115.1919514140001,-8.449141863999955,0 115.191949076,-8.449141724999947,0 115.1919315350001,-8.449140686999954,0 115.1919240430001,-8.449140241999942,0 115.1918133630001,-8.449133668999934,0 115.1917337150001,-8.449123928999938,0 115.1916218140001,-8.449104484999964,0 115.191539796,-8.449081853999928,0 115.1913171110001,-8.448974623999959,0 115.1909744210001,-8.448803121999958,0 115.1909633920001,-8.448797602999946,0 115.190821805,-8.448726758999953,0 115.1908215240001,-8.448726629999953,0 115.1908214250001,-8.448726588999932,0 115.190420043,-8.448558843999933,0 115.1904177260001,-8.44855569799995,0 115.190419223,-8.448552285999938,0 115.190419366,-8.448551941999938,0 115.1904392910001,-8.448500897999963,0 115.1905710880001,-8.448207614999944,0 115.1905874600001,-8.44817117499997,0 115.190615499,-8.448108776999959,0 115.190645118,-8.448041327999931,0 115.190716531,-8.447878700999979,0 115.1907223520001,-8.447865442999955,0 115.1907576100001,-8.447785136999926,0 115.190801522,-8.447685148999938,0 115.190823548,-8.447635760999958,0 115.190866173,-8.447540187999948,0 115.190943584,-8.447366613999975,0 115.1909744880001,-8.447299963999967,0 115.1910797490001,-8.447072936999973,0 115.191113079,-8.447001033999982,0 115.1911368350001,-8.446949801999949,0 115.1911400130001,-8.44694261199993,0 115.1911421410001,-8.446941766999942,0 115.191148243,-8.446942140999965,0 115.1914381150001,-8.447081391999973,0 115.1915663960001,-8.447144715999968,0 115.191658909,-8.447190395999939,0 115.19171855,-8.447219763999954,0 115.1917187790001,-8.447219907999965,0 115.191719225,-8.44722016399993,0 115.1917194800001,-8.447220293999976,0 115.1917196310001,-8.447220363999975,0 115.191719937,-8.447220503999972,0 115.1917630080001,-8.447241775999942,0 115.1917728240001,-8.447246622999955,0 115.191773289,-8.447246820999965,0 115.191774053,-8.447247024999967,0 115.1917748420001,-8.44724709299993,0 115.1917756310001,-8.447247025999957,0 115.191776395,-8.447246820999965,0 115.1917771120001,-8.447246486999973,0 115.19177776,-8.447246034999978,0 115.191778321,-8.447245477999957,0 115.1917787740001,-8.447244831999967,0 115.1917789060001,-8.447244588999979,0 115.1917849580001,-8.447232496999959,0 115.1917860870001,-8.447230219999938,0 115.191791007,-8.44722031699996,0 115.1917912030001,-8.447219858999972,0 115.1917914080001,-8.447219096999959,0 115.191791477,-8.447218311999961,0 115.1917914080001,-8.447217526999964,0 115.1917912030001,-8.447216766999929,0 115.1917908690001,-8.447216052999977,0 115.1917904160001,-8.447215406999931,0 115.191789855,-8.447214848999977,0 115.1917892070001,-8.447214397999971,0 115.1917889550001,-8.447214261999932,0 115.191769493,-8.447204652999972,0 115.191734708,-8.447187479999968,0 115.191734557,-8.447187405999955,0 115.1915827190001,-8.447112440999945,0 115.1914540370001,-8.447048914999925,0 115.1912612900001,-8.446956067999963,0 115.1911644300001,-8.446909501999926,0 115.1911635890001,-8.446908952999934,0 115.1911591600001,-8.446905448999928,0 115.1911576670001,-8.446902675999979,0 115.1911598150001,-8.446897815999932,0 115.1912126620001,-8.446774775999927,0 115.1912529330001,-8.446681005999949,0 115.1912560220001,-8.446673893999957,0 115.1912579240001,-8.44667309099998,0 115.191263841,-8.44667325599994,0 115.1913793650001,-8.446723339999949,0 115.191470157,-8.446762680999939,0 115.191470769,-8.446762957999965,0 115.1914716240001,-8.446763253999961,0 115.1917026770001,-8.446858491999933,0 115.191703533,-8.446858731999953,0 115.1917043220001,-8.446858800999962,0 115.191705111,-8.446858731999953,0 115.191705875,-8.446858526999961,0 115.1917065910001,-8.446858193999958,0 115.19170724,-8.446857742999953,0 115.1917078,-8.446857185999932,0 115.1917082540001,-8.446856538999953,0 115.1917085150001,-8.44685601499998,0 115.191710132,-8.446852139999976,0 115.1917137410001,-8.446843472999944,0 115.1917190030001,-8.446830839999961,0 115.1917192440001,-8.446829986999944,0 115.191719313,-8.446829201999947,0 115.1917192440001,-8.446828416999949,0 115.1917190380001,-8.446827655999925,0 115.1917187040001,-8.446826941999973,0 115.19171825,-8.446826295999927,0 115.19171769,-8.446825738999962,0 115.1917170420001,-8.446825286999967,0 115.191716507,-8.446825023999963,0 115.1916905170001,-8.446814316999962,0 115.191484883,-8.446729605999963,0 115.1912789800001,-8.446640007999974,0 115.1912744640001,-8.446635990999937,0 115.1912734880001,-8.446633690999931,0 115.1912762440001,-8.446627345999957,0 115.1916075920001,-8.445862111999929,0 115.1916106460001,-8.445855248999976,0 115.1916129150001,-8.445854358999952,0 115.1916189420001,-8.44585473199993,0 115.1917908170001,-8.44593795399993,0 115.191936541,-8.446005618999948,0 115.1921286500001,-8.44609472999997,0 115.1921528370001,-8.446108996999953,0 115.1921534750001,-8.44610939599994,0 115.192154199,-8.446109787999944,0 115.1923656660001,-8.446234749999974,0 115.19236648,-8.446235140999931,0 115.192367245,-8.44623534599998,0 115.1923680330001,-8.446235413999943,0 115.192368822,-8.44623534599998,0 115.192369586,-8.446235140999931,0 115.1923703030001,-8.446234806999939,0 115.192370995,-8.446234319999974,0 115.1923925040001,-8.446215418999941,0 115.192392979,-8.446214934999944,0 115.192393432,-8.446214289999944,0 115.192393766,-8.446213574999945,0 115.1923939710001,-8.446212814999967,0 115.1923940410001,-8.44621202999997,0 115.1923939710001,-8.446211244999972,0 115.1923937670001,-8.446210482999959,0 115.192393431,-8.44620976899995,0 115.1923929780001,-8.44620912299996,0 115.192392418,-8.446208566999928,0 115.1923918160001,-8.446208140999943,0 115.1923109520001,-8.446160384999928,0 115.192179902,-8.446082986999954,0 115.1921690840001,-8.44607659199994,0 115.1921458280001,-8.446062839999968,0 115.1921454530001,-8.446062643999937,0 115.191806422,-8.445905245999938,0 115.1916336700001,-8.445821274999957,0 115.1916293640001,-8.445817090999981,0 115.1916285350001,-8.445815035999942,0 115.191631335,-8.44580874299993,0 115.191678998,-8.445700742999975,0 115.191699865,-8.445653461999939,0 115.1917275720001,-8.44559066599993,0 115.1917275840001,-8.445590639999978,0 115.1917378730001,-8.445568168999955,0 115.191883145,-8.445250936999969,0 115.1918833650001,-8.44525045499995,0 115.1918848450001,-8.445247220999931,0 115.191946613,-8.445112335999966,0 115.1919487370001,-8.445107692999954,0 115.1919487930001,-8.445107571999927,0 115.191960439,-8.445082150999951,0 115.192028023,-8.444934553999929,0 115.1920768320001,-8.444824933999939,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<description>{&quot;OBJECTID&quot;:&quot;1415&quot;,&quot;NAMOBJ&quot;:&quot;Jalur Hijau&quot;,&quot;NAMZON&quot;:&quot;Zona Ruang Terbuka Hijau&quot;,&quot;KODZON&quot;:&quot;RTH&quot;,&quot;NAMSZN&quot;:&quot;Jalur Hijau&quot;,&quot;KODSZN&quot;:&quot;RTH-8&quot;,&quot;JNSRPR&quot;:&quot;Zona Lindung&quot;,&quot;KODEWP&quot;:&quot;I&quot;,&quot;KODSWP&quot;:&quot;A&quot;,&quot;KODBLK&quot;:&quot;1&quot;,&quot;KODSBL&quot;:&quot;Tidak Ada&quot;,&quot;WADMPR&quot;:&quot;Provinsi Bali&quot;,&quot;WADMKK&quot;:&quot;Kabupaten Badung&quot;,&quot;WADMKC&quot;:&quot;Kecamatan Mengwi&quot;,&quot;WADMKD&quot;:&quot;Desa Kuwum&quot;,&quot;KKOP_1&quot;:&quot;Tidak Ada&quot;,&quot;LP2B_2&quot;:&quot;Tidak Ada&quot;,&quot;KRB_03&quot;:&quot;Tidak Ada&quot;,&quot;TOD_04&quot;:&quot;Tidak Ada&quot;,&quot;TEB_05&quot;:&quot;Tidak Ada&quot;,&quot;PUSLIT&quot;:&quot;Tidak Ada&quot;,&quot;CAGBUD&quot;:&quot;Tidak Ada&quot;,&quot;RESAIR&quot;:&quot;Tidak Ada&quot;,&quot;KSMPDN&quot;:&quot;Tidak Ada&quot;,&quot;HANKAM&quot;:&quot;Tidak Ada&quot;,&quot;KKARST&quot;:&quot;Tidak Ada&quot;,&quot;PTBGMB&quot;:&quot;Tidak Ada&quot;,&quot;MGRSAT&quot;:&quot;Tidak Ada&quot;,&quot;RDBUMI&quot;:&quot;Tidak Ada&quot;,&quot;TPZ_00&quot;:&quot;Tidak Ada&quot;,&quot;REMARK&quot;:&quot;Tidak Ada&quot;,&quot;NOTHPR&quot;:&quot;Peraturan Bupati Badung Nomor 34 Tahun 2022 tentang Rencana Detail Tata Ruang Wilayah Perencanaan Mengwi Tahun 2022-2042&quot;}</description>
</Placemark>
<Placemark>
<visibility>0</visibility>
<styleUrl>#m_ylw-pushpin71</styleUrl>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
115.1954432050001,-8.445438879999926,0 115.1954382660001,-8.445438808999938,0 115.195438176,-8.44543899599995,0 115.195438046,-8.445439298999929,0 115.19542057,-8.445478026999979,0 115.19539997,-8.445524581999962,0 115.1953819820001,-8.445565227999964,0 115.195381404,-8.445565276999957,0 115.1953798750001,-8.445565684999963,0 115.19537844,-8.445566350999968,0 115.1953771430001,-8.445567254999958,0 115.1953760240001,-8.445568367999954,0 115.195375116,-8.445569660999979,0 115.1953746680001,-8.445570541999928,0 115.19537433,-8.445571306999966,0 115.195373418,-8.445573381999964,0 115.1953621010001,-8.445599001999938,0 115.1952955610001,-8.445749642999942,0 115.195295394,-8.445750048999969,0 115.195262862,-8.445834581999975,0 115.19522772,-8.445925900999953,0 115.195224937,-8.44593307599996,0 115.1952229990001,-8.445933974999946,0 115.195217003,-8.445934016999956,0 115.1950671320001,-8.445875261999959,0 115.1950664780001,-8.445874987999957,0 115.1950662310001,-8.445874901999957,0 115.1950656610001,-8.44587470099998,0 115.19505514,-8.445870542999955,0 115.1949301730001,-8.445821536999972,0 115.194929354,-8.445821312999954,0 115.1949285650001,-8.445821243999944,0 115.1949277760001,-8.445821312999954,0 115.1949270120001,-8.445821515999967,0 115.1949262950001,-8.445821849999959,0 115.1949256460001,-8.445822301999954,0 115.194925086,-8.445822858999975,0 115.194924633,-8.445823504999964,0 115.194924341,-8.445824107999954,0 115.194919341,-8.445836741999926,0 115.1949143190001,-8.445849427999974,0 115.1949140930001,-8.445850244999974,0 115.194914023,-8.445851029999972,0 115.1949140930001,-8.445851814999969,0 115.1949142980001,-8.445852575999936,0 115.1949146330001,-8.445853289999945,0 115.194915086,-8.445853935999935,0 115.194915646,-8.445854493999946,0 115.1949162940001,-8.445854944999951,0 115.1949168960001,-8.445855234999954,0 115.195054819,-8.445909491999942,0 115.195203351,-8.445967917999951,0 115.1952079980001,-8.445971808999957,0 115.1952090530001,-8.445974014999933,0 115.195206566,-8.44598042299998,0 115.1951877340001,-8.446030220999944,0 115.1951876160001,-8.446030558999951,0 115.195173143,-8.446074773999953,0 115.1950929020001,-8.446319922999976,0 115.19509282,-8.446320186999969,0 115.1949360160001,-8.446854238999947,0 115.19485219,-8.447143676999929,0 115.1947629680001,-8.447451761999957,0 115.1947628700001,-8.447452125999973,0 115.1947103350001,-8.447666710999954,0 115.1945540270001,-8.448196175999954,0 115.194517333,-8.44828834599997,0 115.194414206,-8.44852838099996,0 115.194414001,-8.448528903999943,0 115.1943433450001,-8.448730995999938,0 115.194333127,-8.448752335999927,0 115.1942802100001,-8.448862849999955,0 115.1941375400001,-8.449160780999932,0 115.1941321800001,-8.449171978999971,0 115.194120019,-8.449199202999978,0 115.1940400460001,-8.449378299999978,0 115.1940398730001,-8.449378715999956,0 115.1939938600001,-8.449497384999972,0 115.193924731,-8.449656236999942,0 115.193922842,-8.449660797999968,0 115.1939206500001,-8.449661429999935,0 115.193518099,-8.449556019999932,0 115.1934874840001,-8.44954804899993,0 115.193396041,-8.44951929299998,0 115.193359222,-8.449507715999971,0 115.193318018,-8.449494759999936,0 115.1932616470001,-8.449477033999926,0 115.1932615520001,-8.449477003999959,0 115.1929863150001,-8.449390459999961,0 115.1925432620001,-8.449258536999935,0 115.1923044350001,-8.449180699999943,0 115.192303743,-8.449180533999936,0 115.1922641650001,-8.449174823999954,0 115.1920941650001,-8.44915035799994,0 115.1920937860001,-8.449150320999934,0 115.1919514140001,-8.449141863999955,0 115.191948807,-8.449146237999969,0 115.1919811480001,-8.449148158999947,0 115.192093515,-8.449154833999955,0 115.192263514,-8.449179297999933,0 115.192294692,-8.449183795999943,0 115.192303022,-8.449184996999975,0 115.1923957360001,-8.449215213999935,0 115.1925418840001,-8.449262844999964,0 115.19298498,-8.449394781999956,0 115.1932601840001,-8.449481314999957,0 115.193316651,-8.449499071999981,0 115.1933578540001,-8.449512026999969,0 115.1933602150001,-8.449512768999966,0 115.1933946730001,-8.449523603999978,0 115.193416154,-8.449530358999937,0 115.193486212,-8.449552389999951,0 115.193516947,-8.449560393999946,0 115.193920645,-8.44966610299997,0 115.1939207070001,-8.449666119999961,0 115.193927528,-8.449664153999947,0 115.193929657,-8.449662470999954,0 115.193933094,-8.449659757999939,0 115.1939347160001,-8.449656030999961,0 115.193934893,-8.449655623999945,0 115.19394059,-8.449642532999974,0 115.1940022680001,-8.449500803999968,0 115.1940483440001,-8.449381971999969,0 115.194128316,-8.449202876999948,0 115.194133542,-8.449191174999953,0 115.1941404260001,-8.449175761999982,0 115.1941421150001,-8.449172235999981,0 115.1941457360001,-8.449164672999927,0 115.194288408,-8.44886674199995,0 115.1943274830001,-8.448785131999955,0 115.1943413240001,-8.448756226999933,0 115.1943517550001,-8.448734444999957,0 115.194364745,-8.448697287999948,0 115.194422556,-8.448531936999927,0 115.1945257310001,-8.448291790999974,0 115.194562622,-8.448199123999927,0 115.1947191050001,-8.447669066999936,0 115.194771692,-8.447454267999944,0 115.194860916,-8.447146181999926,0 115.194944737,-8.446856760999935,0 115.195101536,-8.446322724999959,0 115.195181777,-8.446077574999947,0 115.1951926520001,-8.446044352999934,0 115.1951962500001,-8.446033359999944,0 115.1952134510001,-8.445987871999932,0 115.1952148400001,-8.445984198999952,0 115.1952150500001,-8.445983645999945,0 115.1952150100001,-8.445975956999973,0 115.195211674,-8.445968981999954,0 115.1952111690001,-8.445968559999926,0 115.195206502,-8.445964649999951,0 115.1952057080001,-8.445963984999935,0 115.195153254,-8.445943351999972,0 115.1950564870001,-8.44590528699996,0 115.1949185640001,-8.445851029999972,0 115.1949235640001,-8.445838398999967,0 115.1949285650001,-8.445825765999928,0 115.1950534760001,-8.445874748999927,0 115.1950648500001,-8.445879208999941,0 115.1952161570001,-8.445938543999944,0 115.1952228330001,-8.445938498999965,0 115.1952240200001,-8.445938490999936,0 115.195228088,-8.445936599999925,0 115.1952311470001,-8.445935178999946,0 115.1952361960001,-8.445929147999948,0 115.195237818,-8.445924931999969,0 115.195268026,-8.445846435999954,0 115.1952713430001,-8.445837816999926,0 115.1953038730001,-8.445753283999977,0 115.1953667710001,-8.445610889999955,0 115.1953704140001,-8.445602642999972,0 115.195374096,-8.445594306999965,0 115.1953748440001,-8.445592611999928,0 115.1953811610001,-8.445578310999963,0 115.1953817340001,-8.445577014999969,0 115.1953826460001,-8.445574938999926,0 115.1953828710001,-8.445574429999965,0 115.1953829820001,-8.445574181999973,0 115.195385987,-8.445567389999951,0 115.1953866470001,-8.445565897999927,0 115.1954041250001,-8.445526403999963,0 115.195424719,-8.445479863999935,0 115.1954315610001,-8.445464694999941,0 115.195442317,-8.445440848999965,0 115.1954427610001,-8.445439863999979,0 115.1954432050001,-8.445438879999926,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<description>{&quot;OBJECTID&quot;:&quot;1416&quot;,&quot;NAMOBJ&quot;:&quot;Jalur Hijau&quot;,&quot;NAMZON&quot;:&quot;Zona Ruang Terbuka Hijau&quot;,&quot;KODZON&quot;:&quot;RTH&quot;,&quot;NAMSZN&quot;:&quot;Jalur Hijau&quot;,&quot;KODSZN&quot;:&quot;RTH-8&quot;,&quot;JNSRPR&quot;:&quot;Zona Lindung&quot;,&quot;KODEWP&quot;:&quot;I&quot;,&quot;KODSWP&quot;:&quot;A&quot;,&quot;KODBLK&quot;:&quot;2&quot;,&quot;KODSBL&quot;:&quot;Tidak Ada&quot;,&quot;WADMPR&quot;:&quot;Provinsi Bali&quot;,&quot;WADMKK&quot;:&quot;Kabupaten Badung&quot;,&quot;WADMKC&quot;:&quot;Kecamatan Mengwi&quot;,&quot;WADMKD&quot;:&quot;Desa Kuwum&quot;,&quot;KKOP_1&quot;:&quot;Tidak Ada&quot;,&quot;LP2B_2&quot;:&quot;Tidak Ada&quot;,&quot;KRB_03&quot;:&quot;Tidak Ada&quot;,&quot;TOD_04&quot;:&quot;Tidak Ada&quot;,&quot;TEB_05&quot;:&quot;Tidak Ada&quot;,&quot;PUSLIT&quot;:&quot;Tidak Ada&quot;,&quot;CAGBUD&quot;:&quot;Tidak Ada&quot;,&quot;RESAIR&quot;:&quot;Tidak Ada&quot;,&quot;KSMPDN&quot;:&quot;Tidak Ada&quot;,&quot;HANKAM&quot;:&quot;Tidak Ada&quot;,&quot;KKARST&quot;:&quot;Tidak Ada&quot;,&quot;PTBGMB&quot;:&quot;Tidak Ada&quot;,&quot;MGRSAT&quot;:&quot;Tidak Ada&quot;,&quot;RDBUMI&quot;:&quot;Tidak Ada&quot;,&quot;TPZ_00&quot;:&quot;Tidak Ada&quot;,&quot;REMARK&quot;:&quot;Tidak Ada&quot;,&quot;NOTHPR&quot;:&quot;Peraturan Bupati Badung Nomor 34 Tahun 2022 tentang Rencana Detail Tata Ruang Wilayah Perencanaan Mengwi Tahun 2022-2042&quot;}</description>
</Placemark>
<Placemark>
<visibility>0</visibility>
<styleUrl>#m_ylw-pushpin71</styleUrl>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
115.186535969,-8.447475194999981,0 115.1865345560001,-8.447474057999955,0 115.186460709,-8.447414506999962,0 115.186365377,-8.447337681999954,0 115.1863647900001,-8.447337280999932,0 115.186364074,-8.44733694699994,0 115.1863633090001,-8.447336741999948,0 115.1863625200001,-8.447336674999974,0 115.186361732,-8.447336743999927,0 115.186360967,-8.44733694699994,0 115.18636025,-8.447337280999932,0 115.186359603,-8.447337732999927,0 115.1863590190001,-8.447338317999936,0 115.186350403,-8.447348888999954,0 115.186341887,-8.447359437999978,0 115.1863414940001,-8.447360009999954,0 115.1863411590001,-8.447360723999964,0 115.1863409550001,-8.447361484999931,0 115.1863408850001,-8.447362268999939,0 115.1863409550001,-8.447363053999936,0 115.1863411590001,-8.44736381599995,0 115.1863414940001,-8.447364529999959,0 115.1863419480001,-8.447365174999959,0 115.1863425390001,-8.447365756999943,0 115.1865109240001,-8.447501601999932,0 115.1865190620001,-8.447508165999977,0 115.186519952,-8.447508882999955,0 115.1865777730001,-8.447555465999926,0 115.186577939,-8.447555597999951,0 115.1865806290001,-8.44755195099998,0 115.1865228080001,-8.447505368999941,0 115.186513783,-8.447498088999964,0 115.1864261520001,-8.447427392999941,0 115.1863454260001,-8.447362269999928,0 115.186345843,-8.447361752999939,0 115.1863539350001,-8.447351728999934,0 115.1863625200001,-8.447341194999979,0 115.1864578510001,-8.447418020999976,0 115.1865316980001,-8.447477571999968,0 115.1865394140001,-8.447483785999964,0 115.1865919860001,-8.447526138999933,0 115.1865968010001,-8.447530025999981,0 115.186599492,-8.447526376999974,0 115.1865948410001,-8.447522626999955,0 115.186542271,-8.447480269999971,0 115.186535969,-8.447475194999981,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<description>{&quot;OBJECTID&quot;:&quot;1417&quot;,&quot;NAMOBJ&quot;:&quot;Jalur Hijau&quot;,&quot;NAMZON&quot;:&quot;Zona Ruang Terbuka Hijau&quot;,&quot;KODZON&quot;:&quot;RTH&quot;,&quot;NAMSZN&quot;:&quot;Jalur Hijau&quot;,&quot;KODSZN&quot;:&quot;RTH-8&quot;,&quot;JNSRPR&quot;:&quot;Zona Lindung&quot;,&quot;KODEWP&quot;:&quot;I&quot;,&quot;KODSWP&quot;:&quot;A&quot;,&quot;KODBLK&quot;:&quot;1&quot;,&quot;KODSBL&quot;:&quot;Tidak Ada&quot;,&quot;WADMPR&quot;:&quot;Provinsi Bali&quot;,&quot;WADMKK&quot;:&quot;Kabupaten Badung&quot;,&quot;WADMKC&quot;:&quot;Kecamatan Mengwi&quot;,&quot;WADMKD&quot;:&quot;Desa Kuwum&quot;,&quot;KKOP_1&quot;:&quot;Tidak Ada&quot;,&quot;LP2B_2&quot;:&quot;Tidak Ada&quot;,&quot;KRB_03&quot;:&quot;Rawan Bencana Longsor Tingkat Tinggi&quot;,&quot;TOD_04&quot;:&quot;Tidak Ada&quot;,&quot;TEB_05&quot;:&quot;Tidak Ada&quot;,&quot;PUSLIT&quot;:&quot;Tidak Ada&quot;,&quot;CAGBUD&quot;:&quot;Tidak Ada&quot;,&quot;RESAIR&quot;:&quot;Tidak Ada&quot;,&quot;KSMPDN&quot;:&quot;Tidak Ada&quot;,&quot;HANKAM&quot;:&quot;Tidak Ada&quot;,&quot;KKARST&quot;:&quot;Tidak Ada&quot;,&quot;PTBGMB&quot;:&quot;Tidak Ada&quot;,&quot;MGRSAT&quot;:&quot;Tidak Ada&quot;,&quot;RDBUMI&quot;:&quot;Tidak Ada&quot;,&quot;TPZ_00&quot;:&quot;Tidak Ada&quot;,&quot;REMARK&quot;:&quot;Tidak Ada&quot;,&quot;NOTHPR&quot;:&quot;Peraturan Bupati Badung Nomor 34 Tahun 2022 tentang Rencana Detail Tata Ruang Wilayah Perencanaan Mengwi Tahun 2022-2042&quot;}</description>
</Placemark>
<Placemark>
<visibility>0</visibility>
<styleUrl>#m_ylw-pushpin71</styleUrl>
<MultiGeometry>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
115.1920288040001,-8.444793953999977,0 115.192021207,-8.444789052999965,0 115.19202094,-8.444789431999936,0 115.192020271,-8.444790859999955,0 115.1920198620001,-8.444792383999982,0 115.1920197730001,-8.444793004999951,0 115.1920192540001,-8.444797910999966,0 115.1920171410001,-8.444802663999951,0 115.1919700760001,-8.444908573999953,0 115.19175279,-8.445383070999981,0 115.191729868,-8.445433125999955,0 115.191715215,-8.445465120999927,0 115.1916859140001,-8.445529115999932,0 115.191669604,-8.445564732999969,0 115.191643611,-8.445623482999963,0 115.191606435,-8.445707502999937,0 115.1915780940001,-8.445771558999979,0 115.191557536,-8.445818025999927,0 115.1915218570001,-8.445898678999981,0 115.1915050060001,-8.445937660999959,0 115.1914722400001,-8.44601346099995,0 115.1912890740001,-8.446437192999952,0 115.191266315,-8.446489846999953,0 115.191068802,-8.446946777999926,0 115.190917709,-8.447271733999969,0 115.1908857220001,-8.447340525999948,0 115.19084837,-8.44742423699995,0 115.1907951740001,-8.447543455999948,0 115.1907686170001,-8.447602969999934,0 115.1907433570001,-8.447659582999961,0 115.1905714190001,-8.448051138999972,0 115.190557353,-8.448083167999926,0 115.190527158,-8.448150387999931,0 115.1903808720001,-8.448476020999976,0 115.19022712,-8.448844741999949,0 115.1902057450001,-8.448895995999976,0 115.190027696,-8.449322998999946,0 115.189876235,-8.449666665999928,0 115.1897991220001,-8.449841646999971,0 115.1897626780001,-8.44992433699997,0 115.1896669490001,-8.45014154699993,0 115.189578201,-8.450353221999933,0 115.1895013420001,-8.450536542999942,0 115.1894018720001,-8.450766100999942,0 115.189290378,-8.451023400999929,0 115.1892471230001,-8.451123227999972,0 115.1892133060001,-8.451201268999966,0 115.1891691880001,-8.451303089999953,0 115.1891137650001,-8.451430994999953,0 115.1890214560001,-8.451644015999932,0 115.18899162,-8.451712881999981,0 115.1889144650001,-8.451890928999944,0 115.188890545,-8.451946140999951,0 115.188861788,-8.452012502999935,0 115.1888469150001,-8.452046377999977,0 115.188809393,-8.452131845999929,0 115.1886748750001,-8.452438240999982,0 115.1885201380001,-8.452784989999941,0 115.1883869610001,-8.453087866999965,0 115.188353362,-8.453161017999946,0 115.1883135290001,-8.453247734999934,0 115.188281779,-8.453316860999962,0 115.1880691360001,-8.453779808999968,0 115.188068968,-8.453780195999968,0 115.1878314170001,-8.454368607999982,0 115.1878023490001,-8.454439485999956,0 115.1877865910001,-8.45447790999998,0 115.1877181210001,-8.454644857999938,0 115.1876782600001,-8.454742053999951,0 115.1876315280001,-8.454856006999933,0 115.1874604960001,-8.45523415699995,0 115.187425081,-8.455317725999976,0 115.1873482680001,-8.455498993999981,0 115.187345498,-8.455505243999937,0 115.1873426860001,-8.455506191999973,0 115.1873364740001,-8.455505458999937,0 115.187140062,-8.455409509999981,0 115.1870786120001,-8.45538079399995,0 115.1869716220001,-8.455330798999967,0 115.186971294,-8.455330660999948,0 115.1867830910001,-8.455260075999945,0 115.186724494,-8.455238092999934,0 115.1867196280001,-8.455236273999958,0 115.186705597,-8.455231598999944,0 115.186697394,-8.455228869999928,0 115.1866854420001,-8.455224892999979,0 115.186667207,-8.455218822999939,0 115.1866665560001,-8.455218658999968,0 115.1866662760001,-8.455218618999936,0 115.186643439,-8.455216054999937,0 115.1866433770001,-8.455216047999954,0 115.1866293050001,-8.45521446999993,0 115.186628817,-8.455214440999953,0 115.1865729530001,-8.455214183999942,0 115.1865721160001,-8.455214259999934,0 115.186537742,-8.455220916999963,0 115.186506257,-8.455222901999946,0 115.1863978800001,-8.455212790999951,0 115.1862613330001,-8.455175828999927,0 115.1862079970001,-8.455161387999965,0 115.185627683,-8.455008264999947,0 115.1853898720001,-8.454952120999963,0 115.185099465,-8.454883548999931,0 115.184986664,-8.454847192999978,0 115.1849480420001,-8.454834775999927,0 115.1849198450001,-8.454823020999982,0 115.184822798,-8.454782565999949,0 115.1848224820001,-8.45478243499997,0 115.184747083,-8.454751004999935,0 115.1847351890001,-8.454746046999958,0 115.1847025090001,-8.454726033999975,0 115.184687936,-8.454717107999954,0 115.1845865590001,-8.454655019999961,0 115.184478946,-8.454581246999965,0 115.1844645130001,-8.454571348999934,0 115.1844458210001,-8.454558529999929,0 115.184427238,-8.454545792999966,0 115.1844269330001,-8.454545602999929,0 115.184426216,-8.454545268999937,0 115.1844253920001,-8.454545054999926,0 115.1844020640001,-8.454541589999963,0 115.184401394,-8.454541540999969,0 115.1844006050001,-8.454541608999932,0 115.1843998410001,-8.454541812999935,0 115.184399393,-8.454542001999926,0 115.18438198,-8.454550512999958,0 115.18438171,-8.45455065699997,0 115.184381063,-8.454551107999976,0 115.184380603,-8.454551549999962,0 115.1842534030001,-8.454692512999941,0 115.184224265,-8.454724763999934,0 115.1841636890001,-8.454780536999976,0 115.1841600470001,-8.454783891999966,0 115.1840603320001,-8.45487580799994,0 115.1839658800001,-8.454962853999973,0 115.1839354440001,-8.454993712999965,0 115.183906607,-8.455022953999958,0 115.1839037100001,-8.455025895999938,0 115.183850623,-8.45507972799993,0 115.1838505990001,-8.455079751999961,0 115.1837095550001,-8.455222785999979,0 115.183679382,-8.455253413999969,0 115.183645704,-8.455281895999974,0 115.1836413230001,-8.455282955999962,0 115.18363678,-8.455282420999936,0 115.1834312670001,-8.455155125999966,0 115.1831864060001,-8.455014517999928,0 115.1829865440001,-8.454913979999958,0 115.1827612310001,-8.454755173999956,0 115.1827433080001,-8.454734273999975,0 115.18274152,-8.45472703799993,0 115.182743649,-8.454720239999972,0 115.1827494500001,-8.454715140999951,0 115.182758289,-8.454711771999939,0 115.182758936,-8.454711464999946,0 115.1827592510001,-8.454711265999947,0 115.1828919070001,-8.454619771999944,0 115.182892239,-8.454619519999937,0 115.1828926210001,-8.454619161999972,0 115.182978186,-8.454529028999957,0 115.1829789770001,-8.454528196999945,0 115.183028969,-8.454475530999957,0 115.1830291480001,-8.454475330999969,0 115.183029626,-8.45447464199998,0 115.1830492690001,-8.454438955999933,0 115.183049911,-8.45443778799995,0 115.1830655260001,-8.454409415999976,0 115.183065689,-8.454409087999977,0 115.1830812400001,-8.454374447999953,0 115.183112036,-8.454305888999954,0 115.1831209410001,-8.454283232999956,0 115.1831536210001,-8.454200467999954,0 115.1831577180001,-8.454193524999937,0 115.183190724,-8.454137586999934,0 115.183228093,-8.454074329999969,0 115.18329368,-8.453977399999928,0 115.1832938480001,-8.453977133999956,0 115.1832941150001,-8.453976591999947,0 115.183317598,-8.453919662999965,0 115.1833449640001,-8.45385319199994,0 115.1833718260001,-8.453781346999961,0 115.183397869,-8.453711694999981,0 115.1834255550001,-8.453662689999931,0 115.1834343710001,-8.453647093999962,0 115.1834343930001,-8.453647055999966,0 115.183476969,-8.453571724999961,0 115.1834771370001,-8.453571394999926,0 115.1835033100001,-8.453514659999939,0 115.1835288550001,-8.453459325999972,0 115.183554897,-8.453402904999962,0 115.183581942,-8.453344301999948,0 115.183593071,-8.453320175999977,0 115.18360498,-8.45329030299996,0 115.183610849,-8.453275582999936,0 115.1836439570001,-8.453192573999956,0 115.1836893970001,-8.453078497999968,0 115.183697538,-8.453059716999974,0 115.18374643,-8.45294768499997,0 115.1837720020001,-8.452889024999934,0 115.1837906750001,-8.452846181999973,0 115.183806945,-8.452803032999952,0 115.183832442,-8.452735559999951,0 115.183896104,-8.452567083999952,0 115.1839435160001,-8.452468539999927,0 115.1839460220001,-8.452463332999969,0 115.1839512170001,-8.452452533999974,0 115.183997113,-8.452357205999931,0 115.1839972250001,-8.452356948999977,0 115.1840129830001,-8.452318246999937,0 115.1840537310001,-8.452218377999941,0 115.184093059,-8.452121963999957,0 115.1841033410001,-8.452096754999957,0 115.1841509080001,-8.45198019399993,0 115.1841836430001,-8.451899975999936,0 115.1841958050001,-8.451870172999975,0 115.184245454,-8.451754363999953,0 115.184289668,-8.451651130999949,0 115.1843105590001,-8.451602352999942,0 115.1843106790001,-8.451602037999976,0 115.1843319100001,-8.451535441999965,0 115.184355395,-8.451461777999953,0 115.1843716860001,-8.451410588999977,0 115.184414325,-8.451250327999958,0 115.1844263620001,-8.451205025999968,0 115.1844835300001,-8.450999464999938,0 115.1844891330001,-8.45098139199996,0 115.1844925410001,-8.450970402999928,0 115.18449808,-8.450952538999957,0 115.1845029780001,-8.450944788999948,0 115.184516915,-8.450922735999939,0 115.184525924,-8.450911832999964,0 115.1845552550001,-8.450876346999962,0 115.1845665860001,-8.450864493999973,0 115.184665773,-8.450760447999926,0 115.1846707310001,-8.450755246999961,0 115.1846782130001,-8.450747401999934,0 115.1846934700001,-8.450737094999965,0 115.184703933,-8.450732967999954,0 115.1847321600001,-8.450733530999969,0 115.1847529140001,-8.450739342999952,0 115.184753396,-8.450739449999958,0 115.184775358,-8.450742906999949,0 115.1847759550001,-8.450742960999946,0 115.184798696,-8.450743517999967,0 115.184799587,-8.450743440999929,0 115.1848194140001,-8.450739542999941,0 115.1848201240001,-8.450739341999963,0 115.184835836,-8.450733348999961,0 115.184836461,-8.450733052999965,0 115.1848380490001,-8.450732152999933,0 115.184844621,-8.450728421999941,0 115.18485464,-8.450722734999943,0 115.184855297,-8.450722276999954,0 115.1848558570001,-8.450721719999933,0 115.1848560970001,-8.450721406999946,0 115.184914217,-8.450638788999981,0 115.1850010610001,-8.450515179999968,0 115.1850351860001,-8.450471494999931,0 115.1850666080001,-8.45043133799993,0 115.1850963180001,-8.450406292999958,0 115.1850966720001,-8.450405959999955,0 115.1851014060001,-8.450401016999933,0 115.1851502290001,-8.450350452999942,0 115.1851504930001,-8.450350149999963,0 115.1851800070001,-8.450311975999966,0 115.1852114210001,-8.450271352999948,0 115.185211651,-8.450271027999975,0 115.1852131000001,-8.450268768999933,0 115.1852156860001,-8.450264738999977,0 115.1852664170001,-8.450185699999963,0 115.1852707580001,-8.450178929999936,0 115.185270917,-8.450178652999966,0 115.1852828560001,-8.450155561999964,0 115.185309553,-8.45010384099993,0 115.1853380320001,-8.450045344999978,0 115.1853792070001,-8.449960758999964,0 115.185418862,-8.449879363999969,0 115.1854238970001,-8.449871405999943,0 115.185430577,-8.449860849999936,0 115.1854370440001,-8.449850631999936,0 115.185446747,-8.449842647999958,0 115.185500839,-8.449813250999966,0 115.185501175,-8.449813042999949,0 115.1855197980001,-8.449800387999971,0 115.185579884,-8.449759665999977,0 115.1855858280001,-8.449755637999942,0 115.185605502,-8.449742304999972,0 115.1856058650001,-8.449742030999971,0 115.1856062590001,-8.449741659999972,0 115.185649073,-8.449696208999967,0 115.185649258,-8.44969600099995,0 115.185685572,-8.449651760999927,0 115.1856859620001,-8.449651205999942,0 115.185694116,-8.449637506999977,0 115.185752598,-8.449539430999948,0 115.185797277,-8.449464521999971,0 115.1858316260001,-8.449406900999975,0 115.18583189,-8.449406374999967,0 115.185865958,-8.449325981999948,0 115.185878096,-8.449297342999955,0 115.1858878950001,-8.449281309999947,0 115.1859018680001,-8.449258448999956,0 115.1859174460001,-8.449232955999946,0 115.185932134,-8.449212359999933,0 115.185938057,-8.44920402899993,0 115.1859411370001,-8.449199685999929,0 115.1860296630001,-8.449126209999974,0 115.1860350090001,-8.449121773999934,0 115.186045239,-8.449113317999945,0 115.186045463,-8.449113117999957,0 115.1860906320001,-8.449070210999935,0 115.1861225230001,-8.449039911999932,0 115.1861463930001,-8.449017227999946,0 115.1861467650001,-8.449016830999938,0 115.186203348,-8.448947010999973,0 115.186234225,-8.448908911999979,0 115.1862344240001,-8.448908649999964,0 115.1862546240001,-8.448879637999937,0 115.1862866610001,-8.448833623999974,0 115.1863747150001,-8.448721407999926,0 115.186439497,-8.448638908999953,0 115.186459288,-8.448613617999968,0 115.1865005430001,-8.44856221799995,0 115.1865230530001,-8.448534151999979,0 115.186545011,-8.448506776999977,0 115.1865586150001,-8.448489816999938,0 115.18660761,-8.448445130999971,0 115.1866224040001,-8.448433841999929,0 115.1866301120001,-8.44842797299998,0 115.1866716190001,-8.448396376999938,0 115.1866717830001,-8.448396244999969,0 115.1866912580001,-8.448379881999927,0 115.1867695890001,-8.448314072999949,0 115.1867724240001,-8.448311683999975,0 115.186773578,-8.448310717999959,0 115.1867982220001,-8.448289992999946,0 115.1868059120001,-8.448283526999944,0 115.1869095770001,-8.448209734999978,0 115.1869670900001,-8.448168854999949,0 115.1869714830001,-8.448166090999962,0 115.187000223,-8.448148006999929,0 115.1870103990001,-8.44814159799995,0 115.1870275860001,-8.448130789999936,0 115.187028079,-8.448130430999981,0 115.1870283550001,-8.448130179999964,0 115.1870570630001,-8.448101866999934,0 115.1870645460001,-8.448094487999981,0 115.187075067,-8.448084112999936,0 115.1870753080001,-8.448083853999947,0 115.1870883940001,-8.44806876399997,0 115.187128149,-8.448022913999978,0 115.1871405910001,-8.448008662999939,0 115.1871409580001,-8.44800816999998,0 115.1871768670001,-8.447952489999977,0 115.1872058170001,-8.447912398999961,0 115.187254173,-8.447845281999946,0 115.187280523,-8.447808707999968,0 115.1872807230001,-8.447808429999952,0 115.1872809590001,-8.44780807799998,0 115.18728134,-8.44780736499996,0 115.187311966,-8.447755904999951,0 115.187346378,-8.447697940999944,0 115.187364547,-8.44766741899997,0 115.187387378,-8.44763022099994,0 115.187397614,-8.447613546999946,0 115.1873979300001,-8.447613031999936,0 115.187410179,-8.447593079999933,0 115.1874281890001,-8.447563763999938,0 115.1874283630001,-8.447563480999975,0 115.1875370130001,-8.447386630999972,0 115.1875421730001,-8.447378235999963,0 115.1875590290001,-8.447358691999966,0 115.187624561,-8.447282711999947,0 115.1876245940001,-8.447282672999961,0 115.1876455240001,-8.44725841099995,0 115.1876643640001,-8.447236508999936,0 115.187664831,-8.447235844999966,0 115.1876651660001,-8.447235132999936,0 115.1876653710001,-8.447234369999933,0 115.18766544,-8.447233586999971,0 115.1876653710001,-8.447232801999974,0 115.1876651660001,-8.44723204099995,0 115.187664831,-8.44723132699994,0 115.187664378,-8.447230680999951,0 115.1876638590001,-8.447230156999979,0 115.187662905,-8.447229339999978,0 115.1876628320001,-8.447229277999952,0 115.187656833,-8.447224146999929,0 115.187653489,-8.447221339999942,0 115.187643179,-8.447212508999939,0 115.1876425090001,-8.447212039999954,0 115.187641793,-8.447211705999962,0 115.187641028,-8.447211501999959,0 115.1876402390001,-8.447211433999939,0 115.1876394510001,-8.447211501999959,0 115.187638686,-8.447211705999962,0 115.1876379690001,-8.447212039999954,0 115.1876373220001,-8.447212490999959,0 115.187636791,-8.447213013999942,0 115.187634158,-8.447216073999925,0 115.1876004820001,-8.447255121999945,0 115.187512941,-8.447356626999976,0 115.1875125290001,-8.447357194999938,0 115.1875020210001,-8.447374298999932,0 115.1874584300001,-8.447445260999928,0 115.1873471440001,-8.44762652199995,0 115.187333475,-8.447648718999972,0 115.187250412,-8.447788451999941,0 115.18721225,-8.447839620999957,0 115.187207732,-8.447841561999951,0 115.1872027090001,-8.447841667999967,0 115.186977004,-8.44772867599994,0 115.1869395440001,-8.447709904999954,0 115.186851948,-8.447664402999976,0 115.186739909,-8.447606210999936,0 115.1866689350001,-8.447569380999937,0 115.186637998,-8.447553327999969,0 115.1866237910001,-8.447545957999978,0 115.1865996590001,-8.447526511999968,0 115.186599492,-8.447526376999974,0 115.1865968010001,-8.447530025999981,0 115.1866212890001,-8.447549756999933,0 115.1866328100001,-8.447555733999934,0 115.1866359,-8.447557336999978,0 115.186641621,-8.447560305999957,0 115.1866668370001,-8.447573389999945,0 115.1867378100001,-8.447610218999955,0 115.1868498480001,-8.447668410999938,0 115.186937464,-8.44771392399997,0 115.1869686880001,-8.447729571999957,0 115.186974963,-8.447732715999962,0 115.186996192,-8.447743343999946,0 115.1872016790001,-8.447846211999945,0 115.1872087160001,-8.44784606199994,0 115.1872151680001,-8.44784328999998,0 115.187230565,-8.447822644999974,0 115.1872542000001,-8.447790955999949,0 115.1873373640001,-8.447651051999969,0 115.187339639,-8.447647357999926,0 115.1873510170001,-8.447628882999936,0 115.187402094,-8.447545687999934,0 115.1874623030001,-8.447447619999934,0 115.187516402,-8.447359552999956,0 115.18760722,-8.447254248999968,0 115.1876376040001,-8.447219017999942,0 115.1876380670001,-8.447218478999957,0 115.1876402390001,-8.447215953999944,0 115.187650532,-8.44722477199997,0 115.1876538900001,-8.447227589999954,0 115.187659946,-8.447232769999971,0 115.1876609000001,-8.447233586999971,0 115.1876501170001,-8.447246120999978,0 115.1876420770001,-8.44725546799998,0 115.1876279620001,-8.447271829999977,0 115.187621174,-8.447279699999967,0 115.187621128,-8.447279753999965,0 115.1876211050001,-8.447279781999953,0 115.1875384910001,-8.447375564999959,0 115.18753314,-8.447384270999976,0 115.1874243150001,-8.447561405999977,0 115.1874063050001,-8.447590721999973,0 115.1873937400001,-8.447611188999929,0 115.1873856000001,-8.447624448999932,0 115.187383543,-8.447627799999964,0 115.1873835030001,-8.447627863999969,0 115.1873673040001,-8.447654255999964,0 115.1873606580001,-8.447665084999926,0 115.1873424710001,-8.447695637999971,0 115.1873080580001,-8.447753604999946,0 115.187277039,-8.44780579899998,0 115.1872021300001,-8.447909762999927,0 115.1871731150001,-8.447949940999933,0 115.187137138,-8.448005727999941,0 115.187136491,-8.44800646799996,0 115.1871247170001,-8.44801995399996,0 115.1870904790001,-8.448059438999962,0 115.187071872,-8.448080900999969,0 115.1870613450001,-8.44809128199995,0 115.187053866,-8.448098654999967,0 115.1870251600001,-8.44812696799994,0 115.187014716,-8.448133536999933,0 115.1870079710001,-8.448137777999932,0 115.1869977980001,-8.448144184999933,0 115.1869875230001,-8.448150649999945,0 115.186964557,-8.448165101999962,0 115.18693437,-8.448186557999975,0 115.1869069370001,-8.448206056999936,0 115.1868747220001,-8.448228988999972,0 115.1868031130001,-8.448279962999948,0 115.1867706500001,-8.448307261999958,0 115.186770376,-8.44830749099998,0 115.1867694870001,-8.448308237999981,0 115.186766658,-8.448310621999951,0 115.1866883770001,-8.448376386999939,0 115.186688331,-8.44837642799996,0 115.1866859930001,-8.448378390999949,0 115.1866688590001,-8.448392785999943,0 115.1866196440001,-8.44843025199998,0 115.1866046900001,-8.448441663999972,0 115.18658998,-8.448455079999974,0 115.186555288,-8.448486719999948,0 115.1865195030001,-8.448531331999959,0 115.1864969950001,-8.44855939699994,0 115.186495977,-8.448560664999945,0 115.1864557240001,-8.448610816999974,0 115.1864531680001,-8.448614083999928,0 115.1864359160001,-8.448636127999976,0 115.186371137,-8.44871862499997,0 115.18628301,-8.448830934999933,0 115.1862508930001,-8.448877061999951,0 115.186238503,-8.448894855999981,0 115.1862306910001,-8.448906073999979,0 115.1862106210001,-8.448930838999956,0 115.186199815,-8.448944171999926,0 115.186143259,-8.449013958999956,0 115.1861319410001,-8.449024712999972,0 115.1861193870001,-8.449036641999953,0 115.1860986610001,-8.44905633299993,0 115.1860875580001,-8.449066881999954,0 115.186087496,-8.449066939999966,0 115.1860423280001,-8.449109847999978,0 115.1860321050001,-8.449118297999973,0 115.1860296030001,-8.44912037499995,0 115.186026801,-8.449122698999929,0 115.186026756,-8.449122738999961,0 115.1859377710001,-8.449196594999933,0 115.1859343480001,-8.449201419999952,0 115.1859284290001,-8.449209745999951,0 115.1859260590001,-8.449213068999939,0 115.1859136530001,-8.44923046699995,0 115.1858979900001,-8.449256096999932,0 115.185891209,-8.449267191999979,0 115.1858840140001,-8.449278962999927,0 115.1858809920001,-8.449283907999927,0 115.185874042,-8.449295279999944,0 115.1858703270001,-8.449304044999963,0 115.1858617700001,-8.44932423299997,0 115.1858350780001,-8.449387223999963,0 115.185827707,-8.44940461799996,0 115.185813507,-8.449428438999973,0 115.185793372,-8.449462213999936,0 115.185748694,-8.449537122999971,0 115.1856902110001,-8.449635202999957,0 115.185682057,-8.449648900999932,0 115.185645761,-8.449693117999971,0 115.185602947,-8.44973856699994,0 115.1855948690001,-8.449744041999963,0 115.185583273,-8.449751901999946,0 115.1855556060001,-8.449770651999927,0 115.1855172400001,-8.449796651999975,0 115.185504658,-8.449805202999926,0 115.185498616,-8.449809308999932,0 115.185444188,-8.449838888999977,0 115.1854335900001,-8.449847609999949,0 115.18542988,-8.449853471999972,0 115.185420055,-8.449868994999974,0 115.1854156480001,-8.449875961999965,0 115.185414884,-8.449877169999979,0 115.1853751220001,-8.449958786999957,0 115.185333978,-8.450043307999977,0 115.185333956,-8.450043351999966,0 115.1853329590001,-8.450045399999965,0 115.185305491,-8.450101822999954,0 115.185278817,-8.450153492999959,0 115.1852668800001,-8.450176583999962,0 115.1852638730001,-8.450181268999927,0 115.1852625900001,-8.450183265999954,0 115.185211857,-8.450262309999971,0 115.18521121,-8.450263317999941,0 115.1852092740001,-8.450266334999981,0 115.185207824,-8.450268594999955,0 115.1851764080001,-8.450309218999962,0 115.185162277,-8.450327496999932,0 115.185146954,-8.450347318999945,0 115.1850981250001,-8.450397889999977,0 115.1850933850001,-8.450402842999949,0 115.1850702500001,-8.450422344999936,0 115.1850633140001,-8.450428192999937,0 115.1850623260001,-8.450429454999949,0 115.1850316030001,-8.450468716999978,0 115.18501056,-8.450495656999976,0 115.1849974060001,-8.450512495999931,0 115.1849104960001,-8.450636198999973,0 115.1848523790001,-8.45071881299998,0 115.184842372,-8.450724493999928,0 115.1848389090001,-8.450726459999942,0 115.1848342110001,-8.450729126999931,0 115.184828346,-8.450731364999967,0 115.1848185340001,-8.450735106999957,0 115.1848022840001,-8.45073830299998,0 115.184798752,-8.450738996999974,0 115.184776067,-8.450738441999931,0 115.1847541440001,-8.450734990999933,0 115.18473283,-8.450729021999962,0 115.1847031120001,-8.45072842999997,0 115.1846913310001,-8.450733076999938,0 115.1846752610001,-8.450743932999956,0 115.1846624770001,-8.45075733799996,0 115.1845719310001,-8.450852318999978,0 115.1845632940001,-8.450861379999935,0 115.1845518580001,-8.450873342999955,0 115.18452242,-8.450908957999957,0 115.184513228,-8.450920083999961,0 115.184495197,-8.45094861299998,0 115.1844939170001,-8.450950637999938,0 115.18447917,-8.450998202999926,0 115.1844219770001,-8.451203847999977,0 115.1844099350001,-8.451249170999972,0 115.184367327,-8.451409327999954,0 115.1843526680001,-8.45145538099996,0 115.1843510660001,-8.451460410999971,0 115.1843467970001,-8.451473800999963,0 115.184306382,-8.45160058099998,0 115.1842412770001,-8.451752588999966,0 115.1841916180001,-8.451868421999961,0 115.184146701,-8.451978492999956,0 115.184099134,-8.452095052999937,0 115.1840888490001,-8.452120267999931,0 115.1840495240001,-8.452216676999967,0 115.184008775,-8.452316545999963,0 115.183993017,-8.452355252999951,0 115.1839471210001,-8.452450579999947,0 115.1839419260001,-8.452461381999967,0 115.1839394210001,-8.452466587999936,0 115.1839031090001,-8.452542059999928,0 115.183891924,-8.45256530599994,0 115.1838887460001,-8.452573715999961,0 115.183828207,-8.452733925999951,0 115.1838281920001,-8.452733964999936,0 115.1838026940001,-8.452801442999942,0 115.1837901910001,-8.452834604999964,0 115.183786466,-8.452844487999926,0 115.18377596,-8.452868588999934,0 115.183767837,-8.452887225999973,0 115.1837422650001,-8.452945883999973,0 115.1836933710001,-8.453057920999981,0 115.183685199,-8.453076772999964,0 115.183639736,-8.453190905999975,0 115.1836066290001,-8.453273915999944,0 115.1836007600001,-8.453288635999968,0 115.183600734,-8.453288697999938,0 115.183588897,-8.453318398999954,0 115.183577848,-8.453342348999968,0 115.1835778320001,-8.45334238199996,0 115.1835507710001,-8.453401016999976,0 115.1835247260001,-8.453457446999948,0 115.1834991840001,-8.453512774999979,0 115.183473011,-8.453569508999976,0 115.1834304360001,-8.453644840999971,0 115.1834304180001,-8.453644871999927,0 115.1834263830001,-8.453652010999974,0 115.1834215980001,-8.453660471999967,0 115.1833937360001,-8.453709788999959,0 115.1833675680001,-8.453779776999966,0 115.183340734,-8.453851546999942,0 115.183313396,-8.453917947999969,0 115.1832984980001,-8.453954065999937,0 115.183289915,-8.453974873999925,0 115.1832502530001,-8.454033488999926,0 115.1832242470001,-8.454071923999948,0 115.1831868090001,-8.454135295999947,0 115.1831538020001,-8.454191237999964,0 115.1831495250001,-8.45419848399996,0 115.1831167130001,-8.454281582999954,0 115.1831078470001,-8.454304141999955,0 115.1830971850001,-8.454327878999948,0 115.1830770930001,-8.45437261099994,0 115.1830715040001,-8.454385057999957,0 115.1830615440001,-8.454407242999935,0 115.1830459290001,-8.454435615999955,0 115.1830340410001,-8.454457213999945,0 115.183025669,-8.454472424999949,0 115.1829962840001,-8.454503380999938,0 115.1829756770001,-8.454525090999937,0 115.1829441860001,-8.454558262999967,0 115.1828893210001,-8.454616055999963,0 115.182756666,-8.454707549999966,0 115.1827470610001,-8.45471121099996,0 115.182741845,-8.45471579499997,0 115.182739692,-8.454717685999981,0 115.1827368090001,-8.454726895999954,0 115.182739155,-8.454736394999941,0 115.1827581450001,-8.454758537999965,0 115.1829841980001,-8.45491786599996,0 115.1831842480001,-8.455018493999944,0 115.1834289550001,-8.455159015999925,0 115.1836352400001,-8.455286790999935,0 115.1836416010001,-8.455287541999951,0 115.183647821,-8.455286036999951,0 115.1836824760001,-8.455256727999938,0 115.1836943110001,-8.455244714999935,0 115.183712795,-8.455225953999957,0 115.1838250720001,-8.455112092999968,0 115.1838538630001,-8.455082894999975,0 115.183906951,-8.455029062999927,0 115.1839098480001,-8.455026120999946,0 115.1839386830001,-8.454996880999943,0 115.1839690420001,-8.454966096999954,0 115.1840634160001,-8.45487912599998,0 115.1841631310001,-8.454787209999949,0 115.184166772,-8.454783855999949,0 115.184196279,-8.454756689999954,0 115.1842275020001,-8.454727941999977,0 115.184233176,-8.45472166199994,0 115.1842567800001,-8.454695535999974,0 115.18438398,-8.45455457199995,0 115.184401395,-8.454546060999974,0 115.1844246630001,-8.454549517999965,0 115.1844432460001,-8.454562253999939,0 115.184461938,-8.454575071999955,0 115.1844763690001,-8.454584968999939,0 115.1844764030001,-8.454584992999969,0 115.1845840880001,-8.45465881399997,0 115.184733109,-8.454750081999975,0 115.1847453290001,-8.454755173999956,0 115.1848207280001,-8.454786604999981,0 115.1849180910001,-8.454827191999925,0 115.1849464650001,-8.454839019999952,0 115.1849821100001,-8.454850479999948,0 115.1849852670001,-8.454851494999957,0 115.184997564,-8.45485545899993,0 115.1850982340001,-8.454887904999964,0 115.185388825,-8.454956519999939,0 115.1856265780001,-8.455012647999979,0 115.1862068200001,-8.45516575299996,0 115.1862574500001,-8.455179462999979,0 115.186260141,-8.455180190999954,0 115.1863970650001,-8.45521725499998,0 115.186458493,-8.455222985999967,0 115.1865061880001,-8.455227435999973,0 115.1865136030001,-8.455226968999966,0 115.1865383180001,-8.455225410999958,0 115.1865729430001,-8.455218705999926,0 115.18658726,-8.455218770999977,0 115.186628796,-8.455218961999947,0 115.1866300490001,-8.455219101999944,0 115.1866429290001,-8.455220546999954,0 115.186662608,-8.455222755999955,0 115.186665768,-8.455223110999952,0 115.1866840020001,-8.455229180999936,0 115.186695955,-8.455233156999952,0 115.186704157,-8.455235886999958,0 115.186718098,-8.455240529999969,0 115.1867228950001,-8.455242322999936,0 115.186781491,-8.455264305999947,0 115.186969694,-8.455334891999939,0 115.1870766830001,-8.455384885999933,0 115.1871380970001,-8.455413585999963,0 115.1873351700001,-8.455509855999935,0 115.18734051,-8.455510488999948,0 115.1873430400001,-8.45551078799997,0 115.1873431410001,-8.455510799999956,0 115.1873431730001,-8.455510803999971,0 115.1873508230001,-8.455508219999956,0 115.1873527030001,-8.455506379999974,0 115.1873566170001,-8.455502550999938,0 115.187358376,-8.455498397999975,0 115.1874334480001,-8.455321239999932,0 115.1874688180001,-8.45523776999994,0 115.1876398850001,-8.454859551999959,0 115.1876866680001,-8.454745470999967,0 115.1877265280001,-8.454648275999944,0 115.1877949980001,-8.454481328999975,0 115.1878107550001,-8.454442902999972,0 115.187839832,-8.454372003999936,0 115.188077394,-8.453783569999928,0 115.1882900380001,-8.453320620999932,0 115.1883175410001,-8.453260738999973,0 115.1883217870001,-8.453251494999961,0 115.18836162,-8.453164778999962,0 115.1883750110001,-8.453135624999959,0 115.1883952510001,-8.453091558999972,0 115.1885284460001,-8.452788638999948,0 115.1886831850001,-8.452441887999953,0 115.1888045190001,-8.452165522999962,0 115.188817714,-8.452135466999948,0 115.1888552360001,-8.452049998999939,0 115.1888608490001,-8.452037215999951,0 115.1888701180001,-8.452016104999927,0 115.1888988840001,-8.451949722999927,0 115.1889228030001,-8.451894510999978,0 115.1889999590001,-8.451716463999958,0 115.189027945,-8.451651867999942,0 115.189029794,-8.451647596999976,0 115.189122103,-8.45143457699993,0 115.1891775260001,-8.45130667199993,0 115.189190262,-8.451277277999964,0 115.1892216440001,-8.451204849999954,0 115.1892511640001,-8.451136726999948,0 115.189255461,-8.451126809999948,0 115.1892987160001,-8.451026981999973,0 115.18941021,-8.450769682999976,0 115.189455661,-8.450664790999951,0 115.189509701,-8.450540074999935,0 115.1895561490001,-8.450429291999967,0 115.1895865810001,-8.45035670599998,0 115.189675297,-8.450145104999933,0 115.189770994,-8.449927969999976,0 115.1898074380001,-8.449845279999977,0 115.1898678470001,-8.449708205999968,0 115.1898845520001,-8.449670298999933,0 115.189915777,-8.449599449999937,0 115.1900360440001,-8.449326561999953,0 115.1902141320001,-8.448899461999929,0 115.190235506,-8.448848207999959,0 115.19038921,-8.448479599999928,0 115.1905354470001,-8.448154079999938,0 115.190556601,-8.448106988999939,0 115.190565649,-8.448086842999942,0 115.1905707350001,-8.448075263999954,0 115.1905797400001,-8.44805476099998,0 115.1906572900001,-8.447878155999945,0 115.1907516660001,-8.447663230999979,0 115.190761293,-8.447641656999963,0 115.190776915,-8.447606640999936,0 115.1908034740001,-8.44754712699995,0 115.19085667,-8.447427907999952,0 115.190893991,-8.447344260999955,0 115.1909259500001,-8.447275532999981,0 115.1910770980001,-8.446950456999957,0 115.191274657,-8.446493421999946,0 115.191294564,-8.446447363999937,0 115.191297415,-8.446440766999956,0 115.1913291610001,-8.446367327999951,0 115.1914805810001,-8.446017034999954,0 115.1915133470001,-8.445941235999953,0 115.191530183,-8.445902289999935,0 115.1915488540001,-8.445860081999967,0 115.1915658470001,-8.44582166999993,0 115.1915786090001,-8.445792824999955,0 115.1915864050001,-8.445775204999961,0 115.191614746,-8.44571114699994,0 115.191651921,-8.445627127999956,0 115.191677891,-8.44556843099997,0 115.191694177,-8.44553286699994,0 115.1917234780001,-8.445468871999935,0 115.1917339400001,-8.445446026999946,0 115.1917381310001,-8.445436875999974,0 115.1917610530001,-8.445386821999932,0 115.191978346,-8.44491230999995,0 115.1919857730001,-8.44489559699997,0 115.192025445,-8.444806322999966,0 115.1920281350001,-8.444800271999952,0 115.1920288040001,-8.444793953999977,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
115.1764556910001,-8.46455184499996,0 115.1765532100001,-8.464355224999963,0 115.1767028600001,-8.464042530999961,0 115.1767680200001,-8.463896949999935,0 115.176859808,-8.46369191499997,0 115.176876825,-8.463654076999944,0 115.1768845510001,-8.463636897999947,0 115.176925111,-8.463546607999945,0 115.177005828,-8.46336692899996,0 115.1770237600001,-8.463327023999966,0 115.1771618070001,-8.463019732999953,0 115.177293057,-8.462686894999933,0 115.1773972330001,-8.462446257999943,0 115.1774429420001,-8.462340673999961,0 115.1774552170001,-8.462293994999925,0 115.177451022,-8.462246698999934,0 115.1774352130001,-8.462216891999958,0 115.1773476330001,-8.46211560699993,0 115.177325019,-8.462068760999955,0 115.1773192720001,-8.462000677999981,0 115.1773371090001,-8.461854470999981,0 115.1773441140001,-8.461797053999931,0 115.1773529560001,-8.461782125999946,0 115.1773725730001,-8.46174900699998,0 115.177404806,-8.461724932999971,0 115.1774114200001,-8.461722662999932,0 115.1774456050001,-8.461710929999981,0 115.1774802890001,-8.461706834999973,0 115.1774934760001,-8.461705277999954,0 115.1774997880001,-8.461705638999945,0 115.1775381670001,-8.461707837999938,0 115.177811309,-8.461738821999973,0 115.1779461550001,-8.461754121999945,0 115.1779915660001,-8.461759272999927,0 115.1780006150001,-8.46176029999998,0 115.178040697,-8.461764845999937,0 115.1781213310001,-8.461773993999941,0 115.1781250770001,-8.461774418999937,0 115.178132027,-8.46177520699996,0 115.178268504,-8.461790690999976,0 115.1784777250001,-8.461813198999948,0 115.178542565,-8.461820173999968,0 115.17855048,-8.461819711999965,0 115.1785655570001,-8.461818832999938,0 115.1785679440001,-8.461818686999948,0 115.178573869,-8.461818325999957,0 115.1785872400001,-8.461813769999935,0 115.178592696,-8.461811910999927,0 115.1785996520001,-8.461808000999952,0 115.1786027530001,-8.461806257999967,0 115.178611518,-8.461797635999972,0 115.1786146390001,-8.46179456699997,0 115.1786304640001,-8.46175857299994,0 115.1786372280001,-8.461743186999968,0 115.178789476,-8.461396844999967,0 115.1789771250001,-8.46096511099995,0 115.1792106300001,-8.460414359999959,0 115.179522495,-8.459616573999938,0 115.1795460420001,-8.459553583999934,0 115.1795460730001,-8.459553505999963,0 115.17954721,-8.45955046499995,0 115.179550628,-8.459541318999982,0 115.1795885720001,-8.45943981299996,0 115.1795903890001,-8.459434950999935,0 115.17959109,-8.459433074999936,0 115.1796296810001,-8.459329855999954,0 115.179773565,-8.458944962999965,0 115.1799680900001,-8.458371521999936,0 115.179983962,-8.458329395999954,0 115.1800123790001,-8.458253984999942,0 115.180161913,-8.457857140999977,0 115.1801977130001,-8.457762130999981,0 115.180231692,-8.457671954999967,0 115.180232409,-8.45767005099998,0 115.1802799440001,-8.457543905999955,0 115.1803061860001,-8.457490962999941,0 115.1803153950001,-8.457472389999964,0 115.180316475,-8.457470210999929,0 115.1803174,-8.457468343999949,0 115.180320163,-8.457462772999975,0 115.1803214310001,-8.457460215999959,0 115.1803281250001,-8.457446713999957,0 115.180345768,-8.457411127999933,0 115.18035008,-8.457402428999956,0 115.1803675980001,-8.457367096999974,0 115.180396663,-8.457308479999938,0 115.18040898,-8.457283638999968,0 115.1805406330001,-8.457065075999935,0 115.180582531,-8.456995512999981,0 115.180619974,-8.456933358999947,0 115.1806384030001,-8.456903042999954,0 115.1808227510001,-8.456599791999963,0 115.1808528820001,-8.456550235999941,0 115.180906111,-8.456462663999957,0 115.1811183410001,-8.456121791999976,0 115.1812292530001,-8.45593079899993,0 115.181280785,-8.455842062999977,0 115.1813295920001,-8.455764479999971,0 115.18135586,-8.455722712999943,0 115.181419966,-8.455620801999942,0 115.181652051,-8.455243865999932,0 115.18166127,-8.45522682099994,0 115.181669013,-8.455212503999974,0 115.1816729740001,-8.45520518099994,0 115.1816807240001,-8.455190810999966,0 115.181688794,-8.455175846999964,0 115.1816984720001,-8.455157906999943,0 115.1817597390001,-8.455044296999972,0 115.1817713910001,-8.455022689999964,0 115.181790595,-8.454987095999968,0 115.181858031,-8.45486210599995,0 115.1818976620001,-8.454793224999946,0 115.1819609260001,-8.454683245999945,0 115.18198883,-8.454634708999947,0 115.1820067450001,-8.454603548999955,0 115.1820450450001,-8.454536893999943,0 115.1820454590001,-8.454536172999951,0 115.1820493230001,-8.454529450999928,0 115.1821067930001,-8.454456768999933,0 115.1821104870001,-8.454454603999977,0 115.1821197820001,-8.454449147999981,0 115.1821377690001,-8.454445706999934,0 115.1821418860001,-8.45444572599996,0 115.182160231,-8.45444581199996,0 115.1821845300001,-8.454453336999961,0 115.182481799,-8.454627454999979,0 115.182564679,-8.454676018999976,0 115.1826038490001,-8.454689844999962,0 115.182636748,-8.454699577999975,0 115.182674396,-8.454702556999962,0 115.182693649,-8.454699456999947,0 115.1826962010001,-8.454699045999973,0 115.1827424820001,-8.454683680999949,0 115.182744274,-8.454683087999967,0 115.1827588530001,-8.45467301399998,0 115.182768838,-8.454666115999942,0 115.182853119,-8.454608022999935,0 115.182871448,-8.454595368999946,0 115.1829434050001,-8.454519565999931,0 115.18297551,-8.454485746999978,0 115.1829787510001,-8.45448233299993,0 115.1830034310001,-8.454456322999931,0 115.183035678,-8.454397807999953,0 115.1830371120001,-8.454395194999961,0 115.183075654,-8.454309395999928,0 115.1830827380001,-8.454293623999945,0 115.183084373,-8.454289474999939,0 115.183102746,-8.454242830999931,0 115.1831249500001,-8.454186621999952,0 115.1831694010001,-8.454111256999965,0 115.183201175,-8.454057442999954,0 115.1832492760001,-8.453986437999959,0 115.183265202,-8.453962890999946,0 115.1832657900001,-8.453962020999938,0 115.183273468,-8.453943382999967,0 115.1833018410001,-8.453874499999927,0 115.1833057570001,-8.453865016999941,0 115.1833153990001,-8.453841669999974,0 115.183347582,-8.45375546899993,0 115.183350505,-8.453747642999929,0 115.183368931,-8.453698369999927,0 115.1834189130001,-8.453609843999971,0 115.1834314400001,-8.453587689999949,0 115.183448739,-8.453557098999966,0 115.1834583420001,-8.453536355999972,0 115.1834994200001,-8.453447331999939,0 115.183536179,-8.453367686999968,0 115.1835638660001,-8.453307704999929,0 115.1835716710001,-8.45328821399994,0 115.183640391,-8.453115887999957,0 115.183660086,-8.453066347999936,0 115.183680221,-8.453020164999941,0 115.1837547720001,-8.452849129999947,0 115.1837612070001,-8.452834336999956,0 115.183792142,-8.452752218999933,0 115.1838185270001,-8.452682294999931,0 115.1838188600001,-8.452674878999971,0 115.183816124,-8.452667819999931,0 115.183814717,-8.452666439999973,0 115.1838119350001,-8.452663708999978,0 115.1838107570001,-8.452662549999957,0 115.1835409380001,-8.452543339999977,0 115.1835439290001,-8.452536648999967,0 115.1835464610001,-8.452530981999928,0 115.1835506250001,-8.452521600999944,0 115.1835519860001,-8.452518533999978,0 115.1835520860001,-8.452518577999967,0 115.1835637910001,-8.452523736999979,0 115.183817921,-8.452635649999934,0 115.183818038,-8.452635659999942,0 115.183823114,-8.45263608099998,0 115.1838259260001,-8.452636319999954,0 115.183827379,-8.452635753999971,0 115.183831388,-8.452634191999948,0 115.1838335030001,-8.452633366999976,0 115.1838377820001,-8.452628814999969,0 115.183839,-8.452627518999975,0 115.1838668180001,-8.452554613999951,0 115.1839363060001,-8.452410218999944,0 115.183959132,-8.452362825999955,0 115.1839680600001,-8.452344287999949,0 115.1839774000001,-8.452321519999941,0 115.183977829,-8.452320472999929,0 115.184014645,-8.452230160999932,0 115.1840454920001,-8.452154531999952,0 115.184048424,-8.452147341999932,0 115.184052177,-8.452138142999956,0 115.1840940220001,-8.452035553999963,0 115.1841399220001,-8.451923141999941,0 115.1841665130001,-8.451858002999927,0 115.184174727,-8.451838782999971,0 115.1841787730001,-8.45182931599993,0 115.184190402,-8.451802180999948,0 115.184211481,-8.451752996999971,0 115.1842527350001,-8.451656558999957,0 115.184264103,-8.451630046999981,0 115.18428082,-8.451591061999977,0 115.1842895300001,-8.451563738999937,0 115.1843200330001,-8.451468043999967,0 115.1843411570001,-8.451401788999931,0 115.1843589910001,-8.451334801999963,0 115.1843922210001,-8.451209763999941,0 115.1843947850001,-8.451200053999969,0 115.184395652,-8.451196767999932,0 115.184403134,-8.451169903999926,0 115.1844530740001,-8.45099057799996,0 115.1844689660001,-8.450939221999931,0 115.1844910640001,-8.450904159999936,0 115.1845254350001,-8.450862601999972,0 115.184531426,-8.450855357999956,0 115.1845622770001,-8.450823043999947,0 115.1846555450001,-8.450725166999973,0 115.1846558950001,-8.450724799999932,0 115.18465746,-8.45072315699997,0 115.184678489,-8.450708881999958,0 115.184697623,-8.450701378999952,0 115.1847373050001,-8.450702010999976,0 115.1847600320001,-8.450708444999975,0 115.18476049,-8.450708515999963,0 115.1847785140001,-8.450711328999944,0 115.184796407,-8.45071186399997,0 115.18480866,-8.450709410999934,0 115.1848109460001,-8.450708952999946,0 115.1848130830001,-8.450708131999932,0 115.1848159000001,-8.450707050999938,0 115.1848225750001,-8.450704488999975,0 115.1848277570001,-8.450701563999928,0 115.1848335340001,-8.450698303999957,0 115.1848410700001,-8.450687579999965,0 115.1849755440001,-8.450496389999955,0 115.185043564,-8.450409298999944,0 115.1850746800001,-8.45038305199995,0 115.1851262930001,-8.45032959699995,0 115.1851664420001,-8.450277663999941,0 115.185167726,-8.450276002999942,0 115.185185506,-8.450252949999935,0 115.1852011210001,-8.450228608999964,0 115.185232508,-8.450179681999941,0 115.1852432070001,-8.450163002999943,0 115.1852507640001,-8.450148393999939,0 115.1852729880001,-8.450105438999969,0 115.1852811370001,-8.450089687999935,0 115.1852844170001,-8.450082951999946,0 115.1852930810001,-8.450065158999962,0 115.185307082,-8.450036402999956,0 115.185308725,-8.450033030999975,0 115.185315058,-8.450020022999979,0 115.1853406350001,-8.449967486999981,0 115.1853740500001,-8.449898855999948,0 115.185390983,-8.449864042999934,0 115.1854065020001,-8.449839556999962,0 115.1854128590001,-8.44982951999998,0 115.185424612,-8.449819829999967,0 115.185429096,-8.449816132999956,0 115.1854843440001,-8.449786288999974,0 115.185516115,-8.449764734999974,0 115.185554525,-8.449738661999959,0 115.185555709,-8.449737857999935,0 115.1855851460001,-8.449717874999976,0 115.185625252,-8.449675216999935,0 115.1856596690001,-8.449633336999966,0 115.1856760770001,-8.449605796999947,0 115.1856795900001,-8.449599901999932,0 115.1857182060001,-8.449535148999928,0 115.185778451,-8.44943412899994,0 115.1858033570001,-8.449392388999968,0 115.185849692,-8.449282871999969,0 115.185890888,-8.449215540999944,0 115.185905765,-8.449194691999935,0 115.1859175660001,-8.449178153999981,0 115.1859319,-8.449166229999946,0 115.18594869,-8.449152261999927,0 115.1860046960001,-8.449105760999942,0 115.1860241530001,-8.449089604999926,0 115.1860253990001,-8.449088429999961,0 115.1860302470001,-8.44908385399998,0 115.1861232040001,-8.448995607999962,0 115.186208906,-8.448889798999971,0 115.186223229,-8.448869156999933,0 115.1862610730001,-8.448814834999951,0 115.186360496,-8.448688114999982,0 115.186434313,-8.448593991999928,0 115.1865175380001,-8.448490251999942,0 115.1865183780001,-8.448489201999962,0 115.186520607,-8.44848641699997,0 115.1865353080001,-8.448468097999978,0 115.1865787590001,-8.448428553999975,0 115.186587192,-8.448420878999968,0 115.1865902100001,-8.448418579999952,0 115.186610735,-8.448402942999962,0 115.1866444100001,-8.448377284999935,0 115.186651811,-8.448371644999952,0 115.1866860170001,-8.44834287499998,0 115.1867851530001,-8.448259637999968,0 115.1867864420001,-8.44825855299996,0 115.1869073040001,-8.448172593999971,0 115.18691145,-8.44816964499995,0 115.186949387,-8.448142615999927,0 115.1869803280001,-8.448123086999942,0 115.187008112,-8.448105555999973,0 115.187027444,-8.44808648299994,0 115.1870519690001,-8.448062370999935,0 115.1871152000001,-8.447989448999977,0 115.187150573,-8.447934646999954,0 115.18718321,-8.447889155999974,0 115.1871846590001,-8.447883937999961,0 115.187185492,-8.447880937999969,0 115.1871836610001,-8.447872617999963,0 115.1871782270001,-8.447865989999968,0 115.1869250000001,-8.447738092999941,0 115.1867083850001,-8.447625637999977,0 115.1866062050001,-8.447572553999976,0 115.1865806290001,-8.44755195099998,0 115.186577939,-8.447555597999951,0 115.1866033480001,-8.447576067999933,0 115.186604019,-8.44757651499998,0 115.1867062860001,-8.447629645999939,0 115.1869229230001,-8.447742112999947,0 115.1871753160001,-8.447869589999925,0 115.1871794580001,-8.447874639999952,0 115.187180816,-8.447880812999927,0 115.1871790480001,-8.447887179999952,0 115.1871468160001,-8.447932111999933,0 115.1871115560001,-8.447986732999937,0 115.1870486450001,-8.448059284999943,0 115.187024252,-8.448083268999937,0 115.187005265,-8.44810199899996,0 115.186977897,-8.44811926899996,0 115.186946851,-8.448138867999944,0 115.1869088090001,-8.448165966999966,0 115.186783802,-8.448254873999929,0 115.1867835190001,-8.448255094999979,0 115.1867822250001,-8.448256181999966,0 115.1866830880001,-8.448339419999968,0 115.186648964,-8.448368121999977,0 115.186607975,-8.448399351999967,0 115.1865844340001,-8.448417288999963,0 115.1865842020001,-8.448417478999943,0 115.1865322450001,-8.448464759999979,0 115.1865317960001,-8.448465231999933,0 115.186517058,-8.448483596999949,0 115.1865139890001,-8.448487431999979,0 115.186430749,-8.448591189999945,0 115.1863569180001,-8.448685330999979,0 115.1862574940001,-8.448812050999948,0 115.1862573410001,-8.448812257999975,0 115.186219496,-8.448866583999973,0 115.186205264,-8.448887092999939,0 115.186119854,-8.448992541999928,0 115.1860271190001,-8.44908057799995,0 115.1860211390001,-8.449086222999938,0 115.1859457800001,-8.449148790999971,0 115.185933694,-8.449158844999943,0 115.1859146510001,-8.449174686999982,0 115.185914087,-8.449175246999971,0 115.1859138640001,-8.449175535999927,0 115.185910635,-8.449180061999925,0 115.185887187,-8.449212921999958,0 115.1858870100001,-8.449213187999931,0 115.1858457880001,-8.44928056599997,0 115.1858455070001,-8.449281115999952,0 115.185799294,-8.449390345999973,0 115.185774547,-8.449431818999926,0 115.1856756860001,-8.449597593999954,0 115.1856559390001,-8.44963073699995,0 115.185621832,-8.449672240999973,0 115.185582174,-8.449714420999953,0 115.185551968,-8.449734926999952,0 115.185513558,-8.449760998999977,0 115.185481983,-8.449782418999973,0 115.185434396,-8.449808126999926,0 115.18542688,-8.449812187999953,0 115.1854262000001,-8.449812650999945,0 115.1854099530001,-8.449826045999941,0 115.1854093830001,-8.44982661399996,0 115.1854090200001,-8.449827107999965,0 115.185402661,-8.449837143999957,0 115.185395963,-8.449847714999976,0 115.1853870980001,-8.449861705999979,0 115.1853868970001,-8.449862071999974,0 115.1853699650001,-8.449896883999941,0 115.1853365500001,-8.449965514999974,0 115.185304639,-8.450031057999979,0 115.1852889960001,-8.450063187999945,0 115.1852770710001,-8.450087674999963,0 115.185246728,-8.450146323999945,0 115.185239269,-8.450160743999959,0 115.1852286820001,-8.450177247999932,0 115.1851817840001,-8.450250352999944,0 115.185164127,-8.450273246999927,0 115.1851228490001,-8.450326640999947,0 115.1850715700001,-8.450379749999968,0 115.185040629,-8.450405848999935,0 115.1850400330001,-8.450406457999975,0 115.184971892,-8.450493705999975,0 115.1848373510001,-8.450684986999931,0 115.1848304020001,-8.450694874999954,0 115.1848206250001,-8.450700391999931,0 115.1848142670001,-8.45070283299998,0 115.184809674,-8.45070459599998,0 115.1847960250001,-8.450707329999943,0 115.1847789310001,-8.450706818999947,0 115.1847610090001,-8.450704020999979,0 115.184738546,-8.450697662999971,0 115.1847380930001,-8.450697558999934,0 115.184737378,-8.450697490999971,0 115.1846976600001,-8.450696857999958,0 115.1846968340001,-8.450696925999978,0 115.1846960150001,-8.450697150999929,0 115.1846768260001,-8.45070467599993,0 115.18467622,-8.450704966999979,0 115.184675932,-8.450705146999951,0 115.184654903,-8.450719421999963,0 115.1846545430001,-8.45071969299994,0 115.1846541670001,-8.450720044999969,0 115.1846522520001,-8.450722054999972,0 115.1845589850001,-8.450819929999966,0 115.1845281350001,-8.450852243999975,0 115.184527934,-8.450852467999937,0 115.1844875590001,-8.450901285999976,0 115.1844872190001,-8.45090175699994,0 115.184465077,-8.450936888999934,0 115.1844646630001,-8.450937781999926,0 115.184448717,-8.450989307999976,0 115.1843912690001,-8.451195588999951,0 115.1843878300001,-8.451208611999959,0 115.1843546020001,-8.451333645999966,0 115.184336797,-8.451400522999961,0 115.184315705,-8.451466675999939,0 115.1842765580001,-8.451589488999957,0 115.184248559,-8.45165478499996,0 115.1842073040001,-8.451751223999963,0 115.184174596,-8.451827542999979,0 115.184162321,-8.451856266999926,0 115.184135716,-8.451921438999932,0 115.1840898150001,-8.452033851999943,0 115.1840442170001,-8.452145639999969,0 115.1840104380001,-8.452228459999958,0 115.183973623,-8.452318767999941,0 115.183963908,-8.452342451999925,0 115.1839322110001,-8.452408264999974,0 115.1838627230001,-8.452552659999981,0 115.183862574,-8.452553007999938,0 115.1838350730001,-8.452625080999951,0 115.1838308920001,-8.452629530999957,0 115.183829766,-8.45262996799994,0 115.183825725,-8.452631542999939,0 115.1838252580001,-8.452631725999936,0 115.1838234960001,-8.452631575999931,0 115.1838190570001,-8.452631207999957,0 115.1835656280001,-8.452519601999938,0 115.1835538930001,-8.452514428999962,0 115.183553541,-8.45251428499995,0 115.1835527750001,-8.452514080999947,0 115.1835519860001,-8.452514011999938,0 115.183551199,-8.452514080999947,0 115.1835504330001,-8.45251428499995,0 115.183549716,-8.452514617999952,0 115.1835490680001,-8.452515069999947,0 115.1835485070001,-8.452515627999958,0 115.1835480540001,-8.452516272999958,0 115.183547833,-8.452516705999926,0 115.1835423110001,-8.452529148999929,0 115.1835367900001,-8.452541500999928,0 115.1835366710001,-8.452541793999956,0 115.1835364680001,-8.452542552999944,0 115.183536397,-8.452543339999977,0 115.1835364670001,-8.452544124999974,0 115.1835366710001,-8.452544884999952,0 115.183537008,-8.452545599999951,0 115.183537459,-8.452546243999961,0 115.18353802,-8.452546801999972,0 115.1835386680001,-8.452547252999977,0 115.1835390960001,-8.452547471999935,0 115.183808158,-8.452666346999933,0 115.183808748,-8.452666926999939,0 115.1838115300001,-8.45266965899998,0 115.1838122400001,-8.452670356999931,0 115.1838126580001,-8.452671434999957,0 115.1838142810001,-8.452675622999948,0 115.1838140230001,-8.452681376999976,0 115.1837878920001,-8.452750630999958,0 115.183756999,-8.452832635999926,0 115.1837506070001,-8.45284733099993,0 115.1836760560001,-8.453018364999934,0 115.183655893,-8.453064615999949,0 115.1836361700001,-8.453114220999964,0 115.183567452,-8.453286541999944,0 115.183559692,-8.45330592199997,0 115.183532054,-8.453365798999926,0 115.1834952930001,-8.453445443999954,0 115.1834542170001,-8.453534464999962,0 115.183444695,-8.453555033999976,0 115.1834149570001,-8.45360762699994,0 115.183364973,-8.453696154999932,0 115.1833646760001,-8.45369679099997,0 115.183346249,-8.453746065999951,0 115.1833111770001,-8.453840001999936,0 115.1832976410001,-8.453872783999941,0 115.1832617670001,-8.453959875999942,0 115.1832455110001,-8.453983910999966,0 115.1831974100001,-8.454054914999972,0 115.183197261,-8.454055151999967,0 115.183165486,-8.454108966999968,0 115.1831210260001,-8.454184345999977,0 115.1831207230001,-8.454184966999946,0 115.18309852,-8.454241176999972,0 115.1830785530001,-8.454291868999974,0 115.18303304,-8.454393187999926,0 115.1830316960001,-8.454395635999958,0 115.1829997310001,-8.45445363999994,0 115.1829984890001,-8.454454948999967,0 115.1829754510001,-8.454479227999968,0 115.1829722110001,-8.454482639999981,0 115.1828684740001,-8.454591919999928,0 115.1828505340001,-8.454604307999944,0 115.1827662510001,-8.454662399999961,0 115.1827422220001,-8.454679002999967,0 115.1826951100001,-8.454694641999936,0 115.1826742120001,-8.45469800799998,0 115.1826375850001,-8.454695108999942,0 115.182605251,-8.454685544999961,0 115.182566606,-8.454671901999973,0 115.1824841020001,-8.45462355899997,0 115.1821868170001,-8.454449430999944,0 115.1821859810001,-8.454449054999941,0 115.1821615780001,-8.454441494999969,0 115.1821610190001,-8.454441359999976,0 115.182160252,-8.454441290999966,0 115.1821419080001,-8.454441204999966,0 115.1821412190001,-8.454441201999941,0 115.18213778,-8.45444118599994,0 115.182136946,-8.454441259999953,0 115.1821189240001,-8.454444707999926,0 115.182118229,-8.454444898999952,0 115.1821174940001,-8.454445242999952,0 115.1821081820001,-8.454450708999957,0 115.182105221,-8.454452486999969,0 115.1821045060001,-8.454452863999961,0 115.1821038740001,-8.454453306999937,0 115.182103265,-8.454453928999953,0 115.1821028430001,-8.454454493999947,0 115.1820725880001,-8.454492736999953,0 115.1820457540001,-8.454526653999949,0 115.182045386,-8.454527196999948,0 115.1820411040001,-8.454534646999946,0 115.1820261900001,-8.454560604999926,0 115.182002804,-8.454601303999937,0 115.1819569850001,-8.454680998999947,0 115.181893722,-8.454790977999949,0 115.1818540610001,-8.454859911999961,0 115.1817673910001,-8.455020550999961,0 115.181694471,-8.455155767999941,0 115.1816847980001,-8.455173701999968,0 115.1816689760001,-8.455203038999969,0 115.181657272,-8.455224677999979,0 115.181648115,-8.455241611999952,0 115.181416107,-8.455618419999951,0 115.181352012,-8.455720313999961,0 115.1813257430001,-8.455762080999932,0 115.1812768950001,-8.455839732999948,0 115.181225323,-8.455928535999931,0 115.181114445,-8.456119469999976,0 115.18090224,-8.456460302999972,0 115.1808489970001,-8.456547894999972,0 115.1808188680001,-8.456597450999936,0 115.1806160860001,-8.456931023999971,0 115.180578638,-8.456993187999956,0 115.1805367380001,-8.457062750999967,0 115.180405067,-8.457281345999945,0 115.1804049090001,-8.457281637999927,0 115.1803925920001,-8.457306478999953,0 115.180346008,-8.457400427999971,0 115.1803459560001,-8.457400532999941,0 115.180341697,-8.457409127999938,0 115.1803167930001,-8.457459355999958,0 115.1803158240001,-8.457459440999969,0 115.180314294,-8.457459847999928,0 115.1803128600001,-8.45746051499998,0 115.1803115620001,-8.457461418999969,0 115.180310444,-8.457462532999955,0 115.1803095350001,-8.457463822999955,0 115.1803092570001,-8.457464343999959,0 115.1802980430001,-8.457486961999962,0 115.1802718,-8.45753990399993,0 115.1802714410001,-8.457540728999959,0 115.180223908,-8.457666873999926,0 115.180223875,-8.457666958999937,0 115.1802231890001,-8.45766877899996,0 115.1801892110001,-8.457758953999928,0 115.1801534100001,-8.457853962999934,0 115.1800038780001,-8.458250807999946,0 115.17997546,-8.458326220999936,0 115.179959571,-8.45836838799994,0 115.179959486,-8.458368628999949,0 115.1797650090001,-8.45894192999998,0 115.179621169,-8.459326701999942,0 115.179581878,-8.459431797999969,0 115.1795421170001,-8.459538164999969,0 115.1795376260001,-8.459550179999951,0 115.1795375690001,-8.459550332999981,0 115.1795375470001,-8.459550387999968,0 115.1795139990001,-8.45961338099994,0 115.179202216,-8.460410957999954,0 115.1789687610001,-8.460961588999965,0 115.1787811490001,-8.461393235999935,0 115.1786289090001,-8.461739560999945,0 115.1786221440001,-8.461754947999964,0 115.1786070170001,-8.461789353999961,0 115.178597232,-8.461798977999933,0 115.178588962,-8.461803626999938,0 115.1785720890001,-8.461809375999962,0 115.1785655570001,-8.461809781999932,0 115.178565014,-8.461809806999952,0 115.1785427880001,-8.461811102999945,0 115.178478701,-8.461804208999979,0 115.1782695050001,-8.461781703999975,0 115.178126106,-8.461765435999951,0 115.1780417250001,-8.46175586399994,0 115.177994557,-8.46175051299997,0 115.1779925940001,-8.461750289999941,0 115.1778123380001,-8.461729840999965,0 115.1775391960001,-8.461698853999962,0 115.177538689,-8.461698810999962,0 115.177493998,-8.461696250999978,0 115.1774934760001,-8.461696235999966,0 115.177492406,-8.461696298999925,0 115.1774445350001,-8.461701950999952,0 115.1774440280001,-8.461702024999965,0 115.177442645,-8.461702380999952,0 115.177401774,-8.461716409999951,0 115.1774002650001,-8.461717101999966,0 115.177399357,-8.461717697999973,0 115.1773671240001,-8.461741772999972,0 115.1773667350001,-8.461742080999954,0 115.1773656160001,-8.46174319499994,0 115.177364751,-8.461744413999952,0 115.1773362700001,-8.461792496999976,0 115.1773355800001,-8.461793960999955,0 115.1773351690001,-8.461795483999936,0 115.1773350990001,-8.461795963999975,0 115.177310258,-8.461999587999969,0 115.1773101910001,-8.462000677999981,0 115.1773102230001,-8.462001434999934,0 115.177315969,-8.462069519999943,0 115.177316075,-8.462070331999939,0 115.1773164860001,-8.462071854999976,0 115.1773168340001,-8.462072678999959,0 115.1773394490001,-8.462119523999945,0 115.177339769,-8.462120127999981,0 115.177340715,-8.46212146299996,0 115.17742766,-8.462222016999931,0 115.1774421370001,-8.462249310999937,0 115.177446033,-8.46229322399995,0 115.1774343290001,-8.462337723999951,0 115.1773888940001,-8.462442678999935,0 115.177284718,-8.462683315999925,0 115.1772846040001,-8.462683590999973,0 115.177153427,-8.463016238999955,0 115.17701547,-8.46332333099997,0 115.176997538,-8.463363236999953,0 115.1768762620001,-8.463633203999962,0 115.176851517,-8.463688227999967,0 115.176759725,-8.463893267999936,0 115.176694611,-8.464038750999975,0 115.1765450360001,-8.464351283999974,0 115.176447549,-8.464547840999955,0 115.1764471580001,-8.464548751999928,0 115.1764467480001,-8.464550274999965,0 115.176446744,-8.464550317999965,0 115.1764556910001,-8.46455184499996,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</MultiGeometry>
<description>{&quot;OBJECTID&quot;:&quot;1418&quot;,&quot;NAMOBJ&quot;:&quot;Jalur Hijau&quot;,&quot;NAMZON&quot;:&quot;Zona Ruang Terbuka Hijau&quot;,&quot;KODZON&quot;:&quot;RTH&quot;,&quot;NAMSZN&quot;:&quot;Jalur Hijau&quot;,&quot;KODSZN&quot;:&quot;RTH-8&quot;,&quot;JNSRPR&quot;:&quot;Zona Lindung&quot;,&quot;KODEWP&quot;:&quot;I&quot;,&quot;KODSWP&quot;:&quot;A&quot;,&quot;KODBLK&quot;:&quot;1&quot;,&quot;KODSBL&quot;:&quot;Tidak Ada&quot;,&quot;WADMPR&quot;:&quot;Provinsi Bali&quot;,&quot;WADMKK&quot;:&quot;Kabupaten Badung&quot;,&quot;WADMKC&quot;:&quot;Kecamatan Mengwi&quot;,&quot;WADMKD&quot;:&quot;Desa Kuwum&quot;,&quot;KKOP_1&quot;:&quot;Tidak Ada&quot;,&quot;LP2B_2&quot;:&quot;Tidak Ada&quot;,&quot;KRB_03&quot;:&quot;Tidak Ada&quot;,&quot;TOD_04&quot;:&quot;Tidak Ada&quot;,&quot;TEB_05&quot;:&quot;Tidak Ada&quot;,&quot;PUSLIT&quot;:&quot;Tidak Ada&quot;,&quot;CAGBUD&quot;:&quot;Tidak Ada&quot;,&quot;RESAIR&quot;:&quot;Tidak Ada&quot;,&quot;KSMPDN&quot;:&quot;Tidak Ada&quot;,&quot;HANKAM&quot;:&quot;Tidak Ada&quot;,&quot;KKARST&quot;:&quot;Tidak Ada&quot;,&quot;PTBGMB&quot;:&quot;Tidak Ada&quot;,&quot;MGRSAT&quot;:&quot;Tidak Ada&quot;,&quot;RDBUMI&quot;:&quot;Tidak Ada&quot;,&quot;TPZ_00&quot;:&quot;Tidak Ada&quot;,&quot;REMARK&quot;:&quot;Tidak Ada&quot;,&quot;NOTHPR&quot;:&quot;Peraturan Bupati Badung Nomor 34 Tahun 2022 tentang Rencana Detail Tata Ruang Wilayah Perencanaan Mengwi Tahun 2022-2042&quot;}</description>
</Placemark>
<Placemark>
<visibility>0</visibility>
<styleUrl>#m_ylw-pushpin71</styleUrl>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
115.190837532,-8.444090660999962,0 115.1908337000001,-8.444088259999944,0 115.1908336,-8.444088399999941,0 115.190833267,-8.44408911499994,0 115.190833061,-8.444089875999964,0 115.1908329940001,-8.444090737999943,0 115.190833555,-8.44410722899994,0 115.190833621,-8.444107860999964,0 115.190833827,-8.444108620999941,0 115.190834198,-8.444109395999931,0 115.190842703,-8.444122969999967,0 115.1908431170001,-8.444123720999926,0 115.190843531,-8.444124304999946,0 115.190844092,-8.444124862999956,0 115.1908446550001,-8.444125258999975,0 115.1908454290001,-8.444125691999943,0 115.190881909,-8.444148802999962,0 115.1911428340001,-8.444313349999959,0 115.1911554550001,-8.444321272999957,0 115.191155682,-8.444321403999936,0 115.1914061270001,-8.444453024999973,0 115.1914504050001,-8.444476293999969,0 115.191461673,-8.444482216999972,0 115.1914956090001,-8.444500049999931,0 115.1915847130001,-8.444546873999968,0 115.191622054,-8.444566445999953,0 115.191833028,-8.444685143999948,0 115.191843337,-8.444690940999976,0 115.1919136910001,-8.444728157999975,0 115.1919399460001,-8.444742032999955,0 115.1919402880001,-8.44474222499997,0 115.1919408650001,-8.444742479999945,0 115.1919416300001,-8.444742683999948,0 115.191942419,-8.444742752999957,0 115.191943207,-8.444742683999948,0 115.1919439720001,-8.444742478999956,0 115.191944688,-8.444742145999953,0 115.1919453360001,-8.444741694999948,0 115.1919458970001,-8.444741136999937,0 115.191946216,-8.444740682999964,0 115.1919424180001,-8.444738232999953,0 115.1919158210001,-8.444724165999958,0 115.191845519,-8.444686976999947,0 115.1918352610001,-8.444681207999963,0 115.1916242460001,-8.444562484999949,0 115.19158683,-8.444542875999957,0 115.1914977280001,-8.444496050999931,0 115.191463792,-8.444478219999951,0 115.1914525240001,-8.444472296999948,0 115.191408247,-8.444449026999962,0 115.191157877,-8.444317447999936,0 115.1911452590001,-8.444309527999962,0 115.190884339,-8.44414498499998,0 115.1908527080001,-8.444124998999939,0 115.1908470100001,-8.444121398999926,0 115.1908457080001,-8.444119307999927,0 115.190838093,-8.444107075999966,0 115.190837532,-8.444090660999962,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<description>{&quot;OBJECTID&quot;:&quot;1419&quot;,&quot;NAMOBJ&quot;:&quot;Jalur Hijau&quot;,&quot;NAMZON&quot;:&quot;Zona Ruang Terbuka Hijau&quot;,&quot;KODZON&quot;:&quot;RTH&quot;,&quot;NAMSZN&quot;:&quot;Jalur Hijau&quot;,&quot;KODSZN&quot;:&quot;RTH-8&quot;,&quot;JNSRPR&quot;:&quot;Zona Lindung&quot;,&quot;KODEWP&quot;:&quot;I&quot;,&quot;KODSWP&quot;:&quot;A&quot;,&quot;KODBLK&quot;:&quot;1&quot;,&quot;KODSBL&quot;:&quot;Tidak Ada&quot;,&quot;WADMPR&quot;:&quot;Provinsi Bali&quot;,&quot;WADMKK&quot;:&quot;Kabupaten Badung&quot;,&quot;WADMKC&quot;:&quot;Kecamatan Mengwi&quot;,&quot;WADMKD&quot;:&quot;Desa Kuwum&quot;,&quot;KKOP_1&quot;:&quot;Tidak Ada&quot;,&quot;LP2B_2&quot;:&quot;Tidak Ada&quot;,&quot;KRB_03&quot;:&quot;Tidak Ada&quot;,&quot;TOD_04&quot;:&quot;Tidak Ada&quot;,&quot;TEB_05&quot;:&quot;Tidak Ada&quot;,&quot;PUSLIT&quot;:&quot;Tidak Ada&quot;,&quot;CAGBUD&quot;:&quot;Tidak Ada&quot;,&quot;RESAIR&quot;:&quot;Tidak Ada&quot;,&quot;KSMPDN&quot;:&quot;Tidak Ada&quot;,&quot;HANKAM&quot;:&quot;Tidak Ada&quot;,&quot;KKARST&quot;:&quot;Tidak Ada&quot;,&quot;PTBGMB&quot;:&quot;Tidak Ada&quot;,&quot;MGRSAT&quot;:&quot;Tidak Ada&quot;,&quot;RDBUMI&quot;:&quot;Tidak Ada&quot;,&quot;TPZ_00&quot;:&quot;Tidak Ada&quot;,&quot;REMARK&quot;:&quot;Tidak Ada&quot;,&quot;NOTHPR&quot;:&quot;Peraturan Bupati Badung Nomor 34 Tahun 2022 tentang Rencana Detail Tata Ruang Wilayah Perencanaan Mengwi Tahun 2022-2042&quot;}</description>
</Placemark>
<Placemark>
<visibility>0</visibility>
<styleUrl>#m_ylw-pushpin71</styleUrl>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
115.193037322,-8.497321342999953,0 115.1930384670001,-8.497345009999947,0 115.193050975,-8.497603739999931,0 115.1930510130001,-8.497604505999959,0 115.1930514540001,-8.497606401999974,0 115.1930534430001,-8.497609236999949,0 115.193053683,-8.497609577999981,0 115.193055285,-8.497610599999973,0 115.1930569680001,-8.497611673999927,0 115.1930589130001,-8.497612043999936,0 115.19306796,-8.497611654999957,0 115.1930803240001,-8.497611121999967,0 115.1931519100001,-8.497608046999972,0 115.1934210820001,-8.497596483999928,0 115.193541951,-8.497591299999954,0 115.1935879,-8.497589319999975,0 115.1936191880001,-8.497587980999981,0 115.1936230570001,-8.497587815999964,0 115.1937283540001,-8.49757909899995,0 115.1938620630001,-8.497568030999958,0 115.1939463340001,-8.497561049999945,0 115.1940821280001,-8.497549811999932,0 115.1942987550001,-8.497530934999929,0 115.194395619,-8.497522497999967,0 115.1943997410001,-8.497522138999955,0 115.1945104690001,-8.497512489999963,0 115.194519483,-8.497511703999976,0 115.194520816,-8.497511325999938,0 115.1945213560001,-8.497511174999943,0 115.194521773,-8.497510936999959,0 115.194523083,-8.497510186999932,0 115.1945252100001,-8.497507718999941,0 115.194525644,-8.497507215999974,0 115.1945267850001,-8.49750351299997,0 115.1945266150001,-8.497501665999948,0 115.194521149,-8.497442270999954,0 115.1945209690001,-8.497440309999945,0 115.1945203920001,-8.497434047999946,0 115.1945082550001,-8.49730212299994,0 115.194503788,-8.497245519999979,0 115.1944983000001,-8.497176028999945,0 115.1944946980001,-8.497130416999937,0 115.1944911930001,-8.497086011999954,0 115.1944872600001,-8.497036184999956,0 115.194475158,-8.49690666999993,0 115.194475117,-8.496906267999975,0 115.1944750890001,-8.496905924999965,0 115.194462517,-8.496771402999968,0 115.1944185320001,-8.496630226999969,0 115.1944185020001,-8.496630143999937,0 115.194377235,-8.496496306999973,0 115.194346522,-8.496386339999958,0 115.194336224,-8.496346882999944,0 115.1943281340001,-8.496315840999955,0 115.194318016,-8.496237063999956,0 115.194314423,-8.496172684999976,0 115.1943068170001,-8.496038241999941,0 115.1943070850001,-8.495980300999975,0 115.1943073310001,-8.495927896999945,0 115.194307359,-8.495921974999931,0 115.194308363,-8.495707049999965,0 115.194310233,-8.495670396999969,0 115.1943200630001,-8.495477782999956,0 115.194326419,-8.495353252999962,0 115.1943368450001,-8.495098810999934,0 115.1943401540001,-8.495018114999937,0 115.194341687,-8.494980644999941,0 115.1943475530001,-8.494837484999948,0 115.1943501630001,-8.49475967099994,0 115.194353413,-8.494663712999966,0 115.194353812,-8.494651937999947,0 115.194353941,-8.49464820999998,0 115.1943548490001,-8.494621941999981,0 115.1943555250001,-8.49460242899994,0 115.194355717,-8.494596900999966,0 115.194355705,-8.494592276999981,0 115.1943555930001,-8.494551343999944,0 115.1943552690001,-8.494436449999966,0 115.1943549910001,-8.494320114999937,0 115.194354889,-8.494277902999954,0 115.194344685,-8.49396229499996,0 115.194343278,-8.493766138999945,0 115.1943433770001,-8.493758567999976,0 115.1943441760001,-8.493697582999971,0 115.1943467790001,-8.493497966999939,0 115.1943487980001,-8.493343951999975,0 115.1943489880001,-8.493329482999968,0 115.194349105,-8.493320411999946,0 115.194350642,-8.493201229999954,0 115.1943560880001,-8.492980965999948,0 115.1943568680001,-8.492949317999944,0 115.1943585790001,-8.492880098999933,0 115.194357899,-8.492824194999969,0 115.1943571,-8.492758942999956,0 115.1943559360001,-8.492663514999947,0 115.1943556540001,-8.492640306999931,0 115.1943556020001,-8.492636123999944,0 115.1943549470001,-8.492615133999948,0 115.194347267,-8.492369067999959,0 115.1943435540001,-8.492249908999952,0 115.194338719,-8.492094104999978,0 115.1943380890001,-8.492073800999947,0 115.1943368310001,-8.492070181999964,0 115.1943346930001,-8.492068082999936,0 115.194334151,-8.492067547999966,0 115.194330636,-8.492066088999934,0 115.194318335,-8.492065903999958,0 115.1943146650001,-8.492065846999935,0 115.194054638,-8.492062007999948,0 115.194054753,-8.492052695999973,0 115.194054871,-8.492043382999952,0 115.1942982280001,-8.492046683999945,0 115.1943004410001,-8.492045803999929,0 115.194300837,-8.492045646999941,0 115.1943020540001,-8.492045162999943,0 115.1943047630001,-8.492042194999954,0 115.194305587,-8.492039391999981,0 115.1943059050001,-8.492038312999966,0 115.194305653,-8.492033813999967,0 115.1943036250001,-8.49199755099994,0 115.1943035170001,-8.49199561599994,0 115.1943018620001,-8.491966030999947,0 115.1942986820001,-8.491909128999964,0 115.194296817,-8.49187582199994,0 115.194291461,-8.491780088999974,0 115.194290247,-8.491758540999967,0 115.194287755,-8.491714238999975,0 115.1942830950001,-8.49163144299996,0 115.1942746620001,-8.491481263999958,0 115.1942734930001,-8.491459746999965,0 115.1942575720001,-8.491343167999958,0 115.1942345350001,-8.491174470999965,0 115.19422681,-8.491145413999959,0 115.1942225030001,-8.491129257999944,0 115.194168672,-8.490927303999968,0 115.1941418070001,-8.490826366999954,0 115.1941379110001,-8.490811729999962,0 115.1941303950001,-8.490689304999933,0 115.1941216340001,-8.490481000999978,0 115.194124349,-8.490402305999964,0 115.1941248050001,-8.49038909099994,0 115.1941255,-8.490368944999943,0 115.194131254,-8.490202278999959,0 115.194142682,-8.489871320999953,0 115.19414784,-8.489713245999951,0 115.1941493410001,-8.48966730799998,0 115.1941632190001,-8.489243103999968,0 115.194164793,-8.489194568999949,0 115.194171201,-8.488992665999945,0 115.194178318,-8.488768164999954,0 115.194181124,-8.48868013699996,0 115.194188605,-8.488617707999936,0 115.1941934180001,-8.48858112399995,0 115.19419584,-8.488559441999939,0 115.194199354,-8.488528721999955,0 115.1942107330001,-8.488482038999962,0 115.1942276640001,-8.488421448999929,0 115.1942309880001,-8.488409554999976,0 115.194231809,-8.488403847999962,0 115.194239656,-8.488349299999982,0 115.1942472870001,-8.488144407999926,0 115.194247364,-8.488142337999932,0 115.1942532840001,-8.487961502999951,0 115.1942540900001,-8.487936907999938,0 115.194255449,-8.487895399999957,0 115.1942564850001,-8.487863773999948,0 115.1942577450001,-8.487825307999969,0 115.194263435,-8.487651498999981,0 115.1942838330001,-8.487332038999966,0 115.194288647,-8.487256688999935,0 115.194292997,-8.487191542999938,0 115.19430292,-8.487038462999976,0 115.1943060770001,-8.48700385799998,0 115.1943351990001,-8.486682371999962,0 115.194341289,-8.486615151999956,0 115.1943447230001,-8.486577376999946,0 115.1943645,-8.486359814999958,0 115.1943772970001,-8.486201058999939,0 115.1944242740001,-8.485618429999931,0 115.1944315710001,-8.48553077899993,0 115.1944553820001,-8.485243624999953,0 115.194454648,-8.485240100999931,0 115.1944528800001,-8.485237543999972,0 115.194452639,-8.485237195999957,0 115.194452089,-8.485236843999928,0 115.194449651,-8.485235287999956,0 115.1944145750001,-8.485227168999927,0 115.194271898,-8.485199751999971,0 115.194259889,-8.485197902999971,0 115.1940315170001,-8.485162775999981,0 115.1940040870001,-8.485158556999977,0 115.193918015,-8.485146547999932,0 115.1937721040001,-8.485126188999971,0 115.1937300520001,-8.485120320999954,0 115.1936527240001,-8.485109567999928,0 115.1936390460001,-8.485110727999938,0 115.193625762,-8.48511416499997,0 115.193613249,-8.485119785999927,0 115.1936018670001,-8.485127424999973,0 115.1935919430001,-8.485136865999948,0 115.193583761,-8.485147839999968,0 115.1935834000001,-8.485148548999973,0 115.193577556,-8.485160028999928,0 115.1935735030001,-8.485173086999964,0 115.193508327,-8.485702249999974,0 115.193494931,-8.485811026999954,0 115.1934572160001,-8.486117243999956,0 115.193438675,-8.48627111199994,0 115.1934378760001,-8.486277736999966,0 115.1934376380001,-8.486279712999931,0 115.1933701710001,-8.486839685999939,0 115.193335969,-8.487050085999954,0 115.1933353210001,-8.487051630999929,0 115.193328885,-8.487066976999927,0 115.1933191000001,-8.48708247299993,0 115.193306878,-8.487096147999978,0 115.1932925570001,-8.487107626999943,0 115.1932908860001,-8.487108563999925,0 115.1932900420001,-8.487109036999925,0 115.193281604,-8.487113760999932,0 115.193276531,-8.487116601999958,0 115.193265321,-8.487120630999925,0 115.193259237,-8.487122817999932,0 115.1932587760001,-8.487122901999953,0 115.1932411500001,-8.487126103999969,0 115.1931302390001,-8.48712398999993,0 115.193122495,-8.487123844999928,0 115.1931104910001,-8.487123776999965,0 115.1930986560001,-8.487125765999963,0 115.1930873430001,-8.487129745999937,0 115.1930768840001,-8.487135612999964,0 115.193067592,-8.487143178999929,0 115.193059747,-8.487152221999963,0 115.1930554830001,-8.487159309999981,0 115.1930535790001,-8.487162472999955,0 115.193049275,-8.487173629999972,0 115.192974079,-8.487473544999943,0 115.1929734700001,-8.487476330999925,0 115.1929681830001,-8.487500533999935,0 115.1929589470001,-8.487544485999933,0 115.192939677,-8.487636233999979,0 115.192935675,-8.487655289999964,0 115.19292726,-8.487709299999949,0 115.1929134620001,-8.487797761999957,0 115.192894375,-8.487920122999981,0 115.192857784,-8.488154793999968,0 115.192835089,-8.488300127999935,0 115.192824446,-8.488365882999972,0 115.192788743,-8.488586901999952,0 115.19275859,-8.48877314899994,0 115.1927513290001,-8.488836842999945,0 115.192745282,-8.488889937999943,0 115.192723995,-8.489076891999957,0 115.192712966,-8.489153631999955,0 115.1927015240001,-8.489318487999981,0 115.1926780560001,-8.489468885999941,0 115.192659948,-8.489561273999925,0 115.1926375500001,-8.489675785999964,0 115.192620981,-8.489760405999959,0 115.192615915,-8.489789389999942,0 115.1926064610001,-8.489843492999967,0 115.1925939710001,-8.489914939999949,0 115.192579645,-8.489998971999967,0 115.192576109,-8.490019711999935,0 115.192575183,-8.490025154999955,0 115.1925671020001,-8.490072636999969,0 115.1925590970001,-8.490153077999935,0 115.1925552070001,-8.490192126999943,0 115.1925550770001,-8.490193436999959,0 115.1925511530001,-8.490232699999979,0 115.192532765,-8.490416693999975,0 115.1925304870001,-8.490440178999961,0 115.192514037,-8.490610857999968,0 115.1924978230001,-8.490778274999968,0 115.1924827930001,-8.490934224999933,0 115.192466662,-8.491100826999968,0 115.192465704,-8.491113391999932,0 115.1924334730001,-8.491543405999948,0 115.1924280660001,-8.49161559199996,0 115.1924217760001,-8.491699465999943,0 115.1924112260001,-8.491873057999953,0 115.1924012520001,-8.492036619999965,0 115.192393463,-8.492164488999947,0 115.192390046,-8.492350858999941,0 115.192386594,-8.492544462999945,0 115.192384584,-8.492653915999938,0 115.192382841,-8.492675147999933,0 115.192374025,-8.492781590999925,0 115.1923577580001,-8.492978385999947,0 115.1923471990001,-8.493106242999943,0 115.192339327,-8.493201782999961,0 115.192334382,-8.493261839999946,0 115.192332985,-8.493278825999937,0 115.1923069850001,-8.493569673999957,0 115.1922907060001,-8.493777119999947,0 115.192288627,-8.493803663999927,0 115.1922825360001,-8.493881230999932,0 115.1922664170001,-8.494189124999934,0 115.1922526850001,-8.494382147999943,0 115.1922495880001,-8.49442563599996,0 115.1922394860001,-8.494567649999965,0 115.1922369170001,-8.494604245999938,0 115.1922371210001,-8.494641037999941,0 115.1922375570001,-8.494708966999951,0 115.1922380550001,-8.494785933999935,0 115.1922398960001,-8.495071221999979,0 115.192240813,-8.495146878999947,0 115.1922443740001,-8.495458113999973,0 115.192245077,-8.495515697999963,0 115.19225914,-8.495711914999958,0 115.192280069,-8.495847510999965,0 115.192307031,-8.496022360999973,0 115.19231745,-8.496052602999953,0 115.192342721,-8.496076760999927,0 115.192361516,-8.496082903999934,0 115.192392667,-8.496093086999963,0 115.192497038,-8.496097185999929,0 115.1925970230001,-8.496094125999946,0 115.1928141430001,-8.496087443999954,0 115.1928441870001,-8.49609229999993,0 115.1928463930001,-8.496092656999963,0 115.1928906840001,-8.49611682099993,0 115.1929183730001,-8.496168920999935,0 115.192923328,-8.496230320999928,0 115.1929230940001,-8.496251345999951,0 115.1929229040001,-8.496268525999938,0 115.192922156,-8.496336343999928,0 115.192921595,-8.496386984999958,0 115.192921379,-8.496406484999966,0 115.1929233820001,-8.496415275999937,0 115.1929524650001,-8.496594849999951,0 115.192970616,-8.496706922999977,0 115.1929775990001,-8.496750042999963,0 115.1929842320001,-8.496790998999927,0 115.1929845120001,-8.496793698999966,0 115.1930050970001,-8.49699263399998,0 115.1930142240001,-8.497080835999952,0 115.1930334000001,-8.497266156999956,0 115.193037524,-8.497306008999942,0 115.193037322,-8.497321342999953,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
<innerBoundaryIs>
<LinearRing>
<coordinates>
115.194050251,-8.492051910999976,0 115.1940503310001,-8.49204332599993,0 115.1940503990001,-8.492042597999955,0 115.194050604,-8.492041836999931,0 115.194050939,-8.492041122999979,0 115.1940513930001,-8.492040476999932,0 115.1940519530001,-8.492039917999932,0 115.1940526010001,-8.492039468999963,0 115.1940533180001,-8.49203913499997,0 115.1940540830001,-8.492038929999978,0 115.1940549040001,-8.492038862999948,0 115.194297384,-8.492042150999964,0 115.1942976670001,-8.492042037999965,0 115.1942973700001,-8.492041405999942,0 115.1942969610001,-8.492039882999961,0 115.194296837,-8.492038813999955,0 115.194294557,-8.491998054999954,0 115.194292795,-8.491966532999982,0 115.194289613,-8.491909632999977,0 115.1942877500001,-8.491876323999975,0 115.1942823930001,-8.49178059299993,0 115.1942811800001,-8.49175904599997,0 115.1942786870001,-8.491714743999978,0 115.19427867,-8.491714457999933,0 115.194274027,-8.491631947999963,0 115.1942655930001,-8.491481760999932,0 115.1942644440001,-8.49146060399994,0 115.1942485730001,-8.491344384999934,0 115.1942483400001,-8.491342678999956,0 115.1942256120001,-8.491176245999952,0 115.1942180300001,-8.491147730999955,0 115.1942137250001,-8.49113157599993,0 115.194213028,-8.491128957999933,0 115.1941598940001,-8.490929621999953,0 115.194133028,-8.49082868399995,0 115.1941291310001,-8.490814046999958,0 115.1941289670001,-8.490813299999957,0 115.194128845,-8.490812280999933,0 115.1941213260001,-8.49068976999996,0 115.19411256,-8.490481380999938,0 115.1941125520001,-8.490481001999967,0 115.194112558,-8.490480691999949,0 115.194115728,-8.490388780999979,0 115.1941221770001,-8.490201968999941,0 115.1941336060001,-8.489871017999974,0 115.1941387630001,-8.48971295299998,0 115.1941402640001,-8.489667013999963,0 115.1941541420001,-8.489242809999951,0 115.1941557160001,-8.489194278999946,0 115.1941621240001,-8.488992379999956,0 115.1941692400001,-8.488767878999965,0 115.1941720470001,-8.488679849999926,0 115.1941721060001,-8.488679065999975,0 115.194179594,-8.488616584999932,0 115.1941844,-8.48858004899995,0 115.1941868160001,-8.488558430999944,0 115.1941903310001,-8.488527699999963,0 115.19419041,-8.488527150999971,0 115.194190528,-8.488526588999946,0 115.1942019070001,-8.488479907999931,0 115.1942019830001,-8.488479617999928,0 115.194222079,-8.488407695999967,0 115.1942305980001,-8.488348489999964,0 115.1942382880001,-8.488142022999966,0 115.1942442080001,-8.487961207999945,0 115.1942450130001,-8.487936613999977,0 115.194247408,-8.487863478999941,0 115.1942543590001,-8.487651203999974,0 115.194254372,-8.487650924999969,0 115.1942747700001,-8.487331464999954,0 115.194279584,-8.487256101999947,0 115.1942839340001,-8.487190952999981,0 115.1942938670001,-8.487037762999933,0 115.194297032,-8.487003043999948,0 115.1943322430001,-8.486614337999981,0 115.1943554510001,-8.486359045999961,0 115.1943682440001,-8.486200334999978,0 115.1944152230001,-8.485617693999927,0 115.1944225210001,-8.485530033999964,0 115.1944462230001,-8.485244182999963,0 115.1944460980001,-8.485243731999958,0 115.1944126850001,-8.485236014999941,0 115.194270339,-8.485208661999934,0 115.194258502,-8.485206838999943,0 115.1940027930001,-8.485167506999971,0 115.1937708430001,-8.485135143999969,0 115.1937287930001,-8.485129275999952,0 115.1936524810001,-8.48511866299998,0 115.193640584,-8.485119671999939,0 115.193628794,-8.485122722999961,0 115.193617689,-8.485127710999961,0 115.193607583,-8.485134492999975,0 115.193598776,-8.485142870999937,0 115.193591512,-8.485152613999958,0 115.193586005,-8.485163429999943,0 115.1935824200001,-8.485174985999947,0 115.193517342,-8.485703349999937,0 115.1935039460001,-8.485812127999964,0 115.1934662320001,-8.486118332999979,0 115.1934476930001,-8.486272188999976,0 115.1934466550001,-8.486280789999967,0 115.1933791880001,-8.486840762999975,0 115.1933791360001,-8.486841130999949,0 115.193344923,-8.487051592999933,0 115.193344504,-8.487053178999929,0 115.1933443500001,-8.487053570999933,0 115.1933372660001,-8.487070461999963,0 115.1933367510001,-8.487071497999978,0 115.193336573,-8.48707178899997,0 115.193326787,-8.487087284999973,0 115.1933260560001,-8.48708828499997,0 115.193325884,-8.48708848299998,0 115.193313663,-8.487102157999971,0 115.1933126450001,-8.487103131999959,0 115.1932982520001,-8.487114669999926,0 115.193297055,-8.487115481999979,0 115.193294496,-8.48711691699998,0 115.193280983,-8.487124482999945,0 115.193279626,-8.487125101999936,0 115.193262321,-8.487131321999925,0 115.193260868,-8.48713171299994,0 115.193242755,-8.487135003999981,0 115.1932410650001,-8.487135144999968,0 115.1931300660001,-8.487133030999928,0 115.193122409,-8.487132886999973,0 115.193111227,-8.487132822999968,0 115.19310094,-8.487134552999976,0 115.193091115,-8.487138009999967,0 115.1930820250001,-8.487143107999941,0 115.1930739490001,-8.487149683999974,0 115.1930671330001,-8.487157540999931,0 115.193061775,-8.487166445999947,0 115.1930579520001,-8.487176353999928,0 115.192982925,-8.487475597999946,0 115.1929770720001,-8.487502390999964,0 115.1929678380001,-8.487546337999959,0 115.192944612,-8.487656916999981,0 115.1929362340001,-8.487710686999947,0 115.192903349,-8.487921509999978,0 115.192866758,-8.488156180999965,0 115.1928440590001,-8.488301541999931,0 115.192833413,-8.488367319999952,0 115.1927977100001,-8.488588339999978,0 115.19276759,-8.488774383999953,0 115.192760353,-8.488837861999968,0 115.1927543060001,-8.488890954999931,0 115.1927540700001,-8.488893033999943,0 115.1927330190001,-8.489077909999935,0 115.192732986,-8.48907817199995,0 115.1927220040001,-8.489154582999959,0 115.1927105850001,-8.489319111999976,0 115.1927104990001,-8.489319875999968,0 115.1926870310001,-8.489470273999927,0 115.192686985,-8.489470535999942,0 115.1926688630001,-8.489563002999944,0 115.1926464650001,-8.489677514999926,0 115.1926299100001,-8.489762055999961,0 115.1926248620001,-8.489790939999978,0 115.1926154080001,-8.489845042999946,0 115.1926029230001,-8.489916470999958,0 115.192585064,-8.490021223999975,0 115.192576109,-8.490073836999954,0 115.1925681350001,-8.490153968999948,0 115.1925641140001,-8.490194329999952,0 115.192541804,-8.49041757599997,0 115.1925395280001,-8.490441045999944,0 115.192523078,-8.490611721999926,0 115.1925068640001,-8.490779140999962,0 115.1924918340001,-8.490935089999937,0 115.192475712,-8.491101588999982,0 115.1924747610001,-8.491114068999934,0 115.1924425300001,-8.491544078999937,0 115.1924371220001,-8.491616263999958,0 115.1924308340001,-8.491700116999937,0 115.1924202910001,-8.491873603999977,0 115.1924103170001,-8.492037167999968,0 115.1924025400001,-8.492164841999966,0 115.1923991260001,-8.492351022999969,0 115.1923956750001,-8.492544625999926,0 115.1923936650001,-8.492654081999945,0 115.192393636,-8.492654653999978,0 115.192391892,-8.492675887999951,0 115.192383077,-8.49278233299998,0 115.1923668090001,-8.492979127999945,0 115.1923562500001,-8.493106982999961,0 115.192348379,-8.493202521999933,0 115.192343434,-8.493262577999928,0 115.192342034,-8.493279595999979,0 115.1923160350001,-8.493570432999945,0 115.1922997610001,-8.493777822999959,0 115.192297681,-8.493804366999939,0 115.1922916000001,-8.493881817999977,0 115.192275482,-8.49418967899993,0 115.1922617450001,-8.49438278699995,0 115.1922586490001,-8.494426273999977,0 115.1922485450001,-8.494568283999968,0 115.192246002,-8.494604529999947,0 115.1922462020001,-8.494640983999943,0 115.19224664,-8.494708908999939,0 115.1922471370001,-8.49478587599998,0 115.1922489780001,-8.495071137999958,0 115.192249895,-8.495146772999931,0 115.192253455,-8.495458006999968,0 115.1922541550001,-8.495515324999928,0 115.192268172,-8.495710899999949,0 115.192289046,-8.495846137999933,0 115.1923158850001,-8.496020189999967,0 115.192325327,-8.496047597999961,0 115.1923475220001,-8.496068813999955,0 115.192394293,-8.496084101999941,0 115.1924970790001,-8.496088138999937,0 115.1925967430001,-8.496085087999973,0 115.1928138620001,-8.49607840699997,0 115.1928141420001,-8.496078401999966,0 115.1928155980001,-8.49607851899998,0 115.1928479090001,-8.496083741999939,0 115.1928495000001,-8.496084159999953,0 115.1928507570001,-8.496084726999982,0 115.192895138,-8.496108940999932,0 115.1928965230001,-8.496109894999961,0 115.192897642,-8.496111007999957,0 115.1928985500001,-8.496112299999936,0 115.1928987120001,-8.496112591999974,0 115.192926401,-8.496164691999979,0 115.1929269080001,-8.49616582799996,0 115.1929273170001,-8.496167349999951,0 115.1929274250001,-8.496168195999928,0 115.1929323800001,-8.496229595999978,0 115.19293241,-8.496230368999932,0 115.192932175,-8.496251444999928,0 115.192931238,-8.496336442999961,0 115.1929309760001,-8.496360116999938,0 115.192930487,-8.496404285999972,0 115.1929325850001,-8.496415298999977,0 115.192948837,-8.49651565299996,0 115.1929499380001,-8.496522446999961,0 115.1929614310001,-8.496593410999935,0 115.192979582,-8.496705483999961,0 115.192981118,-8.496714969999971,0 115.1929827710001,-8.496725178999952,0 115.1929932390001,-8.496789814999943,0 115.192993545,-8.496792771999935,0 115.1930127500001,-8.49697836799993,0 115.193014231,-8.496992680999938,0 115.19304032,-8.497244809999927,0 115.193046082,-8.497314571999937,0 115.1930461080001,-8.497315005999951,0 115.1930470030001,-8.497333444999981,0 115.193060077,-8.497602900999937,0 115.193079933,-8.497602087999951,0 115.19315152,-8.497599012999956,0 115.193420691,-8.497587449999969,0 115.1935415590001,-8.497582266999927,0 115.193587509,-8.497580285999959,0 115.1936188000001,-8.497578946999965,0 115.1936225000001,-8.497578789999977,0 115.1937276010001,-8.497570086999929,0 115.1938613110001,-8.497559019999926,0 115.1939455800001,-8.49755203999996,0 115.1940813560001,-8.497540801999946,0 115.1942979630001,-8.497521927999969,0 115.1943989500001,-8.497513131999938,0 115.1945174870001,-8.49750278199997,0 115.1945175770001,-8.49750256699997,0 115.194511924,-8.497441134999974,0 115.194499206,-8.497302889999958,0 115.194494734,-8.497246227999938,0 115.1944892460001,-8.497176737999951,0 115.1944856440001,-8.497131124999953,0 115.1944821390001,-8.49708672099996,0 115.194478212,-8.497036978999972,0 115.194466117,-8.496907537999959,0 115.1944660740001,-8.496907093999937,0 115.194466043,-8.496906718999981,0 115.1944660390001,-8.496906686999978,0 115.194453561,-8.496773183999949,0 115.1944099120001,-8.49663308199996,0 115.1944098390001,-8.496632851999948,0 115.1944094900001,-8.496631720999972,0 115.194368518,-8.496498843999973,0 115.194337752,-8.496388686999978,0 115.1943274340001,-8.496349154999962,0 115.1943193420001,-8.496318111999926,0 115.1943191890001,-8.496317409999961,0 115.1943191250001,-8.496316986999943,0 115.194309007,-8.496238209999945,0 115.1943089480001,-8.496237564999944,0 115.1943053550001,-8.496173189999979,0 115.194297749,-8.496038749999968,0 115.1942977350001,-8.496038220999935,0 115.1942979840001,-8.495984302999943,0 115.1942980030001,-8.495980258999964,0 115.194298277,-8.495921932999977,0 115.1942992810001,-8.495707007999954,0 115.1942992930001,-8.49570659099993,0 115.194310993,-8.495477323999978,0 115.194317347,-8.495352839999953,0 115.1943277710001,-8.495098442999961,0 115.1943310800001,-8.495017746999963,0 115.194332613,-8.494980275999978,0 115.1943384770001,-8.494837178999944,0 115.194341086,-8.494759366999972,0 115.1943447340001,-8.494651629999964,0 115.1943457640001,-8.49462194299997,0 115.194345773,-8.494621630999973,0 115.1943466340001,-8.494596757999943,0 115.1943465100001,-8.494551368999964,0 115.1943461880001,-8.49443647399994,0 115.1943459080001,-8.494320136999931,0 115.1943458070001,-8.494278065999936,0 115.1943356050001,-8.493962472999954,0 115.194334195,-8.493766121999954,0 115.1943342960001,-8.493758450999962,0 115.1943350940001,-8.493697464999968,0 115.194337698,-8.493497848999937,0 115.1943399060001,-8.493329366999944,0 115.1943415610001,-8.493201059999933,0 115.194347009,-8.492980743999965,0 115.1943477890001,-8.492949095999961,0 115.1943494960001,-8.492880035999974,0 115.1943488180001,-8.492824304999942,0 115.194348019,-8.492759052999929,0 115.194346855,-8.492663624999977,0 115.194346522,-8.492636324999978,0 115.1943381890001,-8.492369348999944,0 115.1943344770001,-8.492250188999947,0 115.1943296410001,-8.492094383999927,0 115.194329053,-8.492075455999952,0 115.1943289340001,-8.492075153999963,0 115.194327142,-8.49207443499995,0 115.1943260950001,-8.492073918999949,0 115.194324799,-8.492073015999949,0 115.19432384,-8.49207208699994,0 115.1943224140001,-8.492070484999942,0 115.194314597,-8.49207036699994,0 115.194054571,-8.492066527999953,0 115.1940538490001,-8.492066460999979,0 115.1940530840001,-8.492066256999976,0 115.194052367,-8.492065922999927,0 115.1940517190001,-8.492065471999979,0 115.1940511590001,-8.492064913999968,0 115.1940507050001,-8.492064267999979,0 115.1940503710001,-8.492063553999969,0 115.194050166,-8.492062792999945,0 115.1940500970001,-8.49206197999996,0 115.194050241,-8.492053480999971,0 115.1940502120001,-8.492052658999967,0 115.194050251,-8.492051910999976,0
</coordinates>
</LinearRing>
</innerBoundaryIs>
</Polygon>
<description>{&quot;OBJECTID&quot;:&quot;5284&quot;,&quot;NAMOBJ&quot;:&quot;Jalur Hijau&quot;,&quot;NAMZON&quot;:&quot;Zona Ruang Terbuka Hijau&quot;,&quot;KODZON&quot;:&quot;RTH&quot;,&quot;NAMSZN&quot;:&quot;Jalur Hijau&quot;,&quot;KODSZN&quot;:&quot;RTH-8&quot;,&quot;JNSRPR&quot;:&quot;Zona Lindung&quot;,&quot;KODEWP&quot;:&quot;I&quot;,&quot;KODSWP&quot;:&quot;A&quot;,&quot;KODBLK&quot;:&quot;6&quot;,&quot;KODSBL&quot;:&quot;Tidak Ada&quot;,&quot;WADMPR&quot;:&quot;Provinsi Bali&quot;,&quot;WADMKK&quot;:&quot;Kabupaten Badung&quot;,&quot;WADMKC&quot;:&quot;Kecamatan Mengwi&quot;,&quot;WADMKD&quot;:&quot;Desa Sobangan&quot;,&quot;KKOP_1&quot;:&quot;Tidak Ada&quot;,&quot;LP2B_2&quot;:&quot;Tidak Ada&quot;,&quot;KRB_03&quot;:&quot;Tidak Ada&quot;,&quot;TOD_04&quot;:&quot;Tidak Ada&quot;,&quot;TEB_05&quot;:&quot;Tidak Ada&quot;,&quot;PUSLIT&quot;:&quot;Tidak Ada&quot;,&quot;CAGBUD&quot;:&quot;Tidak Ada&quot;,&quot;RESAIR&quot;:&quot;Tidak Ada&quot;,&quot;KSMPDN&quot;:&quot;Tidak Ada&quot;,&quot;HANKAM&quot;:&quot;Tidak Ada&quot;,&quot;KKARST&quot;:&quot;Tidak Ada&quot;,&quot;PTBGMB&quot;:&quot;Tidak Ada&quot;,&quot;MGRSAT&quot;:&quot;Tidak Ada&quot;,&quot;RDBUMI&quot;:&quot;Tidak Ada&quot;,&quot;TPZ_00&quot;:&quot;Tidak Ada&quot;,&quot;REMARK&quot;:&quot;Tidak Ada&quot;,&quot;NOTHPR&quot;:&quot;Peraturan Bupati Badung Nomor 34 Tahun 2022 tentang Rencana Detail Tata Ruang Wilayah Perencanaan Mengwi Tahun 2022-2042&quot;}</description>
</Placemark>
</Document>
</Folder>
</kml>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment